/home/rokasa/dbs
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: robisear_hadassah -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB-log /*!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 utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!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 */; -- -- Table structure for table `accounttype` -- DROP TABLE IF EXISTS `accounttype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `accounttype` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `companyid` varchar(10) NOT NULL, `userid` varchar(10) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `accounttype` -- LOCK TABLES `accounttype` WRITE; /*!40000 ALTER TABLE `accounttype` DISABLE KEYS */; INSERT INTO `accounttype` VALUES (1,'Asset','BS','1','415','Asset'),(2,'Liability','BS','1','415','Liability'),(3,'Equity','BS','1','415','Equity'),(4,'Income','PL','1','415','Income'),(5,'Expense','PL','1','415','Expense'); /*!40000 ALTER TABLE `accounttype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `activityloggs` -- DROP TABLE IF EXISTS `activityloggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `activityloggs` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(30) NOT NULL, `timedone` varchar(50) NOT NULL, `actiondone` text NOT NULL, `ip` text NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `activityloggs` -- LOCK TABLES `activityloggs` WRITE; /*!40000 ALTER TABLE `activityloggs` DISABLE KEYS */; /*!40000 ALTER TABLE `activityloggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admintable` -- DROP TABLE IF EXISTS `admintable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `admintable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) NOT NULL, `password` varchar(20) DEFAULT NULL, `surname` varchar(50) NOT NULL, `firstname` varchar(50) NOT NULL, `phone` varchar(50) NOT NULL, `campus` varchar(30) NOT NULL, `college` varchar(30) NOT NULL, `department` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `token` text NOT NULL, `email` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `idno` varchar(40) NOT NULL, `updatedat` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admintable` -- LOCK TABLES `admintable` WRITE; /*!40000 ALTER TABLE `admintable` DISABLE KEYS */; INSERT INTO `admintable` VALUES (1,'admin','Robisearch321','dd','ddd','222222222','','','','','','admqin@gmail.com','','active','2222222','2016-11-07 04:32:35'); /*!40000 ALTER TABLE `admintable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advance` -- DROP TABLE IF EXISTS `advance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advance` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tenantid` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `closedate` varchar(30) NOT NULL, `startdate` varchar(30) NOT NULL, `paid` decimal(10,0) DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `plotno` varchar(50) DEFAULT NULL, `houseno` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advance` -- LOCK TABLES `advance` WRITE; /*!40000 ALTER TABLE `advance` DISABLE KEYS */; /*!40000 ALTER TABLE `advance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advancepayment` -- DROP TABLE IF EXISTS `advancepayment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advancepayment` ( `id` int(30) NOT NULL AUTO_INCREMENT, `createdat` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `description` text NOT NULL, `advanceid` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advancepayment` -- LOCK TABLES `advancepayment` WRITE; /*!40000 ALTER TABLE `advancepayment` DISABLE KEYS */; /*!40000 ALTER TABLE `advancepayment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `agent` -- DROP TABLE IF EXISTS `agent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `agent` ( `id` int(40) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountno` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `idno` (`idno`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `agent` -- LOCK TABLES `agent` WRITE; /*!40000 ALTER TABLE `agent` DISABLE KEYS */; /*!40000 ALTER TABLE `agent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alerts` ( `id` int(100) NOT NULL AUTO_INCREMENT, `contact` text NOT NULL, `postedtime` varchar(40) NOT NULL, `message` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `duedate` varchar(30) NOT NULL, `duetime` varchar(30) NOT NULL, `deliverystatus` varchar(10) NOT NULL DEFAULT 'new', `name` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `groupname` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allcurrencies` -- DROP TABLE IF EXISTS `allcurrencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allcurrencies` ( `id` int(10) NOT NULL AUTO_INCREMENT, `country` varchar(100) NOT NULL, `currency` varchar(20) NOT NULL, `code` varchar(20) NOT NULL, `symbol` varchar(10) NOT NULL, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allcurrencies` -- LOCK TABLES `allcurrencies` WRITE; /*!40000 ALTER TABLE `allcurrencies` DISABLE KEYS */; INSERT INTO `allcurrencies` VALUES (1,'Albania','Albanian lek','ALL','L',1),(2,'Argentina','Argentine peso','ARS','$',1),(3,'Armenia','Armenian dram','AMD','?',1),(4,'Australia','Australian dollar','AUD','$',1),(5,'Azerbaijan','Azerbaijani manat','AZN','?',1),(6,'Belarus','Belarusian rubel','BYN','Rbl',1),(7,'Bolivia','Boliviano','BOB','Bs.',1),(8,'Botswana','Botswana pula','BWP','P',1),(9,'Bulgaria','Bulgarian lev','BGN','??.',1),(10,'Brazil','Brazilian real','BRL','R$',1),(11,'Cambodia','Cambodian riel','KHR','?',1),(12,'Canada','Canadian dollar','CAD','$',1),(13,'China','Chinese yuan (Renmin','CNY','?',1),(14,'Colombia','Colombian peso','COP','$',1),(15,'Costa Rica','Costa Rican col?n','CRC','?',1),(16,'Croatia','Croatian kuna','HRK','kn',1),(17,'Cuba','Cuban peso','CUP','$',1),(18,'Czech Republic','Czech koruna','CZK','K?',1),(19,'Denmark','Danish krone','DKK','kr.',1),(20,'Dominican Republic','Dominican peso','DOP','$',1),(21,'Egypt','Egyptian pound','EGP','E?',1),(22,'El Salvador','El Salvador col?n','SVC','?',1),(23,'European Union','Euro','EUR','?',1),(24,'Fiji','Fijian dollar','FJD','FJ$',1),(25,'Ghana','Ghanaian cedi','GHS','GH?',1),(26,'Guatemala','Guatemalan quetzal','GTQ','Q',1),(27,'Guinea','Guinean franc','GNF','FG',1),(28,'Guyana','Guyanese dollar','GYD','$',1),(29,'Hong Kong','Hong Kong dollar','HKD','$',1),(30,'Honduras','Honduran lempira','HNL','L',1),(31,'Hungary','Hungarian forint','HUF','Ft',1),(32,'India','Indian rupee','INR','?',1),(33,'Iceland','Icelandic kr?na','ISK','kr',1),(34,'Iran','Iranian rial','IRR','?',1),(35,'Israel','Israeli shekel','ILS','?',1),(36,'Japan','Japanese yen','JPY','?',1),(37,'Kazakhstan','Kazakhstani tenge','KZT','?',1),(38,'Kenya','Kenyan shilling','KES','Ksh',1),(39,'Kuwait','Kuwaiti dinar','KWD','?.?',1),(40,'Malawi','Malawian kwacha','MWK','MK',1),(41,'Malaysia','Malaysian ringgit','MYR','RM',1),(42,'Mexico','Mexican peso','MXN','$',1),(43,'Morocco','Moroccan dirham','MAD','MAD',1),(44,'Namibia','Namibian dollar','NAD','N$',1),(45,'Nepal','Nepalese rupee','NPR','Rs.',1),(46,'New Zealand','New Zealand dollar','NZD','$',1),(47,'Norway','Norwegian krone','NOK','kr',1),(48,'Oman','Omani rial','OMR','?.?.',1),(49,'Pakistan','Pakistani rupee','PKR','Rs',1),(50,'Peru','Sol','PEN','S/',1),(51,'Philippines','Philippine peso','PHP','?',1),(52,'Poland','Polish z?oty','PLN','z?',1),(53,'Qatar','Qatari riyal','QAR','QR',1),(54,'Romania','Romanian leu','RON','L',1),(55,'Russia','Russian ruble','RUB','?',1),(56,'Saudi Arabia','Saudi riyal','SAR','?.?',1),(57,'Serbia','Serbian dinar','RSD','din',1),(58,'Seychelles','Seychellois rupee','SCR','?',1),(59,'Singapore','Singapore dollar','SGD','$',1),(60,'Solomon Islands','Solomon Islands doll','SBD','Si$',1),(61,'Somalia','Somali shilling','SOS','Sh.so',1),(62,'South Africa','South African rand','ZAR','R',1),(63,'Sri Lanka','Sri Lankan rupee','LKR','Re',1),(64,'Sweden','Swedish krona','SEK','kr',1),(65,'Switzerland','Swiss franc','CHF','CHf.',1),(66,'Syria','Syrian pound','SYP','?S',1),(67,'Taiwan','New Taiwan dollar','TWD','NT$',1),(68,'Thailand','Thai baht','THB','?',1),(69,'Trinidad and Tobago','Trinidad and Tobago ','TTD','TT$',1),(70,'Turkey','Turkish lira','TRY','?',1),(71,'Ukraine','Ukrainian hryvnia','UAH','?',1),(72,'United Kingdom','Pound sterling','GBP','?',1),(73,'United States','United States dollar','USD','$',1),(74,'Uruguay','Uruguayan Peso','UYU','$',1),(75,'Uzbekistan','Uzbekistani sum','UZS','so?m',1),(76,'Venezuela','Venezuelan bol?var','VED','Bs.',1),(77,'Vietnam','Vietnamese dong','VND','?',1),(78,'Yemen','Yemeni rial','YER','?',1),(79,'Zimbabwe','Zimbabwean dollar','ZWL','$',1); /*!40000 ALTER TABLE `allcurrencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alldocuments` -- DROP TABLE IF EXISTS `alldocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alldocuments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `img_id` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `date` varchar(50) DEFAULT NULL, `documentname` text DEFAULT NULL, `companyid` varchar(100) NOT NULL DEFAULT '1', `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldocuments` -- LOCK TABLES `alldocuments` WRITE; /*!40000 ALTER TABLE `alldocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `alldocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allpayments` -- DROP TABLE IF EXISTS `allpayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allpayments` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `plotno` varchar(50) NOT NULL, `landlord` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `advance` varchar(20) NOT NULL, `direct` varchar(20) NOT NULL, `balance` varchar(20) NOT NULL, `mpesa` varchar(20) NOT NULL, `cash` varchar(20) NOT NULL, `card` varchar(20) NOT NULL, `cheque` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `year` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allpayments` -- LOCK TABLES `allpayments` WRITE; /*!40000 ALTER TABLE `allpayments` DISABLE KEYS */; /*!40000 ALTER TABLE `allpayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement` -- DROP TABLE IF EXISTS `announcement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `announcement` ( `id` int(50) NOT NULL, `title` text NOT NULL, `target` varchar(50) NOT NULL, `message` text NOT NULL, `dateposted` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `type` varchar(50) NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `memberid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement` -- LOCK TABLES `announcement` WRITE; /*!40000 ALTER TABLE `announcement` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `approvals` -- DROP TABLE IF EXISTS `approvals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `approvals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `level` varchar(5) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` varchar(20) NOT NULL, `applicationid` int(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `approvals` -- LOCK TABLES `approvals` WRITE; /*!40000 ALTER TABLE `approvals` DISABLE KEYS */; INSERT INTO `approvals` VALUES (1,'','','2022-10-24 16:52:27','Approved','1','','1','EXP-11666619509',1),(2,'','','2022-11-16 15:38:49','Approved','1','','1','EXP-11668602219',5),(3,'','','2023-03-08 13:08:45','Approved','1','','1','EXP-11678270030',3),(4,'','','2023-03-08 13:09:08','Yes','1','','1','EXP-11678270030',3),(5,'','na','2023-03-11 12:51:54','Approved','1','','1','LOAN-11678528274',5),(6,'','','2023-05-15 08:36:21','Approved','1','','1','LOAN-11684128867',3),(7,'','','2023-05-27 13:29:05','Approved','1','','1','LOAN-11685183293',2); /*!40000 ALTER TABLE `approvals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `asignrooms` -- DROP TABLE IF EXISTS `asignrooms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `asignrooms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) DEFAULT NULL, `houseno` varchar(100) DEFAULT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `memberid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `exactdate` varchar(50) NOT NULL, `floor` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `asignrooms` -- LOCK TABLES `asignrooms` WRITE; /*!40000 ALTER TABLE `asignrooms` DISABLE KEYS */; /*!40000 ALTER TABLE `asignrooms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assessment` -- DROP TABLE IF EXISTS `assessment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assessment` ( `id` int(20) NOT NULL AUTO_INCREMENT, `invoice` varchar(50) NOT NULL, `registrationno` varchar(50) NOT NULL, `claimno` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `color` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `repairer` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `instructionsby` varchar(50) NOT NULL, `instructions` text NOT NULL, `preaccident` text NOT NULL, `garagedetails` text NOT NULL, `latentdameges` text NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(30) NOT NULL, `deliverymode` text NOT NULL, `date` varchar(30) NOT NULL, `assessmentdate` varchar(20) NOT NULL, `insuredname` varchar(30) NOT NULL, `colour` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assessment` -- LOCK TABLES `assessment` WRITE; /*!40000 ALTER TABLE `assessment` DISABLE KEYS */; INSERT INTO `assessment` VALUES (1,'32222201607434545','777','433','rr343exx','r','','WEW','344r53','r','32323','232321','re3r','33333','3434','','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','EQWEQE','WQEQ','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 06:23:58','WEW','2020-12-23','2020-12-01','333','EWEW'),(2,'32222201607434545','777432x','QEQEdx','QWEQEddx','QWEQEx','','rx','rx','32213dx','QWEQx','WEx','re3rx','33333x','E12x','ROBERT','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','ddx','ddx','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 07:16:58','WEWx','2020-12-01','2020-12-01','QWEQddx','ee32e2x'); /*!40000 ALTER TABLE `assessment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assets` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `tax_included` int(10) NOT NULL DEFAULT 16, `buyingprice` varchar(50) NOT NULL, `assetcondition` varchar(50) DEFAULT NULL, `type` varchar(50) DEFAULT NULL, `assetvalue` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `store` varchar(50) DEFAULT NULL, `serialno` varchar(30) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `expdate` date NOT NULL, `orderamount` text NOT NULL, `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `depreciationpercent` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `invoice` varchar(30) NOT NULL, `depreciation` varchar(30) NOT NULL DEFAULT '', `accumulativeaccount` varchar(30) DEFAULT NULL, `accumdepreciation` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assignbranches` -- DROP TABLE IF EXISTS `assignbranches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assignbranches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeno`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assignbranches` -- LOCK TABLES `assignbranches` WRITE; /*!40000 ALTER TABLE `assignbranches` DISABLE KEYS */; /*!40000 ALTER TABLE `assignbranches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assigntask` -- DROP TABLE IF EXISTS `assigntask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assigntask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `mode` varchar(20) NOT NULL, `target` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) NOT NULL, `year` varchar(20) NOT NULL, `defaulttype` varchar(20) NOT NULL, `tasktype` varchar(10) NOT NULL DEFAULT 'General', PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assigntask` -- LOCK TABLES `assigntask` WRITE; /*!40000 ALTER TABLE `assigntask` DISABLE KEYS */; /*!40000 ALTER TABLE `assigntask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attendance` -- DROP TABLE IF EXISTS `attendance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `attendance` ( `id` int(100) NOT NULL AUTO_INCREMENT, `idno` varchar(100) NOT NULL, `surname` varchar(100) NOT NULL, `date` datetime NOT NULL, `timein` varchar(100) NOT NULL, `timeout` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `createddate` varchar(100) NOT NULL, `comment` text NOT NULL, `timediffrence` varchar(5) NOT NULL DEFAULT '0', `device` varchar(30) NOT NULL, `totaltime` varchar(20) DEFAULT NULL, `checkoutime` datetime NOT NULL, `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attendance` -- LOCK TABLES `attendance` WRITE; /*!40000 ALTER TABLE `attendance` DISABLE KEYS */; /*!40000 ALTER TABLE `attendance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backup` -- DROP TABLE IF EXISTS `backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `backup` ( `id` int(20) NOT NULL AUTO_INCREMENT, `user` text NOT NULL, `host` text NOT NULL, `password` text NOT NULL, `server` text NOT NULL, `path` text NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(40) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `database` text NOT NULL, `location` varchar(20) NOT NULL DEFAULT 'offline', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backup` -- LOCK TABLES `backup` WRITE; /*!40000 ALTER TABLE `backup` DISABLE KEYS */; INSERT INTO `backup` VALUES (1,'root','localhost','robisearch2018','D:\\xampp\\mysql\\bin\\','D:/Backup/','active','2020-10-30 20:47:10',1,1,'robipos','offline'); /*!40000 ALTER TABLE `backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banks` -- DROP TABLE IF EXISTS `banks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `banks` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `banks` -- LOCK TABLES `banks` WRITE; /*!40000 ALTER TABLE `banks` DISABLE KEYS */; INSERT INTO `banks` VALUES (1,'','0.00','','2023-03-08 12:22:43','NA',1030,'1','1','2023-03-08 12:43:31','BANK-11678268602'),(2,'','50000','','2023-03-08 12:09:46','ROBISEARCH',1030,'1','1','2023-03-08 12:46:23','BANK-11678268769'),(3,'','30000','','2023-03-08 12:02:47','ROBISEARCH',1010,'1','1','2023-03-08 12:47:17','BANK-11678268822'),(4,'','60000','','2023-03-11 09:53:17','kcb',1030,'1','1','2023-03-11 09:18:22','BANK-11678515473'),(5,'','2000000','','2023-05-27 12:18:44','ROBERT',1030,'1','1','2023-05-27 12:44:39','BANK-11685180658'); /*!40000 ALTER TABLE `banks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `batchlist` -- DROP TABLE IF EXISTS `batchlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `batchlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `batchlist` -- LOCK TABLES `batchlist` WRITE; /*!40000 ALTER TABLE `batchlist` DISABLE KEYS */; INSERT INTO `batchlist` VALUES (1,'P.O','1','2023-05-24 09:10:38','11684908636','11684908577',1,1,1,''); /*!40000 ALTER TABLE `batchlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `beds` -- DROP TABLE IF EXISTS `beds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `beds` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `roomid` varchar(20) NOT NULL, `plotno` varchar(20) DEFAULT NULL, `description` text NOT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `beds` -- LOCK TABLES `beds` WRITE; /*!40000 ALTER TABLE `beds` DISABLE KEYS */; /*!40000 ALTER TABLE `beds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blog` -- DROP TABLE IF EXISTS `blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blog` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blog` -- LOCK TABLES `blog` WRITE; /*!40000 ALTER TABLE `blog` DISABLE KEYS */; /*!40000 ALTER TABLE `blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogs` -- DROP TABLE IF EXISTS `blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blogs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogs` -- LOCK TABLES `blogs` WRITE; /*!40000 ALTER TABLE `blogs` DISABLE KEYS */; /*!40000 ALTER TABLE `blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bookroom` -- DROP TABLE IF EXISTS `bookroom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bookroom` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `mytable` varchar(20) NOT NULL, `salesperson` varchar(20) DEFAULT NULL, `receiptno` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL DEFAULT '', `bedid` int(11) DEFAULT 1, `bedname` varchar(100) NOT NULL, `updatedid` int(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bookroom` -- LOCK TABLES `bookroom` WRITE; /*!40000 ALTER TABLE `bookroom` DISABLE KEYS */; /*!40000 ALTER TABLE `bookroom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `branch` -- DROP TABLE IF EXISTS `branch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `branch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `branch` -- LOCK TABLES `branch` WRITE; /*!40000 ALTER TABLE `branch` DISABLE KEYS */; INSERT INTO `branch` VALUES (1,'Counter','Counter','2022-09-14 06:30:04','active','1','','1','Counter'); /*!40000 ALTER TABLE `branch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brands` -- DROP TABLE IF EXISTS `brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `brands` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `website` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brands` -- LOCK TABLES `brands` WRITE; /*!40000 ALTER TABLE `brands` DISABLE KEYS */; INSERT INTO `brands` VALUES (1,'1','JKUAT','Our partner in ICT Field','karenmakena3@gmail.com','0702400635','','http://www.jkuat.ac.ke/','2016-12-13 06:47:33am','',0),(2,'1','SimbaNet','Our partner in in Nikague App','','','','https://www.simbanet.net/','','',0); /*!40000 ALTER TABLE `brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `budget` -- DROP TABLE IF EXISTS `budget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `budget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `budget` -- LOCK TABLES `budget` WRITE; /*!40000 ALTER TABLE `budget` DISABLE KEYS */; /*!40000 ALTER TABLE `budget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkdispatch` -- DROP TABLE IF EXISTS `bulkdispatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkdispatch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `frombranch` varchar(50) NOT NULL, `remarks` varchar(100) NOT NULL, `enddate` varchar(50) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `createdate` varchar(50) NOT NULL, `description` text NOT NULL, `name` varchar(50) NOT NULL, `approvedby` int(20) NOT NULL, `dateapproved` int(20) NOT NULL, `tobranch` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `startdate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Transfer', `category` varchar(20) NOT NULL DEFAULT 'products', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkdispatch` -- LOCK TABLES `bulkdispatch` WRITE; /*!40000 ALTER TABLE `bulkdispatch` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkdispatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkhouse` -- DROP TABLE IF EXISTS `bulkhouse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkhouse` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `phone` varchar(40) NOT NULL, `roomtype` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `exactdate` varchar(50) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `name` text NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkhouse` -- LOCK TABLES `bulkhouse` WRITE; /*!40000 ALTER TABLE `bulkhouse` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkhouse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkreservation` -- DROP TABLE IF EXISTS `bulkreservation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkreservation` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkreservation` -- LOCK TABLES `bulkreservation` WRITE; /*!40000 ALTER TABLE `bulkreservation` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkreservation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `callcenter` -- DROP TABLE IF EXISTS `callcenter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `callcenter` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `callername` text NOT NULL, `receiver` text NOT NULL, `calldate` varchar(30) NOT NULL, `phone` varchar(50) NOT NULL, `media` text NOT NULL, `email` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `callcenter` -- LOCK TABLES `callcenter` WRITE; /*!40000 ALTER TABLE `callcenter` DISABLE KEYS */; /*!40000 ALTER TABLE `callcenter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES (1,'MAIN CATEGORY','','','active','1','','1'),(2,'OTHERS','','2021-08-23 03:04:54pm','active','1','','1'); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `charges` -- DROP TABLE IF EXISTS `charges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `charges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `priority` int(11) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `charges` -- LOCK TABLES `charges` WRITE; /*!40000 ALTER TABLE `charges` DISABLE KEYS */; INSERT INTO `charges` VALUES (1,'RENT','','','2018-05-30 14:28:37','','',0,1,NULL),(2,'DEPOSIT','','','2018-05-30 14:27:39','','',0,1,NULL),(3,'WATER/POWER DEPOSIT','','','2018-05-30 14:28:49','','',0,1,NULL),(4,'PENALTY','','','2018-06-25 13:38:03','','',0,1,NULL),(5,'WATER','','','2018-06-27 11:33:55','','',0,1,NULL),(6,'PARTIAL PAYMENT','','','2018-06-29 16:22:30','','',0,1,NULL),(7,'GARBAGE','','','2018-07-03 16:56:46','','',0,1,NULL),(8,'DAMAGES','','','2018-07-17 12:30:05','','',0,1,NULL),(9,'AGREEMENT FORM','','','2018-07-23 10:21:11','','',0,1,NULL),(10,'POWER','','','2018-08-04 10:42:10','','',0,1,NULL),(11,'SEWAGE','SEWAGE','','2020-05-27 16:23:21','','',2,1,NULL),(12,'BED ONLY','','','2020-05-28 15:38:20','','',1,1,NULL),(13,'BED AND BREAKFAST','','','2020-05-28 15:38:39','','',2,1,NULL),(14,'PROJECTOR','','','2023-04-28 08:21:52','','',0,1,NULL),(15,'LAUNDRY','LAUNDRY','','2023-04-28 08:22:20','','',0,1,NULL),(16,'ROOM TRANSFER','200','','2023-04-30 06:16:29','','',2,1,NULL),(17,'BED 1','0','','2023-05-11 11:10:44','','',1,1,NULL),(18,'BED 2','0','','2023-05-11 11:10:51','','',0,1,NULL); /*!40000 ALTER TABLE `charges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cheque` -- DROP TABLE IF EXISTS `cheque`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `cheque` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `business` varchar(100) NOT NULL, `type` varchar(15) NOT NULL, `chequenumber` varchar(70) NOT NULL, `exactdate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cheque` -- LOCK TABLES `cheque` WRITE; /*!40000 ALTER TABLE `cheque` DISABLE KEYS */; /*!40000 ALTER TABLE `cheque` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `collection` -- DROP TABLE IF EXISTS `collection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `collection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `collection` -- LOCK TABLES `collection` WRITE; /*!40000 ALTER TABLE `collection` DISABLE KEYS */; /*!40000 ALTER TABLE `collection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `commission` -- DROP TABLE IF EXISTS `commission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `commission` ( `id` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `datesold` varchar(40) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `profit` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `paymentdate` varchar(50) NOT NULL, `rate` varchar(30) NOT NULL, `customer` varchar(30) NOT NULL, `customerphone` varchar(50) NOT NULL, `customeremail` varchar(50) NOT NULL, `customerlocation` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(40) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'New', `paid` decimal(10,2) NOT NULL, `expcommission` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `commission` -- LOCK TABLES `commission` WRITE; /*!40000 ALTER TABLE `commission` DISABLE KEYS */; /*!40000 ALTER TABLE `commission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complain` -- DROP TABLE IF EXISTS `complain`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complain` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) DEFAULT '1', `type` varchar(30) NOT NULL, `messageid` varchar(30) DEFAULT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `serial` varchar(200) NOT NULL, `name` text NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complain` -- LOCK TABLES `complain` WRITE; /*!40000 ALTER TABLE `complain` DISABLE KEYS */; /*!40000 ALTER TABLE `complain` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complaindata` -- DROP TABLE IF EXISTS `complaindata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complaindata` ( `id` int(30) NOT NULL, `description` text NOT NULL, `date` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complaindata` -- LOCK TABLES `complaindata` WRITE; /*!40000 ALTER TABLE `complaindata` DISABLE KEYS */; /*!40000 ALTER TABLE `complaindata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `computers` -- DROP TABLE IF EXISTS `computers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `computers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(20) NOT NULL, `computernouserdata` text NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `computers` -- LOCK TABLES `computers` WRITE; /*!40000 ALTER TABLE `computers` DISABLE KEYS */; INSERT INTO `computers` VALUES (1,'ROBISEARCH LTD','e44','2023-02-13 07:08:17','Closed','1','2023-02-13 07:13:34','1','3','B0-22-7A-ED-77-F6','2023-02-24','2023-02-10','',0,NULL,'New Installation','new','','',1); /*!40000 ALTER TABLE `computers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `constants` -- DROP TABLE IF EXISTS `constants`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `constants` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `category` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `constants` -- LOCK TABLES `constants` WRITE; /*!40000 ALTER TABLE `constants` DISABLE KEYS */; INSERT INTO `constants` VALUES (1,'Relief',2400.00,'active',1,1,'Relief'),(2,'Pension',200.00,'active',1,1,'Pension'),(3,'NSSF',200.00,'oldrate',1,1,'NSSF'),(4,'Minimum Paye',24000.00,'active',1,1,'MinimumPaye'); /*!40000 ALTER TABLE `constants` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact` -- DROP TABLE IF EXISTS `contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contact` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `firstname` varchar(50) NOT NULL, `lastname` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact` -- LOCK TABLES `contact` WRITE; /*!40000 ALTER TABLE `contact` DISABLE KEYS */; /*!40000 ALTER TABLE `contact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contactdetails` -- DROP TABLE IF EXISTS `contactdetails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contactdetails` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `website` text NOT NULL, `contactdetails` text NOT NULL, `email` text NOT NULL, `phone` text NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `facebook` text NOT NULL, `twitter` text NOT NULL, `instagram` text NOT NULL, `linkedin` text NOT NULL, `youtube` text NOT NULL, `location` text NOT NULL, `aboutustitle` text NOT NULL, `aboutus` text NOT NULL, `whyustitle` text NOT NULL, `whyus` text NOT NULL, `whatsapp` text NOT NULL, `websites` text NOT NULL, `otherlinks` text NOT NULL, `termstitle` text NOT NULL, `terms` text NOT NULL, `deliverytitle` text NOT NULL, `delivery` text NOT NULL, `privacytitle` text NOT NULL, `privacy` text NOT NULL, `branches` text NOT NULL, `telegram` text NOT NULL, `otherlinktitle` text NOT NULL, `aboutuslogo` text NOT NULL, `businessname` text NOT NULL, `business` varchar(30) NOT NULL, `vision` text NOT NULL, `mission` text NOT NULL, `corevalues` text NOT NULL, `ourpromise` text NOT NULL, `returnpolicy` text NOT NULL, `workinghours` text NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `careertitle` text NOT NULL, `career` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contactdetails` -- LOCK TABLES `contactdetails` WRITE; /*!40000 ALTER TABLE `contactdetails` DISABLE KEYS */; INSERT INTO `contactdetails` VALUES (1,'','https://robisearch.com/','kinoti','karenmakena3@gmail.com','0754413386, 0716413386,0780655987','','We have from 01/07/2020 to 31/8/2010','2016-12-13 06:47:33am','1',1,0,'https://web.facebook.com/Robiearch/','https://twitter.com/robisearch','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.youtube.com/channel/UC9Z1YpMKlCgwqn4H1nT1hLg/featured','Nairobi -Nara Fourth Floor,</br> Kisii-Oyondi Building','<b>About Us </b>','Robisearch Ltd is an ICT company that begun in 2011 as a result of innovations that transform lives globally. We are a member of the Nairobi Chambers (KNCCI) organization.We have great experience in dealing with customers having handled over 500 clients in all Kenyan towns such as Juja, Nairobi, Mombasa and Kisumu as well as beyond the country.We provide our clients with adequate support thus providing more value to our customers .Our systems are customized to fit a clients particular need.We are the company behind various innovations like…..</br>','Why Us ','We have a well-organized support and maintenance structure that we will sign with you as a Service Level Agreement that guarantees you;','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','','POS.robisearch.com/','Terms and Condition ','karenmakena3@gmail.com','Delivery Information','Shipping Agents and Times</br>\r\n\r\nOur products ordered before 3pm are shipped within 24 Hours using the following carriers, Umash Bus Sacco, Easy Coach Sacco, North Rift Sacco or any other of your choice. Orders Placed in later hours are shipped on the following days</br>\r\nZipping Zones and Costs</br>\r\n\r\nOur shipping Zones are categorized into Coast Region, Rift Valley Region, Nairobi Region, North Easter Region and Nyanza Region. All orders to be collected at our shop are not chargeable any shipping cost. However all the other places we charge shipping cost depending with what our shipping agents charges; basically a shipping cost of between Ksh300- 400 applies except for regions within Nairobi County where a fee of roughly Ksh 150 – 200 applies. All shipping cost is subject to change without any notice.</br>','Privacy Details','PRIVACY POLICY</br>\r\n\r\nThis Privacy Policy explains what personal data is collected when you use the jiji.ng any jiji.ng mobile application, or website (“Jiji”, \"Website\", or \"App\") and the services provided through it (together with the Website and the App, the “Service”), how such personal data will be used, shared.</br>\r\n\r\nBY USING THE SERVICE, YOU PROMISE US THAT (I) YOU HAVE READ, UNDERSTOOD AND AGREED TO THIS PRIVACY POLICY, AND (II) YOU ARE OVER 16 YEARS OF AGE (OR HAVE HAD YOUR PARENT OR GUARDIAN READ AND AGREED TO THIS PRIVACY POLICY FOR YOU). If you do not agree or you are unable to make this promise, you must not use the Service. In such case, you must contact the support team via online chat or email to request deletion of your account and data.</br>\r\n\r\nProcess in respect of personal data, means to collect, store, and disclose to others.</br>\r\n\r\nTABLE OF CONTENTS</br>\r\n\r\n1. PERSONAL DATA CONTROLLER</br>\r\n\r\n2. CATEGORIES OF PERSONAL DATA WE COLLECT</br>\r\n\r\n3. FOR WHAT PURPOSES WE PROCESS PERSONAL DATA</br>\r\n\r\n4. AUTHORISED REQUIREMENT FOR PROCESSING YOUR PERSONAL DATA</br>\r\n\r\n5. WHO WE SHARE YOUR PERSONAL DATA WITH\r\n</br>\r\n6. HOW YOU CAN EXERCISE YOUR PRIVACY RIGHTS</br>\r\n\r\n7. AGE LIMITATION</br>\r\n\r\n8. CHANGES TO THIS PRIVACY POLICY</br>\r\n\r\n9. DATA RETENTION\r\n</br>\r\n10. CONTACT US</br>','Juja, Kisii','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','POS LINK','2147483647','Robisearch is an ICT business organization that deals ICT based solutions. We have been in the industry since 2011. Our main activity is software developement. ','ROBISEARCH LTD',' Transforming the world through innovation',' To be the best ICT company offering innovate services globally.','nnovation, Integrity, hardwork, commitment, honesty, equality, justice, fairness, love.','To Give the best services at all times','Return Policy</br>\r\n\r\nAll defined terms used below shall have the meanings set forth in our Terms and Conditions. If you are not happy with your purchase, we will accept a return of a unused product within 7 days. Once we receive the returned item Breejoz Baby Shop & Maternity Collections will then give a full refund (excluding shipping as we are unable to refund the initial shipping cost of your order). Please allow 1-2 weeks for your return to be processed.</br>',' WORKING HOURS</br>\r\n\r\n Mon 8:00am - 6:00pm</br>\r\n Tue 8:00am - 6:00pm</br>\r\n Wed 8:00am - 6:00pm</br>\r\n Thur 8:00am - 6:00pm</br>\r\n Fri 8:00am - 6:00pm</br>\r\n Sat 8:00am - 6:00pm</br>\r\n\r\n','2020-07-04 08:44:24',1,'Job Vacancy','Join our sales team as online marketers'); /*!40000 ALTER TABLE `contactdetails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `county` -- DROP TABLE IF EXISTS `county`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `county` ( `id` int(40) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(255) DEFAULT NULL, `provincecode` varchar(50) NOT NULL, `description` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `county` -- LOCK TABLES `county` WRITE; /*!40000 ALTER TABLE `county` DISABLE KEYS */; INSERT INTO `county` VALUES (1,'1','Mombasa','2','Mombasa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Kwale','2','Kwale','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Kilifi','2','Kilifi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Tana River','2','Tana River','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','Lamu','2','Lamu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Taita-Taveta','2','Taita-Taveta','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Garissa','5','Garissa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Wajir','5','Wajir','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'9','Mandera','5','Mandera','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'10','Marsabit','3','Marsabit','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'11','Isiolo','3','Isiolo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'12','Meru','3','Meru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'13','Tharaka-Nithi','3','Tharaka-Nithi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'14','Embu','3','Embu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'15','Kitui','3','Kitui','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'16','Machakos','3','Machakos','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'17','Makueni','3','Makueni','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'18','Nyandarua','1','Nyandarua','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'19','Nyeri','1','Nyeri','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'20','Kirinyaga','1','Kirinyaga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'21','Murang\'a','1','Murang\'a','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'22','Kiambu','1','Kiambu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'23','Turkana','7','Turkana','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'24','West Pokot','7','West Pokot','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'25','Samburu','7','Samburu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'26','Trans-Nzoia','7','Trans-Nzoia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'27','Uasin Gishu','7','Uasin Gishu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'28','Elgeyo-Marakwet','7','Elgeyo-Marakwet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'29','Nandi','7','Nandi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'30','Baringo','7','Baringo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'31','Laikipia','7','Laikipia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'32','Nakuru','7','Nakuru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'33','Narok','7','Narok','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'34','Kajiado','7','Kajiado','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'35','Kericho','7','Kericho','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'36','Bomet','7','Bomet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'37','Kakamega','8','Kakamega','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'38','Vihiga','8','Vihiga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'39','Bungoma','8','Bungoma','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'40','Busia','8','Busia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'41','Siaya','6','Siaya','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'42','Kisumu','6','Kisumu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'43','Homa Bay','6','Homa Bay','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,'44','Migori','6','Migori','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'45','Kisii','6','Kisii','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'46','Nyamira','6','Nyamira','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'47','Nairobi','4','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `county` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currency` -- DROP TABLE IF EXISTS `currency`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `currency` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(20) NOT NULL DEFAULT 1, `basecurrency` varchar(30) NOT NULL, `baseamount` varchar(30) NOT NULL, `tocurrency` varchar(30) NOT NULL, `toamount` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `currency` -- LOCK TABLES `currency` WRITE; /*!40000 ALTER TABLE `currency` DISABLE KEYS */; INSERT INTO `currency` VALUES (1,'USD','','2023-06-20 04:44:59','active','1','','1',1,'KES','1','','140'),(2,'AUD','','2023-06-20 04:45:39','active','1','','1',1,'KES','1','','95.961 '),(3,'EUR','','2023-06-20 04:46:31','active','1','','1',1,'KES','1','','153.052 '); /*!40000 ALTER TABLE `currency` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customedproductcategory` -- DROP TABLE IF EXISTS `customedproductcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customedproductcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customedproductcategory` -- LOCK TABLES `customedproductcategory` WRITE; /*!40000 ALTER TABLE `customedproductcategory` DISABLE KEYS */; INSERT INTO `customedproductcategory` VALUES (1,'HOTEL','','2023-05-30 15:18:11','active','1','','1','1','0','','Percentage',NULL); /*!40000 ALTER TABLE `customedproductcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer` -- DROP TABLE IF EXISTS `customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `surname` varchar(50) NOT NULL, `username` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `business` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `createddate` varchar(50) NOT NULL, `password` varchar(30) NOT NULL, `website` varchar(100) NOT NULL, `dob` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `box` varchar(50) NOT NULL, `source` varchar(50) DEFAULT NULL, `town` varchar(50) NOT NULL, `country` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `apiaccount_id` varchar(30) NOT NULL DEFAULT '1', `recoverpassword` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `companyid` int(10) NOT NULL DEFAULT 1, `service` text NOT NULL, `usertype` varchar(50) DEFAULT NULL, `smstype` int(10) NOT NULL DEFAULT 2, `refer` text NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer` -- LOCK TABLES `customer` WRITE; /*!40000 ALTER TABLE `customer` DISABLE KEYS */; /*!40000 ALTER TABLE `customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customerfiscalyear` -- DROP TABLE IF EXISTS `customerfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customerfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `category` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customerfiscalyear` -- LOCK TABLES `customerfiscalyear` WRITE; /*!40000 ALTER TABLE `customerfiscalyear` DISABLE KEYS */; INSERT INTO `customerfiscalyear` VALUES (1,'','active','2022-00-00 00:00:00','2021-00-00 00:00:00',1,1,'\r\n<div style=\"border:1px solid',3333.00,44444.00,0,'1',0,'member'); /*!40000 ALTER TABLE `customerfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customersupplierbalance` -- DROP TABLE IF EXISTS `customersupplierbalance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customersupplierbalance` ( `id` int(40) NOT NULL AUTO_INCREMENT, `description` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `customerid` int(11) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customersupplierbalance` -- LOCK TABLES `customersupplierbalance` WRITE; /*!40000 ALTER TABLE `customersupplierbalance` DISABLE KEYS */; /*!40000 ALTER TABLE `customersupplierbalance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycharges` -- DROP TABLE IF EXISTS `dailycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycharges` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, `transactioncode` varchar(50) NOT NULL, `name` varchar(20) NOT NULL, `chargeid` varchar(20) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `cost` varchar(20) NOT NULL, `createdat` varchar(30) NOT NULL, `discountedtotal` varchar(20) DEFAULT NULL, `idno` varchar(20) DEFAULT NULL, `phone` varchar(50) DEFAULT NULL, `checkin` varchar(30) DEFAULT NULL, `checkout` varchar(30) DEFAULT NULL, `roomtype` varchar(20) DEFAULT NULL, `bedid` varchar(20) DEFAULT NULL, `bedname` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycharges` -- LOCK TABLES `dailycharges` WRITE; /*!40000 ALTER TABLE `dailycharges` DISABLE KEYS */; /*!40000 ALTER TABLE `dailycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycollections` -- DROP TABLE IF EXISTS `dailycollections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycollections` ( `id` int(40) NOT NULL AUTO_INCREMENT, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `name` varchar(30) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `controller` varchar(30) NOT NULL, `expense` varchar(30) NOT NULL, `cash` varchar(30) NOT NULL, `discount` varchar(30) NOT NULL, `entrydate` varchar(30) NOT NULL, `contact` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `tax` decimal(10,2) NOT NULL, `sort` decimal(10,2) NOT NULL, `sortmoney` decimal(10,2) NOT NULL, `transactiondate` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `openingbalance` decimal(10,2) NOT NULL, `closingbalance` decimal(10,2) NOT NULL, `cashcollected` decimal(10,2) NOT NULL, `totalsales` decimal(10,2) NOT NULL, `debt` decimal(10,0) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycollections` -- LOCK TABLES `dailycollections` WRITE; /*!40000 ALTER TABLE `dailycollections` DISABLE KEYS */; INSERT INTO `dailycollections` VALUES (1,'','','1','2023-05-10 15:40:36','','1','','Admin','','',' 0','0','110','0','0','0','rrrr','','0','','2023-05-09 23:59:00','','','active',0.00,0.00,0.00,'',1,0.00,300.00,0.00,0.00,0); /*!40000 ALTER TABLE `dailycollections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailytasks` -- DROP TABLE IF EXISTS `dailytasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailytasks` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `achieved` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `exactdate` varchar(30) NOT NULL, `day` varchar(20) NOT NULL, `comment` text NOT NULL, `updatedby` int(11) NOT NULL, `mykey` varchar(50) NOT NULL, `approval` varchar(20) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailytasks` -- LOCK TABLES `dailytasks` WRITE; /*!40000 ALTER TABLE `dailytasks` DISABLE KEYS */; /*!40000 ALTER TABLE `dailytasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `damages` -- DROP TABLE IF EXISTS `damages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `damages` ( `id` int(10) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `datedamaged` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(5) DEFAULT 1, `invoice` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `damages` -- LOCK TABLES `damages` WRITE; /*!40000 ALTER TABLE `damages` DISABLE KEYS */; /*!40000 ALTER TABLE `damages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deals` -- DROP TABLE IF EXISTS `deals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `deals` ( `id` int(50) NOT NULL AUTO_INCREMENT, `owner` varchar(100) NOT NULL, `title` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `nextstep` text NOT NULL, `contactname` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `fromdate` datetime NOT NULL, `todate` datetime NOT NULL, `probability` varchar(100) NOT NULL, `expectedrevenue` varchar(100) NOT NULL, `stage` varchar(100) NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', `comments` text NOT NULL, `userid` varchar(100) NOT NULL, `dateposted` datetime NOT NULL, `companyid` varchar(100) NOT NULL, `allsteps` text NOT NULL, `dealowner` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deals` -- LOCK TABLES `deals` WRITE; /*!40000 ALTER TABLE `deals` DISABLE KEYS */; /*!40000 ALTER TABLE `deals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dealsfeedback` -- DROP TABLE IF EXISTS `dealsfeedback`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dealsfeedback` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dealsfeedback` -- LOCK TABLES `dealsfeedback` WRITE; /*!40000 ALTER TABLE `dealsfeedback` DISABLE KEYS */; /*!40000 ALTER TABLE `dealsfeedback` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `debitcredit` -- DROP TABLE IF EXISTS `debitcredit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `debitcredit` ( `id` int(30) NOT NULL AUTO_INCREMENT, `account` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `crateddate` datetime NOT NULL, `debit` decimal(10,2) DEFAULT NULL, `credit` decimal(10,2) DEFAULT NULL, `balance` varchar(20) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `description` text NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `confirm` varchar(30) NOT NULL DEFAULT 'No', `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `transactioncode` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34587 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `debitcredit` -- LOCK TABLES `debitcredit` WRITE; /*!40000 ALTER TABLE `debitcredit` DISABLE KEYS */; INSERT INTO `debitcredit` VALUES (1,'1110','161656685955','2022-07-01 17:33:39',NULL,2433.00,'','16','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(2,'1110','161656685955','2022-07-01 17:33:39',NULL,2000.00,'','16','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(3,'1110','161656685955','2022-07-01 17:33:39',NULL,1916.00,'','16','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(4,'1110','161656685955','2022-07-01 17:33:39',NULL,2070.00,'','16','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(5,'5500','161656685955','2022-07-01 17:33:39',8419.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6,'1000','161656685955','2022-07-01 17:33:39',11400.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7,'4000','161656685955','2022-07-01 17:33:39',NULL,3300.00,'','16','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(8,'4000','161656685955','2022-07-01 17:33:39',NULL,2700.00,'','16','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(9,'4000','161656685955','2022-07-01 17:33:39',NULL,2600.00,'','16','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(10,'4000','161656685955','2022-07-01 17:33:39',NULL,2800.00,'','16','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(11,'1110','161656688456','2022-07-01 18:18:28',NULL,150.45,'','16','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12,'5500','161656688456','2022-07-01 18:18:28',150.45,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13,'1000','161656688456','2022-07-01 18:18:28',200.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14,'4000','161656688456','2022-07-01 18:18:28',NULL,200.00,'','16','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15,'1110','121656693922','2022-07-01 19:45:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16,'5500','121656693922','2022-07-01 19:45:41',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17,'1000','121656693922','2022-07-01 19:45:41',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18,'4000','121656693922','2022-07-01 19:45:41',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19,'1110','161656763707','2022-07-02 15:09:43',NULL,44.58,'','16','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(20,'1110','161656763707','2022-07-02 15:09:43',NULL,182.00,'','16','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21,'5500','161656763707','2022-07-02 15:09:43',226.58,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22,'1000','161656763707','2022-07-02 15:09:43',310.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23,'4000','161656763707','2022-07-02 15:09:43',NULL,60.00,'','16','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24,'4000','161656763707','2022-07-02 15:09:43',NULL,250.00,'','16','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(25,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(26,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(27,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(28,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(29,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(30,'1110','161656764026','2022-07-02 15:15:45',NULL,172.83,'','16','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(31,'5500','161656764026','2022-07-02 15:15:45',1037.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32,'1000','161656764026','2022-07-02 15:15:45',1320.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(34,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(35,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(36,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(37,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(38,'4000','161656764026','2022-07-02 15:15:45',NULL,220.00,'','16','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(39,'1110','161656775792','2022-07-02 20:08:04',NULL,2760.00,'','16','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(40,'1110','161656775792','2022-07-02 20:08:04',NULL,150.45,'','16','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(41,'1110','161656775792','2022-07-02 20:08:04',NULL,174.00,'','16','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(42,'1110','161656775792','2022-07-02 20:08:04',NULL,2433.00,'','16','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(43,'1110','161656775792','2022-07-02 20:08:04',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(44,'1110','161656775792','2022-07-02 20:08:04',NULL,174.00,'','16','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(45,'1110','161656775792','2022-07-02 20:08:04',NULL,150.45,'','16','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(46,'1110','161656775792','2022-07-02 20:08:04',NULL,201.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(47,'5500','161656775792','2022-07-02 20:08:04',6117.48,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(48,'1000','161656775792','2022-07-02 20:08:04',8200.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(49,'4000','161656775792','2022-07-02 20:08:04',NULL,3750.00,'','16','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(50,'4000','161656775792','2022-07-02 20:08:04',NULL,200.00,'','16','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(51,'4000','161656775792','2022-07-02 20:08:04',NULL,200.00,'','16','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(52,'4000','161656775792','2022-07-02 20:08:04',NULL,3300.00,'','16','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(53,'4000','161656775792','2022-07-02 20:08:04',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(54,'4000','161656775792','2022-07-02 20:08:04',NULL,200.00,'','16','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(55,'4000','161656775792','2022-07-02 20:08:04',NULL,200.00,'','16','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(56,'4000','161656775792','2022-07-02 20:08:04',NULL,250.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(57,'1110','161656782055','2022-07-02 20:14:34',NULL,2000.00,'','16','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(58,'1110','161656782055','2022-07-02 20:14:34',NULL,3164.00,'','16','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(59,'5500','161656782055','2022-07-02 20:14:34',5164.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(60,'1000','161656782055','2022-07-02 20:14:34',7000.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(61,'4000','161656782055','2022-07-02 20:14:34',NULL,2700.00,'','16','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(62,'4000','161656782055','2022-07-02 20:14:34',NULL,4300.00,'','16','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(63,'1110','161656786931','2022-07-02 22:47:59',NULL,1206.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(64,'1110','161656786931','2022-07-02 22:47:59',NULL,396.90,'','16','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(65,'1110','161656786931','2022-07-02 22:47:59',NULL,300.90,'','16','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(66,'1110','161656786931','2022-07-02 22:47:59',NULL,147.00,'','16','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(67,'1110','161656786931','2022-07-02 22:47:59',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(68,'5500','161656786931','2022-07-02 22:47:59',2125.38,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(69,'1000','161656786931','2022-07-02 22:47:59',2640.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(70,'4000','161656786931','2022-07-02 22:47:59',NULL,1500.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(71,'4000','161656786931','2022-07-02 22:47:59',NULL,440.00,'','16','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(72,'4000','161656786931','2022-07-02 22:47:59',NULL,400.00,'','16','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(73,'4000','161656786931','2022-07-02 22:47:59',NULL,200.00,'','16','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(74,'4000','161656786931','2022-07-02 22:47:59',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(75,'1110','161656791320','2022-07-02 22:51:26',NULL,147.00,'','16','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(76,'5500','161656791320','2022-07-02 22:51:26',147.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(77,'1000','161656791320','2022-07-02 22:51:26',200.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(78,'4000','161656791320','2022-07-02 22:51:26',NULL,200.00,'','16','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(79,'1110','161656792234','2022-07-02 23:10:17',NULL,1125.00,'','16','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(80,'5500','161656792234','2022-07-02 23:10:17',1125.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(81,'1000','161656792234','2022-07-02 23:10:17',1500.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(82,'4000','161656792234','2022-07-02 23:10:17',NULL,1500.00,'','16','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(83,'1110','161656792725','2022-07-02 23:16:27',NULL,189.75,'','16','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(84,'5500','161656792725','2022-07-02 23:16:27',189.75,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(85,'1000','161656792725','2022-07-02 23:16:27',220.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(86,'4000','161656792725','2022-07-02 23:16:27',NULL,220.00,'','16','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(87,'1110','161656792995','2022-07-02 23:47:51',NULL,201.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(88,'5500','161656792995','2022-07-02 23:47:51',201.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(89,'1000','161656792995','2022-07-02 23:47:51',250.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(90,'4000','161656792995','2022-07-02 23:47:51',NULL,250.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(91,'1110','161656794902','2022-07-02 23:50:57',NULL,147.00,'','16','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(92,'1110','161656794902','2022-07-02 23:50:57',NULL,1257.93,'','16','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(93,'5500','161656794902','2022-07-02 23:50:57',1404.93,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(94,'1000','161656794902','2022-07-02 23:50:57',1900.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(95,'4000','161656794902','2022-07-02 23:50:57',NULL,200.00,'','16','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(96,'4000','161656794902','2022-07-02 23:50:57',NULL,1700.00,'','16','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(97,'1110','161656795104','2022-07-03 00:07:11',NULL,571.13,'','16','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(98,'5500','161656795104','2022-07-03 00:07:11',571.13,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(99,'1000','161656795104','2022-07-03 00:07:11',660.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(100,'4000','161656795104','2022-07-03 00:07:11',NULL,660.00,'','16','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(101,'1110','161656796213','2022-07-03 00:20:38',NULL,2433.00,'','16','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(102,'1110','161656796213','2022-07-03 00:20:38',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(103,'1110','161656796213','2022-07-03 00:20:38',NULL,201.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(104,'1110','161656796213','2022-07-03 00:20:38',NULL,3164.00,'','16','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(105,'1110','161656796213','2022-07-03 00:20:38',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(106,'5500','161656796213','2022-07-03 00:20:38',5947.16,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(107,'1000','161656796213','2022-07-03 00:20:38',8050.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(108,'4000','161656796213','2022-07-03 00:20:38',NULL,3300.00,'','16','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(109,'4000','161656796213','2022-07-03 00:20:38',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(110,'4000','161656796213','2022-07-03 00:20:38',NULL,250.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(111,'4000','161656796213','2022-07-03 00:20:38',NULL,4300.00,'','16','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(112,'4000','161656796213','2022-07-03 00:20:38',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(113,'1110','161656797926','2022-07-03 00:44:58',NULL,172.75,'','16','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(114,'1110','161656797926','2022-07-03 00:44:58',NULL,345.50,'','16','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(115,'1110','161656797926','2022-07-03 00:44:58',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(116,'5500','161656797926','2022-07-03 00:44:58',592.83,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(117,'1000','161656797926','2022-07-03 00:44:58',700.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(118,'4000','161656797926','2022-07-03 00:44:58',NULL,200.00,'','16','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(119,'4000','161656797926','2022-07-03 00:44:58',NULL,400.00,'','16','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(120,'4000','161656797926','2022-07-03 00:44:58',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(121,'1110','161656798392','2022-07-03 01:06:15',NULL,4520.00,'','16','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(122,'1110','161656798392','2022-07-03 01:06:15',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(123,'1110','161656798392','2022-07-03 01:06:15',NULL,804.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(124,'1110','161656798392','2022-07-03 01:06:15',NULL,396.90,'','16','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(125,'1110','161656798392','2022-07-03 01:06:15',NULL,191.50,'','16','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(126,'1110','161656798392','2022-07-03 01:06:15',NULL,53.33,'','16','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(127,'1110','161656798392','2022-07-03 01:06:15',NULL,1190.70,'','16','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(128,'1110','161656798392','2022-07-03 01:06:15',NULL,74.58,'','16','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(129,'1110','161656798392','2022-07-03 01:06:15',NULL,53.33,'','16','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(130,'5500','161656798392','2022-07-03 01:06:15',7358.92,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(131,'1000','161656798392','2022-07-03 01:06:15',9340.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(132,'4000','161656798392','2022-07-03 01:06:15',NULL,6000.00,'','16','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(133,'4000','161656798392','2022-07-03 01:06:15',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(134,'4000','161656798392','2022-07-03 01:06:15',NULL,1000.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(135,'4000','161656798392','2022-07-03 01:06:15',NULL,440.00,'','16','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(136,'4000','161656798392','2022-07-03 01:06:15',NULL,240.00,'','16','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(137,'4000','161656798392','2022-07-03 01:06:15',NULL,70.00,'','16','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(138,'4000','161656798392','2022-07-03 01:06:15',NULL,1320.00,'','16','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(139,'4000','161656798392','2022-07-03 01:06:15',NULL,100.00,'','16','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(140,'4000','161656798392','2022-07-03 01:06:15',NULL,70.00,'','16','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(141,'1110','161656799583','2022-07-03 01:07:05',NULL,522.00,'','16','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(142,'1110','161656799583','2022-07-03 01:07:05',NULL,348.00,'','16','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(143,'5500','161656799583','2022-07-03 01:07:05',870.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(144,'1000','161656799583','2022-07-03 01:07:05',1000.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(145,'4000','161656799583','2022-07-03 01:07:05',NULL,600.00,'','16','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(146,'4000','161656799583','2022-07-03 01:07:05',NULL,400.00,'','16','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(147,'1110','161656799663','2022-07-03 01:57:16',NULL,201.00,'','16','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(148,'1110','161656799663','2022-07-03 01:57:16',NULL,999.00,'','16','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(149,'5500','161656799663','2022-07-03 01:57:16',1200.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(150,'1000','161656799663','2022-07-03 01:57:16',1600.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(151,'4000','161656799663','2022-07-03 01:57:16',NULL,250.00,'','16','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(152,'4000','161656799663','2022-07-03 01:57:16',NULL,1350.00,'','16','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(153,'1110','161656803662','2022-07-03 02:15:21',NULL,189.75,'','16','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(154,'1110','161656803662','2022-07-03 02:15:21',NULL,189.75,'','16','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(155,'5500','161656803662','2022-07-03 02:15:21',379.50,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(156,'1000','161656803662','2022-07-03 02:15:21',440.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(157,'4000','161656803662','2022-07-03 02:15:21',NULL,220.00,'','16','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(158,'4000','161656803662','2022-07-03 02:15:21',NULL,220.00,'','16','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(159,'1110','121656847960','2022-07-03 14:40:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(160,'1110','121656847960','2022-07-03 14:40:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(161,'1110','121656847960','2022-07-03 14:40:11',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(162,'5500','121656847960','2022-07-03 14:40:11',614.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(163,'1000','121656847960','2022-07-03 14:40:11',860.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(164,'4000','121656847960','2022-07-03 14:40:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(165,'4000','121656847960','2022-07-03 14:40:11',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(166,'4000','121656847960','2022-07-03 14:40:11',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(167,'1110','121656852074','2022-07-03 15:41:37',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(168,'1110','121656852074','2022-07-03 15:41:37',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(169,'5500','121656852074','2022-07-03 15:41:37',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(170,'1000','121656852074','2022-07-03 15:41:37',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(171,'4000','121656852074','2022-07-03 15:41:37',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(172,'4000','121656852074','2022-07-03 15:41:37',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(173,'1110','121656854684','2022-07-03 17:06:06',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(174,'1110','121656854684','2022-07-03 17:06:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(175,'1110','121656854684','2022-07-03 17:06:06',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(176,'5500','121656854684','2022-07-03 17:06:06',295.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(177,'1000','121656854684','2022-07-03 17:06:06',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(178,'4000','121656854684','2022-07-03 17:06:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(179,'4000','121656854684','2022-07-03 17:06:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(180,'4000','121656854684','2022-07-03 17:06:06',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(181,'1110','121656861624','2022-07-03 19:10:52',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(182,'5500','121656861624','2022-07-03 19:10:52',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(183,'1000','121656861624','2022-07-03 19:10:52',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(184,'4000','121656861624','2022-07-03 19:10:52',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(185,'1110','121656864695','2022-07-03 19:12:55',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(186,'5500','121656864695','2022-07-03 19:12:55',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(187,'1000','121656864695','2022-07-03 19:12:55',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(188,'4000','121656864695','2022-07-03 19:12:55',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(189,'1110','121656871310','2022-07-03 21:03:18',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(190,'1110','121656871310','2022-07-03 21:03:18',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(191,'5500','121656871310','2022-07-03 21:03:18',391.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(192,'1000','121656871310','2022-07-03 21:03:18',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(193,'4000','121656871310','2022-07-03 21:03:18',NULL,220.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(194,'4000','121656871310','2022-07-03 21:03:18',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(195,'1110','121656871455','2022-07-03 21:04:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(196,'1110','121656871455','2022-07-03 21:04:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(197,'5500','121656871455','2022-07-03 21:04:43',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(198,'1000','121656871455','2022-07-03 21:04:43',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(199,'4000','121656871455','2022-07-03 21:04:43',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(200,'4000','121656871455','2022-07-03 21:04:43',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(201,'1110','121656871551','2022-07-03 21:14:09',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(202,'1110','121656871551','2022-07-03 21:14:09',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(203,'5500','121656871551','2022-07-03 21:14:09',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(204,'1000','121656871551','2022-07-03 21:14:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(205,'4000','121656871551','2022-07-03 21:14:09',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(206,'4000','121656871551','2022-07-03 21:14:09',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(207,'1110','121656872061','2022-07-03 21:20:02',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(208,'5500','121656872061','2022-07-03 21:20:02',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(209,'1000','121656872061','2022-07-03 21:20:02',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(210,'4000','121656872061','2022-07-03 21:20:02',NULL,220.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(211,'1110','121656873851','2022-07-03 21:58:13',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(212,'1110','121656873851','2022-07-03 21:58:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(213,'1110','121656873851','2022-07-03 21:58:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(214,'1110','121656873851','2022-07-03 21:58:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(215,'5500','121656873851','2022-07-03 21:58:13',1301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(216,'1000','121656873851','2022-07-03 21:58:13',1810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(217,'4000','121656873851','2022-07-03 21:58:13',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(218,'4000','121656873851','2022-07-03 21:58:13',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(219,'4000','121656873851','2022-07-03 21:58:13',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(220,'4000','121656873851','2022-07-03 21:58:13',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(221,'1110','121656874712','2022-07-03 23:25:06',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(222,'1110','121656874712','2022-07-03 23:25:06',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(223,'1110','121656874712','2022-07-03 23:25:06',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(224,'1110','121656874712','2022-07-03 23:25:06',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(225,'1110','121656874712','2022-07-03 23:25:06',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(226,'1110','121656874712','2022-07-03 23:25:06',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(227,'5500','121656874712','2022-07-03 23:25:06',2384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(228,'1000','121656874712','2022-07-03 23:25:06',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(229,'4000','121656874712','2022-07-03 23:25:06',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(230,'4000','121656874712','2022-07-03 23:25:06',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(231,'4000','121656874712','2022-07-03 23:25:06',NULL,1100.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(232,'4000','121656874712','2022-07-03 23:25:06',NULL,1100.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(233,'4000','121656874712','2022-07-03 23:25:06',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(234,'4000','121656874712','2022-07-03 23:25:06',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(235,'1110','121656879930','2022-07-03 23:25:39',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(236,'5500','121656879930','2022-07-03 23:25:39',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(237,'1000','121656879930','2022-07-03 23:25:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(238,'4000','121656879930','2022-07-03 23:25:39',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(239,'1110','121656943954','2022-07-04 17:12:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(240,'5500','121656943954','2022-07-04 17:12:58',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(241,'1000','121656943954','2022-07-04 17:12:58',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(242,'4000','121656943954','2022-07-04 17:12:58',NULL,220.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(243,'1110','121656950636','2022-07-04 19:17:35',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(244,'1110','121656950636','2022-07-04 19:17:35',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(245,'1110','121656950636','2022-07-04 19:17:35',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(246,'1110','121656950636','2022-07-04 19:17:35',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(247,'5500','121656950636','2022-07-04 19:17:35',3502.44,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(248,'1000','121656950636','2022-07-04 19:17:35',4470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(249,'4000','121656950636','2022-07-04 19:17:35',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(250,'4000','121656950636','2022-07-04 19:17:35',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(251,'4000','121656950636','2022-07-04 19:17:35',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(252,'4000','121656950636','2022-07-04 19:17:35',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(253,'1110','121656951479','2022-07-04 19:44:07',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(254,'5500','121656951479','2022-07-04 19:44:07',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(255,'1000','121656951479','2022-07-04 19:44:07',250.00,NULL,'','12','1','Good sold','1','','sales','','','No',NULL,NULL,''),(256,'4000','121656951479','2022-07-04 19:44:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(257,'1110','121656959016','2022-07-04 21:30:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(258,'1110','121656959016','2022-07-04 21:30:54',NULL,13000.00,'','12','1','Inventory sold','1','','sales','3245990987611','','No',NULL,NULL,''),(259,'1110','121656959016','2022-07-04 21:30:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(260,'1110','121656959016','2022-07-04 21:30:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(261,'1110','121656959016','2022-07-04 21:30:54',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(262,'1110','121656959016','2022-07-04 21:30:54',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(263,'1110','121656959016','2022-07-04 21:30:54',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(264,'5500','121656959016','2022-07-04 21:30:54',13390.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(265,'1000','121656959016','2022-07-04 21:30:54',18030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(266,'4000','121656959016','2022-07-04 21:30:54',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(267,'4000','121656959016','2022-07-04 21:30:54',NULL,17500.00,'','12','1','Good sold','1','','sales','3245990987611','','No',NULL,NULL,''),(268,'4000','121656959016','2022-07-04 21:30:54',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(269,'4000','121656959016','2022-07-04 21:30:54',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(270,'4000','121656959016','2022-07-04 21:30:54',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(271,'4000','121656959016','2022-07-04 21:30:54',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(272,'4000','121656959016','2022-07-04 21:30:54',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(273,'1110','121656959547','2022-07-04 21:51:06',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(274,'5500','121656959547','2022-07-04 21:51:06',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(275,'1000','121656959547','2022-07-04 21:51:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(276,'4000','121656959547','2022-07-04 21:51:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(277,'1110','121656960679','2022-07-04 22:07:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(278,'5500','121656960679','2022-07-04 22:07:21',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(279,'1000','121656960679','2022-07-04 22:07:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(280,'4000','121656960679','2022-07-04 22:07:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(281,'1110','121656961654','2022-07-04 22:50:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(282,'5500','121656961654','2022-07-04 22:50:52',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(283,'1000','121656961654','2022-07-04 22:50:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(284,'4000','121656961654','2022-07-04 22:50:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(285,'1110','121656964256','2022-07-04 23:48:49',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(286,'1110','121656964256','2022-07-04 23:48:49',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(287,'5500','121656964256','2022-07-04 23:48:49',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(288,'1000','121656964256','2022-07-04 23:48:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(289,'4000','121656964256','2022-07-04 23:48:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(290,'4000','121656964256','2022-07-04 23:48:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(291,'1110','121656967735','2022-07-05 01:33:17',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(292,'1110','121656967735','2022-07-05 01:33:17',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(293,'1110','121656967735','2022-07-05 01:33:17',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(294,'1110','121656967735','2022-07-05 01:33:17',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(295,'5500','121656967735','2022-07-05 01:33:17',2065.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(296,'1000','121656967735','2022-07-05 01:33:17',2650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(297,'4000','121656967735','2022-07-05 01:33:17',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(298,'4000','121656967735','2022-07-05 01:33:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(299,'4000','121656967735','2022-07-05 01:33:17',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(300,'4000','121656967735','2022-07-05 01:33:17',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(301,'1110','121656974011','2022-07-05 01:35:01',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(302,'5500','121656974011','2022-07-05 01:35:01',910.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(303,'1000','121656974011','2022-07-05 01:35:01',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(304,'4000','121656974011','2022-07-05 01:35:01',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(305,'1110','121656974114','2022-07-05 01:36:22',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(306,'1110','121656974114','2022-07-05 01:36:22',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(307,'1110','121656974114','2022-07-05 01:36:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(308,'5500','121656974114','2022-07-05 01:36:22',1194.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(309,'1000','121656974114','2022-07-05 01:36:22',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(310,'4000','121656974114','2022-07-05 01:36:22',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(311,'4000','121656974114','2022-07-05 01:36:22',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(312,'4000','121656974114','2022-07-05 01:36:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(313,'1110','121656975350','2022-07-05 01:56:10',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(314,'5500','121656975350','2022-07-05 01:56:10',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(315,'1000','121656975350','2022-07-05 01:56:10',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(316,'4000','121656975350','2022-07-05 01:56:10',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(317,'1110','121656975374','2022-07-05 02:07:50',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(318,'5500','121656975374','2022-07-05 02:07:50',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(319,'1000','121656975374','2022-07-05 02:07:50',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(320,'4000','121656975374','2022-07-05 02:07:50',NULL,750.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(321,'1110','121657022898','2022-07-05 15:38:39',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(322,'1110','121657022898','2022-07-05 15:38:39',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(323,'1110','121657022898','2022-07-05 15:38:39',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(324,'5500','121657022898','2022-07-05 15:38:39',1077.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(325,'1000','121657022898','2022-07-05 15:38:39',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(326,'4000','121657022898','2022-07-05 15:38:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(327,'4000','121657022898','2022-07-05 15:38:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(328,'4000','121657022898','2022-07-05 15:38:39',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(329,'1110','121657024751','2022-07-05 17:04:21',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(330,'1110','121657024751','2022-07-05 17:04:21',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(331,'5500','121657024751','2022-07-05 17:04:21',748.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(332,'1000','121657024751','2022-07-05 17:04:21',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(333,'4000','121657024751','2022-07-05 17:04:21',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(334,'4000','121657024751','2022-07-05 17:04:21',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(335,'1110','121657029866','2022-07-05 19:02:23',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(336,'1110','121657029866','2022-07-05 19:02:23',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(337,'5500','121657029866','2022-07-05 19:02:23',1199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(338,'1000','121657029866','2022-07-05 19:02:23',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(339,'4000','121657029866','2022-07-05 19:02:23',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(340,'4000','121657029866','2022-07-05 19:02:23',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(341,'1110','121657037086','2022-07-05 20:46:09',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(342,'1110','121657037086','2022-07-05 20:46:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(343,'1110','121657037086','2022-07-05 20:46:09',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(344,'1110','121657037086','2022-07-05 20:46:09',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(345,'1110','121657037086','2022-07-05 20:46:09',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(346,'5500','121657037086','2022-07-05 20:46:09',1717.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(347,'1000','121657037086','2022-07-05 20:46:09',2310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(348,'4000','121657037086','2022-07-05 20:46:09',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(349,'4000','121657037086','2022-07-05 20:46:09',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(350,'4000','121657037086','2022-07-05 20:46:09',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(351,'4000','121657037086','2022-07-05 20:46:09',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(352,'4000','121657037086','2022-07-05 20:46:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(353,'1110','121657043403','2022-07-05 20:52:44',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(354,'5500','121657043403','2022-07-05 20:52:44',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(355,'1000','121657043403','2022-07-05 20:52:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(356,'4000','121657043403','2022-07-05 20:52:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(357,'1110','121657043569','2022-07-05 20:55:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(358,'1110','121657043569','2022-07-05 20:55:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(359,'1110','121657043569','2022-07-05 20:55:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(360,'1110','121657043569','2022-07-05 20:55:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(361,'1110','121657043569','2022-07-05 20:55:33',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(362,'1110','121657043569','2022-07-05 20:55:33',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(363,'1110','121657043569','2022-07-05 20:55:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(364,'1110','121657043569','2022-07-05 20:55:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(365,'1110','121657043569','2022-07-05 20:55:33',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(366,'5500','121657043569','2022-07-05 20:55:33',2108.59,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(367,'1000','121657043569','2022-07-05 20:55:33',3090.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(368,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(369,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(370,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(371,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(372,'4000','121657043569','2022-07-05 20:55:33',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(373,'4000','121657043569','2022-07-05 20:55:33',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(374,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(375,'4000','121657043569','2022-07-05 20:55:33',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(376,'4000','121657043569','2022-07-05 20:55:33',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(377,'1110','121657043741','2022-07-05 20:56:19',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(378,'5500','121657043741','2022-07-05 20:56:19',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(379,'1000','121657043741','2022-07-05 20:56:19',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(380,'4000','121657043741','2022-07-05 20:56:19',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(381,'1110','121657043784','2022-07-05 21:00:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(382,'5500','121657043784','2022-07-05 21:00:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(383,'1000','121657043784','2022-07-05 21:00:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(384,'4000','121657043784','2022-07-05 21:00:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(385,'1110','121657044047','2022-07-05 22:19:48',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(386,'5500','121657044047','2022-07-05 22:19:48',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(387,'1000','121657044047','2022-07-05 22:19:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(388,'4000','121657044047','2022-07-05 22:19:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(389,'1110','121657051904','2022-07-05 23:13:36',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(390,'1110','121657051904','2022-07-05 23:13:36',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(391,'1110','121657051904','2022-07-05 23:13:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(392,'5500','121657051904','2022-07-05 23:13:36',1285.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(393,'1000','121657051904','2022-07-05 23:13:36',1710.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(394,'4000','121657051904','2022-07-05 23:13:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(395,'4000','121657051904','2022-07-05 23:13:36',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(396,'4000','121657051904','2022-07-05 23:13:36',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(397,'1110','121657052376','2022-07-05 23:33:41',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(398,'1110','121657052376','2022-07-05 23:33:41',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(399,'5500','121657052376','2022-07-05 23:33:41',1745.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(400,'1000','121657052376','2022-07-05 23:33:41',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(401,'4000','121657052376','2022-07-05 23:33:41',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(402,'4000','121657052376','2022-07-05 23:33:41',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(403,'1110','121657053353','2022-07-05 23:40:22',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(404,'1110','121657053353','2022-07-05 23:40:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(405,'1110','121657053353','2022-07-05 23:40:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(406,'1110','121657053353','2022-07-05 23:40:22',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(407,'5500','121657053353','2022-07-05 23:40:22',955.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(408,'1000','121657053353','2022-07-05 23:40:22',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(409,'4000','121657053353','2022-07-05 23:40:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(410,'4000','121657053353','2022-07-05 23:40:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(411,'4000','121657053353','2022-07-05 23:40:22',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(412,'4000','121657053353','2022-07-05 23:40:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(413,'1110','121657053706','2022-07-06 00:03:57',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(414,'1110','121657053706','2022-07-06 00:03:57',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(415,'5500','121657053706','2022-07-06 00:03:57',752.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(416,'1000','121657053706','2022-07-06 00:03:57',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(417,'4000','121657053706','2022-07-06 00:03:57',NULL,600.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(418,'4000','121657053706','2022-07-06 00:03:57',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(419,'1110','121657056718','2022-07-06 00:38:22',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(420,'5500','121657056718','2022-07-06 00:38:22',794.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(421,'1000','121657056718','2022-07-06 00:38:22',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(422,'4000','121657056718','2022-07-06 00:38:22',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(423,'1110','121657122715','2022-07-06 18:52:09',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(424,'5500','121657122715','2022-07-06 18:52:09',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(425,'1000','121657122715','2022-07-06 18:52:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(426,'4000','121657122715','2022-07-06 18:52:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(427,'1110','121657122734','2022-07-06 19:39:25',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(428,'1110','121657122734','2022-07-06 19:39:25',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(429,'5500','121657122734','2022-07-06 19:39:25',784.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(430,'1000','121657122734','2022-07-06 19:39:25',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(431,'4000','121657122734','2022-07-06 19:39:25',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(432,'4000','121657122734','2022-07-06 19:39:25',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(433,'1110','121657125627','2022-07-06 20:24:00',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(434,'5500','121657125627','2022-07-06 20:24:00',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(435,'1000','121657125627','2022-07-06 20:24:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(436,'4000','121657125627','2022-07-06 20:24:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(437,'1110','121657128271','2022-07-06 20:41:40',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(438,'5500','121657128271','2022-07-06 20:41:40',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(439,'1000','121657128271','2022-07-06 20:41:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(440,'4000','121657128271','2022-07-06 20:41:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(441,'1110','121657129546','2022-07-06 21:19:26',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(442,'5500','121657129546','2022-07-06 21:19:26',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(443,'1000','121657129546','2022-07-06 21:19:26',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(444,'4000','121657129546','2022-07-06 21:19:26',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(445,'1110','121657131845','2022-07-06 21:49:20',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(446,'1110','121657131845','2022-07-06 21:49:20',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(447,'5500','121657131845','2022-07-06 21:49:20',210.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(448,'1000','121657131845','2022-07-06 21:49:20',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(449,'4000','121657131845','2022-07-06 21:49:20',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(450,'4000','121657131845','2022-07-06 21:49:20',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(451,'1110','121657133446','2022-07-06 22:20:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(452,'1110','121657133446','2022-07-06 22:20:22',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(453,'1110','121657133446','2022-07-06 22:20:22',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(454,'1110','121657133446','2022-07-06 22:20:22',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(455,'5500','121657133446','2022-07-06 22:20:22',742.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(456,'1000','121657133446','2022-07-06 22:20:22',970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(457,'4000','121657133446','2022-07-06 22:20:22',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(458,'4000','121657133446','2022-07-06 22:20:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(459,'4000','121657133446','2022-07-06 22:20:22',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(460,'4000','121657133446','2022-07-06 22:20:22',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(461,'1110','121657135326','2022-07-06 22:23:48',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(462,'1110','121657135326','2022-07-06 22:23:48',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(463,'5500','121657135326','2022-07-06 22:23:48',1222.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(464,'1000','121657135326','2022-07-06 22:23:48',1620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(465,'4000','121657135326','2022-07-06 22:23:48',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(466,'4000','121657135326','2022-07-06 22:23:48',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(467,'1110','121657135446','2022-07-06 23:15:41',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(468,'5500','121657135446','2022-07-06 23:15:41',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(469,'1000','121657135446','2022-07-06 23:15:41',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(470,'4000','121657135446','2022-07-06 23:15:41',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(471,'1110','121657138549','2022-07-06 23:40:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(472,'5500','121657138549','2022-07-06 23:40:02',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(473,'1000','121657138549','2022-07-06 23:40:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(474,'4000','121657138549','2022-07-06 23:40:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(475,'1110','121657140026','2022-07-06 23:42:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(476,'1110','121657140026','2022-07-06 23:42:57',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(477,'1110','121657140026','2022-07-06 23:42:57',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(478,'5500','121657140026','2022-07-06 23:42:57',163.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(479,'1000','121657140026','2022-07-06 23:42:57',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(480,'4000','121657140026','2022-07-06 23:42:57',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(481,'4000','121657140026','2022-07-06 23:42:57',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(482,'4000','121657140026','2022-07-06 23:42:57',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(483,'1110','121657140186','2022-07-06 23:53:55',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(484,'1110','121657140186','2022-07-06 23:53:55',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(485,'1110','121657140186','2022-07-06 23:53:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(486,'5500','121657140186','2022-07-06 23:53:55',750.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(487,'1000','121657140186','2022-07-06 23:53:55',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(488,'4000','121657140186','2022-07-06 23:53:55',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(489,'4000','121657140186','2022-07-06 23:53:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(490,'4000','121657140186','2022-07-06 23:53:55',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(491,'1110','121657140905','2022-07-06 23:59:07',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(492,'1110','121657140905','2022-07-06 23:59:07',NULL,2300.00,'','12','1','Inventory sold','1','','sales','6001452371506','','No',NULL,NULL,''),(493,'5500','121657140905','2022-07-06 23:59:07',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(494,'1000','121657140905','2022-07-06 23:59:07',4800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(495,'4000','121657140905','2022-07-06 23:59:07',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(496,'4000','121657140905','2022-07-06 23:59:07',NULL,3200.00,'','12','1','Good sold','1','','sales','6001452371506','','No',NULL,NULL,''),(497,'1110','121657141407','2022-07-07 00:32:42',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(498,'1110','121657141407','2022-07-07 00:32:42',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(499,'5500','121657141407','2022-07-07 00:32:42',360.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(500,'1000','121657141407','2022-07-07 00:32:42',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(501,'4000','121657141407','2022-07-07 00:32:42',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(502,'4000','121657141407','2022-07-07 00:32:42',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(503,'1110','161657199453','2022-07-07 16:10:57',NULL,710.00,'','16','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(504,'5500','161657199453','2022-07-07 16:10:57',710.00,NULL,'','16','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(505,'1000','161657199453','2022-07-07 16:10:57',950.00,NULL,'','16','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(506,'4000','161657199453','2022-07-07 16:10:57',NULL,950.00,'','16','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(507,'1110','121657217199','2022-07-07 21:07:04',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(508,'5500','121657217199','2022-07-07 21:07:04',710.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(509,'1000','121657217199','2022-07-07 21:07:04',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(510,'4000','121657217199','2022-07-07 21:07:04',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(511,'1110','121657218432','2022-07-07 22:04:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(512,'5500','121657218432','2022-07-07 22:04:39',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(513,'1000','121657218432','2022-07-07 22:04:39',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(514,'4000','121657218432','2022-07-07 22:04:39',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(515,'1110','121657220718','2022-07-07 22:06:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(516,'1110','121657220718','2022-07-07 22:06:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(517,'5500','121657220718','2022-07-07 22:06:05',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(518,'1000','121657220718','2022-07-07 22:06:05',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(519,'4000','121657220718','2022-07-07 22:06:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(520,'4000','121657220718','2022-07-07 22:06:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(521,'1110','121657224084','2022-07-07 23:03:45',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(522,'1110','121657224084','2022-07-07 23:03:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(523,'1110','121657224084','2022-07-07 23:03:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(524,'5500','121657224084','2022-07-07 23:03:45',982.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(525,'1000','121657224084','2022-07-07 23:03:45',1370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(526,'4000','121657224084','2022-07-07 23:03:45',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(527,'4000','121657224084','2022-07-07 23:03:45',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(528,'4000','121657224084','2022-07-07 23:03:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(529,'1110','121657224239','2022-07-07 23:06:24',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(530,'5500','121657224239','2022-07-07 23:06:24',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(531,'1000','121657224239','2022-07-07 23:06:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(532,'4000','121657224239','2022-07-07 23:06:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(533,'1110','121657226356','2022-07-07 23:39:26',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(534,'1110','121657226356','2022-07-07 23:39:26',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(535,'5500','121657226356','2022-07-07 23:39:26',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(536,'1000','121657226356','2022-07-07 23:39:26',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(537,'4000','121657226356','2022-07-07 23:39:26',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(538,'4000','121657226356','2022-07-07 23:39:26',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(539,'1110','121657226378','2022-07-08 00:41:19',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(540,'1110','121657226378','2022-07-08 00:41:19',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(541,'5500','121657226378','2022-07-08 00:41:19',1000.55,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(542,'1000','121657226378','2022-07-08 00:41:19',1380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(543,'4000','121657226378','2022-07-08 00:41:19',NULL,880.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(544,'4000','121657226378','2022-07-08 00:41:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(545,'1110','121657230665','2022-07-08 00:51:20',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(546,'5500','121657230665','2022-07-08 00:51:20',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(547,'1000','121657230665','2022-07-08 00:51:20',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(548,'4000','121657230665','2022-07-08 00:51:20',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(549,'1110','121657230688','2022-07-08 00:51:45',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(550,'5500','121657230688','2022-07-08 00:51:45',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(551,'1000','121657230688','2022-07-08 00:51:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(552,'4000','121657230688','2022-07-08 00:51:45',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(553,'1110','121657305716','2022-07-08 23:01:59',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(554,'5500','121657305716','2022-07-08 23:01:59',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(555,'1000','121657305716','2022-07-08 23:01:59',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(556,'4000','121657305716','2022-07-08 23:01:59',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(557,'1110','121657310550','2022-07-08 23:29:39',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(558,'1110','121657310550','2022-07-08 23:29:39',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(559,'5500','121657310550','2022-07-08 23:29:39',130.94,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(560,'1000','121657310550','2022-07-08 23:29:39',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(561,'4000','121657310550','2022-07-08 23:29:39',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(562,'4000','121657310550','2022-07-08 23:29:39',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(563,'1110','121657312257','2022-07-08 23:32:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(564,'1110','121657312257','2022-07-08 23:32:16',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(565,'5500','121657312257','2022-07-08 23:32:16',1330.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(566,'1000','121657312257','2022-07-08 23:32:16',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(567,'4000','121657312257','2022-07-08 23:32:16',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(568,'4000','121657312257','2022-07-08 23:32:16',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(569,'1110','121657314845','2022-07-09 00:14:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(570,'1110','121657314845','2022-07-09 00:14:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(571,'5500','121657314845','2022-07-09 00:14:32',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(572,'1000','121657314845','2022-07-09 00:14:32',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(573,'4000','121657314845','2022-07-09 00:14:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(574,'4000','121657314845','2022-07-09 00:14:32',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(575,'1110','121657314956','2022-07-09 00:22:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(576,'5500','121657314956','2022-07-09 00:22:16',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(577,'1000','121657314956','2022-07-09 00:22:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(578,'4000','121657314956','2022-07-09 00:22:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(579,'1110','121657315353','2022-07-09 00:24:38',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(580,'5500','121657315353','2022-07-09 00:24:38',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(581,'1000','121657315353','2022-07-09 00:24:38',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(582,'4000','121657315353','2022-07-09 00:24:38',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(583,'1110','121657316483','2022-07-09 00:57:47',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(584,'1110','121657316483','2022-07-09 00:57:47',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(585,'1110','121657316483','2022-07-09 00:57:47',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(586,'5500','121657316483','2022-07-09 00:57:47',678.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(587,'1000','121657316483','2022-07-09 00:57:47',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(588,'4000','121657316483','2022-07-09 00:57:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(589,'4000','121657316483','2022-07-09 00:57:47',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(590,'4000','121657316483','2022-07-09 00:57:47',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(591,'1110','121657369632','2022-07-09 17:23:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(592,'5500','121657369632','2022-07-09 17:23:45',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(593,'1000','121657369632','2022-07-09 17:23:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(594,'4000','121657369632','2022-07-09 17:23:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(595,'1110','121657376628','2022-07-09 17:35:04',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(596,'5500','121657376628','2022-07-09 17:35:04',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(597,'1000','121657376628','2022-07-09 17:35:04',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(598,'4000','121657376628','2022-07-09 17:35:04',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(599,'1110','121657383910','2022-07-09 21:05:25',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(600,'1110','121657383910','2022-07-09 21:05:25',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(601,'1110','121657383910','2022-07-09 21:05:25',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(602,'5500','121657383910','2022-07-09 21:05:25',3663.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(603,'1000','121657383910','2022-07-09 21:05:25',4980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(604,'4000','121657383910','2022-07-09 21:05:25',NULL,4700.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(605,'4000','121657383910','2022-07-09 21:05:25',NULL,140.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(606,'4000','121657383910','2022-07-09 21:05:25',NULL,140.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(607,'1110','121657390032','2022-07-09 22:00:02',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(608,'5500','121657390032','2022-07-09 22:00:02',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(609,'1000','121657390032','2022-07-09 22:00:02',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(610,'4000','121657390032','2022-07-09 22:00:02',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(611,'1110','121657393206','2022-07-09 22:33:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(612,'5500','121657393206','2022-07-09 22:33:22',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(613,'1000','121657393206','2022-07-09 22:33:22',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(614,'4000','121657393206','2022-07-09 22:33:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(615,'1110','121657397261','2022-07-09 23:08:09',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(616,'5500','121657397261','2022-07-09 23:08:09',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(617,'1000','121657397261','2022-07-09 23:08:09',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(618,'4000','121657397261','2022-07-09 23:08:09',NULL,460.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(619,'1110','121657399711','2022-07-10 00:00:49',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(620,'1110','121657399711','2022-07-10 00:00:49',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(621,'1110','121657399711','2022-07-10 00:00:49',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(622,'5500','121657399711','2022-07-10 00:00:49',2219.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(623,'1000','121657399711','2022-07-10 00:00:49',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(624,'4000','121657399711','2022-07-10 00:00:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(625,'4000','121657399711','2022-07-10 00:00:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(626,'4000','121657399711','2022-07-10 00:00:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(627,'1110','121657408045','2022-07-10 02:07:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(628,'1110','121657408045','2022-07-10 02:07:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(629,'5500','121657408045','2022-07-10 02:07:47',97.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(630,'1000','121657408045','2022-07-10 02:07:47',130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(631,'4000','121657408045','2022-07-10 02:07:47',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(632,'4000','121657408045','2022-07-10 02:07:47',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(633,'1110','121657459520','2022-07-10 17:12:55',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(634,'1110','121657459520','2022-07-10 17:12:55',NULL,1176.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(635,'1110','121657459520','2022-07-10 17:12:55',NULL,13000.00,'','12','1','Inventory sold','1','','sales','3245990987611','','No',NULL,NULL,''),(636,'5500','121657459520','2022-07-10 17:12:55',14474.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(637,'1000','121657459520','2022-07-10 17:12:55',19500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(638,'4000','121657459520','2022-07-10 17:12:55',NULL,400.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(639,'4000','121657459520','2022-07-10 17:12:55',NULL,1600.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(640,'4000','121657459520','2022-07-10 17:12:55',NULL,17500.00,'','12','1','Good sold','1','','sales','3245990987611','','No',NULL,NULL,''),(641,'1110','121657462428','2022-07-10 17:38:19',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(642,'5500','121657462428','2022-07-10 17:38:19',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(643,'1000','121657462428','2022-07-10 17:38:19',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(644,'4000','121657462428','2022-07-10 17:38:19',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(645,'1110','121657470051','2022-07-10 19:21:10',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(646,'5500','121657470051','2022-07-10 19:21:10',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(647,'1000','121657470051','2022-07-10 19:21:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(648,'4000','121657470051','2022-07-10 19:21:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(649,'1110','121657470075','2022-07-10 19:59:44',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(650,'5500','121657470075','2022-07-10 19:59:44',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(651,'1000','121657470075','2022-07-10 19:59:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(652,'4000','121657470075','2022-07-10 19:59:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(653,'1110','121657472453','2022-07-10 20:06:36',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(654,'1110','121657472453','2022-07-10 20:06:36',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(655,'5500','121657472453','2022-07-10 20:06:36',2181.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(656,'1000','121657472453','2022-07-10 20:06:36',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(657,'4000','121657472453','2022-07-10 20:06:36',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(658,'4000','121657472453','2022-07-10 20:06:36',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(659,'1110','121657472860','2022-07-10 20:11:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(660,'1110','121657472860','2022-07-10 20:11:22',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(661,'5500','121657472860','2022-07-10 20:11:22',1275.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(662,'1000','121657472860','2022-07-10 20:11:22',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(663,'4000','121657472860','2022-07-10 20:11:22',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(664,'4000','121657472860','2022-07-10 20:11:22',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(665,'1110','121657473129','2022-07-10 20:14:46',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(666,'1110','121657473129','2022-07-10 20:14:46',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(667,'5500','121657473129','2022-07-10 20:14:46',646.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(668,'1000','121657473129','2022-07-10 20:14:46',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(669,'4000','121657473129','2022-07-10 20:14:46',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(670,'4000','121657473129','2022-07-10 20:14:46',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(671,'1110','121657473327','2022-07-10 20:21:25',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(672,'1110','121657473327','2022-07-10 20:21:25',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(673,'1110','121657473327','2022-07-10 20:21:25',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(674,'1110','121657473327','2022-07-10 20:21:25',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(675,'1110','121657473327','2022-07-10 20:21:25',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(676,'1110','121657473327','2022-07-10 20:21:25',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(677,'1110','121657473327','2022-07-10 20:21:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(678,'1110','121657473327','2022-07-10 20:21:25',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(679,'1110','121657473327','2022-07-10 20:21:25',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(680,'1110','121657473327','2022-07-10 20:21:25',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(681,'5500','121657473327','2022-07-10 20:21:25',3494.97,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(682,'1000','121657473327','2022-07-10 20:21:25',4570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(683,'4000','121657473327','2022-07-10 20:21:25',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(684,'4000','121657473327','2022-07-10 20:21:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(685,'4000','121657473327','2022-07-10 20:21:25',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(686,'4000','121657473327','2022-07-10 20:21:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(687,'4000','121657473327','2022-07-10 20:21:25',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(688,'4000','121657473327','2022-07-10 20:21:25',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(689,'4000','121657473327','2022-07-10 20:21:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(690,'4000','121657473327','2022-07-10 20:21:25',NULL,400.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(691,'4000','121657473327','2022-07-10 20:21:25',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(692,'4000','121657473327','2022-07-10 20:21:25',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(693,'1110','121657474366','2022-07-10 21:48:08',NULL,2381.40,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(694,'5500','121657474366','2022-07-10 21:48:08',2381.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(695,'1000','121657474366','2022-07-10 21:48:08',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(696,'4000','121657474366','2022-07-10 21:48:08',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(697,'1110','121657489015','2022-07-11 00:37:07',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(698,'5500','121657489015','2022-07-11 00:37:07',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(699,'1000','121657489015','2022-07-11 00:37:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(700,'4000','121657489015','2022-07-11 00:37:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(701,'1110','121657543036','2022-07-11 16:06:32',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(702,'5500','121657543036','2022-07-11 16:06:32',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(703,'1000','121657543036','2022-07-11 16:06:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(704,'4000','121657543036','2022-07-11 16:06:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(705,'1110','121657544908','2022-07-11 16:30:59',NULL,586.00,'','12','1','Inventory sold','1','','sales','6161100420083','','No',NULL,NULL,''),(706,'5500','121657544908','2022-07-11 16:30:59',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(707,'1000','121657544908','2022-07-11 16:30:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(708,'4000','121657544908','2022-07-11 16:30:59',NULL,800.00,'','12','1','Good sold','1','','sales','6161100420083','','No',NULL,NULL,''),(709,'1110','121657546300','2022-07-11 17:36:23',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(710,'1110','121657546300','2022-07-11 17:36:23',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(711,'5500','121657546300','2022-07-11 17:36:23',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(712,'1000','121657546300','2022-07-11 17:36:23',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(713,'4000','121657546300','2022-07-11 17:36:23',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(714,'4000','121657546300','2022-07-11 17:36:23',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(715,'1110','121657550217','2022-07-11 18:06:01',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(716,'5500','121657550217','2022-07-11 18:06:01',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(717,'1000','121657550217','2022-07-11 18:06:01',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(718,'4000','121657550217','2022-07-11 18:06:01',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(719,'1110','121657552090','2022-07-11 18:33:31',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(720,'1110','121657552090','2022-07-11 18:33:31',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(721,'1110','121657552090','2022-07-11 18:33:31',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(722,'5500','121657552090','2022-07-11 18:33:31',552.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(723,'1000','121657552090','2022-07-11 18:33:31',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(724,'4000','121657552090','2022-07-11 18:33:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(725,'4000','121657552090','2022-07-11 18:33:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(726,'4000','121657552090','2022-07-11 18:33:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(727,'1110','121657554031','2022-07-11 19:42:41',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(728,'5500','121657554031','2022-07-11 19:42:41',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(729,'1000','121657554031','2022-07-11 19:42:41',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(730,'4000','121657554031','2022-07-11 19:42:41',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(731,'1110','121657557866','2022-07-11 21:26:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(732,'5500','121657557866','2022-07-11 21:26:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(733,'1000','121657557866','2022-07-11 21:26:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(734,'4000','121657557866','2022-07-11 21:26:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(735,'1110','121657564449','2022-07-11 21:43:44',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(736,'5500','121657564449','2022-07-11 21:43:44',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(737,'1000','121657564449','2022-07-11 21:43:44',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(738,'4000','121657564449','2022-07-11 21:43:44',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(739,'1110','121657565104','2022-07-11 22:12:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(740,'1110','121657565104','2022-07-11 22:12:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(741,'1110','121657565104','2022-07-11 22:12:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(742,'5500','121657565104','2022-07-11 22:12:24',553.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(743,'1000','121657565104','2022-07-11 22:12:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(744,'4000','121657565104','2022-07-11 22:12:24',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(745,'4000','121657565104','2022-07-11 22:12:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(746,'4000','121657565104','2022-07-11 22:12:24',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(747,'1110','121657568253','2022-07-11 22:37:56',NULL,4520.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(748,'5500','121657568253','2022-07-11 22:37:56',4520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(749,'1000','121657568253','2022-07-11 22:37:56',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(750,'4000','121657568253','2022-07-11 22:37:56',NULL,6000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(751,'1110','121657570346','2022-07-11 23:33:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(752,'5500','121657570346','2022-07-11 23:33:51',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(753,'1000','121657570346','2022-07-11 23:33:51',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(754,'4000','121657570346','2022-07-11 23:33:51',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(755,'1110','121657571859','2022-07-11 23:58:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(756,'1110','121657571859','2022-07-11 23:58:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(757,'1110','121657571859','2022-07-11 23:58:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(758,'1110','121657571859','2022-07-11 23:58:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(759,'5500','121657571859','2022-07-11 23:58:45',556.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(760,'1000','121657571859','2022-07-11 23:58:45',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(761,'4000','121657571859','2022-07-11 23:58:45',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(762,'4000','121657571859','2022-07-11 23:58:45',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(763,'4000','121657571859','2022-07-11 23:58:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(764,'4000','121657571859','2022-07-11 23:58:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(765,'1110','121657573213','2022-07-12 00:44:16',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(766,'1110','121657573213','2022-07-12 00:44:16',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(767,'1110','121657573213','2022-07-12 00:44:16',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(768,'1110','121657573213','2022-07-12 00:44:16',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(769,'5500','121657573213','2022-07-12 00:44:16',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(770,'1000','121657573213','2022-07-12 00:44:16',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(771,'4000','121657573213','2022-07-12 00:44:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(772,'4000','121657573213','2022-07-12 00:44:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(773,'4000','121657573213','2022-07-12 00:44:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(774,'4000','121657573213','2022-07-12 00:44:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(775,'1110','121657622964','2022-07-12 13:49:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(776,'5500','121657622964','2022-07-12 13:49:34',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(777,'1000','121657622964','2022-07-12 13:49:34',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(778,'4000','121657622964','2022-07-12 13:49:34',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(779,'1110','121657623193','2022-07-12 14:54:54',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(780,'5500','121657623193','2022-07-12 14:54:54',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(781,'1000','121657623193','2022-07-12 14:54:54',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(782,'4000','121657623193','2022-07-12 14:54:54',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(783,'1110','121657634268','2022-07-12 16:57:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(784,'5500','121657634268','2022-07-12 16:57:53',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(785,'1000','121657634268','2022-07-12 16:57:53',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(786,'4000','121657634268','2022-07-12 16:57:53',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(787,'1110','121657649505','2022-07-12 21:13:42',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(788,'1110','121657649505','2022-07-12 21:13:42',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(789,'1110','121657649505','2022-07-12 21:13:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(790,'5500','121657649505','2022-07-12 21:13:42',873.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(791,'1000','121657649505','2022-07-12 21:13:42',1220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(792,'4000','121657649505','2022-07-12 21:13:42',NULL,400.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(793,'4000','121657649505','2022-07-12 21:13:42',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(794,'4000','121657649505','2022-07-12 21:13:42',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(795,'1110','121657649850','2022-07-12 21:22:26',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(796,'1110','121657649850','2022-07-12 21:22:26',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(797,'5500','121657649850','2022-07-12 21:22:26',323.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(798,'1000','121657649850','2022-07-12 21:22:26',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(799,'4000','121657649850','2022-07-12 21:22:26',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(800,'4000','121657649850','2022-07-12 21:22:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(801,'1110','121657650455','2022-07-12 22:00:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(802,'5500','121657650455','2022-07-12 22:00:32',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(803,'1000','121657650455','2022-07-12 22:00:32',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(804,'4000','121657650455','2022-07-12 22:00:32',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(805,'1110','121657653849','2022-07-12 22:42:06',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(806,'1110','121657653849','2022-07-12 22:42:06',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(807,'1110','121657653849','2022-07-12 22:42:06',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(808,'1110','121657653849','2022-07-12 22:42:06',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(809,'1110','121657653849','2022-07-12 22:42:06',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(810,'5500','121657653849','2022-07-12 22:42:06',1497.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(811,'1000','121657653849','2022-07-12 22:42:06',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(812,'4000','121657653849','2022-07-12 22:42:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(813,'4000','121657653849','2022-07-12 22:42:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(814,'4000','121657653849','2022-07-12 22:42:06',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(815,'4000','121657653849','2022-07-12 22:42:06',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(816,'4000','121657653849','2022-07-12 22:42:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(817,'1110','121657655030','2022-07-12 22:48:22',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(818,'5500','121657655030','2022-07-12 22:48:22',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(819,'1000','121657655030','2022-07-12 22:48:22',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(820,'4000','121657655030','2022-07-12 22:48:22',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(821,'1110','121657656218','2022-07-12 23:04:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(822,'5500','121657656218','2022-07-12 23:04:42',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(823,'1000','121657656218','2022-07-12 23:04:42',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(824,'4000','121657656218','2022-07-12 23:04:42',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(825,'1110','121657656373','2022-07-12 23:47:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(826,'5500','121657656373','2022-07-12 23:47:49',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(827,'1000','121657656373','2022-07-12 23:47:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(828,'4000','121657656373','2022-07-12 23:47:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(829,'1110','121657658981','2022-07-13 00:07:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(830,'1110','121657658981','2022-07-13 00:07:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(831,'1110','121657658981','2022-07-13 00:07:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(832,'5500','121657658981','2022-07-13 00:07:08',160.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(833,'1000','121657658981','2022-07-13 00:07:08',210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(834,'4000','121657658981','2022-07-13 00:07:08',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(835,'4000','121657658981','2022-07-13 00:07:08',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(836,'4000','121657658981','2022-07-13 00:07:08',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(837,'1110','121657660043','2022-07-13 00:13:44',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(838,'1110','121657660043','2022-07-13 00:13:44',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(839,'1110','121657660043','2022-07-13 00:13:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(840,'1110','121657660043','2022-07-13 00:13:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(841,'1110','121657660043','2022-07-13 00:13:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(842,'1110','121657660043','2022-07-13 00:13:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(843,'1110','121657660043','2022-07-13 00:13:44',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(844,'1110','121657660043','2022-07-13 00:13:44',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(845,'5500','121657660043','2022-07-13 00:13:44',1872.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(846,'1000','121657660043','2022-07-13 00:13:44',2520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(847,'4000','121657660043','2022-07-13 00:13:44',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(848,'4000','121657660043','2022-07-13 00:13:44',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(849,'4000','121657660043','2022-07-13 00:13:44',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(850,'4000','121657660043','2022-07-13 00:13:44',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(851,'4000','121657660043','2022-07-13 00:13:44',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(852,'4000','121657660043','2022-07-13 00:13:44',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(853,'4000','121657660043','2022-07-13 00:13:44',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(854,'4000','121657660043','2022-07-13 00:13:44',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(855,'1110','121657708281','2022-07-13 13:42:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(856,'5500','121657708281','2022-07-13 13:42:55',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(857,'1000','121657708281','2022-07-13 13:42:55',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(858,'4000','121657708281','2022-07-13 13:42:55',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(859,'1110','121657720960','2022-07-13 17:11:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(860,'5500','121657720960','2022-07-13 17:11:19',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(861,'1000','121657720960','2022-07-13 17:11:19',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(862,'4000','121657720960','2022-07-13 17:11:19',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(863,'1110','121657725667','2022-07-13 18:21:23',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(864,'5500','121657725667','2022-07-13 18:21:23',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(865,'1000','121657725667','2022-07-13 18:21:23',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(866,'4000','121657725667','2022-07-13 18:21:23',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(867,'1110','121657727144','2022-07-13 18:46:04',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(868,'5500','121657727144','2022-07-13 18:46:04',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(869,'1000','121657727144','2022-07-13 18:46:04',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(870,'4000','121657727144','2022-07-13 18:46:04',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(871,'1110','121657727296','2022-07-13 19:00:38',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(872,'5500','121657727296','2022-07-13 19:00:38',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(873,'1000','121657727296','2022-07-13 19:00:38',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(874,'4000','121657727296','2022-07-13 19:00:38',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(875,'1110','121657728873','2022-07-13 19:14:48',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(876,'5500','121657728873','2022-07-13 19:14:48',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(877,'1000','121657728873','2022-07-13 19:14:48',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(878,'4000','121657728873','2022-07-13 19:14:48',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(879,'1110','121657728902','2022-07-13 19:58:45',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(880,'1110','121657728902','2022-07-13 19:58:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(881,'5500','121657728902','2022-07-13 19:58:45',323.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(882,'1000','121657728902','2022-07-13 19:58:45',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(883,'4000','121657728902','2022-07-13 19:58:45',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(884,'4000','121657728902','2022-07-13 19:58:45',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(885,'1110','121657731765','2022-07-13 20:13:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(886,'5500','121657731765','2022-07-13 20:13:42',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(887,'1000','121657731765','2022-07-13 20:13:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(888,'4000','121657731765','2022-07-13 20:13:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(889,'1110','121657732515','2022-07-13 20:34:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(890,'5500','121657732515','2022-07-13 20:34:32',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(891,'1000','121657732515','2022-07-13 20:34:32',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(892,'4000','121657732515','2022-07-13 20:34:32',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(893,'1110','121657733707','2022-07-13 21:21:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(894,'1110','121657733707','2022-07-13 21:21:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(895,'5500','121657733707','2022-07-13 21:21:42',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(896,'1000','121657733707','2022-07-13 21:21:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(897,'4000','121657733707','2022-07-13 21:21:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(898,'4000','121657733707','2022-07-13 21:21:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(899,'1110','121657736571','2022-07-13 21:43:08',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(900,'5500','121657736571','2022-07-13 21:43:08',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(901,'1000','121657736571','2022-07-13 21:43:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(902,'4000','121657736571','2022-07-13 21:43:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(903,'1110','121657737826','2022-07-13 22:11:02',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(904,'1110','121657737826','2022-07-13 22:11:02',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(905,'1110','121657737826','2022-07-13 22:11:02',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(906,'5500','121657737826','2022-07-13 22:11:02',1798.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(907,'1000','121657737826','2022-07-13 22:11:02',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(908,'4000','121657737826','2022-07-13 22:11:02',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(909,'4000','121657737826','2022-07-13 22:11:02',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(910,'4000','121657737826','2022-07-13 22:11:02',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(911,'1110','121657739526','2022-07-13 22:26:32',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(912,'5500','121657739526','2022-07-13 22:26:32',1916.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(913,'1000','121657739526','2022-07-13 22:26:32',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(914,'4000','121657739526','2022-07-13 22:26:32',NULL,2600.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(915,'1110','121657740461','2022-07-13 22:29:05',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(916,'1110','121657740461','2022-07-13 22:29:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(917,'5500','121657740461','2022-07-13 22:29:05',192.27,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(918,'1000','121657740461','2022-07-13 22:29:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(919,'4000','121657740461','2022-07-13 22:29:05',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(920,'4000','121657740461','2022-07-13 22:29:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(921,'1110','121657740587','2022-07-13 23:14:54',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(922,'1110','121657740587','2022-07-13 23:14:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(923,'5500','121657740587','2022-07-13 23:14:54',1103.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(924,'1000','121657740587','2022-07-13 23:14:54',1470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(925,'4000','121657740587','2022-07-13 23:14:54',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(926,'4000','121657740587','2022-07-13 23:14:54',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(927,'1110','121657744232','2022-07-13 23:40:45',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(928,'1110','121657744232','2022-07-13 23:40:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(929,'1110','121657744232','2022-07-13 23:40:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(930,'1110','121657744232','2022-07-13 23:40:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(931,'1110','121657744232','2022-07-13 23:40:45',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(932,'1110','121657744232','2022-07-13 23:40:45',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(933,'5500','121657744232','2022-07-13 23:40:45',2959.69,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(934,'1000','121657744232','2022-07-13 23:40:45',3990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(935,'4000','121657744232','2022-07-13 23:40:45',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(936,'4000','121657744232','2022-07-13 23:40:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(937,'4000','121657744232','2022-07-13 23:40:45',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(938,'4000','121657744232','2022-07-13 23:40:45',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(939,'4000','121657744232','2022-07-13 23:40:45',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(940,'4000','121657744232','2022-07-13 23:40:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(941,'1110','121657744898','2022-07-14 00:55:55',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(942,'5500','121657744898','2022-07-14 00:55:55',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(943,'1000','121657744898','2022-07-14 00:55:55',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(944,'4000','121657744898','2022-07-14 00:55:55',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(945,'1110','121657795312','2022-07-14 13:41:58',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(946,'5500','121657795312','2022-07-14 13:41:58',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(947,'1000','121657795312','2022-07-14 13:41:58',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(948,'4000','121657795312','2022-07-14 13:41:58',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(949,'1110','121657812924','2022-07-14 18:36:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(950,'1110','121657812924','2022-07-14 18:36:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(951,'5500','121657812924','2022-07-14 18:36:29',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(952,'1000','121657812924','2022-07-14 18:36:29',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(953,'4000','121657812924','2022-07-14 18:36:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(954,'4000','121657812924','2022-07-14 18:36:29',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(955,'1110','121657813033','2022-07-14 18:56:34',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(956,'5500','121657813033','2022-07-14 18:56:34',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(957,'1000','121657813033','2022-07-14 18:56:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(958,'4000','121657813033','2022-07-14 18:56:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(959,'1110','121657814236','2022-07-14 19:03:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(960,'5500','121657814236','2022-07-14 19:03:53',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(961,'1000','121657814236','2022-07-14 19:03:53',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(962,'4000','121657814236','2022-07-14 19:03:53',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(963,'1110','121657814690','2022-07-14 19:34:41',NULL,1382.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(964,'5500','121657814690','2022-07-14 19:34:41',1382.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(965,'1000','121657814690','2022-07-14 19:34:41',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(966,'4000','121657814690','2022-07-14 19:34:41',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(967,'1110','121657820380','2022-07-14 20:40:11',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(968,'1110','121657820380','2022-07-14 20:40:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(969,'5500','121657820380','2022-07-14 20:40:11',1197.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(970,'1000','121657820380','2022-07-14 20:40:11',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(971,'4000','121657820380','2022-07-14 20:40:11',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(972,'4000','121657820380','2022-07-14 20:40:11',NULL,70.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(973,'1110','121657822768','2022-07-14 22:16:34',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(974,'1110','121657822768','2022-07-14 22:16:34',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(975,'1110','121657822768','2022-07-14 22:16:34',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(976,'1110','121657822768','2022-07-14 22:16:34',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(977,'1110','121657822768','2022-07-14 22:16:34',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(978,'5500','121657822768','2022-07-14 22:16:34',949.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(979,'1000','121657822768','2022-07-14 22:16:34',1330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(980,'4000','121657822768','2022-07-14 22:16:34',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(981,'4000','121657822768','2022-07-14 22:16:34',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(982,'4000','121657822768','2022-07-14 22:16:34',NULL,140.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(983,'4000','121657822768','2022-07-14 22:16:34',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(984,'4000','121657822768','2022-07-14 22:16:34',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(985,'1110','121657826221','2022-07-14 23:09:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(986,'1110','121657826221','2022-07-14 23:09:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(987,'1110','121657826221','2022-07-14 23:09:11',NULL,3381.00,'','12','1','Inventory sold','1','','sales','5000291021925','','No',NULL,NULL,''),(988,'1110','121657826221','2022-07-14 23:09:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(989,'1110','121657826221','2022-07-14 23:09:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(990,'1110','121657826221','2022-07-14 23:09:11',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(991,'1110','121657826221','2022-07-14 23:09:11',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(992,'1110','121657826221','2022-07-14 23:09:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(993,'5500','121657826221','2022-07-14 23:09:11',4173.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(994,'1000','121657826221','2022-07-14 23:09:11',5550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(995,'4000','121657826221','2022-07-14 23:09:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(996,'4000','121657826221','2022-07-14 23:09:11',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(997,'4000','121657826221','2022-07-14 23:09:11',NULL,4500.00,'','12','1','Good sold','1','','sales','5000291021925','','No',NULL,NULL,''),(998,'4000','121657826221','2022-07-14 23:09:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(999,'4000','121657826221','2022-07-14 23:09:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1000,'4000','121657826221','2022-07-14 23:09:11',NULL,350.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(1001,'4000','121657826221','2022-07-14 23:09:11',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(1002,'4000','121657826221','2022-07-14 23:09:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1003,'1110','121657829430','2022-07-14 23:25:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1004,'1110','121657829430','2022-07-14 23:25:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1005,'5500','121657829430','2022-07-14 23:25:34',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1006,'1000','121657829430','2022-07-14 23:25:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1007,'4000','121657829430','2022-07-14 23:25:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1008,'4000','121657829430','2022-07-14 23:25:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1009,'1110','121657887302','2022-07-15 15:15:09',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1010,'5500','121657887302','2022-07-15 15:15:09',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1011,'1000','121657887302','2022-07-15 15:15:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1012,'4000','121657887302','2022-07-15 15:15:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1013,'1110','121657898064','2022-07-15 18:15:09',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1014,'1110','121657898064','2022-07-15 18:15:09',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1015,'1110','121657898064','2022-07-15 18:15:09',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1016,'5500','121657898064','2022-07-15 18:15:09',858.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1017,'1000','121657898064','2022-07-15 18:15:09',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1018,'4000','121657898064','2022-07-15 18:15:09',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1019,'4000','121657898064','2022-07-15 18:15:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1020,'4000','121657898064','2022-07-15 18:15:09',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1021,'1110','121657898145','2022-07-15 18:27:11',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(1022,'5500','121657898145','2022-07-15 18:27:11',1650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1023,'1000','121657898145','2022-07-15 18:27:11',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1024,'4000','121657898145','2022-07-15 18:27:11',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(1025,'1110','121657903808','2022-07-15 19:50:40',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(1026,'5500','121657903808','2022-07-15 19:50:40',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1027,'1000','121657903808','2022-07-15 19:50:40',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1028,'4000','121657903808','2022-07-15 19:50:40',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(1029,'1110','121657903850','2022-07-15 20:55:30',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1030,'1110','121657903850','2022-07-15 20:55:30',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1031,'1110','121657903850','2022-07-15 20:55:30',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1032,'1110','121657903850','2022-07-15 20:55:30',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1033,'5500','121657903850','2022-07-15 20:55:30',1259.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1034,'1000','121657903850','2022-07-15 20:55:30',1660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1035,'4000','121657903850','2022-07-15 20:55:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1036,'4000','121657903850','2022-07-15 20:55:30',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1037,'4000','121657903850','2022-07-15 20:55:30',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1038,'4000','121657903850','2022-07-15 20:55:30',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1039,'1110','121657907975','2022-07-15 22:41:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1040,'1110','121657907975','2022-07-15 22:41:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1041,'1110','121657907975','2022-07-15 22:41:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1042,'1110','121657907975','2022-07-15 22:41:57',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1043,'1110','121657907975','2022-07-15 22:41:57',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(1044,'5500','121657907975','2022-07-15 22:41:57',1621.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1045,'1000','121657907975','2022-07-15 22:41:57',2060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1046,'4000','121657907975','2022-07-15 22:41:57',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1047,'4000','121657907975','2022-07-15 22:41:57',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1048,'4000','121657907975','2022-07-15 22:41:57',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1049,'4000','121657907975','2022-07-15 22:41:57',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1050,'4000','121657907975','2022-07-15 22:41:57',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(1051,'1110','121657914519','2022-07-15 23:20:37',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1052,'5500','121657914519','2022-07-15 23:20:37',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1053,'1000','121657914519','2022-07-15 23:20:37',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1054,'4000','121657914519','2022-07-15 23:20:37',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1055,'1110','121657916622','2022-07-15 23:48:51',NULL,2144.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(1056,'1110','121657916622','2022-07-15 23:48:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(1057,'1110','121657916622','2022-07-15 23:48:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(1058,'1110','121657916622','2022-07-15 23:48:51',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(1059,'1110','121657916622','2022-07-15 23:48:51',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(1060,'1110','121657916622','2022-07-15 23:48:51',NULL,1456.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1061,'5500','121657916622','2022-07-15 23:48:51',8132.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1062,'1000','121657916622','2022-07-15 23:48:51',11200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1063,'4000','121657916622','2022-07-15 23:48:51',NULL,3000.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(1064,'4000','121657916622','2022-07-15 23:48:51',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(1065,'4000','121657916622','2022-07-15 23:48:51',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(1066,'4000','121657916622','2022-07-15 23:48:51',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(1067,'4000','121657916622','2022-07-15 23:48:51',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(1068,'4000','121657916622','2022-07-15 23:48:51',NULL,2000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1069,'1110','121657918430','2022-07-16 00:22:20',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1070,'5500','121657918430','2022-07-16 00:22:20',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1071,'1000','121657918430','2022-07-16 00:22:20',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1072,'4000','121657918430','2022-07-16 00:22:20',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1073,'1110','121657920250','2022-07-16 00:24:34',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1074,'1110','121657920250','2022-07-16 00:24:34',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1075,'1110','121657920250','2022-07-16 00:24:34',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1076,'1110','121657920250','2022-07-16 00:24:34',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1077,'5500','121657920250','2022-07-16 00:24:34',646.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1078,'1000','121657920250','2022-07-16 00:24:34',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1079,'4000','121657920250','2022-07-16 00:24:34',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1080,'4000','121657920250','2022-07-16 00:24:34',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1081,'4000','121657920250','2022-07-16 00:24:34',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1082,'4000','121657920250','2022-07-16 00:24:34',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1083,'1110','121657920440','2022-07-16 00:28:53',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1084,'1110','121657920440','2022-07-16 00:28:53',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1085,'5500','121657920440','2022-07-16 00:28:53',1316.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1086,'1000','121657920440','2022-07-16 00:28:53',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1087,'4000','121657920440','2022-07-16 00:28:53',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1088,'4000','121657920440','2022-07-16 00:28:53',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1089,'1110','121657920622','2022-07-16 00:35:22',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1090,'5500','121657920622','2022-07-16 00:35:22',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1091,'1000','121657920622','2022-07-16 00:35:22',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1092,'4000','121657920622','2022-07-16 00:35:22',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1093,'1110','121657972543','2022-07-16 14:56:05',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1094,'5500','121657972543','2022-07-16 14:56:05',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1095,'1000','121657972543','2022-07-16 14:56:05',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1096,'4000','121657972543','2022-07-16 14:56:05',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1097,'1110','121657972591','2022-07-16 16:22:53',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1098,'5500','121657972591','2022-07-16 16:22:53',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1099,'1000','121657972591','2022-07-16 16:22:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1100,'4000','121657972591','2022-07-16 16:22:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1101,'1110','121657978423','2022-07-16 16:54:08',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(1102,'5500','121657978423','2022-07-16 16:54:08',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1103,'1000','121657978423','2022-07-16 16:54:08',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1104,'4000','121657978423','2022-07-16 16:54:08',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(1105,'1110','121657979696','2022-07-16 17:26:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1106,'1110','121657979696','2022-07-16 17:26:36',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(1107,'1110','121657979696','2022-07-16 17:26:36',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(1108,'5500','121657979696','2022-07-16 17:26:36',2174.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1109,'1000','121657979696','2022-07-16 17:26:36',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1110,'4000','121657979696','2022-07-16 17:26:36',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1111,'4000','121657979696','2022-07-16 17:26:36',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(1112,'4000','121657979696','2022-07-16 17:26:36',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(1113,'1110','121657982062','2022-07-16 18:22:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(1114,'1110','121657982062','2022-07-16 18:22:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(1115,'5500','121657982062','2022-07-16 18:22:52',294.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1116,'1000','121657982062','2022-07-16 18:22:52',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1117,'4000','121657982062','2022-07-16 18:22:52',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(1118,'4000','121657982062','2022-07-16 18:22:52',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(1119,'1110','121657985547','2022-07-16 20:08:31',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1120,'5500','121657985547','2022-07-16 20:08:31',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1121,'1000','121657985547','2022-07-16 20:08:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1122,'4000','121657985547','2022-07-16 20:08:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1123,'1110','121657991328','2022-07-16 21:22:18',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1124,'5500','121657991328','2022-07-16 21:22:18',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1125,'1000','121657991328','2022-07-16 21:22:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1126,'4000','121657991328','2022-07-16 21:22:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1127,'1110','121657996149','2022-07-16 22:16:13',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1128,'1110','121657996149','2022-07-16 22:16:13',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1129,'5500','121657996149','2022-07-16 22:16:13',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1130,'1000','121657996149','2022-07-16 22:16:13',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1131,'4000','121657996149','2022-07-16 22:16:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1132,'4000','121657996149','2022-07-16 22:16:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1133,'1110','121658000198','2022-07-16 22:37:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1134,'1110','121658000198','2022-07-16 22:37:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1135,'5500','121658000198','2022-07-16 22:37:55',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1136,'1000','121658000198','2022-07-16 22:37:55',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1137,'4000','121658000198','2022-07-16 22:37:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1138,'4000','121658000198','2022-07-16 22:37:55',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1139,'1110','121658000360','2022-07-16 22:43:16',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(1140,'1110','121658000360','2022-07-16 22:43:16',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1141,'1110','121658000360','2022-07-16 22:43:16',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1142,'1110','121658000360','2022-07-16 22:43:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1143,'1110','121658000360','2022-07-16 22:43:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1144,'5500','121658000360','2022-07-16 22:43:16',1526.47,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1145,'1000','121658000360','2022-07-16 22:43:16',2040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1146,'4000','121658000360','2022-07-16 22:43:16',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(1147,'4000','121658000360','2022-07-16 22:43:16',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1148,'4000','121658000360','2022-07-16 22:43:16',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1149,'4000','121658000360','2022-07-16 22:43:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1150,'4000','121658000360','2022-07-16 22:43:16',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1151,'1110','121658000628','2022-07-16 22:48:41',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(1152,'1110','121658000628','2022-07-16 22:48:41',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1153,'5500','121658000628','2022-07-16 22:48:41',845.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1154,'1000','121658000628','2022-07-16 22:48:41',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1155,'4000','121658000628','2022-07-16 22:48:41',NULL,660.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(1156,'4000','121658000628','2022-07-16 22:48:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1157,'1110','121658000941','2022-07-16 22:50:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1158,'5500','121658000941','2022-07-16 22:50:42',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1159,'1000','121658000941','2022-07-16 22:50:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1160,'4000','121658000941','2022-07-16 22:50:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1161,'1110','121658008374','2022-07-17 01:04:30',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1162,'5500','121658008374','2022-07-17 01:04:30',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1163,'1000','121658008374','2022-07-17 01:04:30',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1164,'4000','121658008374','2022-07-17 01:04:30',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1165,'1110','121658069037','2022-07-17 17:47:16',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1166,'1110','121658069037','2022-07-17 17:47:16',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1167,'1110','121658069037','2022-07-17 17:47:16',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1168,'1110','121658069037','2022-07-17 17:47:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1169,'1110','121658069037','2022-07-17 17:47:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1170,'5500','121658069037','2022-07-17 17:47:16',709.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1171,'1000','121658069037','2022-07-17 17:47:16',1010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1172,'4000','121658069037','2022-07-17 17:47:16',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1173,'4000','121658069037','2022-07-17 17:47:16',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1174,'4000','121658069037','2022-07-17 17:47:16',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1175,'4000','121658069037','2022-07-17 17:47:16',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1176,'4000','121658069037','2022-07-17 17:47:16',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1177,'1110','121658083603','2022-07-17 21:46:48',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1178,'5500','121658083603','2022-07-17 21:46:48',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1179,'1000','121658083603','2022-07-17 21:46:48',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1180,'4000','121658083603','2022-07-17 21:46:48',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1181,'1110','121658085327','2022-07-17 22:37:41',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1182,'1110','121658085327','2022-07-17 22:37:41',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1183,'5500','121658085327','2022-07-17 22:37:41',450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1184,'1000','121658085327','2022-07-17 22:37:41',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1185,'4000','121658085327','2022-07-17 22:37:41',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1186,'4000','121658085327','2022-07-17 22:37:41',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1187,'1110','121658086664','2022-07-17 22:39:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1188,'5500','121658086664','2022-07-17 22:39:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1189,'1000','121658086664','2022-07-17 22:39:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1190,'4000','121658086664','2022-07-17 22:39:26',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1191,'1110','121658086845','2022-07-17 22:46:09',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1192,'5500','121658086845','2022-07-17 22:46:09',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1193,'1000','121658086845','2022-07-17 22:46:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1194,'4000','121658086845','2022-07-17 22:46:09',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1195,'1110','121658141778','2022-07-18 13:56:21',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1196,'5500','121658141778','2022-07-18 13:56:21',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1197,'1000','121658141778','2022-07-18 13:56:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1198,'4000','121658141778','2022-07-18 13:56:21',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1199,'1110','121658142104','2022-07-18 14:06:29',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1200,'5500','121658142104','2022-07-18 14:06:29',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1201,'1000','121658142104','2022-07-18 14:06:29',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1202,'4000','121658142104','2022-07-18 14:06:29',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1203,'1110','121658153998','2022-07-18 17:21:29',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1204,'5500','121658153998','2022-07-18 17:21:29',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1205,'1000','121658153998','2022-07-18 17:21:29',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1206,'4000','121658153998','2022-07-18 17:21:29',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1207,'1110','121658158352','2022-07-18 19:21:57',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1208,'5500','121658158352','2022-07-18 19:21:57',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1209,'1000','121658158352','2022-07-18 19:21:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1210,'4000','121658158352','2022-07-18 19:21:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1211,'1110','121658161368','2022-07-18 19:33:25',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(1212,'5500','121658161368','2022-07-18 19:33:25',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1213,'1000','121658161368','2022-07-18 19:33:25',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1214,'4000','121658161368','2022-07-18 19:33:25',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(1215,'1110','121658164460','2022-07-18 20:17:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1216,'1110','121658164460','2022-07-18 20:17:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1217,'1110','121658164460','2022-07-18 20:17:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1218,'1110','121658164460','2022-07-18 20:17:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1219,'5500','121658164460','2022-07-18 20:17:02',646.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1220,'1000','121658164460','2022-07-18 20:17:02',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1221,'4000','121658164460','2022-07-18 20:17:02',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1222,'4000','121658164460','2022-07-18 20:17:02',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1223,'4000','121658164460','2022-07-18 20:17:02',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1224,'4000','121658164460','2022-07-18 20:17:02',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1225,'1110','121658173709','2022-07-18 22:51:03',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(1226,'1110','121658173709','2022-07-18 22:51:03',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1227,'1110','121658173709','2022-07-18 22:51:03',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1228,'1110','121658173709','2022-07-18 22:51:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1229,'5500','121658173709','2022-07-18 22:51:03',2364.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1230,'1000','121658173709','2022-07-18 22:51:03',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1231,'4000','121658173709','2022-07-18 22:51:03',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(1232,'4000','121658173709','2022-07-18 22:51:03',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1233,'4000','121658173709','2022-07-18 22:51:03',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1234,'4000','121658173709','2022-07-18 22:51:03',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1235,'1110','121658219636','2022-07-19 11:34:11',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(1236,'5500','121658219636','2022-07-19 11:34:11',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1237,'1000','121658219636','2022-07-19 11:34:11',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1238,'4000','121658219636','2022-07-19 11:34:11',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(1239,'1110','121658237699','2022-07-19 16:35:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1240,'5500','121658237699','2022-07-19 16:35:20',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1241,'1000','121658237699','2022-07-19 16:35:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1242,'4000','121658237699','2022-07-19 16:35:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1243,'1110','121658249698','2022-07-19 19:55:04',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(1244,'1110','121658249698','2022-07-19 19:55:04',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1245,'5500','121658249698','2022-07-19 19:55:04',1767.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1246,'1000','121658249698','2022-07-19 19:55:04',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1247,'4000','121658249698','2022-07-19 19:55:04',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(1248,'4000','121658249698','2022-07-19 19:55:04',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1249,'1110','121658249846','2022-07-19 19:57:34',NULL,251.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(1250,'5500','121658249846','2022-07-19 19:57:34',251.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1251,'1000','121658249846','2022-07-19 19:57:34',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1252,'4000','121658249846','2022-07-19 19:57:34',NULL,400.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(1253,'1110','121658249926','2022-07-19 20:38:44',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1254,'5500','121658249926','2022-07-19 20:38:44',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1255,'1000','121658249926','2022-07-19 20:38:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1256,'4000','121658249926','2022-07-19 20:38:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1257,'1110','121658256593','2022-07-19 21:50:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1258,'5500','121658256593','2022-07-19 21:50:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1259,'1000','121658256593','2022-07-19 21:50:58',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1260,'4000','121658256593','2022-07-19 21:50:58',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1261,'1110','121658256702','2022-07-19 22:19:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1262,'5500','121658256702','2022-07-19 22:19:40',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1263,'1000','121658256702','2022-07-19 22:19:40',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1264,'4000','121658256702','2022-07-19 22:19:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1265,'1110','121658258409','2022-07-19 22:50:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1266,'5500','121658258409','2022-07-19 22:50:25',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1267,'1000','121658258409','2022-07-19 22:50:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1268,'4000','121658258409','2022-07-19 22:50:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1269,'1110','121658260259','2022-07-19 23:41:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1270,'1110','121658260259','2022-07-19 23:41:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1271,'5500','121658260259','2022-07-19 23:41:28',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1272,'1000','121658260259','2022-07-19 23:41:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1273,'4000','121658260259','2022-07-19 23:41:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1274,'4000','121658260259','2022-07-19 23:41:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1275,'1110','121658328591','2022-07-20 17:49:59',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1276,'5500','121658328591','2022-07-20 17:49:59',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1277,'1000','121658328591','2022-07-20 17:49:59',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1278,'4000','121658328591','2022-07-20 17:49:59',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1279,'1110','121658336980','2022-07-20 20:24:57',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1280,'5500','121658336980','2022-07-20 20:24:57',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1281,'1000','121658336980','2022-07-20 20:24:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1282,'4000','121658336980','2022-07-20 20:24:57',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1283,'1110','121658338059','2022-07-20 21:41:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1284,'5500','121658338059','2022-07-20 21:41:24',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1285,'1000','121658338059','2022-07-20 21:41:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1286,'4000','121658338059','2022-07-20 21:41:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1287,'1110','121658342543','2022-07-20 21:58:26',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(1288,'5500','121658342543','2022-07-20 21:58:26',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1289,'1000','121658342543','2022-07-20 21:58:26',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1290,'4000','121658342543','2022-07-20 21:58:26',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(1291,'1110','121658343577','2022-07-20 22:00:26',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1292,'5500','121658343577','2022-07-20 22:00:26',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1293,'1000','121658343577','2022-07-20 22:00:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1294,'4000','121658343577','2022-07-20 22:00:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1295,'1110','121658343638','2022-07-20 22:01:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1296,'1110','121658343638','2022-07-20 22:01:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1297,'1110','121658343638','2022-07-20 22:01:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1298,'1110','121658343638','2022-07-20 22:01:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1299,'1110','121658343638','2022-07-20 22:01:53',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(1300,'5500','121658343638','2022-07-20 22:01:53',1070.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1301,'1000','121658343638','2022-07-20 22:01:53',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1302,'4000','121658343638','2022-07-20 22:01:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1303,'4000','121658343638','2022-07-20 22:01:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1304,'4000','121658343638','2022-07-20 22:01:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1305,'4000','121658343638','2022-07-20 22:01:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1306,'4000','121658343638','2022-07-20 22:01:53',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(1307,'1110','121658343772','2022-07-20 22:17:00',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1308,'5500','121658343772','2022-07-20 22:17:00',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1309,'1000','121658343772','2022-07-20 22:17:00',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1310,'4000','121658343772','2022-07-20 22:17:00',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1311,'1110','121658344684','2022-07-20 22:33:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1312,'1110','121658344684','2022-07-20 22:33:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1313,'1110','121658344684','2022-07-20 22:33:28',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1314,'5500','121658344684','2022-07-20 22:33:28',454.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1315,'1000','121658344684','2022-07-20 22:33:28',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1316,'4000','121658344684','2022-07-20 22:33:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1317,'4000','121658344684','2022-07-20 22:33:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1318,'4000','121658344684','2022-07-20 22:33:28',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1319,'1110','121658345649','2022-07-20 22:56:43',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(1320,'5500','121658345649','2022-07-20 22:56:43',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1321,'1000','121658345649','2022-07-20 22:56:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1322,'4000','121658345649','2022-07-20 22:56:43',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(1323,'1110','121658347190','2022-07-20 23:16:12',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1324,'1110','121658347190','2022-07-20 23:16:12',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1325,'5500','121658347190','2022-07-20 23:16:12',1316.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1326,'1000','121658347190','2022-07-20 23:16:12',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1327,'4000','121658347190','2022-07-20 23:16:12',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1328,'4000','121658347190','2022-07-20 23:16:12',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1329,'1110','121658348412','2022-07-20 23:22:54',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(1330,'1110','121658348412','2022-07-20 23:22:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1331,'5500','121658348412','2022-07-20 23:22:54',908.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1332,'1000','121658348412','2022-07-20 23:22:54',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1333,'4000','121658348412','2022-07-20 23:22:54',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(1334,'4000','121658348412','2022-07-20 23:22:54',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1335,'1110','121658403330','2022-07-21 14:35:38',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1336,'5500','121658403330','2022-07-21 14:35:38',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1337,'1000','121658403330','2022-07-21 14:35:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1338,'4000','121658403330','2022-07-21 14:35:38',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1339,'1110','121658403383','2022-07-21 15:07:43',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1340,'5500','121658403383','2022-07-21 15:07:43',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1341,'1000','121658403383','2022-07-21 15:07:43',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1342,'4000','121658403383','2022-07-21 15:07:43',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1345,'1000','121658414168','2022-07-21 17:36:12',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1347,'1110','121658414168','2022-07-21 17:36:12',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1348,'5500','121658414168','2022-07-21 18:50:44',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1349,'1000','121658414168','2022-07-21 17:36:12',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1350,'4000','121658414168','2022-07-21 17:36:12',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1355,'1000','121658419694','2022-07-21 19:14:07',6140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1359,'1110','121658419694','2022-07-21 19:14:07',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1360,'1110','121658419694','2022-07-21 19:34:09',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1361,'1110','121658419694','2022-07-21 19:34:09',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1362,'1110','121658419694','2022-07-21 19:34:09',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1363,'5500','121658419694','2022-07-21 19:34:09',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1364,'1000','121658419694','2022-07-21 19:14:07',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1365,'4000','121658419694','2022-07-21 19:14:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1366,'4000','121658419694','2022-07-21 19:34:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1367,'4000','121658419694','2022-07-21 19:34:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1368,'4000','121658419694','2022-07-21 19:34:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1369,'1110','121658421402','2022-07-21 20:42:55',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1370,'5500','121658421402','2022-07-21 20:42:55',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1371,'1000','121658421402','2022-07-21 20:42:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1372,'4000','121658421402','2022-07-21 20:42:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1373,'1110','121658480654','2022-07-22 12:04:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1374,'5500','121658480654','2022-07-22 12:04:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1375,'1000','121658480654','2022-07-22 12:04:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1376,'4000','121658480654','2022-07-22 12:04:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1377,'1110','121658488527','2022-07-22 15:05:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1378,'5500','121658488527','2022-07-22 15:05:40',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1379,'1000','121658488527','2022-07-22 15:05:40',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1380,'4000','121658488527','2022-07-22 15:05:40',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1381,'1110','121658494707','2022-07-22 16:36:22',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1382,'5500','121658494707','2022-07-22 16:36:22',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1383,'1000','121658494707','2022-07-22 16:36:22',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1384,'4000','121658494707','2022-07-22 16:36:22',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1385,'1110','121658497047','2022-07-22 17:27:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1386,'5500','121658497047','2022-07-22 17:27:36',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1387,'1000','121658497047','2022-07-22 17:27:36',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1388,'4000','121658497047','2022-07-22 17:27:36',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1389,'1110','121658500098','2022-07-22 19:06:56',NULL,251.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(1390,'5500','121658500098','2022-07-22 19:06:56',251.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1391,'1000','121658500098','2022-07-22 19:06:56',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1392,'4000','121658500098','2022-07-22 19:06:56',NULL,400.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(1393,'1110','121658506256','2022-07-22 19:11:23',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1394,'5500','121658506256','2022-07-22 19:11:23',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1395,'1000','121658506256','2022-07-22 19:11:23',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1396,'4000','121658506256','2022-07-22 19:11:23',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1397,'1110','121658509884','2022-07-22 20:12:29',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(1398,'1110','121658509884','2022-07-22 20:12:29',NULL,3300.00,'','12','1','Inventory sold','1','','sales','5099873011737','','No',NULL,NULL,''),(1399,'5500','121658509884','2022-07-22 20:12:29',12500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1400,'1000','121658509884','2022-07-22 20:12:29',17000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1401,'4000','121658509884','2022-07-22 20:12:29',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(1402,'4000','121658509884','2022-07-22 20:12:29',NULL,4500.00,'','12','1','Good sold','1','','sales','5099873011737','','No',NULL,NULL,''),(1403,'1110','121658510027','2022-07-22 20:14:58',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1404,'5500','121658510027','2022-07-22 20:14:58',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1405,'1000','121658510027','2022-07-22 20:14:58',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1406,'4000','121658510027','2022-07-22 20:14:58',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1407,'1110','121658510103','2022-07-22 21:15:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1408,'5500','121658510103','2022-07-22 21:15:21',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1409,'1000','121658510103','2022-07-22 21:15:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1410,'4000','121658510103','2022-07-22 21:15:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1413,'1000','121658513781','2022-07-22 22:01:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1415,'1110','121658513781','2022-07-22 22:01:35',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1416,'1110','121658513781','2022-07-22 23:14:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1417,'5500','121658513781','2022-07-22 23:14:25',1166.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1418,'1000','121658513781','2022-07-22 22:01:35',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1419,'4000','121658513781','2022-07-22 22:01:35',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1420,'4000','121658513781','2022-07-22 23:14:25',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1421,'1110','121658521197','2022-07-22 23:20:15',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1422,'5500','121658521197','2022-07-22 23:20:15',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1423,'1000','121658521197','2022-07-22 23:20:15',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1424,'4000','121658521197','2022-07-22 23:20:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1425,'1110','121658521569','2022-07-22 23:26:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1426,'1110','121658521569','2022-07-22 23:26:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1427,'5500','121658521569','2022-07-22 23:26:41',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1428,'1000','121658521569','2022-07-22 23:26:41',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1429,'4000','121658521569','2022-07-22 23:26:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1430,'4000','121658521569','2022-07-22 23:26:41',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1431,'1110','121658521771','2022-07-22 23:41:26',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1432,'1110','121658521771','2022-07-22 23:41:26',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1433,'1110','121658521771','2022-07-22 23:41:26',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1434,'1110','121658521771','2022-07-22 23:41:26',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1435,'5500','121658521771','2022-07-22 23:41:26',646.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1436,'1000','121658521771','2022-07-22 23:41:26',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1437,'4000','121658521771','2022-07-22 23:41:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1438,'4000','121658521771','2022-07-22 23:41:26',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1439,'4000','121658521771','2022-07-22 23:41:26',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1440,'4000','121658521771','2022-07-22 23:41:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1441,'1110','121658522527','2022-07-22 23:53:02',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(1442,'1110','121658522527','2022-07-22 23:53:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1443,'5500','121658522527','2022-07-22 23:53:02',241.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1444,'1000','121658522527','2022-07-22 23:53:02',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1445,'4000','121658522527','2022-07-22 23:53:02',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(1446,'4000','121658522527','2022-07-22 23:53:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1447,'1110','121658523248','2022-07-22 23:54:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1448,'1110','121658523248','2022-07-22 23:54:47',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1449,'5500','121658523248','2022-07-22 23:54:47',2027.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1450,'1000','121658523248','2022-07-22 23:54:47',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1451,'4000','121658523248','2022-07-22 23:54:47',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1452,'4000','121658523248','2022-07-22 23:54:47',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1453,'1110','121658569256','2022-07-23 12:41:00',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1454,'5500','121658569256','2022-07-23 12:41:00',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1455,'1000','121658569256','2022-07-23 12:41:00',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1456,'4000','121658569256','2022-07-23 12:41:00',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1457,'1110','121658569323','2022-07-23 12:59:28',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(1458,'5500','121658569323','2022-07-23 12:59:28',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1459,'1000','121658569323','2022-07-23 12:59:28',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1460,'4000','121658569323','2022-07-23 12:59:28',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(1461,'1110','121658570400','2022-07-23 13:18:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1462,'5500','121658570400','2022-07-23 13:18:41',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1463,'1000','121658570400','2022-07-23 13:18:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1464,'4000','121658570400','2022-07-23 13:18:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1465,'1110','121658581196','2022-07-23 16:00:05',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1466,'5500','121658581196','2022-07-23 16:00:05',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1467,'1000','121658581196','2022-07-23 16:00:05',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1468,'4000','121658581196','2022-07-23 16:00:05',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1469,'1110','121658581282','2022-07-23 16:04:39',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1470,'5500','121658581282','2022-07-23 16:04:39',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1471,'1000','121658581282','2022-07-23 16:04:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1472,'4000','121658581282','2022-07-23 16:04:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1473,'1110','121658581565','2022-07-23 16:33:52',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(1474,'1110','121658581565','2022-07-23 16:33:52',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1475,'5500','121658581565','2022-07-23 16:33:52',864.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1476,'1000','121658581565','2022-07-23 16:33:52',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1477,'4000','121658581565','2022-07-23 16:33:52',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(1478,'4000','121658581565','2022-07-23 16:33:52',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1481,'1000','121658585267','2022-07-23 17:07:52',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1483,'1110','121658585359','2022-07-23 18:02:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1484,'1110','121658585359','2022-07-23 18:02:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1485,'1110','121658585359','2022-07-23 18:02:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1486,'1110','121658585359','2022-07-23 18:02:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1487,'5500','121658585359','2022-07-23 18:02:47',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1488,'1000','121658585359','2022-07-23 18:02:47',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1489,'4000','121658585359','2022-07-23 18:02:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1490,'4000','121658585359','2022-07-23 18:02:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1491,'4000','121658585359','2022-07-23 18:02:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1492,'4000','121658585359','2022-07-23 18:02:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1493,'1110','121658585267','2022-07-23 17:07:52',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1494,'5500','121658585267','2022-07-23 18:40:50',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1495,'1000','121658585267','2022-07-23 17:07:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1496,'4000','121658585267','2022-07-23 17:07:52',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1497,'1110','121658591115','2022-07-23 19:41:30',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1498,'5500','121658591115','2022-07-23 19:41:30',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1499,'1000','121658591115','2022-07-23 19:41:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1500,'4000','121658591115','2022-07-23 19:41:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(1501,'1110','121658594603','2022-07-23 19:49:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1502,'5500','121658594603','2022-07-23 19:49:42',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1503,'1000','121658594603','2022-07-23 19:49:42',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1504,'4000','121658594603','2022-07-23 19:49:42',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1505,'1110','121658595094','2022-07-23 19:59:42',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1506,'5500','121658595094','2022-07-23 19:59:42',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1507,'1000','121658595094','2022-07-23 19:59:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1508,'4000','121658595094','2022-07-23 19:59:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1509,'1110','121658595702','2022-07-23 20:15:25',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(1510,'1110','121658595702','2022-07-23 20:15:25',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1511,'5500','121658595702','2022-07-23 20:15:25',388.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1512,'1000','121658595702','2022-07-23 20:15:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1513,'4000','121658595702','2022-07-23 20:15:25',NULL,430.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(1514,'4000','121658595702','2022-07-23 20:15:25',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1515,'1110','121658600004','2022-07-23 21:14:49',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1516,'5500','121658600004','2022-07-23 21:14:49',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1517,'1000','121658600004','2022-07-23 21:14:49',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1518,'4000','121658600004','2022-07-23 21:14:49',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1519,'1110','121658601989','2022-07-23 21:50:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1520,'1110','121658601989','2022-07-23 21:50:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1521,'1110','121658601989','2022-07-23 21:50:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1522,'1110','121658601989','2022-07-23 21:50:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1523,'1110','121658601989','2022-07-23 21:50:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1524,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1525,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1526,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1527,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1528,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1529,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1530,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1531,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1532,'1110','121658601989','2022-07-23 21:50:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1533,'5500','121658601989','2022-07-23 21:50:06',2985.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1534,'1000','121658601989','2022-07-23 21:50:06',4130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1535,'4000','121658601989','2022-07-23 21:50:06',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1536,'4000','121658601989','2022-07-23 21:50:06',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1537,'4000','121658601989','2022-07-23 21:50:06',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1538,'4000','121658601989','2022-07-23 21:50:06',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1539,'4000','121658601989','2022-07-23 21:50:06',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(1540,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1541,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1542,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1543,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1544,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1545,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1546,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1547,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1548,'4000','121658601989','2022-07-23 21:50:06',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1549,'1110','121658602339','2022-07-23 22:00:46',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(1550,'5500','121658602339','2022-07-23 22:00:46',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1551,'1000','121658602339','2022-07-23 22:00:46',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1552,'4000','121658602339','2022-07-23 22:00:46',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(1553,'1110','121658602925','2022-07-23 22:02:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1554,'1110','121658602925','2022-07-23 22:02:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1555,'1110','121658602925','2022-07-23 22:02:33',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1556,'5500','121658602925','2022-07-23 22:02:33',408.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1557,'1000','121658602925','2022-07-23 22:02:33',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1558,'4000','121658602925','2022-07-23 22:02:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1559,'4000','121658602925','2022-07-23 22:02:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1560,'4000','121658602925','2022-07-23 22:02:33',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1561,'1110','121658602967','2022-07-23 22:06:47',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1562,'1110','121658602967','2022-07-23 22:06:47',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1563,'1110','121658602967','2022-07-23 22:06:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1564,'1110','121658602967','2022-07-23 22:06:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(1565,'1110','121658602967','2022-07-23 22:06:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(1566,'5500','121658602967','2022-07-23 22:06:47',2807.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1567,'1000','121658602967','2022-07-23 22:06:47',3840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1568,'4000','121658602967','2022-07-23 22:06:47',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1569,'4000','121658602967','2022-07-23 22:06:47',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1570,'4000','121658602967','2022-07-23 22:06:47',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1571,'4000','121658602967','2022-07-23 22:06:47',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(1572,'4000','121658602967','2022-07-23 22:06:47',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(1573,'1110','121658603787','2022-07-23 22:16:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1574,'1110','121658603787','2022-07-23 22:16:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1575,'1110','121658603787','2022-07-23 22:16:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1576,'1110','121658603787','2022-07-23 22:16:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1577,'1110','121658603787','2022-07-23 22:16:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1578,'5500','121658603787','2022-07-23 22:16:42',948.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1579,'1000','121658603787','2022-07-23 22:16:42',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1580,'4000','121658603787','2022-07-23 22:16:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1581,'4000','121658603787','2022-07-23 22:16:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1582,'4000','121658603787','2022-07-23 22:16:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1583,'4000','121658603787','2022-07-23 22:16:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1584,'4000','121658603787','2022-07-23 22:16:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1585,'1110','121658603891','2022-07-23 22:51:11',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1586,'1110','121658603891','2022-07-23 22:51:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1587,'5500','121658603891','2022-07-23 22:51:11',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1588,'1000','121658603891','2022-07-23 22:51:11',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1589,'4000','121658603891','2022-07-23 22:51:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1590,'4000','121658603891','2022-07-23 22:51:11',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1591,'1110','121658610976','2022-07-24 00:17:57',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1592,'1110','121658610976','2022-07-24 00:17:57',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1593,'5500','121658610976','2022-07-24 00:17:57',1166.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1594,'1000','121658610976','2022-07-24 00:17:57',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1595,'4000','121658610976','2022-07-24 00:17:57',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(1596,'4000','121658610976','2022-07-24 00:17:57',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(1597,'1110','121658661148','2022-07-24 14:12:40',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1598,'5500','121658661148','2022-07-24 14:12:40',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1599,'1000','121658661148','2022-07-24 14:12:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1600,'4000','121658661148','2022-07-24 14:12:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1601,'1110','121658667313','2022-07-24 16:25:29',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(1602,'1110','121658667313','2022-07-24 16:25:29',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1603,'1110','121658667313','2022-07-24 16:25:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1604,'5500','121658667313','2022-07-24 16:25:29',297.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1605,'1000','121658667313','2022-07-24 16:25:29',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1606,'4000','121658667313','2022-07-24 16:25:29',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(1607,'4000','121658667313','2022-07-24 16:25:29',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1608,'4000','121658667313','2022-07-24 16:25:29',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1609,'1110','121658669136','2022-07-24 16:46:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1610,'5500','121658669136','2022-07-24 16:46:51',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1611,'1000','121658669136','2022-07-24 16:46:51',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1612,'4000','121658669136','2022-07-24 16:46:51',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1613,'1110','121658670424','2022-07-24 17:26:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1614,'1110','121658670424','2022-07-24 17:26:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1615,'5500','121658670424','2022-07-24 17:26:02',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1616,'1000','121658670424','2022-07-24 17:26:02',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1617,'4000','121658670424','2022-07-24 17:26:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1618,'4000','121658670424','2022-07-24 17:26:02',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(1619,'1110','121658672889','2022-07-24 17:55:56',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1620,'1110','121658672889','2022-07-24 17:55:56',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1621,'5500','121658672889','2022-07-24 17:55:56',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1622,'1000','121658672889','2022-07-24 17:55:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1623,'4000','121658672889','2022-07-24 17:55:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1624,'4000','121658672889','2022-07-24 17:55:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1625,'1110','121658674620','2022-07-24 18:30:32',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1626,'5500','121658674620','2022-07-24 18:30:32',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1627,'1000','121658674620','2022-07-24 18:30:32',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1628,'4000','121658674620','2022-07-24 18:30:32',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1629,'1110','121658683381','2022-07-24 20:23:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1630,'5500','121658683381','2022-07-24 20:23:12',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1631,'1000','121658683381','2022-07-24 20:23:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1632,'4000','121658683381','2022-07-24 20:23:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1633,'1110','121658683499','2022-07-24 21:08:07',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(1634,'1110','121658683499','2022-07-24 21:08:07',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1635,'5500','121658683499','2022-07-24 21:08:07',1646.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1636,'1000','121658683499','2022-07-24 21:08:07',2140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1637,'4000','121658683499','2022-07-24 21:08:07',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(1638,'4000','121658683499','2022-07-24 21:08:07',NULL,140.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1639,'1110','121658686091','2022-07-24 21:12:31',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1640,'1110','121658686091','2022-07-24 21:12:31',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1641,'1110','121658686091','2022-07-24 21:12:31',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1642,'1110','121658686091','2022-07-24 21:12:31',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1643,'5500','121658686091','2022-07-24 21:12:31',1021.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1644,'1000','121658686091','2022-07-24 21:12:31',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1645,'4000','121658686091','2022-07-24 21:12:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1646,'4000','121658686091','2022-07-24 21:12:31',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1647,'4000','121658686091','2022-07-24 21:12:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1648,'4000','121658686091','2022-07-24 21:12:31',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1649,'1110','121658686354','2022-07-24 21:18:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1650,'5500','121658686354','2022-07-24 21:18:56',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1651,'1000','121658686354','2022-07-24 21:18:56',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1652,'4000','121658686354','2022-07-24 21:18:56',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1653,'1110','121658686748','2022-07-24 22:13:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1654,'1110','121658686748','2022-07-24 22:13:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1655,'1110','121658686748','2022-07-24 22:13:17',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(1656,'5500','121658686748','2022-07-24 22:13:17',843.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1657,'1000','121658686748','2022-07-24 22:13:17',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1658,'4000','121658686748','2022-07-24 22:13:17',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1659,'4000','121658686748','2022-07-24 22:13:17',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1660,'4000','121658686748','2022-07-24 22:13:17',NULL,750.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(1661,'1110','121658690118','2022-07-24 22:23:31',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1662,'1110','121658690118','2022-07-24 22:23:31',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(1663,'1110','121658690118','2022-07-24 22:23:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1664,'5500','121658690118','2022-07-24 22:23:31',382.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1665,'1000','121658690118','2022-07-24 22:23:31',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1666,'4000','121658690118','2022-07-24 22:23:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1667,'4000','121658690118','2022-07-24 22:23:31',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(1668,'4000','121658690118','2022-07-24 22:23:31',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1669,'1110','121658690680','2022-07-24 22:27:55',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1670,'1110','121658690680','2022-07-24 22:27:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1671,'5500','121658690680','2022-07-24 22:27:55',688.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1672,'1000','121658690680','2022-07-24 22:27:55',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1673,'4000','121658690680','2022-07-24 22:27:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1674,'4000','121658690680','2022-07-24 22:27:55',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1675,'1110','121658690879','2022-07-24 22:30:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1676,'5500','121658690879','2022-07-24 22:30:45',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1677,'1000','121658690879','2022-07-24 22:30:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1678,'4000','121658690879','2022-07-24 22:30:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1679,'1110','121658691068','2022-07-24 22:46:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1680,'1110','121658691068','2022-07-24 22:46:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1681,'1110','121658691068','2022-07-24 22:46:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(1682,'5500','121658691068','2022-07-24 22:46:35',160.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1683,'1000','121658691068','2022-07-24 22:46:35',210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1684,'4000','121658691068','2022-07-24 22:46:35',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1685,'4000','121658691068','2022-07-24 22:46:35',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1686,'4000','121658691068','2022-07-24 22:46:35',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(1687,'1110','121658692081','2022-07-24 23:04:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1688,'5500','121658692081','2022-07-24 23:04:48',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1689,'1000','121658692081','2022-07-24 23:04:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1690,'4000','121658692081','2022-07-24 23:04:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1691,'1110','121658693218','2022-07-24 23:16:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(1692,'5500','121658693218','2022-07-24 23:16:55',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1693,'1000','121658693218','2022-07-24 23:16:55',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1694,'4000','121658693218','2022-07-24 23:16:55',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(1695,'1110','121658693826','2022-07-24 23:30:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1696,'1110','121658693826','2022-07-24 23:30:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1697,'1110','121658693826','2022-07-24 23:30:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1698,'1110','121658693826','2022-07-24 23:30:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1699,'5500','121658693826','2022-07-24 23:30:18',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1700,'1000','121658693826','2022-07-24 23:30:18',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1701,'4000','121658693826','2022-07-24 23:30:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1702,'4000','121658693826','2022-07-24 23:30:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1703,'4000','121658693826','2022-07-24 23:30:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1704,'4000','121658693826','2022-07-24 23:30:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1705,'1110','121658736882','2022-07-25 11:22:03',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1706,'5500','121658736882','2022-07-25 11:22:03',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1707,'1000','121658736882','2022-07-25 11:22:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1708,'4000','121658736882','2022-07-25 11:22:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1709,'1110','121658754544','2022-07-25 16:09:23',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1710,'1110','121658754544','2022-07-25 16:09:23',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1711,'5500','121658754544','2022-07-25 16:09:23',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1712,'1000','121658754544','2022-07-25 16:09:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1713,'4000','121658754544','2022-07-25 16:09:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1714,'4000','121658754544','2022-07-25 16:09:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1717,'1000','121658756022','2022-07-25 17:32:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1719,'1110','121658756022','2022-07-25 17:32:36',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1720,'5500','121658756022','2022-07-25 18:26:14',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1721,'1000','121658756022','2022-07-25 17:32:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1722,'4000','121658756022','2022-07-25 17:32:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(1723,'1110','121658769148','2022-07-25 20:21:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1724,'5500','121658769148','2022-07-25 20:21:21',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1725,'1000','121658769148','2022-07-25 20:21:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1726,'4000','121658769148','2022-07-25 20:21:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1727,'1110','121658769763','2022-07-25 21:26:06',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1728,'5500','121658769763','2022-07-25 21:26:06',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1729,'1000','121658769763','2022-07-25 21:26:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1730,'4000','121658769763','2022-07-25 21:26:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1731,'1110','121658774045','2022-07-25 22:10:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1732,'1110','121658774045','2022-07-25 22:10:52',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1733,'5500','121658774045','2022-07-25 22:10:52',226.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1734,'1000','121658774045','2022-07-25 22:10:52',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1735,'4000','121658774045','2022-07-25 22:10:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1736,'4000','121658774045','2022-07-25 22:10:52',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1737,'1110','121658776353','2022-07-25 22:15:21',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1738,'1110','121658776353','2022-07-25 22:15:21',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1739,'1110','121658776353','2022-07-25 22:15:21',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1740,'1110','121658776353','2022-07-25 22:15:21',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1741,'5500','121658776353','2022-07-25 22:15:21',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1742,'1000','121658776353','2022-07-25 22:15:21',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1743,'4000','121658776353','2022-07-25 22:15:21',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1744,'4000','121658776353','2022-07-25 22:15:21',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1745,'4000','121658776353','2022-07-25 22:15:21',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1746,'4000','121658776353','2022-07-25 22:15:21',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1747,'1110','121658824316','2022-07-26 11:32:02',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(1748,'5500','121658824316','2022-07-26 11:32:02',93.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1749,'1000','121658824316','2022-07-26 11:32:02',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1750,'4000','121658824316','2022-07-26 11:32:02',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(1751,'1110','121658836957','2022-07-26 15:48:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1752,'1110','121658836957','2022-07-26 15:48:06',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1753,'1110','121658836957','2022-07-26 15:48:06',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1754,'1110','121658836957','2022-07-26 15:48:06',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1755,'1110','121658836957','2022-07-26 15:48:06',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1756,'1110','121658836957','2022-07-26 15:48:06',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1757,'1110','121658836957','2022-07-26 15:48:06',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1758,'5500','121658836957','2022-07-26 15:48:06',962.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1759,'1000','121658836957','2022-07-26 15:48:06',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1760,'4000','121658836957','2022-07-26 15:48:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1761,'4000','121658836957','2022-07-26 15:48:06',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(1762,'4000','121658836957','2022-07-26 15:48:06',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1763,'4000','121658836957','2022-07-26 15:48:06',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1764,'4000','121658836957','2022-07-26 15:48:06',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1765,'4000','121658836957','2022-07-26 15:48:06',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1766,'4000','121658836957','2022-07-26 15:48:06',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(1769,'1000','121658846227','2022-07-26 17:37:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1771,'1110','121658846227','2022-07-26 17:37:40',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1772,'1110','121658846227','2022-07-26 19:21:26',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1773,'1110','121658846227','2022-07-26 19:21:26',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1774,'1110','121658846227','2022-07-26 19:21:26',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1775,'1110','121658846227','2022-07-26 19:21:26',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(1776,'5500','121658846227','2022-07-26 19:21:26',1512.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1777,'1000','121658846227','2022-07-26 17:37:40',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1778,'4000','121658846227','2022-07-26 17:37:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1779,'4000','121658846227','2022-07-26 19:21:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1780,'4000','121658846227','2022-07-26 19:21:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1781,'4000','121658846227','2022-07-26 19:21:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1782,'4000','121658846227','2022-07-26 19:21:26',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(1783,'1110','121658852538','2022-07-26 19:24:41',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1784,'5500','121658852538','2022-07-26 19:24:41',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1785,'1000','121658852538','2022-07-26 19:24:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1786,'4000','121658852538','2022-07-26 19:24:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(1787,'1110','121658852685','2022-07-26 21:13:22',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1788,'1110','121658852685','2022-07-26 21:13:22',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1789,'1110','121658852685','2022-07-26 21:13:22',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1790,'5500','121658852685','2022-07-26 21:13:22',522.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1791,'1000','121658852685','2022-07-26 21:13:22',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1792,'4000','121658852685','2022-07-26 21:13:22',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1793,'4000','121658852685','2022-07-26 21:13:22',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1794,'4000','121658852685','2022-07-26 21:13:22',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(1795,'1110','121658859237','2022-07-26 21:15:17',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1796,'1110','121658859237','2022-07-26 21:15:17',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1797,'5500','121658859237','2022-07-26 21:15:17',2300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1798,'1000','121658859237','2022-07-26 21:15:17',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1799,'4000','121658859237','2022-07-26 21:15:17',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1800,'4000','121658859237','2022-07-26 21:15:17',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1801,'1110','121658859621','2022-07-26 21:20:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1802,'1110','121658859621','2022-07-26 21:20:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1803,'5500','121658859621','2022-07-26 21:20:26',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1804,'1000','121658859621','2022-07-26 21:20:26',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1805,'4000','121658859621','2022-07-26 21:20:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1806,'4000','121658859621','2022-07-26 21:20:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1809,'1000','121658859699','2022-07-26 21:21:59',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1811,'1110','121658859699','2022-07-26 21:21:59',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1812,'1110','121658859699','2022-07-26 21:43:31',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1813,'1110','121658859699','2022-07-26 21:43:31',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1814,'1110','121658859699','2022-07-26 21:43:31',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1815,'5500','121658859699','2022-07-26 21:43:31',2632.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1816,'1000','121658859699','2022-07-26 21:21:59',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1817,'4000','121658859699','2022-07-26 21:21:59',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1818,'4000','121658859699','2022-07-26 21:43:31',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(1819,'4000','121658859699','2022-07-26 21:43:31',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1820,'4000','121658859699','2022-07-26 21:43:31',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(1821,'1110','121658861252','2022-07-26 22:47:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1822,'5500','121658861252','2022-07-26 22:47:36',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1823,'1000','121658861252','2022-07-26 22:47:36',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1824,'4000','121658861252','2022-07-26 22:47:36',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1825,'1110','121658864875','2022-07-26 23:23:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1826,'5500','121658864875','2022-07-26 23:23:19',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1827,'1000','121658864875','2022-07-26 23:23:19',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1828,'4000','121658864875','2022-07-26 23:23:19',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(1829,'1110','121658867139','2022-07-26 23:48:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1830,'1110','121658867139','2022-07-26 23:48:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1831,'5500','121658867139','2022-07-26 23:48:17',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1832,'1000','121658867139','2022-07-26 23:48:17',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1833,'4000','121658867139','2022-07-26 23:48:17',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1834,'4000','121658867139','2022-07-26 23:48:17',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1835,'1110','121658868546','2022-07-26 23:56:54',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(1836,'5500','121658868546','2022-07-26 23:56:54',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1837,'1000','121658868546','2022-07-26 23:56:54',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1838,'4000','121658868546','2022-07-26 23:56:54',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(1839,'1110','121658916118','2022-07-27 13:03:01',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(1840,'1110','121658916118','2022-07-27 13:03:01',NULL,2468.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(1841,'1110','121658916118','2022-07-27 13:03:01',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1842,'1110','121658916118','2022-07-27 13:03:01',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1843,'5500','121658916118','2022-07-27 13:03:01',4352.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1844,'1000','121658916118','2022-07-27 13:03:01',5350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1845,'4000','121658916118','2022-07-27 13:03:01',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(1846,'4000','121658916118','2022-07-27 13:03:01',NULL,2800.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(1847,'4000','121658916118','2022-07-27 13:03:01',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1848,'4000','121658916118','2022-07-27 13:03:01',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(1849,'1110','121658916321','2022-07-27 14:12:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(1850,'1110','121658916321','2022-07-27 14:12:13',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(1851,'5500','121658916321','2022-07-27 14:12:13',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1852,'1000','121658916321','2022-07-27 14:12:13',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1853,'4000','121658916321','2022-07-27 14:12:13',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(1854,'4000','121658916321','2022-07-27 14:12:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(1855,'1110','121658920529','2022-07-27 14:16:50',NULL,586.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(1856,'1110','121658920529','2022-07-27 14:16:50',NULL,586.00,'','12','1','Inventory sold','1','','sales','6161100420083','','No',NULL,NULL,''),(1857,'5500','121658920529','2022-07-27 14:16:50',1172.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1858,'1000','121658920529','2022-07-27 14:16:50',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1859,'4000','121658920529','2022-07-27 14:16:50',NULL,800.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(1860,'4000','121658920529','2022-07-27 14:16:50',NULL,800.00,'','12','1','Good sold','1','','sales','6161100420083','','No',NULL,NULL,''),(1861,'1110','121658938569','2022-07-27 19:17:32',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(1862,'5500','121658938569','2022-07-27 19:17:32',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1863,'1000','121658938569','2022-07-27 19:17:32',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1864,'4000','121658938569','2022-07-27 19:17:32',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(1865,'1110','121658938761','2022-07-27 19:19:26',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1866,'5500','121658938761','2022-07-27 19:19:26',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1867,'1000','121658938761','2022-07-27 19:19:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1868,'4000','121658938761','2022-07-27 19:19:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1869,'1110','121658938541','2022-07-27 19:25:15',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1870,'5500','121658938541','2022-07-27 19:25:15',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1871,'1000','121658938541','2022-07-27 19:25:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1872,'4000','121658938541','2022-07-27 19:25:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(1873,'1110','121658939123','2022-07-27 20:22:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1874,'5500','121658939123','2022-07-27 20:22:18',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1875,'1000','121658939123','2022-07-27 20:22:18',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1876,'4000','121658939123','2022-07-27 20:22:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1877,'1110','121658948230','2022-07-27 23:21:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1878,'1110','121658948230','2022-07-27 23:21:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1879,'1110','121658948230','2022-07-27 23:21:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1880,'5500','121658948230','2022-07-27 23:21:17',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1881,'1000','121658948230','2022-07-27 23:21:17',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1882,'4000','121658948230','2022-07-27 23:21:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1883,'4000','121658948230','2022-07-27 23:21:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1884,'4000','121658948230','2022-07-27 23:21:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1885,'1110','121658953377','2022-07-28 00:05:46',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1886,'1110','121658953377','2022-07-28 00:05:46',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1887,'1110','121658953377','2022-07-28 00:05:46',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1888,'1110','121658953377','2022-07-28 00:05:46',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1889,'1110','121658953377','2022-07-28 00:05:46',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1890,'5500','121658953377','2022-07-28 00:05:46',864.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1891,'1000','121658953377','2022-07-28 00:05:46',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1892,'4000','121658953377','2022-07-28 00:05:46',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1893,'4000','121658953377','2022-07-28 00:05:46',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1894,'4000','121658953377','2022-07-28 00:05:46',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1895,'4000','121658953377','2022-07-28 00:05:46',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1896,'4000','121658953377','2022-07-28 00:05:46',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(1897,'1110','121658996523','2022-07-28 12:21:12',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(1898,'5500','121658996523','2022-07-28 12:21:12',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1899,'1000','121658996523','2022-07-28 12:21:12',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1900,'4000','121658996523','2022-07-28 12:21:12',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(1901,'1110','121659008817','2022-07-28 14:47:12',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1902,'5500','121659008817','2022-07-28 14:47:12',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1903,'1000','121659008817','2022-07-28 14:47:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1904,'4000','121659008817','2022-07-28 14:47:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1905,'1110','121659010081','2022-07-28 15:08:27',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1906,'1110','121659010081','2022-07-28 15:08:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1907,'5500','121659010081','2022-07-28 15:08:27',256.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1908,'1000','121659010081','2022-07-28 15:08:27',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1909,'4000','121659010081','2022-07-28 15:08:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1910,'4000','121659010081','2022-07-28 15:08:27',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1911,'1110','121659016829','2022-07-28 17:01:41',NULL,3381.00,'','12','1','Inventory sold','1','','sales','5000291021925','','No',NULL,NULL,''),(1912,'1110','121659016829','2022-07-28 17:01:41',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1913,'5500','121659016829','2022-07-28 17:01:41',4531.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1914,'1000','121659016829','2022-07-28 17:01:41',6100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1915,'4000','121659016829','2022-07-28 17:01:41',NULL,4500.00,'','12','1','Good sold','1','','sales','5000291021925','','No',NULL,NULL,''),(1916,'4000','121659016829','2022-07-28 17:01:41',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(1917,'1110','121659017996','2022-07-28 18:08:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1918,'5500','121659017996','2022-07-28 18:08:38',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1919,'1000','121659017996','2022-07-28 18:08:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1920,'4000','121659017996','2022-07-28 18:08:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(1921,'1110','121659021079','2022-07-28 18:18:06',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1922,'1110','121659021079','2022-07-28 18:18:06',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1923,'1110','121659021079','2022-07-28 18:18:06',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1924,'5500','121659021079','2022-07-28 18:18:06',456.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1925,'1000','121659021079','2022-07-28 18:18:06',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1926,'4000','121659021079','2022-07-28 18:18:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1927,'4000','121659021079','2022-07-28 18:18:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1928,'4000','121659021079','2022-07-28 18:18:06',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(1929,'1110','121659021577','2022-07-28 18:22:15',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1930,'1110','121659021577','2022-07-28 18:22:15',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1931,'1110','121659021577','2022-07-28 18:22:15',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1932,'1110','121659021577','2022-07-28 18:22:15',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1933,'5500','121659021577','2022-07-28 18:22:15',906.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1934,'1000','121659021577','2022-07-28 18:22:15',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1935,'4000','121659021577','2022-07-28 18:22:15',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(1936,'4000','121659021577','2022-07-28 18:22:15',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1937,'4000','121659021577','2022-07-28 18:22:15',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(1938,'4000','121659021577','2022-07-28 18:22:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(1939,'1110','121659021857','2022-07-28 18:53:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1940,'1110','121659021857','2022-07-28 18:53:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1941,'5500','121659021857','2022-07-28 18:53:28',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1942,'1000','121659021857','2022-07-28 18:53:28',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1943,'4000','121659021857','2022-07-28 18:53:28',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1944,'4000','121659021857','2022-07-28 18:53:28',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(1945,'1110','121659023983','2022-07-28 19:23:17',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1946,'1110','121659023983','2022-07-28 19:23:17',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1947,'5500','121659023983','2022-07-28 19:23:17',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1948,'1000','121659023983','2022-07-28 19:23:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1949,'4000','121659023983','2022-07-28 19:23:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1950,'4000','121659023983','2022-07-28 19:23:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(1951,'1110','121659027134','2022-07-28 19:52:26',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1952,'5500','121659027134','2022-07-28 19:52:26',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1953,'1000','121659027134','2022-07-28 19:52:26',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1954,'4000','121659027134','2022-07-28 19:52:26',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(1955,'1110','121659027229','2022-07-28 21:08:20',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1956,'1110','121659027229','2022-07-28 21:08:20',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(1957,'5500','121659027229','2022-07-28 21:08:20',1940.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1958,'1000','121659027229','2022-07-28 21:08:20',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1959,'4000','121659027229','2022-07-28 21:08:20',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(1960,'4000','121659027229','2022-07-28 21:08:20',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(1961,'1110','121659031765','2022-07-28 21:41:08',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1962,'5500','121659031765','2022-07-28 21:41:08',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1963,'1000','121659031765','2022-07-28 21:41:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1964,'4000','121659031765','2022-07-28 21:41:08',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1965,'1110','121659033782','2022-07-28 21:56:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1966,'1110','121659033782','2022-07-28 21:56:29',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1967,'1110','121659033782','2022-07-28 21:56:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1968,'5500','121659033782','2022-07-28 21:56:29',553.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1969,'1000','121659033782','2022-07-28 21:56:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1970,'4000','121659033782','2022-07-28 21:56:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1971,'4000','121659033782','2022-07-28 21:56:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(1972,'4000','121659033782','2022-07-28 21:56:29',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(1973,'1110','121659038437','2022-07-28 23:02:00',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1974,'5500','121659038437','2022-07-28 23:02:00',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1975,'1000','121659038437','2022-07-28 23:02:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1976,'4000','121659038437','2022-07-28 23:02:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(1977,'1110','121659038613','2022-07-28 23:09:27',NULL,5458.00,'','12','1','Inventory sold','1','','sales','5000267134338','','No',NULL,NULL,''),(1978,'1110','121659038613','2022-07-28 23:09:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1979,'1110','121659038613','2022-07-28 23:09:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1980,'1110','121659038613','2022-07-28 23:09:27',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1981,'5500','121659038613','2022-07-28 23:09:27',5713.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1982,'1000','121659038613','2022-07-28 23:09:27',7640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1983,'4000','121659038613','2022-07-28 23:09:27',NULL,7300.00,'','12','1','Good sold','1','','sales','5000267134338','','No',NULL,NULL,''),(1984,'4000','121659038613','2022-07-28 23:09:27',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1985,'4000','121659038613','2022-07-28 23:09:27',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(1986,'4000','121659038613','2022-07-28 23:09:27',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(1987,'1110','121659040516','2022-07-28 23:36:55',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1988,'1110','121659040516','2022-07-28 23:36:55',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1989,'1110','121659040516','2022-07-28 23:36:55',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1990,'1110','121659040516','2022-07-28 23:36:55',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1991,'5500','121659040516','2022-07-28 23:36:55',681.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1992,'1000','121659040516','2022-07-28 23:36:55',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1993,'4000','121659040516','2022-07-28 23:36:55',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1994,'4000','121659040516','2022-07-28 23:36:55',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(1995,'4000','121659040516','2022-07-28 23:36:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1996,'4000','121659040516','2022-07-28 23:36:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(1997,'1110','121659090718','2022-07-29 13:32:36',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(1998,'5500','121659090718','2022-07-29 13:32:36',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1999,'1000','121659090718','2022-07-29 13:32:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2000,'4000','121659090718','2022-07-29 13:32:36',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(2001,'1110','121659094444','2022-07-29 14:41:28',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2002,'1110','121659094444','2022-07-29 14:41:28',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(2003,'1110','121659094444','2022-07-29 14:41:28',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2004,'1110','121659094444','2022-07-29 14:41:28',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(2005,'5500','121659094444','2022-07-29 14:41:28',787.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2006,'1000','121659094444','2022-07-29 14:41:28',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2007,'4000','121659094444','2022-07-29 14:41:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2008,'4000','121659094444','2022-07-29 14:41:28',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(2009,'4000','121659094444','2022-07-29 14:41:28',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2010,'4000','121659094444','2022-07-29 14:41:28',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(2011,'1110','121659099668','2022-07-29 16:07:09',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2012,'5500','121659099668','2022-07-29 16:07:09',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2013,'1000','121659099668','2022-07-29 16:07:09',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2014,'4000','121659099668','2022-07-29 16:07:09',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2015,'1110','121659103298','2022-07-29 17:15:43',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2016,'5500','121659103298','2022-07-29 17:15:43',3164.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2017,'1000','121659103298','2022-07-29 17:15:43',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2018,'4000','121659103298','2022-07-29 17:15:43',NULL,4300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2019,'1110','121659104369','2022-07-29 18:02:05',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2020,'5500','121659104369','2022-07-29 18:02:05',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2021,'1000','121659104369','2022-07-29 18:02:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2022,'4000','121659104369','2022-07-29 18:02:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2023,'1110','121659107670','2022-07-29 18:15:48',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2024,'1110','121659107670','2022-07-29 18:15:48',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2025,'1110','121659107670','2022-07-29 18:15:48',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2026,'5500','121659107670','2022-07-29 18:15:48',767.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2027,'1000','121659107670','2022-07-29 18:15:48',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2028,'4000','121659107670','2022-07-29 18:15:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2029,'4000','121659107670','2022-07-29 18:15:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2030,'4000','121659107670','2022-07-29 18:15:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2031,'1110','121659116369','2022-07-29 20:49:41',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2032,'5500','121659116369','2022-07-29 20:49:41',3164.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2033,'1000','121659116369','2022-07-29 20:49:41',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2034,'4000','121659116369','2022-07-29 20:49:41',NULL,4300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2035,'1110','121659117064','2022-07-29 20:57:53',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2036,'5500','121659117064','2022-07-29 20:57:53',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2037,'1000','121659117064','2022-07-29 20:57:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2038,'4000','121659117064','2022-07-29 20:57:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2039,'1110','121659117728','2022-07-29 21:29:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2040,'1110','121659117728','2022-07-29 21:29:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2041,'1110','121659117728','2022-07-29 21:29:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2042,'1110','121659117728','2022-07-29 21:29:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2043,'5500','121659117728','2022-07-29 21:29:41',619.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2044,'1000','121659117728','2022-07-29 21:29:41',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2045,'4000','121659117728','2022-07-29 21:29:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2046,'4000','121659117728','2022-07-29 21:29:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2047,'4000','121659117728','2022-07-29 21:29:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2048,'4000','121659117728','2022-07-29 21:29:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2049,'1110','121659119628','2022-07-29 21:57:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2050,'1110','121659119628','2022-07-29 21:57:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2051,'1110','121659119628','2022-07-29 21:57:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2052,'5500','121659119628','2022-07-29 21:57:46',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2053,'1000','121659119628','2022-07-29 21:57:46',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2054,'4000','121659119628','2022-07-29 21:57:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2055,'4000','121659119628','2022-07-29 21:57:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2056,'4000','121659119628','2022-07-29 21:57:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2057,'1110','121659121138','2022-07-29 22:06:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2058,'1110','121659121138','2022-07-29 22:06:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2059,'5500','121659121138','2022-07-29 22:06:14',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2060,'1000','121659121138','2022-07-29 22:06:14',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2061,'4000','121659121138','2022-07-29 22:06:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2062,'4000','121659121138','2022-07-29 22:06:14',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2063,'1110','121659121835','2022-07-29 22:10:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2064,'5500','121659121835','2022-07-29 22:10:48',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2065,'1000','121659121835','2022-07-29 22:10:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2066,'4000','121659121835','2022-07-29 22:10:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2067,'1110','121659124567','2022-07-29 22:59:36',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2068,'5500','121659124567','2022-07-29 22:59:36',3164.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2069,'1000','121659124567','2022-07-29 22:59:36',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2070,'4000','121659124567','2022-07-29 22:59:36',NULL,4300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2071,'1110','121659124882','2022-07-29 23:37:13',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(2072,'1110','121659124882','2022-07-29 23:37:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2073,'1110','121659124882','2022-07-29 23:37:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2074,'1110','121659124882','2022-07-29 23:37:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2075,'1110','121659124882','2022-07-29 23:37:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2076,'5500','121659124882','2022-07-29 23:37:13',2036.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2077,'1000','121659124882','2022-07-29 23:37:13',2780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2078,'4000','121659124882','2022-07-29 23:37:13',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(2079,'4000','121659124882','2022-07-29 23:37:13',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2080,'4000','121659124882','2022-07-29 23:37:13',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2081,'4000','121659124882','2022-07-29 23:37:13',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2082,'4000','121659124882','2022-07-29 23:37:13',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2083,'1110','121659127104','2022-07-30 00:15:18',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2084,'1110','121659127104','2022-07-30 00:15:18',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2085,'1110','121659127104','2022-07-30 00:15:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2086,'1110','121659127104','2022-07-30 00:15:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2087,'5500','121659127104','2022-07-30 00:15:18',725.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2088,'1000','121659127104','2022-07-30 00:15:18',1010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2089,'4000','121659127104','2022-07-30 00:15:18',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2090,'4000','121659127104','2022-07-30 00:15:18',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2091,'4000','121659127104','2022-07-30 00:15:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2092,'4000','121659127104','2022-07-30 00:15:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2093,'1110','121659129563','2022-07-30 00:54:20',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2094,'1110','121659129563','2022-07-30 00:54:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2095,'1110','121659129563','2022-07-30 00:54:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2096,'1110','121659129563','2022-07-30 00:54:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2097,'1110','121659129563','2022-07-30 00:54:20',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2098,'1110','121659129563','2022-07-30 00:54:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2099,'1110','121659129563','2022-07-30 00:54:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2100,'5500','121659129563','2022-07-30 00:54:20',1182.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2101,'1000','121659129563','2022-07-30 00:54:20',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2102,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2103,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2104,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2105,'4000','121659129563','2022-07-30 00:54:20',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2106,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2107,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2108,'4000','121659129563','2022-07-30 00:54:20',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2109,'1110','121659131791','2022-07-30 01:14:09',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2110,'5500','121659131791','2022-07-30 01:14:09',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2111,'1000','121659131791','2022-07-30 01:14:09',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2112,'4000','121659131791','2022-07-30 01:14:09',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2116,'1000','121659132912','2022-07-30 01:21:58',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2119,'1110','121659132912','2022-07-30 01:21:58',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2120,'5500','121659132912','2022-07-30 01:31:55',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2121,'1000','121659132912','2022-07-30 01:21:58',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2122,'4000','121659132912','2022-07-30 01:21:58',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2123,'1110','121659179709','2022-07-30 15:52:08',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2124,'5500','121659179709','2022-07-30 15:52:08',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2125,'1000','121659179709','2022-07-30 15:52:08',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2126,'4000','121659179709','2022-07-30 15:52:08',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2127,'1110','121659185802','2022-07-30 15:59:10',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2128,'1110','121659185802','2022-07-30 15:59:10',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2129,'1110','121659185802','2022-07-30 15:59:10',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2130,'1110','121659185802','2022-07-30 15:59:10',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2131,'5500','121659185802','2022-07-30 15:59:10',804.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2132,'1000','121659185802','2022-07-30 15:59:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2133,'4000','121659185802','2022-07-30 15:59:10',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2134,'4000','121659185802','2022-07-30 15:59:10',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2135,'4000','121659185802','2022-07-30 15:59:10',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2136,'4000','121659185802','2022-07-30 15:59:10',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2137,'1110','121659186318','2022-07-30 16:09:10',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(2138,'5500','121659186318','2022-07-30 16:09:10',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2139,'1000','121659186318','2022-07-30 16:09:10',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2140,'4000','121659186318','2022-07-30 16:09:10',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(2141,'1110','121659186650','2022-07-30 16:19:43',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2142,'5500','121659186650','2022-07-30 16:19:43',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2143,'1000','121659186650','2022-07-30 16:19:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2144,'4000','121659186650','2022-07-30 16:19:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2145,'1110','121659187267','2022-07-30 17:23:12',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2146,'5500','121659187267','2022-07-30 17:23:12',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2147,'1000','121659187267','2022-07-30 17:23:12',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2148,'4000','121659187267','2022-07-30 17:23:12',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2149,'1110','121659191147','2022-07-30 18:27:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2150,'5500','121659191147','2022-07-30 18:27:30',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2151,'1000','121659191147','2022-07-30 18:27:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2152,'4000','121659191147','2022-07-30 18:27:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2153,'1110','121659198447','2022-07-30 19:28:02',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2154,'5500','121659198447','2022-07-30 19:28:02',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2155,'1000','121659198447','2022-07-30 19:28:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2156,'4000','121659198447','2022-07-30 19:28:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2157,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2158,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2159,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2160,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2161,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2162,'1110','121659200388','2022-07-30 20:02:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2163,'5500','121659200388','2022-07-30 20:02:39',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2164,'1000','121659200388','2022-07-30 20:02:39',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2165,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2166,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2167,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2168,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2169,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2170,'4000','121659200388','2022-07-30 20:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2171,'1110','121659200653','2022-07-30 21:04:02',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2172,'5500','121659200653','2022-07-30 21:04:02',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2173,'1000','121659200653','2022-07-30 21:04:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2174,'4000','121659200653','2022-07-30 21:04:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2175,'1110','121659208883','2022-07-30 22:21:30',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2176,'1110','121659208883','2022-07-30 22:21:30',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2177,'1110','121659208883','2022-07-30 22:21:30',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2178,'5500','121659208883','2022-07-30 22:21:30',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2179,'1000','121659208883','2022-07-30 22:21:30',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2180,'4000','121659208883','2022-07-30 22:21:30',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2181,'4000','121659208883','2022-07-30 22:21:30',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2182,'4000','121659208883','2022-07-30 22:21:30',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2183,'1110','121659209051','2022-07-30 22:24:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2184,'1110','121659209051','2022-07-30 22:24:48',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2185,'5500','121659209051','2022-07-30 22:24:48',213.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2186,'1000','121659209051','2022-07-30 22:24:48',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2187,'4000','121659209051','2022-07-30 22:24:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2188,'4000','121659209051','2022-07-30 22:24:48',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2189,'1110','121659209252','2022-07-30 22:29:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2190,'5500','121659209252','2022-07-30 22:29:17',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2191,'1000','121659209252','2022-07-30 22:29:17',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2192,'4000','121659209252','2022-07-30 22:29:17',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2193,'1110','121659209916','2022-07-30 22:39:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2194,'5500','121659209916','2022-07-30 22:39:14',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2195,'1000','121659209916','2022-07-30 22:39:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2196,'4000','121659209916','2022-07-30 22:39:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2197,'1110','121659209961','2022-07-30 22:50:31',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(2198,'1110','121659209961','2022-07-30 22:50:31',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2199,'1110','121659209961','2022-07-30 22:50:31',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2200,'1110','121659209961','2022-07-30 22:50:31',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2201,'1110','121659209961','2022-07-30 22:50:31',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2202,'1110','121659209961','2022-07-30 22:50:31',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2203,'5500','121659209961','2022-07-30 22:50:31',3136.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2204,'1000','121659209961','2022-07-30 22:50:31',4360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2205,'4000','121659209961','2022-07-30 22:50:31',NULL,900.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(2206,'4000','121659209961','2022-07-30 22:50:31',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2207,'4000','121659209961','2022-07-30 22:50:31',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2208,'4000','121659209961','2022-07-30 22:50:31',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2209,'4000','121659209961','2022-07-30 22:50:31',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2210,'4000','121659209961','2022-07-30 22:50:31',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2211,'1110','121659210690','2022-07-30 23:36:34',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(2212,'5500','121659210690','2022-07-30 23:36:34',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2213,'1000','121659210690','2022-07-30 23:36:34',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2214,'4000','121659210690','2022-07-30 23:36:34',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(2215,'1110','121659213437','2022-07-30 23:39:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2216,'5500','121659213437','2022-07-30 23:39:10',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2217,'1000','121659213437','2022-07-30 23:39:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2218,'4000','121659213437','2022-07-30 23:39:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2219,'1110','121659214860','2022-07-31 00:03:05',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(2220,'1110','121659214860','2022-07-31 00:03:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2221,'1110','121659214860','2022-07-31 00:03:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2222,'5500','121659214860','2022-07-31 00:03:05',1989.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2223,'1000','121659214860','2022-07-31 00:03:05',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2224,'4000','121659214860','2022-07-31 00:03:05',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(2225,'4000','121659214860','2022-07-31 00:03:05',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2226,'4000','121659214860','2022-07-31 00:03:05',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2227,'1110','121659215117','2022-07-31 00:18:24',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2228,'1110','121659215117','2022-07-31 00:18:24',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2229,'5500','121659215117','2022-07-31 00:18:24',546.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2230,'1000','121659215117','2022-07-31 00:18:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2231,'4000','121659215117','2022-07-31 00:18:24',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2232,'4000','121659215117','2022-07-31 00:18:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2233,'1110','121659215919','2022-07-31 00:49:49',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(2234,'5500','121659215919','2022-07-31 00:49:49',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2235,'1000','121659215919','2022-07-31 00:49:49',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2236,'4000','121659215919','2022-07-31 00:49:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(2237,'1110','121659217896','2022-07-31 00:57:36',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(2238,'1110','121659217896','2022-07-31 00:57:36',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(2239,'1110','121659217896','2022-07-31 00:57:36',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2240,'1110','121659217896','2022-07-31 00:57:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(2241,'5500','121659217896','2022-07-31 00:57:36',602.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2242,'1000','121659217896','2022-07-31 00:57:36',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2243,'4000','121659217896','2022-07-31 00:57:36',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(2244,'4000','121659217896','2022-07-31 00:57:36',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(2245,'4000','121659217896','2022-07-31 00:57:36',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2246,'4000','121659217896','2022-07-31 00:57:36',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(2247,'1110','121659218317','2022-07-31 01:07:19',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(2248,'1110','121659218317','2022-07-31 01:07:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(2249,'5500','121659218317','2022-07-31 01:07:19',596.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2250,'1000','121659218317','2022-07-31 01:07:19',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2251,'4000','121659218317','2022-07-31 01:07:19',NULL,750.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(2252,'4000','121659218317','2022-07-31 01:07:19',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(2253,'1110','121659258869','2022-07-31 13:53:33',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2254,'1110','121659258869','2022-07-31 13:53:33',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2255,'1110','121659258869','2022-07-31 13:53:33',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2256,'5500','121659258869','2022-07-31 13:53:33',535.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2257,'1000','121659258869','2022-07-31 13:53:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2258,'4000','121659258869','2022-07-31 13:53:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2259,'4000','121659258869','2022-07-31 13:53:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2260,'4000','121659258869','2022-07-31 13:53:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2261,'1110','121659264884','2022-07-31 13:55:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2262,'5500','121659264884','2022-07-31 13:55:31',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2263,'1000','121659264884','2022-07-31 13:55:31',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2264,'4000','121659264884','2022-07-31 13:55:31',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2265,'1110','121659278222','2022-07-31 18:22:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2266,'5500','121659278222','2022-07-31 18:22:49',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2267,'1000','121659278222','2022-07-31 18:22:49',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2268,'4000','121659278222','2022-07-31 18:22:49',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2269,'1110','121659280975','2022-07-31 19:08:55',NULL,586.00,'','12','1','Inventory sold','1','','sales','6161100421271','','No',NULL,NULL,''),(2270,'5500','121659280975','2022-07-31 19:08:55',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2271,'1000','121659280975','2022-07-31 19:08:55',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2272,'4000','121659280975','2022-07-31 19:08:55',NULL,800.00,'','12','1','Good sold','1','','sales','6161100421271','','No',NULL,NULL,''),(2273,'1110','121659283837','2022-07-31 19:38:38',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2274,'5500','121659283837','2022-07-31 19:38:38',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2275,'1000','121659283837','2022-07-31 19:38:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2276,'4000','121659283837','2022-07-31 19:38:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2277,'1110','121659285643','2022-07-31 20:27:54',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2278,'5500','121659285643','2022-07-31 20:27:54',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2279,'1000','121659285643','2022-07-31 20:27:54',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2280,'4000','121659285643','2022-07-31 20:27:54',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2281,'1110','121659288582','2022-07-31 21:15:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2282,'5500','121659288582','2022-07-31 21:15:05',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2283,'1000','121659288582','2022-07-31 21:15:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2284,'4000','121659288582','2022-07-31 21:15:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2285,'1110','121659291380','2022-07-31 21:40:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2286,'5500','121659291380','2022-07-31 21:40:20',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2287,'1000','121659291380','2022-07-31 21:40:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2288,'4000','121659291380','2022-07-31 21:40:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2289,'1110','121659292859','2022-07-31 22:52:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2290,'1110','121659292859','2022-07-31 22:52:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2291,'1110','121659292859','2022-07-31 22:52:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2292,'5500','121659292859','2022-07-31 22:52:51',375.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2293,'1000','121659292859','2022-07-31 22:52:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2294,'4000','121659292859','2022-07-31 22:52:51',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2295,'4000','121659292859','2022-07-31 22:52:51',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2296,'4000','121659292859','2022-07-31 22:52:51',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2297,'1110','121659298390','2022-07-31 23:13:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2298,'5500','121659298390','2022-07-31 23:13:16',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2299,'1000','121659298390','2022-07-31 23:13:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2300,'4000','121659298390','2022-07-31 23:13:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2301,'1110','121659345633','2022-08-01 13:00:16',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2302,'5500','121659345633','2022-08-01 13:00:16',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2303,'1000','121659345633','2022-08-01 13:00:16',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2304,'4000','121659345633','2022-08-01 13:00:16',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2305,'1110','121659361161','2022-08-01 16:39:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2306,'1110','121659361161','2022-08-01 16:39:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2307,'5500','121659361161','2022-08-01 16:39:28',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2308,'1000','121659361161','2022-08-01 16:39:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2309,'4000','121659361161','2022-08-01 16:39:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2310,'4000','121659361161','2022-08-01 16:39:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2311,'1110','121659361291','2022-08-01 18:36:29',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2312,'5500','121659361291','2022-08-01 18:36:29',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2313,'1000','121659361291','2022-08-01 18:36:29',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2314,'4000','121659361291','2022-08-01 18:36:29',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2315,'1110','121659373701','2022-08-01 20:11:05',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2316,'5500','121659373701','2022-08-01 20:11:05',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2317,'1000','121659373701','2022-08-01 20:11:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2318,'4000','121659373701','2022-08-01 20:11:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2319,'1110','121659380533','2022-08-01 22:02:27',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2320,'5500','121659380533','2022-08-01 22:02:27',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2321,'1000','121659380533','2022-08-01 22:02:27',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2322,'4000','121659380533','2022-08-01 22:02:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2323,'1110','121659380550','2022-08-01 22:06:50',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2324,'5500','121659380550','2022-08-01 22:06:50',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2325,'1000','121659380550','2022-08-01 22:06:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2326,'4000','121659380550','2022-08-01 22:06:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2327,'1110','121659380846','2022-08-01 22:07:40',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(2328,'5500','121659380846','2022-08-01 22:07:40',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2329,'1000','121659380846','2022-08-01 22:07:40',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2330,'4000','121659380846','2022-08-01 22:07:40',NULL,430.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(2331,'1110','121659380911','2022-08-01 22:14:42',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2332,'5500','121659380911','2022-08-01 22:14:42',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2333,'1000','121659380911','2022-08-01 22:14:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2334,'4000','121659380911','2022-08-01 22:14:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2335,'1110','121659381684','2022-08-01 22:24:25',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2336,'5500','121659381684','2022-08-01 22:24:25',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2337,'1000','121659381684','2022-08-01 22:24:25',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2338,'4000','121659381684','2022-08-01 22:24:25',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2339,'1110','121659381873','2022-08-01 22:48:20',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2340,'5500','121659381873','2022-08-01 22:48:20',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2341,'1000','121659381873','2022-08-01 22:48:20',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2342,'4000','121659381873','2022-08-01 22:48:20',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2343,'1110','121659383316','2022-08-01 22:49:19',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2344,'5500','121659383316','2022-08-01 22:49:19',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2345,'1000','121659383316','2022-08-01 22:49:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2346,'4000','121659383316','2022-08-01 22:49:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2347,'1110','121659383467','2022-08-01 23:31:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2348,'5500','121659383467','2022-08-01 23:31:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2349,'1000','121659383467','2022-08-01 23:31:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2350,'4000','121659383467','2022-08-01 23:31:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2351,'1110','121659385970','2022-08-01 23:43:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2352,'1110','121659385970','2022-08-01 23:43:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2353,'1110','121659385970','2022-08-01 23:43:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2354,'1110','121659385970','2022-08-01 23:43:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2355,'1110','121659385970','2022-08-01 23:43:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2356,'5500','121659385970','2022-08-01 23:43:11',870.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2357,'1000','121659385970','2022-08-01 23:43:11',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2358,'4000','121659385970','2022-08-01 23:43:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2359,'4000','121659385970','2022-08-01 23:43:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2360,'4000','121659385970','2022-08-01 23:43:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2361,'4000','121659385970','2022-08-01 23:43:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2362,'4000','121659385970','2022-08-01 23:43:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2363,'1110','121659386693','2022-08-02 00:02:39',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2364,'5500','121659386693','2022-08-02 00:02:39',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2365,'1000','121659386693','2022-08-02 00:02:39',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2366,'4000','121659386693','2022-08-02 00:02:39',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2367,'1110','121659451926','2022-08-02 18:37:23',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2368,'5500','121659451926','2022-08-02 18:37:23',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2369,'1000','121659451926','2022-08-02 18:37:23',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2370,'4000','121659451926','2022-08-02 18:37:23',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2371,'1110','121659456352','2022-08-02 19:06:19',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(2372,'1110','121659456352','2022-08-02 19:06:19',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(2373,'5500','121659456352','2022-08-02 19:06:19',4600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2374,'1000','121659456352','2022-08-02 19:06:19',6250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2375,'4000','121659456352','2022-08-02 19:06:19',NULL,4700.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(2376,'4000','121659456352','2022-08-02 19:06:19',NULL,1550.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(2377,'1110','121659456476','2022-08-02 19:50:53',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452371506','','No',NULL,NULL,''),(2378,'1110','121659456476','2022-08-02 19:50:53',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5010103912976','','No',NULL,NULL,''),(2379,'1110','121659456476','2022-08-02 19:50:53',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(2380,'1110','121659456476','2022-08-02 19:50:53',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(2381,'1110','121659456476','2022-08-02 19:50:53',NULL,3381.00,'','12','1','Inventory sold','1','','sales','5000291021925','','No',NULL,NULL,''),(2382,'5500','121659456476','2022-08-02 19:50:53',10721.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2383,'1000','121659456476','2022-08-02 19:50:53',14800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2384,'4000','121659456476','2022-08-02 19:50:53',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452371506','','No',NULL,NULL,''),(2385,'4000','121659456476','2022-08-02 19:50:53',NULL,5400.00,'','12','1','Good sold','1','','sales','5010103912976','','No',NULL,NULL,''),(2386,'4000','121659456476','2022-08-02 19:50:53',NULL,1900.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(2387,'4000','121659456476','2022-08-02 19:50:53',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(2388,'4000','121659456476','2022-08-02 19:50:53',NULL,4500.00,'','12','1','Good sold','1','','sales','5000291021925','','No',NULL,NULL,''),(2389,'1110','121659459159','2022-08-02 19:53:59',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2390,'1110','121659459159','2022-08-02 19:53:59',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2391,'5500','121659459159','2022-08-02 19:53:59',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2392,'1000','121659459159','2022-08-02 19:53:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2393,'4000','121659459159','2022-08-02 19:53:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(2394,'4000','121659459159','2022-08-02 19:53:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2395,'1110','121659459323','2022-08-02 20:42:03',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(2396,'5500','121659459323','2022-08-02 20:42:03',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2397,'1000','121659459323','2022-08-02 20:42:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2398,'4000','121659459323','2022-08-02 20:42:03',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(2399,'1110','121659462252','2022-08-02 21:38:04',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(2400,'1110','121659462252','2022-08-02 21:38:04',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(2401,'1110','121659462252','2022-08-02 21:38:04',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2402,'1110','121659462252','2022-08-02 21:38:04',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2403,'5500','121659462252','2022-08-02 21:38:04',3898.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2404,'1000','121659462252','2022-08-02 21:38:04',5140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2405,'4000','121659462252','2022-08-02 21:38:04',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(2406,'4000','121659462252','2022-08-02 21:38:04',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(2407,'4000','121659462252','2022-08-02 21:38:04',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2408,'4000','121659462252','2022-08-02 21:38:04',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2409,'1110','121659465708','2022-08-02 21:50:54',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(2410,'5500','121659465708','2022-08-02 21:50:54',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2411,'1000','121659465708','2022-08-02 21:50:54',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2412,'4000','121659465708','2022-08-02 21:50:54',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(2413,'1110','121659466307','2022-08-02 21:53:47',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2414,'5500','121659466307','2022-08-02 21:53:47',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2415,'1000','121659466307','2022-08-02 21:53:47',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2416,'4000','121659466307','2022-08-02 21:53:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2417,'1110','121659466433','2022-08-02 22:20:40',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2418,'1110','121659466433','2022-08-02 22:20:40',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2419,'1110','121659466433','2022-08-02 22:20:40',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2420,'1110','121659466433','2022-08-02 22:20:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2421,'1110','121659466433','2022-08-02 22:20:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2422,'1110','121659466433','2022-08-02 22:20:40',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2423,'1110','121659466433','2022-08-02 22:20:40',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(2424,'1110','121659466433','2022-08-02 22:20:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2425,'5500','121659466433','2022-08-02 22:20:40',2270.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2426,'1000','121659466433','2022-08-02 22:20:40',3020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2427,'4000','121659466433','2022-08-02 22:20:40',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2428,'4000','121659466433','2022-08-02 22:20:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2429,'4000','121659466433','2022-08-02 22:20:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2430,'4000','121659466433','2022-08-02 22:20:40',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2431,'4000','121659466433','2022-08-02 22:20:40',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2432,'4000','121659466433','2022-08-02 22:20:40',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2433,'4000','121659466433','2022-08-02 22:20:40',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(2434,'4000','121659466433','2022-08-02 22:20:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2435,'1110','121659468143','2022-08-02 22:24:23',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2436,'5500','121659468143','2022-08-02 22:24:23',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2437,'1000','121659468143','2022-08-02 22:24:23',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2438,'4000','121659468143','2022-08-02 22:24:23',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2439,'1110','121659468363','2022-08-02 22:27:00',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2440,'1110','121659468363','2022-08-02 22:27:00',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2441,'5500','121659468363','2022-08-02 22:27:00',535.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2442,'1000','121659468363','2022-08-02 22:27:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2443,'4000','121659468363','2022-08-02 22:27:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2444,'4000','121659468363','2022-08-02 22:27:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2445,'1110','121659468718','2022-08-02 22:34:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2446,'1110','121659468718','2022-08-02 22:34:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2447,'1110','121659468718','2022-08-02 22:34:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2448,'1110','121659468718','2022-08-02 22:34:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2449,'5500','121659468718','2022-08-02 22:34:05',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2450,'1000','121659468718','2022-08-02 22:34:05',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2451,'4000','121659468718','2022-08-02 22:34:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2452,'4000','121659468718','2022-08-02 22:34:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2453,'4000','121659468718','2022-08-02 22:34:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2454,'4000','121659468718','2022-08-02 22:34:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2455,'1110','121659468859','2022-08-02 23:02:19',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2456,'1110','121659468859','2022-08-02 23:02:19',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2457,'5500','121659468859','2022-08-02 23:02:19',646.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2458,'1000','121659468859','2022-08-02 23:02:19',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2459,'4000','121659468859','2022-08-02 23:02:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2460,'4000','121659468859','2022-08-02 23:02:19',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2461,'1110','121659470554','2022-08-02 23:06:09',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(2462,'5500','121659470554','2022-08-02 23:06:09',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2463,'1000','121659470554','2022-08-02 23:06:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2464,'4000','121659470554','2022-08-02 23:06:09',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(2465,'1110','121659471395','2022-08-02 23:16:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2466,'5500','121659471395','2022-08-02 23:16:39',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2467,'1000','121659471395','2022-08-02 23:16:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2468,'4000','121659471395','2022-08-02 23:16:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2469,'1110','121659471519','2022-08-02 23:18:46',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(2470,'5500','121659471519','2022-08-02 23:18:46',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2471,'1000','121659471519','2022-08-02 23:18:46',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2472,'4000','121659471519','2022-08-02 23:18:46',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(2473,'1110','121659471561','2022-08-02 23:28:14',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2474,'1110','121659471561','2022-08-02 23:28:14',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2475,'5500','121659471561','2022-08-02 23:28:14',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2476,'1000','121659471561','2022-08-02 23:28:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2477,'4000','121659471561','2022-08-02 23:28:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2478,'4000','121659471561','2022-08-02 23:28:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2479,'1110','121659472227','2022-08-02 23:41:41',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2480,'5500','121659472227','2022-08-02 23:41:41',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2481,'1000','121659472227','2022-08-02 23:41:41',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2482,'4000','121659472227','2022-08-02 23:41:41',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(2483,'1110','121659472904','2022-08-02 23:42:26',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(2484,'1110','121659472904','2022-08-02 23:42:26',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(2485,'1110','121659472904','2022-08-02 23:42:26',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2486,'5500','121659472904','2022-08-02 23:42:26',3582.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2487,'1000','121659472904','2022-08-02 23:42:26',4900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2488,'4000','121659472904','2022-08-02 23:42:26',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(2489,'4000','121659472904','2022-08-02 23:42:26',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(2490,'4000','121659472904','2022-08-02 23:42:26',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(2491,'1110','121659474216','2022-08-03 00:04:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2492,'1110','121659474216','2022-08-03 00:04:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2493,'1110','121659474216','2022-08-03 00:04:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2494,'1110','121659474216','2022-08-03 00:04:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2495,'1110','121659474216','2022-08-03 00:04:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2496,'1110','121659474216','2022-08-03 00:04:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2497,'1110','121659474216','2022-08-03 00:04:05',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2498,'1110','121659474216','2022-08-03 00:04:05',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2499,'1110','121659474216','2022-08-03 00:04:05',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2500,'1110','121659474216','2022-08-03 00:04:05',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2501,'5500','121659474216','2022-08-03 00:04:05',1677.22,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2502,'1000','121659474216','2022-08-03 00:04:05',2260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2503,'4000','121659474216','2022-08-03 00:04:05',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2504,'4000','121659474216','2022-08-03 00:04:05',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2505,'4000','121659474216','2022-08-03 00:04:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2506,'4000','121659474216','2022-08-03 00:04:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2507,'4000','121659474216','2022-08-03 00:04:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2508,'4000','121659474216','2022-08-03 00:04:05',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(2509,'4000','121659474216','2022-08-03 00:04:05',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2510,'4000','121659474216','2022-08-03 00:04:05',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2511,'4000','121659474216','2022-08-03 00:04:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2512,'4000','121659474216','2022-08-03 00:04:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2513,'1110','121659474296','2022-08-03 00:05:10',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2514,'5500','121659474296','2022-08-03 00:05:10',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2515,'1000','121659474296','2022-08-03 00:05:10',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2516,'4000','121659474296','2022-08-03 00:05:10',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2517,'1110','121659474330','2022-08-03 00:08:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2518,'5500','121659474330','2022-08-03 00:08:24',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2519,'1000','121659474330','2022-08-03 00:08:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2520,'4000','121659474330','2022-08-03 00:08:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2521,'1110','121659474516','2022-08-03 00:09:00',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2522,'5500','121659474516','2022-08-03 00:09:00',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2523,'1000','121659474516','2022-08-03 00:09:00',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2524,'4000','121659474516','2022-08-03 00:09:00',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2525,'1110','121659539843','2022-08-03 19:51:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2526,'1110','121659539843','2022-08-03 19:51:24',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2527,'1110','121659539843','2022-08-03 19:51:24',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2528,'1110','121659539843','2022-08-03 19:51:24',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2529,'5500','121659539843','2022-08-03 19:51:24',1293.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2530,'1000','121659539843','2022-08-03 19:51:24',1790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2531,'4000','121659539843','2022-08-03 19:51:24',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(2532,'4000','121659539843','2022-08-03 19:51:24',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2533,'4000','121659539843','2022-08-03 19:51:24',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2534,'4000','121659539843','2022-08-03 19:51:24',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2535,'1110','121659545530','2022-08-03 19:54:22',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(2536,'5500','121659545530','2022-08-03 19:54:22',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2537,'1000','121659545530','2022-08-03 19:54:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2538,'4000','121659545530','2022-08-03 19:54:22',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(2539,'1110','121659545691','2022-08-03 20:18:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2540,'1110','121659545691','2022-08-03 20:18:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2541,'1110','121659545691','2022-08-03 20:18:13',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2542,'5500','121659545691','2022-08-03 20:18:13',400.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2543,'1000','121659545691','2022-08-03 20:18:13',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2544,'4000','121659545691','2022-08-03 20:18:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2545,'4000','121659545691','2022-08-03 20:18:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2546,'4000','121659545691','2022-08-03 20:18:13',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2547,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2548,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2549,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2550,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2551,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2552,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2553,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2554,'1110','121659547103','2022-08-03 21:00:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2555,'1110','121659547103','2022-08-03 21:00:15',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2556,'5500','121659547103','2022-08-03 21:00:15',2203.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2557,'1000','121659547103','2022-08-03 21:00:15',3350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2558,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2559,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2560,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2561,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2562,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2563,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2564,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2565,'4000','121659547103','2022-08-03 21:00:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2566,'4000','121659547103','2022-08-03 21:00:15',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2567,'1110','121659549811','2022-08-03 21:41:54',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(2568,'1110','121659549811','2022-08-03 21:41:54',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2569,'5500','121659549811','2022-08-03 21:41:54',930.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2570,'1000','121659549811','2022-08-03 21:41:54',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2571,'4000','121659549811','2022-08-03 21:41:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(2572,'4000','121659549811','2022-08-03 21:41:54',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2573,'1110','121659553680','2022-08-03 22:08:11',NULL,2277.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2574,'5500','121659553680','2022-08-03 22:08:11',2277.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2575,'1000','121659553680','2022-08-03 22:08:11',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2576,'4000','121659553680','2022-08-03 22:08:11',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2577,'1110','121659553981','2022-08-03 22:17:49',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2578,'5500','121659553981','2022-08-03 22:17:49',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2579,'1000','121659553981','2022-08-03 22:17:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2580,'4000','121659553981','2022-08-03 22:17:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2581,'1110','121659554458','2022-08-03 22:53:52',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506003599','','No',NULL,NULL,''),(2582,'1110','121659554458','2022-08-03 22:53:52',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506003599','','No',NULL,NULL,''),(2583,'5500','121659554458','2022-08-03 22:53:52',1700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2584,'1000','121659554458','2022-08-03 22:53:52',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2585,'4000','121659554458','2022-08-03 22:53:52',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506003599','','No',NULL,NULL,''),(2586,'4000','121659554458','2022-08-03 22:53:52',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506003599','','No',NULL,NULL,''),(2587,'1110','121659557689','2022-08-04 00:15:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2588,'1110','121659557689','2022-08-04 00:15:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2589,'5500','121659557689','2022-08-04 00:15:24',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2590,'1000','121659557689','2022-08-04 00:15:24',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2591,'4000','121659557689','2022-08-04 00:15:24',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2592,'4000','121659557689','2022-08-04 00:15:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2593,'1110','121659636933','2022-08-04 21:19:38',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(2594,'1110','121659636933','2022-08-04 21:19:38',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2595,'5500','121659636933','2022-08-04 21:19:38',852.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2596,'1000','121659636933','2022-08-04 21:19:38',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2597,'4000','121659636933','2022-08-04 21:19:38',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(2598,'4000','121659636933','2022-08-04 21:19:38',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2599,'1110','121659637192','2022-08-04 21:20:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2600,'5500','121659637192','2022-08-04 21:20:12',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2601,'1000','121659637192','2022-08-04 21:20:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2602,'4000','121659637192','2022-08-04 21:20:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2603,'1110','121659637216','2022-08-04 21:22:15',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2604,'1110','121659637216','2022-08-04 21:22:15',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2605,'1110','121659637216','2022-08-04 21:22:15',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2606,'5500','121659637216','2022-08-04 21:22:15',674.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2607,'1000','121659637216','2022-08-04 21:22:15',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2608,'4000','121659637216','2022-08-04 21:22:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2609,'4000','121659637216','2022-08-04 21:22:15',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2610,'4000','121659637216','2022-08-04 21:22:15',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2611,'1110','121659637348','2022-08-04 21:46:14',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2612,'1110','121659637348','2022-08-04 21:46:14',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2613,'1110','121659637348','2022-08-04 21:46:14',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2614,'5500','121659637348','2022-08-04 21:46:14',624.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2615,'1000','121659637348','2022-08-04 21:46:14',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2616,'4000','121659637348','2022-08-04 21:46:14',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2617,'4000','121659637348','2022-08-04 21:46:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2618,'4000','121659637348','2022-08-04 21:46:14',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2619,'1110','121659638778','2022-08-04 22:10:22',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2620,'5500','121659638778','2022-08-04 22:10:22',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2621,'1000','121659638778','2022-08-04 22:10:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2622,'4000','121659638778','2022-08-04 22:10:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2623,'1110','121659640261','2022-08-04 22:11:25',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2624,'5500','121659640261','2022-08-04 22:11:25',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2625,'1000','121659640261','2022-08-04 22:11:25',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2626,'4000','121659640261','2022-08-04 22:11:25',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2627,'1110','121659640309','2022-08-04 22:13:07',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929192211','','No',NULL,NULL,''),(2628,'5500','121659640309','2022-08-04 22:13:07',2500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2629,'1000','121659640309','2022-08-04 22:13:07',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2630,'4000','121659640309','2022-08-04 22:13:07',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929192211','','No',NULL,NULL,''),(2631,'1110','121659640583','2022-08-04 23:08:22',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(2632,'5500','121659640583','2022-08-04 23:08:22',999.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2633,'1000','121659640583','2022-08-04 23:08:22',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2634,'4000','121659640583','2022-08-04 23:08:22',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(2635,'1110','121659643736','2022-08-04 23:14:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2636,'1110','121659643736','2022-08-04 23:14:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(2637,'1110','121659643736','2022-08-04 23:14:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(2638,'1110','121659643736','2022-08-04 23:14:45',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(2639,'5500','121659643736','2022-08-04 23:14:45',1721.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2640,'1000','121659643736','2022-08-04 23:14:45',2240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2641,'4000','121659643736','2022-08-04 23:14:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2642,'4000','121659643736','2022-08-04 23:14:45',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(2643,'4000','121659643736','2022-08-04 23:14:45',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(2644,'4000','121659643736','2022-08-04 23:14:45',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(2645,'1110','121659645260','2022-08-04 23:35:00',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2646,'1110','121659645260','2022-08-04 23:35:00',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2647,'5500','121659645260','2022-08-04 23:35:00',910.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2648,'1000','121659645260','2022-08-04 23:35:00',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2649,'4000','121659645260','2022-08-04 23:35:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2650,'4000','121659645260','2022-08-04 23:35:00',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2651,'1110','121659645384','2022-08-04 23:36:42',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2652,'5500','121659645384','2022-08-04 23:36:42',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2653,'1000','121659645384','2022-08-04 23:36:42',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2654,'4000','121659645384','2022-08-04 23:36:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(2655,'1110','121659645968','2022-08-04 23:51:21',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929190361','','No',NULL,NULL,''),(2656,'1110','121659645968','2022-08-04 23:51:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2657,'5500','121659645968','2022-08-04 23:51:21',2672.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2658,'1000','121659645968','2022-08-04 23:51:21',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2659,'4000','121659645968','2022-08-04 23:51:21',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929190361','','No',NULL,NULL,''),(2660,'4000','121659645968','2022-08-04 23:51:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2661,'1110','121659647327','2022-08-05 00:20:07',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2662,'5500','121659647327','2022-08-05 00:20:07',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2663,'1000','121659647327','2022-08-05 00:20:07',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2664,'4000','121659647327','2022-08-05 00:20:07',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2665,'1110','121659648050','2022-08-05 00:48:30',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2666,'5500','121659648050','2022-08-05 00:48:30',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2667,'1000','121659648050','2022-08-05 00:48:30',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2668,'4000','121659648050','2022-08-05 00:48:30',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2669,'1110','121659650288','2022-08-05 00:58:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2670,'5500','121659650288','2022-08-05 00:58:17',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2671,'1000','121659650288','2022-08-05 00:58:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2672,'4000','121659650288','2022-08-05 00:58:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2673,'1110','121659650323','2022-08-05 00:59:41',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2674,'5500','121659650323','2022-08-05 00:59:41',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2675,'1000','121659650323','2022-08-05 00:59:41',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2676,'4000','121659650323','2022-08-05 00:59:41',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2677,'1110','121659650384','2022-08-05 01:03:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2678,'1110','121659650384','2022-08-05 01:03:30',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2679,'5500','121659650384','2022-08-05 01:03:30',127.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2680,'1000','121659650384','2022-08-05 01:03:30',170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2681,'4000','121659650384','2022-08-05 01:03:30',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(2682,'4000','121659650384','2022-08-05 01:03:30',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2683,'1110','121659650746','2022-08-05 01:20:59',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2684,'5500','121659650746','2022-08-05 01:20:59',3164.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2685,'1000','121659650746','2022-08-05 01:20:59',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2686,'4000','121659650746','2022-08-05 01:20:59',NULL,4300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(2687,'1110','121659644710','2022-08-05 18:41:10',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2688,'5500','121659644710','2022-08-05 18:41:10',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2689,'1000','121659644710','2022-08-05 18:41:10',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2690,'4000','121659644710','2022-08-05 18:41:10',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2691,'1110','121659714082','2022-08-05 18:42:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2692,'1110','121659714082','2022-08-05 18:42:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2693,'1110','121659714082','2022-08-05 18:42:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2694,'1110','121659714082','2022-08-05 18:42:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2695,'5500','121659714082','2022-08-05 18:42:30',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2696,'1000','121659714082','2022-08-05 18:42:30',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2697,'4000','121659714082','2022-08-05 18:42:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2698,'4000','121659714082','2022-08-05 18:42:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2699,'4000','121659714082','2022-08-05 18:42:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2700,'4000','121659714082','2022-08-05 18:42:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2701,'1110','121659714195','2022-08-05 19:22:42',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2702,'5500','121659714195','2022-08-05 19:22:42',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2703,'1000','121659714195','2022-08-05 19:22:42',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2704,'4000','121659714195','2022-08-05 19:22:42',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2705,'1110','121659716569','2022-08-05 21:09:16',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2706,'1110','121659716569','2022-08-05 21:09:16',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(2707,'5500','121659716569','2022-08-05 21:09:16',826.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2708,'1000','121659716569','2022-08-05 21:09:16',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2709,'4000','121659716569','2022-08-05 21:09:16',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2710,'4000','121659716569','2022-08-05 21:09:16',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(2711,'1110','121659722969','2022-08-05 21:29:01',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2712,'5500','121659722969','2022-08-05 21:29:01',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2713,'1000','121659722969','2022-08-05 21:29:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2714,'4000','121659722969','2022-08-05 21:29:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2715,'1110','121659724197','2022-08-05 22:22:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2716,'5500','121659724197','2022-08-05 22:22:04',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2717,'1000','121659724197','2022-08-05 22:22:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2718,'4000','121659724197','2022-08-05 22:22:04',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2719,'1110','121659730284','2022-08-05 23:13:05',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2720,'5500','121659730284','2022-08-05 23:13:05',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2721,'1000','121659730284','2022-08-05 23:13:05',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2722,'4000','121659730284','2022-08-05 23:13:05',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2723,'1110','121659730398','2022-08-05 23:46:36',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(2724,'5500','121659730398','2022-08-05 23:46:36',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2725,'1000','121659730398','2022-08-05 23:46:36',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2726,'4000','121659730398','2022-08-05 23:46:36',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(2727,'1110','121659732509','2022-08-06 00:07:56',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(2728,'5500','121659732509','2022-08-06 00:07:56',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2729,'1000','121659732509','2022-08-06 00:07:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2730,'4000','121659732509','2022-08-06 00:07:56',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(2731,'1110','121659733755','2022-08-06 01:00:42',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2732,'1110','121659733755','2022-08-06 01:00:42',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2733,'1110','121659733755','2022-08-06 01:00:42',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2734,'1110','121659733755','2022-08-06 01:00:42',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2735,'1110','121659733755','2022-08-06 01:00:42',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2736,'5500','121659733755','2022-08-06 01:00:42',1233.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2737,'1000','121659733755','2022-08-06 01:00:42',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2738,'4000','121659733755','2022-08-06 01:00:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2739,'4000','121659733755','2022-08-06 01:00:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2740,'4000','121659733755','2022-08-06 01:00:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2741,'4000','121659733755','2022-08-06 01:00:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2742,'4000','121659733755','2022-08-06 01:00:42',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2743,'1110','121659736917','2022-08-06 02:20:04',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2744,'1110','121659736917','2022-08-06 02:20:04',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2745,'5500','121659736917','2022-08-06 02:20:04',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2746,'1000','121659736917','2022-08-06 02:20:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2747,'4000','121659736917','2022-08-06 02:20:04',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2748,'4000','121659736917','2022-08-06 02:20:04',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(2749,'1110','121659744570','2022-08-06 03:10:12',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(2750,'5500','121659744570','2022-08-06 03:10:12',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2751,'1000','121659744570','2022-08-06 03:10:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2752,'4000','121659744570','2022-08-06 03:10:12',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(2753,'1110','121659744736','2022-08-06 03:18:40',NULL,4520.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(2754,'1110','121659744736','2022-08-06 03:18:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2755,'1110','121659744736','2022-08-06 03:18:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2756,'1110','121659744736','2022-08-06 03:18:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2757,'1110','121659744736','2022-08-06 03:18:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2758,'1110','121659744736','2022-08-06 03:18:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2759,'1110','121659744736','2022-08-06 03:18:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2760,'1110','121659744736','2022-08-06 03:18:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2761,'5500','121659744736','2022-08-06 03:18:40',4911.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2762,'1000','121659744736','2022-08-06 03:18:40',6580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2763,'4000','121659744736','2022-08-06 03:18:40',NULL,6000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(2764,'4000','121659744736','2022-08-06 03:18:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2765,'4000','121659744736','2022-08-06 03:18:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2766,'4000','121659744736','2022-08-06 03:18:40',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2767,'4000','121659744736','2022-08-06 03:18:40',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2768,'4000','121659744736','2022-08-06 03:18:40',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2769,'4000','121659744736','2022-08-06 03:18:40',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2770,'4000','121659744736','2022-08-06 03:18:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2771,'1110','121659745177','2022-08-06 03:32:26',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506011709','','No',NULL,NULL,''),(2772,'5500','121659745177','2022-08-06 03:32:26',850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2773,'1000','121659745177','2022-08-06 03:32:26',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2774,'4000','121659745177','2022-08-06 03:32:26',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506011709','','No',NULL,NULL,''),(2775,'1110','121659746059','2022-08-06 03:36:31',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2776,'5500','121659746059','2022-08-06 03:36:31',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2777,'1000','121659746059','2022-08-06 03:36:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2778,'4000','121659746059','2022-08-06 03:36:31',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2779,'1110','121659746194','2022-08-06 03:37:04',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2780,'5500','121659746194','2022-08-06 03:37:04',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2781,'1000','121659746194','2022-08-06 03:37:04',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2782,'4000','121659746194','2022-08-06 03:37:04',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2783,'1110','121659746356','2022-08-06 03:39:28',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(2784,'5500','121659746356','2022-08-06 03:39:28',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2785,'1000','121659746356','2022-08-06 03:39:28',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2786,'4000','121659746356','2022-08-06 03:39:28',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(2787,'1110','121659780409','2022-08-06 14:32:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2788,'1110','121659780409','2022-08-06 14:32:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2789,'1110','121659780409','2022-08-06 14:32:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2790,'1110','121659780409','2022-08-06 14:32:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2791,'5500','121659780409','2022-08-06 14:32:12',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2792,'1000','121659780409','2022-08-06 14:32:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2793,'4000','121659780409','2022-08-06 14:32:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2794,'4000','121659780409','2022-08-06 14:32:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2795,'4000','121659780409','2022-08-06 14:32:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2796,'4000','121659780409','2022-08-06 14:32:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2797,'1110','121659785689','2022-08-06 14:53:50',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2798,'5500','121659785689','2022-08-06 14:53:50',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2799,'1000','121659785689','2022-08-06 14:53:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2800,'4000','121659785689','2022-08-06 14:53:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2801,'1110','121659786921','2022-08-06 15:17:15',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2802,'5500','121659786921','2022-08-06 15:17:15',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2803,'1000','121659786921','2022-08-06 15:17:15',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2804,'4000','121659786921','2022-08-06 15:17:15',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(2805,'1110','121659803114','2022-08-06 19:46:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2806,'1110','121659803114','2022-08-06 19:46:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2807,'1110','121659803114','2022-08-06 19:46:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2808,'1110','121659803114','2022-08-06 19:46:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2809,'1110','121659803114','2022-08-06 19:46:53',NULL,3132.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2810,'1110','121659803114','2022-08-06 19:46:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2811,'1110','121659803114','2022-08-06 19:46:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2812,'1110','121659803114','2022-08-06 19:46:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(2813,'1110','121659803114','2022-08-06 19:46:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(2814,'5500','121659803114','2022-08-06 19:46:53',4678.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2815,'1000','121659803114','2022-08-06 19:46:53',5980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2816,'4000','121659803114','2022-08-06 19:46:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2817,'4000','121659803114','2022-08-06 19:46:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2818,'4000','121659803114','2022-08-06 19:46:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2819,'4000','121659803114','2022-08-06 19:46:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(2820,'4000','121659803114','2022-08-06 19:46:53',NULL,4140.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2821,'4000','121659803114','2022-08-06 19:46:53',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2822,'4000','121659803114','2022-08-06 19:46:53',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(2823,'4000','121659803114','2022-08-06 19:46:53',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(2824,'4000','121659803114','2022-08-06 19:46:53',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(2825,'1110','121659804495','2022-08-06 20:38:30',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2826,'5500','121659804495','2022-08-06 20:38:30',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2827,'1000','121659804495','2022-08-06 20:38:30',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2828,'4000','121659804495','2022-08-06 20:38:30',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2829,'1110','121659808054','2022-08-06 21:12:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2830,'1110','121659808054','2022-08-06 21:12:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2831,'1110','121659808054','2022-08-06 21:12:53',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2832,'1110','121659808054','2022-08-06 21:12:53',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2833,'1110','121659808054','2022-08-06 21:12:53',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2834,'1110','121659808054','2022-08-06 21:12:53',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2835,'5500','121659808054','2022-08-06 21:12:53',1094.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2836,'1000','121659808054','2022-08-06 21:12:53',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2837,'4000','121659808054','2022-08-06 21:12:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2838,'4000','121659808054','2022-08-06 21:12:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2839,'4000','121659808054','2022-08-06 21:12:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2840,'4000','121659808054','2022-08-06 21:12:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2841,'4000','121659808054','2022-08-06 21:12:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2842,'4000','121659808054','2022-08-06 21:12:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2843,'1110','121659809592','2022-08-06 21:19:56',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2844,'5500','121659809592','2022-08-06 21:19:56',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2845,'1000','121659809592','2022-08-06 21:19:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2846,'4000','121659809592','2022-08-06 21:19:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2847,'1110','121659810002','2022-08-06 22:28:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2848,'1110','121659810002','2022-08-06 22:28:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2849,'1110','121659810002','2022-08-06 22:28:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2850,'1110','121659810002','2022-08-06 22:28:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2851,'1110','121659810002','2022-08-06 22:28:59',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2852,'1110','121659810002','2022-08-06 22:28:59',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(2853,'1110','121659810002','2022-08-06 22:28:59',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2854,'1110','121659810002','2022-08-06 22:28:59',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2855,'5500','121659810002','2022-08-06 22:28:59',1170.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2856,'1000','121659810002','2022-08-06 22:28:59',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2857,'4000','121659810002','2022-08-06 22:28:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2858,'4000','121659810002','2022-08-06 22:28:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2859,'4000','121659810002','2022-08-06 22:28:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2860,'4000','121659810002','2022-08-06 22:28:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2861,'4000','121659810002','2022-08-06 22:28:59',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(2862,'4000','121659810002','2022-08-06 22:28:59',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(2863,'4000','121659810002','2022-08-06 22:28:59',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2864,'4000','121659810002','2022-08-06 22:28:59',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(2865,'1110','121659815789','2022-08-06 22:58:04',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2866,'1110','121659815789','2022-08-06 22:58:04',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2867,'1110','121659815789','2022-08-06 22:58:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2868,'1110','121659815789','2022-08-06 22:58:04',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2869,'5500','121659815789','2022-08-06 22:58:04',779.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2870,'1000','121659815789','2022-08-06 22:58:04',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2871,'4000','121659815789','2022-08-06 22:58:04',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2872,'4000','121659815789','2022-08-06 22:58:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2873,'4000','121659815789','2022-08-06 22:58:04',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2874,'4000','121659815789','2022-08-06 22:58:04',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2875,'1110','121659815892','2022-08-06 23:08:56',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(2876,'5500','121659815892','2022-08-06 23:08:56',999.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2877,'1000','121659815892','2022-08-06 23:08:56',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2878,'4000','121659815892','2022-08-06 23:08:56',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(2879,'1110','121659816551','2022-08-06 23:26:10',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2880,'5500','121659816551','2022-08-06 23:26:10',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2881,'1000','121659816551','2022-08-06 23:26:10',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2882,'4000','121659816551','2022-08-06 23:26:10',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2883,'1110','121659817580','2022-08-06 23:30:33',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2884,'1110','121659817580','2022-08-06 23:30:33',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2885,'1110','121659817580','2022-08-06 23:30:33',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2886,'1110','121659817580','2022-08-06 23:30:33',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2887,'1110','121659817580','2022-08-06 23:30:33',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(2888,'1110','121659817580','2022-08-06 23:30:33',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(2889,'1110','121659817580','2022-08-06 23:30:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(2890,'1110','121659817580','2022-08-06 23:30:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(2891,'1110','121659817580','2022-08-06 23:30:33',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2892,'5500','121659817580','2022-08-06 23:30:33',1643.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2893,'1000','121659817580','2022-08-06 23:30:33',2060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2894,'4000','121659817580','2022-08-06 23:30:33',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2895,'4000','121659817580','2022-08-06 23:30:33',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2896,'4000','121659817580','2022-08-06 23:30:33',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2897,'4000','121659817580','2022-08-06 23:30:33',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(2898,'4000','121659817580','2022-08-06 23:30:33',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(2899,'4000','121659817580','2022-08-06 23:30:33',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(2900,'4000','121659817580','2022-08-06 23:30:33',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(2901,'4000','121659817580','2022-08-06 23:30:33',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(2902,'4000','121659817580','2022-08-06 23:30:33',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2903,'1110','121659817902','2022-08-07 00:02:30',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(2904,'5500','121659817902','2022-08-07 00:02:30',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2905,'1000','121659817902','2022-08-07 00:02:30',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2906,'4000','121659817902','2022-08-07 00:02:30',NULL,200.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(2907,'1110','121659819836','2022-08-07 00:27:06',NULL,2474.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2908,'1110','121659819836','2022-08-07 00:27:06',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2909,'1110','121659819836','2022-08-07 00:27:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2910,'1110','121659819836','2022-08-07 00:27:06',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2911,'1110','121659819836','2022-08-07 00:27:06',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2912,'1110','121659819836','2022-08-07 00:27:06',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(2913,'1110','121659819836','2022-08-07 00:27:06',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2914,'1110','121659819836','2022-08-07 00:27:06',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2915,'1110','121659819836','2022-08-07 00:27:06',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2916,'1110','121659819836','2022-08-07 00:27:06',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2917,'1110','121659819836','2022-08-07 00:27:06',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2918,'1110','121659819836','2022-08-07 00:27:06',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(2919,'1110','121659819836','2022-08-07 00:27:06',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(2920,'5500','121659819836','2022-08-07 00:27:06',7146.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2921,'1000','121659819836','2022-08-07 00:27:06',9320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2922,'4000','121659819836','2022-08-07 00:27:06',NULL,3250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2923,'4000','121659819836','2022-08-07 00:27:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(2924,'4000','121659819836','2022-08-07 00:27:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(2925,'4000','121659819836','2022-08-07 00:27:06',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2926,'4000','121659819836','2022-08-07 00:27:06',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(2927,'4000','121659819836','2022-08-07 00:27:06',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(2928,'4000','121659819836','2022-08-07 00:27:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(2929,'4000','121659819836','2022-08-07 00:27:06',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2930,'4000','121659819836','2022-08-07 00:27:06',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2931,'4000','121659819836','2022-08-07 00:27:06',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2932,'4000','121659819836','2022-08-07 00:27:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(2933,'4000','121659819836','2022-08-07 00:27:06',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(2934,'4000','121659819836','2022-08-07 00:27:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(2935,'1110','121659821239','2022-08-07 00:31:01',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2936,'1110','121659821239','2022-08-07 00:31:01',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2937,'1110','121659821239','2022-08-07 00:31:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2938,'1110','121659821239','2022-08-07 00:31:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2939,'5500','121659821239','2022-08-07 00:31:01',779.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2940,'1000','121659821239','2022-08-07 00:31:01',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2941,'4000','121659821239','2022-08-07 00:31:01',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2942,'4000','121659821239','2022-08-07 00:31:01',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(2943,'4000','121659821239','2022-08-07 00:31:01',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(2944,'4000','121659821239','2022-08-07 00:31:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2945,'1110','121659821479','2022-08-07 00:33:16',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2946,'5500','121659821479','2022-08-07 00:33:16',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2947,'1000','121659821479','2022-08-07 00:33:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2948,'4000','121659821479','2022-08-07 00:33:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(2949,'1110','121659822203','2022-08-07 00:59:29',NULL,1176.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(2950,'5500','121659822203','2022-08-07 00:59:29',1176.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2951,'1000','121659822203','2022-08-07 00:59:29',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2952,'4000','121659822203','2022-08-07 00:59:29',NULL,1600.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(2953,'1110','121659823176','2022-08-07 01:54:58',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2954,'1110','121659823176','2022-08-07 01:54:58',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2955,'5500','121659823176','2022-08-07 01:54:58',327.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2956,'1000','121659823176','2022-08-07 01:54:58',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2957,'4000','121659823176','2022-08-07 01:54:58',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2958,'4000','121659823176','2022-08-07 01:54:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(2959,'1110','121659872346','2022-08-07 14:48:10',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(2960,'1110','121659872346','2022-08-07 14:48:10',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(2961,'1110','121659872346','2022-08-07 14:48:10',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2962,'1110','121659872346','2022-08-07 14:48:10',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2963,'1110','121659872346','2022-08-07 14:48:10',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(2964,'1110','121659872346','2022-08-07 14:48:10',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2965,'5500','121659872346','2022-08-07 14:48:10',2390.84,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2966,'1000','121659872346','2022-08-07 14:48:10',3770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2967,'4000','121659872346','2022-08-07 14:48:10',NULL,350.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(2968,'4000','121659872346','2022-08-07 14:48:10',NULL,350.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(2969,'4000','121659872346','2022-08-07 14:48:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(2970,'4000','121659872346','2022-08-07 14:48:10',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691314','','No',NULL,NULL,''),(2971,'4000','121659872346','2022-08-07 14:48:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(2972,'4000','121659872346','2022-08-07 14:48:10',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(2973,'1110','121659877426','2022-08-07 17:53:01',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(2974,'5500','121659877426','2022-08-07 17:53:01',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2975,'1000','121659877426','2022-08-07 17:53:01',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2976,'4000','121659877426','2022-08-07 17:53:01',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(2977,'1110','121659885659','2022-08-07 18:30:56',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2978,'5500','121659885659','2022-08-07 18:30:56',93.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2979,'1000','121659885659','2022-08-07 18:30:56',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2980,'4000','121659885659','2022-08-07 18:30:56',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(2981,'1110','121659886339','2022-08-07 18:59:06',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2982,'5500','121659886339','2022-08-07 18:59:06',929.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2983,'1000','121659886339','2022-08-07 18:59:06',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2984,'4000','121659886339','2022-08-07 18:59:06',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(2985,'1110','121659891446','2022-08-07 19:57:38',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(2986,'1110','121659891446','2022-08-07 19:57:38',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(2987,'5500','121659891446','2022-08-07 19:57:38',3690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2988,'1000','121659891446','2022-08-07 19:57:38',5000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2989,'4000','121659891446','2022-08-07 19:57:38',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(2990,'4000','121659891446','2022-08-07 19:57:38',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(2991,'1110','121659891902','2022-08-07 20:18:55',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2992,'5500','121659891902','2022-08-07 20:18:55',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2993,'1000','121659891902','2022-08-07 20:18:55',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2994,'4000','121659891902','2022-08-07 20:18:55',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(2995,'1110','121659892907','2022-08-07 20:26:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(2996,'1110','121659892907','2022-08-07 20:26:44',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(2997,'1110','121659892907','2022-08-07 20:26:44',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(2998,'5500','121659892907','2022-08-07 20:26:44',257.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2999,'1000','121659892907','2022-08-07 20:26:44',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3000,'4000','121659892907','2022-08-07 20:26:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3001,'4000','121659892907','2022-08-07 20:26:44',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3002,'4000','121659892907','2022-08-07 20:26:44',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3003,'1110','121659894656','2022-08-07 21:04:26',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3004,'5500','121659894656','2022-08-07 21:04:26',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3005,'1000','121659894656','2022-08-07 21:04:26',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3006,'4000','121659894656','2022-08-07 21:04:26',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3007,'1110','121659895610','2022-08-07 21:12:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3008,'5500','121659895610','2022-08-07 21:12:14',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3009,'1000','121659895610','2022-08-07 21:12:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3010,'4000','121659895610','2022-08-07 21:12:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3011,'1110','121659896451','2022-08-07 21:43:36',NULL,1257.93,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(3012,'5500','121659896451','2022-08-07 21:43:36',1257.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3013,'1000','121659896451','2022-08-07 21:43:36',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3014,'4000','121659896451','2022-08-07 21:43:36',NULL,1700.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(3015,'1110','121659897951','2022-08-07 21:51:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3016,'5500','121659897951','2022-08-07 21:51:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3017,'1000','121659897951','2022-08-07 21:51:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3018,'4000','121659897951','2022-08-07 21:51:53',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3019,'1110','121659899437','2022-08-07 22:10:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3020,'5500','121659899437','2022-08-07 22:10:52',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3021,'1000','121659899437','2022-08-07 22:10:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3022,'4000','121659899437','2022-08-07 22:10:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3023,'1110','121659901071','2022-08-07 23:20:57',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3024,'1110','121659901071','2022-08-07 23:20:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3025,'1110','121659901071','2022-08-07 23:20:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3026,'5500','121659901071','2022-08-07 23:20:57',1092.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3027,'1000','121659901071','2022-08-07 23:20:57',1530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3028,'4000','121659901071','2022-08-07 23:20:57',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3029,'4000','121659901071','2022-08-07 23:20:57',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3030,'4000','121659901071','2022-08-07 23:20:57',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3031,'1110','121659903722','2022-08-07 23:22:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3032,'5500','121659903722','2022-08-07 23:22:21',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3033,'1000','121659903722','2022-08-07 23:22:21',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3034,'4000','121659903722','2022-08-07 23:22:21',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3035,'1110','121659903745','2022-08-07 23:51:48',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3036,'5500','121659903745','2022-08-07 23:51:48',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3037,'1000','121659903745','2022-08-07 23:51:48',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3038,'4000','121659903745','2022-08-07 23:51:48',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3039,'1110','121659905514','2022-08-08 00:00:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3040,'1110','121659905514','2022-08-08 00:00:22',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3041,'5500','121659905514','2022-08-08 00:00:22',95.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3042,'1000','121659905514','2022-08-08 00:00:22',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3043,'4000','121659905514','2022-08-08 00:00:22',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3044,'4000','121659905514','2022-08-08 00:00:22',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3045,'1110','121659906845','2022-08-08 00:15:57',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(3046,'1110','121659906845','2022-08-08 00:15:57',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3047,'5500','121659906845','2022-08-08 00:15:57',575.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3048,'1000','121659906845','2022-08-08 00:15:57',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3049,'4000','121659906845','2022-08-08 00:15:57',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(3050,'4000','121659906845','2022-08-08 00:15:57',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3051,'1110','121659907089','2022-08-08 00:18:41',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(3052,'5500','121659907089','2022-08-08 00:18:41',1400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3053,'1000','121659907089','2022-08-08 00:18:41',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3054,'4000','121659907089','2022-08-08 00:18:41',NULL,1900.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(3055,'1110','121659966731','2022-08-08 17:01:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(3056,'5500','121659966731','2022-08-08 17:01:53',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3057,'1000','121659966731','2022-08-08 17:01:53',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3058,'4000','121659966731','2022-08-08 17:01:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(3059,'1110','121659967318','2022-08-08 17:04:53',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3060,'1110','121659967318','2022-08-08 17:04:53',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3061,'1110','121659967318','2022-08-08 17:04:53',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3062,'1110','121659967318','2022-08-08 17:04:53',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(3063,'1110','121659967318','2022-08-08 17:04:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3064,'5500','121659967318','2022-08-08 17:04:53',990.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3065,'1000','121659967318','2022-08-08 17:04:53',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3066,'4000','121659967318','2022-08-08 17:04:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3067,'4000','121659967318','2022-08-08 17:04:53',NULL,120.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3068,'4000','121659967318','2022-08-08 17:04:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3069,'4000','121659967318','2022-08-08 17:04:53',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(3070,'4000','121659967318','2022-08-08 17:04:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3071,'1110','121659968043','2022-08-08 17:27:36',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(3072,'1110','121659968043','2022-08-08 17:27:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3073,'1110','121659968043','2022-08-08 17:27:36',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3074,'5500','121659968043','2022-08-08 17:27:36',1227.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3075,'1000','121659968043','2022-08-08 17:27:36',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3076,'4000','121659968043','2022-08-08 17:27:36',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(3077,'4000','121659968043','2022-08-08 17:27:36',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3078,'4000','121659968043','2022-08-08 17:27:36',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3079,'1110','121659969337','2022-08-08 18:42:11',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(3080,'1110','121659969337','2022-08-08 18:42:11',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929190361','','No',NULL,NULL,''),(3081,'1110','121659969337','2022-08-08 18:42:11',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3082,'1110','121659969337','2022-08-08 18:42:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3083,'5500','121659969337','2022-08-08 18:42:11',5049.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3084,'1000','121659969337','2022-08-08 18:42:11',6720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3085,'4000','121659969337','2022-08-08 18:42:11',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(3086,'4000','121659969337','2022-08-08 18:42:11',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929190361','','No',NULL,NULL,''),(3087,'4000','121659969337','2022-08-08 18:42:11',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3088,'4000','121659969337','2022-08-08 18:42:11',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3089,'1110','121659973386','2022-08-08 18:46:39',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3090,'5500','121659973386','2022-08-08 18:46:39',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3091,'1000','121659973386','2022-08-08 18:46:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3092,'4000','121659973386','2022-08-08 18:46:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3093,'1110','121659973668','2022-08-08 19:20:51',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3094,'5500','121659973668','2022-08-08 19:20:51',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3095,'1000','121659973668','2022-08-08 19:20:51',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3096,'4000','121659973668','2022-08-08 19:20:51',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3097,'1110','121659982916','2022-08-08 21:21:59',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3098,'5500','121659982916','2022-08-08 21:21:59',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3099,'1000','121659982916','2022-08-08 21:21:59',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3100,'4000','121659982916','2022-08-08 21:21:59',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3101,'1110','121659982929','2022-08-08 21:51:08',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3102,'1110','121659982929','2022-08-08 21:51:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3103,'5500','121659982929','2022-08-08 21:51:08',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3104,'1000','121659982929','2022-08-08 21:51:08',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3105,'4000','121659982929','2022-08-08 21:51:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603515','','No',NULL,NULL,''),(3106,'4000','121659982929','2022-08-08 21:51:08',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3107,'1110','121660127505','2022-08-10 13:32:14',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3108,'5500','121660127505','2022-08-10 13:32:14',999.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3109,'1000','121660127505','2022-08-10 13:32:14',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3110,'4000','121660127505','2022-08-10 13:32:14',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3111,'1110','121660138057','2022-08-10 18:36:59',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5010103912976','','No',NULL,NULL,''),(3112,'5500','121660138057','2022-08-10 18:36:59',4000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3113,'1000','121660138057','2022-08-10 18:36:59',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3114,'4000','121660138057','2022-08-10 18:36:59',NULL,5400.00,'','12','1','Good sold','1','','sales','5010103912976','','No',NULL,NULL,''),(3115,'1110','121660145894','2022-08-10 19:09:43',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3116,'5500','121660145894','2022-08-10 19:09:43',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3117,'1000','121660145894','2022-08-10 19:09:43',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3118,'4000','121660145894','2022-08-10 19:09:43',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3119,'1110','121660154976','2022-08-10 21:11:32',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3120,'1110','121660154976','2022-08-10 21:11:32',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3121,'5500','121660154976','2022-08-10 21:11:32',466.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3122,'1000','121660154976','2022-08-10 21:11:32',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3123,'4000','121660154976','2022-08-10 21:11:32',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3124,'4000','121660154976','2022-08-10 21:11:32',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3125,'1110','121660155102','2022-08-10 21:22:26',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3126,'1110','121660155102','2022-08-10 21:22:26',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3127,'1110','121660155102','2022-08-10 21:22:26',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3128,'5500','121660155102','2022-08-10 21:22:26',1780.44,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3129,'1000','121660155102','2022-08-10 21:22:26',2420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3130,'4000','121660155102','2022-08-10 21:22:26',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3131,'4000','121660155102','2022-08-10 21:22:26',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3132,'4000','121660155102','2022-08-10 21:22:26',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3133,'1110','121660155755','2022-08-10 21:22:47',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(3134,'5500','121660155755','2022-08-10 21:22:47',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3135,'1000','121660155755','2022-08-10 21:22:47',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3136,'4000','121660155755','2022-08-10 21:22:47',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(3137,'1110','121660155818','2022-08-10 21:23:58',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3138,'5500','121660155818','2022-08-10 21:23:58',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3139,'1000','121660155818','2022-08-10 21:23:58',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3140,'4000','121660155818','2022-08-10 21:23:58',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3141,'1110','121660155848','2022-08-10 21:58:08',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3142,'5500','121660155848','2022-08-10 21:58:08',31.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3143,'1000','121660155848','2022-08-10 21:58:08',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3144,'4000','121660155848','2022-08-10 21:58:08',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3145,'1110','121660158006','2022-08-10 22:05:31',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(3146,'5500','121660158006','2022-08-10 22:05:31',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3147,'1000','121660158006','2022-08-10 22:05:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3148,'4000','121660158006','2022-08-10 22:05:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(3149,'1110','121660158360','2022-08-10 22:48:30',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3150,'1110','121660158360','2022-08-10 22:48:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3151,'1110','121660158360','2022-08-10 22:48:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3152,'5500','121660158360','2022-08-10 22:48:30',494.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3153,'1000','121660158360','2022-08-10 22:48:30',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3154,'4000','121660158360','2022-08-10 22:48:30',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3155,'4000','121660158360','2022-08-10 22:48:30',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3156,'4000','121660158360','2022-08-10 22:48:30',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3157,'1110','121660161027','2022-08-10 23:01:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3158,'1110','121660161027','2022-08-10 23:01:04',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3159,'1110','121660161027','2022-08-10 23:01:04',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(3160,'5500','121660161027','2022-08-10 23:01:04',3555.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3161,'1000','121660161027','2022-08-10 23:01:04',4870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3162,'4000','121660161027','2022-08-10 23:01:04',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3163,'4000','121660161027','2022-08-10 23:01:04',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3164,'4000','121660161027','2022-08-10 23:01:04',NULL,4700.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(3165,'1110','121660162069','2022-08-10 23:08:05',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3166,'5500','121660162069','2022-08-10 23:08:05',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3167,'1000','121660162069','2022-08-10 23:08:05',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3168,'4000','121660162069','2022-08-10 23:08:05',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3169,'1110','121660229587','2022-08-11 17:53:58',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602143','','No',NULL,NULL,''),(3170,'1110','121660229587','2022-08-11 17:53:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3171,'5500','121660229587','2022-08-11 17:53:58',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3172,'1000','121660229587','2022-08-11 17:53:58',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3173,'4000','121660229587','2022-08-11 17:53:58',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602143','','No',NULL,NULL,''),(3174,'4000','121660229587','2022-08-11 17:53:58',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3175,'1110','121660229734','2022-08-11 18:11:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3176,'5500','121660229734','2022-08-11 18:11:08',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3177,'1000','121660229734','2022-08-11 18:11:08',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3178,'4000','121660229734','2022-08-11 18:11:08',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3179,'1110','121660230774','2022-08-11 19:11:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(3180,'5500','121660230774','2022-08-11 19:11:32',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3181,'1000','121660230774','2022-08-11 19:11:32',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3182,'4000','121660230774','2022-08-11 19:11:32',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(3183,'1110','121660234333','2022-08-11 19:12:39',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3184,'5500','121660234333','2022-08-11 19:12:39',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3185,'1000','121660234333','2022-08-11 19:12:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3186,'4000','121660234333','2022-08-11 19:12:39',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3187,'1110','121660234416','2022-08-11 20:25:21',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(3188,'5500','121660234416','2022-08-11 20:25:21',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3189,'1000','121660234416','2022-08-11 20:25:21',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3190,'4000','121660234416','2022-08-11 20:25:21',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(3191,'1110','121660246010','2022-08-11 22:27:35',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(3192,'1110','121660246010','2022-08-11 22:27:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3193,'5500','121660246010','2022-08-11 22:27:35',230.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3194,'1000','121660246010','2022-08-11 22:27:35',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3195,'4000','121660246010','2022-08-11 22:27:35',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(3196,'4000','121660246010','2022-08-11 22:27:35',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3197,'1110','121660246061','2022-08-11 22:28:06',NULL,2381.40,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3198,'5500','121660246061','2022-08-11 22:28:06',2381.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3199,'1000','121660246061','2022-08-11 22:28:06',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3200,'4000','121660246061','2022-08-11 22:28:06',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3201,'1110','121660246091','2022-08-11 22:33:33',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(3202,'5500','121660246091','2022-08-11 22:33:33',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3203,'1000','121660246091','2022-08-11 22:33:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3204,'4000','121660246091','2022-08-11 22:33:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(3205,'1110','121660246495','2022-08-11 22:39:41',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(3206,'1110','121660246495','2022-08-11 22:39:41',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(3207,'1110','121660246495','2022-08-11 22:39:41',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3208,'5500','121660246495','2022-08-11 22:39:41',596.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3209,'1000','121660246495','2022-08-11 22:39:41',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3210,'4000','121660246495','2022-08-11 22:39:41',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(3211,'4000','121660246495','2022-08-11 22:39:41',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(3212,'4000','121660246495','2022-08-11 22:39:41',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3213,'1110','121660246833','2022-08-11 22:48:15',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3214,'5500','121660246833','2022-08-11 22:48:15',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3215,'1000','121660246833','2022-08-11 22:48:15',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3216,'4000','121660246833','2022-08-11 22:48:15',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3217,'1110','121660247378','2022-08-11 23:09:34',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(3218,'5500','121660247378','2022-08-11 23:09:34',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3219,'1000','121660247378','2022-08-11 23:09:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3220,'4000','121660247378','2022-08-11 23:09:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(3221,'1110','121660248703','2022-08-11 23:33:59',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3222,'1110','121660248703','2022-08-11 23:33:59',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3223,'5500','121660248703','2022-08-11 23:33:59',462.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3224,'1000','121660248703','2022-08-11 23:33:59',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3225,'4000','121660248703','2022-08-11 23:33:59',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3226,'4000','121660248703','2022-08-11 23:33:59',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3227,'1110','121660250105','2022-08-12 00:00:50',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3228,'5500','121660250105','2022-08-12 00:00:50',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3229,'1000','121660250105','2022-08-12 00:00:50',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3230,'4000','121660250105','2022-08-12 00:00:50',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3231,'1110','121660251957','2022-08-12 00:06:31',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(3232,'5500','121660251957','2022-08-12 00:06:31',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3233,'1000','121660251957','2022-08-12 00:06:31',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3234,'4000','121660251957','2022-08-12 00:06:31',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(3235,'1110','121660298525','2022-08-12 13:02:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(3236,'5500','121660298525','2022-08-12 13:02:15',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3237,'1000','121660298525','2022-08-12 13:02:15',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3238,'4000','121660298525','2022-08-12 13:02:15',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(3244,'1000','121660315150','2022-08-12 17:41:27',1310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3249,'1110','121660315150','2022-08-12 17:41:27',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3250,'1110','121660315150','2022-08-12 18:22:11',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3251,'1110','121660315150','2022-08-12 18:22:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3252,'5500','121660315150','2022-08-12 18:22:11',478.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3253,'1000','121660315150','2022-08-12 17:41:27',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3254,'4000','121660315150','2022-08-12 17:41:27',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3255,'4000','121660315150','2022-08-12 18:22:11',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3256,'4000','121660315150','2022-08-12 18:22:11',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3257,'1110','121660318125','2022-08-12 18:30:38',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3258,'1110','121660318125','2022-08-12 18:30:38',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3259,'1110','121660318125','2022-08-12 18:30:38',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3260,'5500','121660318125','2022-08-12 18:30:38',478.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3261,'1000','121660318125','2022-08-12 18:30:38',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3262,'4000','121660318125','2022-08-12 18:30:38',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3263,'4000','121660318125','2022-08-12 18:30:38',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3264,'4000','121660318125','2022-08-12 18:30:38',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3265,'1110','121660318245','2022-08-12 19:48:43',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3266,'1110','121660318245','2022-08-12 19:48:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3267,'1110','121660318245','2022-08-12 19:48:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3268,'5500','121660318245','2022-08-12 19:48:43',1701.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3269,'1000','121660318245','2022-08-12 19:48:43',2320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3270,'4000','121660318245','2022-08-12 19:48:43',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3271,'4000','121660318245','2022-08-12 19:48:43',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3272,'4000','121660318245','2022-08-12 19:48:43',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3273,'1110','121660322932','2022-08-12 21:42:12',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(3274,'1110','121660322932','2022-08-12 21:42:12',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(3275,'1110','121660322932','2022-08-12 21:42:12',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3276,'1110','121660322932','2022-08-12 21:42:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3277,'5500','121660322932','2022-08-12 21:42:12',1168.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3278,'1000','121660322932','2022-08-12 21:42:12',1640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3279,'4000','121660322932','2022-08-12 21:42:12',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(3280,'4000','121660322932','2022-08-12 21:42:12',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(3281,'4000','121660322932','2022-08-12 21:42:12',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3282,'4000','121660322932','2022-08-12 21:42:12',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3283,'1110','121660329768','2022-08-12 22:39:39',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(3284,'5500','121660329768','2022-08-12 22:39:39',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3285,'1000','121660329768','2022-08-12 22:39:39',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3286,'4000','121660329768','2022-08-12 22:39:39',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(3287,'1110','121660334900','2022-08-12 23:10:29',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(3288,'1110','121660334900','2022-08-12 23:10:29',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3289,'1110','121660334900','2022-08-12 23:10:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3290,'5500','121660334900','2022-08-12 23:10:29',1238.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3291,'1000','121660334900','2022-08-12 23:10:29',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3292,'4000','121660334900','2022-08-12 23:10:29',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(3293,'4000','121660334900','2022-08-12 23:10:29',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3294,'4000','121660334900','2022-08-12 23:10:29',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3295,'1110','121660335247','2022-08-12 23:14:18',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3296,'5500','121660335247','2022-08-12 23:14:18',999.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3297,'1000','121660335247','2022-08-12 23:14:18',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3298,'4000','121660335247','2022-08-12 23:14:18',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3299,'1110','121660335263','2022-08-12 23:36:04',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(3300,'5500','121660335263','2022-08-12 23:36:04',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3301,'1000','121660335263','2022-08-12 23:36:04',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3302,'4000','121660335263','2022-08-12 23:36:04',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(3303,'1110','121660337105','2022-08-12 23:46:47',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005753','','No',NULL,NULL,''),(3304,'5500','121660337105','2022-08-12 23:46:47',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3305,'1000','121660337105','2022-08-12 23:46:47',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3306,'4000','121660337105','2022-08-12 23:46:47',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005753','','No',NULL,NULL,''),(3307,'1110','121660337241','2022-08-12 23:48:21',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(3308,'5500','121660337241','2022-08-12 23:48:21',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3309,'1000','121660337241','2022-08-12 23:48:21',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3310,'4000','121660337241','2022-08-12 23:48:21',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(3311,'1110','121660387223','2022-08-13 13:41:48',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3312,'1110','121660387223','2022-08-13 13:41:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3313,'5500','121660387223','2022-08-13 13:41:48',1703.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3314,'1000','121660387223','2022-08-13 13:41:48',2370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3315,'4000','121660387223','2022-08-13 13:41:48',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3316,'4000','121660387223','2022-08-13 13:41:48',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3317,'1110','121660406774','2022-08-13 19:08:16',NULL,2245.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3318,'5500','121660406774','2022-08-13 19:08:16',2245.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3319,'1000','121660406774','2022-08-13 19:08:16',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3320,'4000','121660406774','2022-08-13 19:08:16',NULL,3250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3321,'1110','121660408314','2022-08-13 19:31:57',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3322,'5500','121660408314','2022-08-13 19:31:57',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3323,'1000','121660408314','2022-08-13 19:31:57',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3324,'4000','121660408314','2022-08-13 19:31:57',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3325,'1110','121660408454','2022-08-13 19:34:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3326,'5500','121660408454','2022-08-13 19:34:24',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3327,'1000','121660408454','2022-08-13 19:34:24',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3328,'4000','121660408454','2022-08-13 19:34:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3329,'1110','121660408973','2022-08-13 19:43:11',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3330,'5500','121660408973','2022-08-13 19:43:11',159.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3331,'1000','121660408973','2022-08-13 19:43:11',210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3332,'4000','121660408973','2022-08-13 19:43:11',NULL,210.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3333,'1110','121660411462','2022-08-13 20:48:20',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3334,'5500','121660411462','2022-08-13 20:48:20',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3335,'1000','121660411462','2022-08-13 20:48:20',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3336,'4000','121660411462','2022-08-13 20:48:20',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3337,'1110','121660412957','2022-08-13 21:26:47',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(3338,'1110','121660412957','2022-08-13 21:26:47',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3339,'5500','121660412957','2022-08-13 21:26:47',581.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3340,'1000','121660412957','2022-08-13 21:26:47',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3341,'4000','121660412957','2022-08-13 21:26:47',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(3342,'4000','121660412957','2022-08-13 21:26:47',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3343,'1110','121660415299','2022-08-13 21:42:03',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(3344,'5500','121660415299','2022-08-13 21:42:03',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3345,'1000','121660415299','2022-08-13 21:42:03',4700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3346,'4000','121660415299','2022-08-13 21:42:03',NULL,4700.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(3347,'1110','121660416486','2022-08-13 21:55:09',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3348,'1110','121660416486','2022-08-13 21:55:09',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3349,'5500','121660416486','2022-08-13 21:55:09',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3350,'1000','121660416486','2022-08-13 21:55:09',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3351,'4000','121660416486','2022-08-13 21:55:09',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3352,'4000','121660416486','2022-08-13 21:55:09',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3353,'1110','121660416975','2022-08-13 21:58:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3354,'5500','121660416975','2022-08-13 21:58:28',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3355,'1000','121660416975','2022-08-13 21:58:28',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3356,'4000','121660416975','2022-08-13 21:58:28',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3357,'1110','121660417111','2022-08-13 22:16:39',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691345','','No',NULL,NULL,''),(3358,'5500','121660417111','2022-08-13 22:16:39',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3359,'1000','121660417111','2022-08-13 22:16:39',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3360,'4000','121660417111','2022-08-13 22:16:39',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691345','','No',NULL,NULL,''),(3361,'1110','121660418230','2022-08-13 23:00:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3362,'5500','121660418230','2022-08-13 23:00:39',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3363,'1000','121660418230','2022-08-13 23:00:39',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3364,'4000','121660418230','2022-08-13 23:00:39',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3365,'1110','121660420891','2022-08-13 23:39:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3366,'5500','121660420891','2022-08-13 23:39:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3367,'1000','121660420891','2022-08-13 23:39:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3368,'4000','121660420891','2022-08-13 23:39:47',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3369,'1110','121660423190','2022-08-13 23:52:18',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(3370,'5500','121660423190','2022-08-13 23:52:18',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3371,'1000','121660423190','2022-08-13 23:52:18',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3372,'4000','121660423190','2022-08-13 23:52:18',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(3373,'1110','121660423966','2022-08-13 23:56:26',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3374,'1110','121660423966','2022-08-13 23:56:26',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3375,'5500','121660423966','2022-08-13 23:56:26',96.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3376,'1000','121660423966','2022-08-13 23:56:26',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3377,'4000','121660423966','2022-08-13 23:56:26',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3378,'4000','121660423966','2022-08-13 23:56:26',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3379,'1110','121660424217','2022-08-14 00:06:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3380,'1110','121660424217','2022-08-14 00:06:21',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3381,'1110','121660424217','2022-08-14 00:06:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3382,'5500','121660424217','2022-08-14 00:06:21',1344.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3383,'1000','121660424217','2022-08-14 00:06:21',1790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3384,'4000','121660424217','2022-08-14 00:06:21',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3385,'4000','121660424217','2022-08-14 00:06:21',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(3386,'4000','121660424217','2022-08-14 00:06:21',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3387,'1110','121660424785','2022-08-14 00:06:42',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3388,'1110','121660424785','2022-08-14 00:06:42',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3389,'1110','121660424785','2022-08-14 00:06:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3390,'5500','121660424785','2022-08-14 00:06:42',672.94,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3391,'1000','121660424785','2022-08-14 00:06:42',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3392,'4000','121660424785','2022-08-14 00:06:42',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3393,'4000','121660424785','2022-08-14 00:06:42',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3394,'4000','121660424785','2022-08-14 00:06:42',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3395,'1110','121660424851','2022-08-14 00:13:54',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(3396,'1110','121660424851','2022-08-14 00:13:54',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3397,'5500','121660424851','2022-08-14 00:13:54',484.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3398,'1000','121660424851','2022-08-14 00:13:54',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3399,'4000','121660424851','2022-08-14 00:13:54',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(3400,'4000','121660424851','2022-08-14 00:13:54',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3401,'1110','121660478316','2022-08-14 14:59:07',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3402,'5500','121660478316','2022-08-14 14:59:07',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3403,'1000','121660478316','2022-08-14 14:59:07',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3404,'4000','121660478316','2022-08-14 14:59:07',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3405,'1110','121660489180','2022-08-14 17:59:45',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3406,'5500','121660489180','2022-08-14 17:59:45',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3407,'1000','121660489180','2022-08-14 17:59:45',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3408,'4000','121660489180','2022-08-14 17:59:45',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(3409,'1110','121660492326','2022-08-14 18:52:28',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3410,'5500','121660492326','2022-08-14 18:52:28',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3411,'1000','121660492326','2022-08-14 18:52:28',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3412,'4000','121660492326','2022-08-14 18:52:28',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3413,'1110','121660493921','2022-08-14 19:24:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3414,'5500','121660493921','2022-08-14 19:24:45',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3415,'1000','121660493921','2022-08-14 19:24:45',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3416,'4000','121660493921','2022-08-14 19:24:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3417,'1110','121660494534','2022-08-14 20:02:59',NULL,4520.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(3418,'5500','121660494534','2022-08-14 20:02:59',4520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3419,'1000','121660494534','2022-08-14 20:02:59',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3420,'4000','121660494534','2022-08-14 20:02:59',NULL,6000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(3421,'1110','121660496800','2022-08-14 20:32:48',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3422,'5500','121660496800','2022-08-14 20:32:48',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3423,'1000','121660496800','2022-08-14 20:32:48',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3424,'4000','121660496800','2022-08-14 20:32:48',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3425,'1110','121660498373','2022-08-14 20:48:02',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3426,'1110','121660498373','2022-08-14 20:48:02',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3427,'1110','121660498373','2022-08-14 20:48:02',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3428,'5500','121660498373','2022-08-14 20:48:02',2004.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3429,'1000','121660498373','2022-08-14 20:48:02',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3430,'4000','121660498373','2022-08-14 20:48:02',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3431,'4000','121660498373','2022-08-14 20:48:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(3432,'4000','121660498373','2022-08-14 20:48:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3433,'1110','121660499398','2022-08-14 20:56:35',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3434,'5500','121660499398','2022-08-14 20:56:35',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3435,'1000','121660499398','2022-08-14 20:56:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3436,'4000','121660499398','2022-08-14 20:56:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3437,'1110','121660499876','2022-08-14 20:59:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3438,'5500','121660499876','2022-08-14 20:59:46',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3439,'1000','121660499876','2022-08-14 20:59:46',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3440,'4000','121660499876','2022-08-14 20:59:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3441,'1110','121660499989','2022-08-14 21:47:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3442,'5500','121660499989','2022-08-14 21:47:17',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3443,'1000','121660499989','2022-08-14 21:47:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3444,'4000','121660499989','2022-08-14 21:47:17',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3445,'1110','121660503043','2022-08-14 22:06:30',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3446,'5500','121660503043','2022-08-14 22:06:30',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3447,'1000','121660503043','2022-08-14 22:06:30',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3448,'4000','121660503043','2022-08-14 22:06:30',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3449,'1110','121660503995','2022-08-14 23:23:19',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3450,'5500','121660503995','2022-08-14 23:23:19',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3451,'1000','121660503995','2022-08-14 23:23:19',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3452,'4000','121660503995','2022-08-14 23:23:19',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3453,'1110','121660508782','2022-08-14 23:50:43',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3454,'5500','121660508782','2022-08-14 23:50:43',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3455,'1000','121660508782','2022-08-14 23:50:43',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3456,'4000','121660508782','2022-08-14 23:50:43',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(3457,'1110','121660659824','2022-08-16 17:23:48',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(3458,'5500','121660659824','2022-08-16 17:23:48',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3459,'1000','121660659824','2022-08-16 17:23:48',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3460,'4000','121660659824','2022-08-16 17:23:48',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(3461,'1110','121660660009','2022-08-16 17:58:50',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(3462,'5500','121660660009','2022-08-16 17:58:50',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3463,'1000','121660660009','2022-08-16 17:58:50',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3464,'4000','121660660009','2022-08-16 17:58:50',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(3465,'1110','121660662110','2022-08-16 18:38:47',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(3466,'5500','121660662110','2022-08-16 18:38:47',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3467,'1000','121660662110','2022-08-16 18:38:47',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3468,'4000','121660662110','2022-08-16 18:38:47',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(3469,'1110','121660664695','2022-08-16 20:16:57',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3470,'5500','121660664695','2022-08-16 20:16:57',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3471,'1000','121660664695','2022-08-16 20:16:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3472,'4000','121660664695','2022-08-16 20:16:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3473,'1110','121660670221','2022-08-16 20:57:25',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(3474,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3475,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3476,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3477,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3478,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3479,'1110','121660670221','2022-08-16 20:57:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3480,'5500','121660670221','2022-08-16 20:57:25',2187.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3481,'1000','121660670221','2022-08-16 20:57:25',2870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3482,'4000','121660670221','2022-08-16 20:57:25',NULL,1550.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(3483,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3484,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3485,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3486,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3487,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3488,'4000','121660670221','2022-08-16 20:57:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3489,'1110','121660672688','2022-08-16 21:21:28',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(3490,'5500','121660672688','2022-08-16 21:21:28',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3491,'1000','121660672688','2022-08-16 21:21:28',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3492,'4000','121660672688','2022-08-16 21:21:28',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(3493,'1110','121660674192','2022-08-16 23:13:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3494,'5500','121660674192','2022-08-16 23:13:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3495,'1000','121660674192','2022-08-16 23:13:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3496,'4000','121660674192','2022-08-16 23:13:14',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3497,'1110','121660681051','2022-08-16 23:23:52',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(3498,'1110','121660681051','2022-08-16 23:23:52',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(3499,'1110','121660681051','2022-08-16 23:23:52',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3500,'5500','121660681051','2022-08-16 23:23:52',1988.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3501,'1000','121660681051','2022-08-16 23:23:52',2660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3502,'4000','121660681051','2022-08-16 23:23:52',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(3503,'4000','121660681051','2022-08-16 23:23:52',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(3504,'4000','121660681051','2022-08-16 23:23:52',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3505,'1110','121660681637','2022-08-16 23:30:57',NULL,612.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3506,'5500','121660681637','2022-08-16 23:30:57',612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3507,'1000','121660681637','2022-08-16 23:30:57',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3508,'4000','121660681637','2022-08-16 23:30:57',NULL,800.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3509,'1110','121660681900','2022-08-16 23:40:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3510,'1110','121660681900','2022-08-16 23:40:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3511,'5500','121660681900','2022-08-16 23:40:46',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3512,'1000','121660681900','2022-08-16 23:40:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3513,'4000','121660681900','2022-08-16 23:40:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3514,'4000','121660681900','2022-08-16 23:40:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3515,'1110','121660682551','2022-08-16 23:43:17',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(3516,'5500','121660682551','2022-08-16 23:43:17',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3517,'1000','121660682551','2022-08-16 23:43:17',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3518,'4000','121660682551','2022-08-16 23:43:17',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(3519,'1110','121660682604','2022-08-16 23:44:37',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(3520,'1110','121660682604','2022-08-16 23:44:37',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(3521,'1110','121660682604','2022-08-16 23:44:37',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3522,'5500','121660682604','2022-08-16 23:44:37',3736.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3523,'1000','121660682604','2022-08-16 23:44:37',5100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3524,'4000','121660682604','2022-08-16 23:44:37',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(3525,'4000','121660682604','2022-08-16 23:44:37',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(3526,'4000','121660682604','2022-08-16 23:44:37',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3527,'1110','121660682938','2022-08-16 23:49:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3528,'5500','121660682938','2022-08-16 23:49:13',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3529,'1000','121660682938','2022-08-16 23:49:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3530,'4000','121660682938','2022-08-16 23:49:13',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3531,'1110','121660736399','2022-08-17 14:44:36',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3532,'1110','121660736399','2022-08-17 14:44:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3533,'1110','121660736399','2022-08-17 14:44:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3534,'1110','121660736399','2022-08-17 14:44:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3535,'1110','121660736399','2022-08-17 14:44:36',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3536,'5500','121660736399','2022-08-17 14:44:36',737.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3537,'1000','121660736399','2022-08-17 14:44:36',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3538,'4000','121660736399','2022-08-17 14:44:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3539,'4000','121660736399','2022-08-17 14:44:36',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3540,'4000','121660736399','2022-08-17 14:44:36',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3541,'4000','121660736399','2022-08-17 14:44:36',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3542,'4000','121660736399','2022-08-17 14:44:36',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3545,'1000','121660736690','2022-08-17 14:46:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3547,'1110','121660736690','2022-08-17 14:46:04',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3548,'1110','121660736690','2022-08-17 15:00:47',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3549,'1110','121660736690','2022-08-17 15:00:47',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3550,'1110','121660736690','2022-08-17 15:00:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3551,'1110','121660736690','2022-08-17 15:00:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3552,'1110','121660736690','2022-08-17 15:00:47',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(3553,'1110','121660736690','2022-08-17 15:00:47',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3554,'1110','121660736690','2022-08-17 15:00:47',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(3555,'5500','121660736690','2022-08-17 15:00:47',1314.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3556,'1000','121660736690','2022-08-17 14:46:04',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3557,'4000','121660736690','2022-08-17 14:46:04',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3558,'4000','121660736690','2022-08-17 15:00:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3559,'4000','121660736690','2022-08-17 15:00:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3560,'4000','121660736690','2022-08-17 15:00:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3561,'4000','121660736690','2022-08-17 15:00:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3562,'4000','121660736690','2022-08-17 15:00:47',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(3563,'4000','121660736690','2022-08-17 15:00:47',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(3564,'4000','121660736690','2022-08-17 15:00:47',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(3565,'1110','121660751791','2022-08-17 18:56:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3566,'5500','121660751791','2022-08-17 18:56:44',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3567,'1000','121660751791','2022-08-17 18:56:44',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3568,'4000','121660751791','2022-08-17 18:56:44',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3569,'1110','121660763715','2022-08-17 22:15:20',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(3570,'5500','121660763715','2022-08-17 22:15:20',1960.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3571,'1000','121660763715','2022-08-17 22:15:20',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3572,'4000','121660763715','2022-08-17 22:15:20',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(3576,'1000','121660763862','2022-08-17 22:21:28',3900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3579,'1110','121660763862','2022-08-17 22:21:28',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3580,'1110','121660763862','2022-08-17 22:27:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3581,'5500','121660763862','2022-08-17 22:27:14',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3582,'1000','121660763862','2022-08-17 22:21:28',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3583,'4000','121660763862','2022-08-17 22:21:28',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3584,'4000','121660763862','2022-08-17 22:27:14',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3585,'1110','121660766270','2022-08-17 22:57:55',NULL,1257.93,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(3586,'5500','121660766270','2022-08-17 22:57:55',1257.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3587,'1000','121660766270','2022-08-17 22:57:55',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3588,'4000','121660766270','2022-08-17 22:57:55',NULL,1700.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(3589,'1110','121660766412','2022-08-17 23:14:25',NULL,2708.10,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3590,'1110','121660766412','2022-08-17 23:14:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3591,'1110','121660766412','2022-08-17 23:14:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3592,'5500','121660766412','2022-08-17 23:14:25',3072.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3593,'1000','121660766412','2022-08-17 23:14:25',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3594,'4000','121660766412','2022-08-17 23:14:25',NULL,3600.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3595,'4000','121660766412','2022-08-17 23:14:25',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3596,'4000','121660766412','2022-08-17 23:14:25',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3597,'1110','121660767440','2022-08-17 23:20:39',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3598,'1110','121660767440','2022-08-17 23:20:39',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3599,'1110','121660767440','2022-08-17 23:20:39',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3600,'1110','121660767440','2022-08-17 23:20:39',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3601,'1110','121660767440','2022-08-17 23:20:39',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3602,'1110','121660767440','2022-08-17 23:20:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3603,'1110','121660767440','2022-08-17 23:20:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3604,'5500','121660767440','2022-08-17 23:20:39',2598.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3605,'1000','121660767440','2022-08-17 23:20:39',3520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3606,'4000','121660767440','2022-08-17 23:20:39',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3607,'4000','121660767440','2022-08-17 23:20:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3608,'4000','121660767440','2022-08-17 23:20:39',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3609,'4000','121660767440','2022-08-17 23:20:39',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3610,'4000','121660767440','2022-08-17 23:20:39',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3611,'4000','121660767440','2022-08-17 23:20:39',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3612,'4000','121660767440','2022-08-17 23:20:39',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3613,'1110','121660767647','2022-08-17 23:21:21',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3614,'5500','121660767647','2022-08-17 23:21:21',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3615,'1000','121660767647','2022-08-17 23:21:21',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3616,'4000','121660767647','2022-08-17 23:21:21',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3617,'1110','121660825050','2022-08-18 15:17:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3618,'1110','121660825050','2022-08-18 15:17:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3619,'5500','121660825050','2022-08-18 15:17:47',236.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3620,'1000','121660825050','2022-08-18 15:17:47',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3621,'4000','121660825050','2022-08-18 15:17:47',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3622,'4000','121660825050','2022-08-18 15:17:47',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3623,'1110','121660832293','2022-08-18 18:36:18',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(3624,'1110','121660832293','2022-08-18 18:36:18',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3625,'1110','121660832293','2022-08-18 18:36:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3626,'1110','121660832293','2022-08-18 18:36:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3627,'5500','121660832293','2022-08-18 18:36:18',5096.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3628,'1000','121660832293','2022-08-18 18:36:18',6840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3629,'4000','121660832293','2022-08-18 18:36:18',NULL,4700.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(3630,'4000','121660832293','2022-08-18 18:36:18',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3631,'4000','121660832293','2022-08-18 18:36:18',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3632,'4000','121660832293','2022-08-18 18:36:18',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3633,'1110','121660839374','2022-08-18 19:16:36',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3634,'1110','121660839374','2022-08-18 19:16:36',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3635,'5500','121660839374','2022-08-18 19:16:36',327.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3636,'1000','121660839374','2022-08-18 19:16:36',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3637,'4000','121660839374','2022-08-18 19:16:36',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3638,'4000','121660839374','2022-08-18 19:16:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3639,'1110','121660839432','2022-08-18 19:17:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3640,'1110','121660839432','2022-08-18 19:17:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3641,'1110','121660839432','2022-08-18 19:17:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3642,'1110','121660839432','2022-08-18 19:17:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3643,'5500','121660839432','2022-08-18 19:17:24',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3644,'1000','121660839432','2022-08-18 19:17:24',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3645,'4000','121660839432','2022-08-18 19:17:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3646,'4000','121660839432','2022-08-18 19:17:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3647,'4000','121660839432','2022-08-18 19:17:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3648,'4000','121660839432','2022-08-18 19:17:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3649,'1110','121660839680','2022-08-18 20:36:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3650,'5500','121660839680','2022-08-18 20:36:46',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3651,'1000','121660839680','2022-08-18 20:36:46',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3652,'4000','121660839680','2022-08-18 20:36:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3653,'1110','121660844210','2022-08-18 21:16:22',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3654,'1110','121660844210','2022-08-18 21:16:22',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3655,'1110','121660844210','2022-08-18 21:16:22',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3656,'1110','121660844210','2022-08-18 21:16:22',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3657,'5500','121660844210','2022-08-18 21:16:22',3933.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3658,'1000','121660844210','2022-08-18 21:16:22',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3659,'4000','121660844210','2022-08-18 21:16:22',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3660,'4000','121660844210','2022-08-18 21:16:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3661,'4000','121660844210','2022-08-18 21:16:22',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3662,'4000','121660844210','2022-08-18 21:16:22',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3663,'1110','121660846629','2022-08-18 21:52:56',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(3664,'5500','121660846629','2022-08-18 21:52:56',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3665,'1000','121660846629','2022-08-18 21:52:56',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3666,'4000','121660846629','2022-08-18 21:52:56',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(3667,'1110','121660848805','2022-08-18 22:00:50',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3668,'5500','121660848805','2022-08-18 22:00:50',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3669,'1000','121660848805','2022-08-18 22:00:50',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3670,'4000','121660848805','2022-08-18 22:00:50',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3671,'1110','121660849265','2022-08-18 22:25:37',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3672,'1110','121660849265','2022-08-18 22:25:37',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(3673,'5500','121660849265','2022-08-18 22:25:37',300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3674,'1000','121660849265','2022-08-18 22:25:37',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3675,'4000','121660849265','2022-08-18 22:25:37',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3676,'4000','121660849265','2022-08-18 22:25:37',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(3677,'1110','121660850831','2022-08-18 22:59:16',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3678,'1110','121660850831','2022-08-18 22:59:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3679,'5500','121660850831','2022-08-18 22:59:16',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3680,'1000','121660850831','2022-08-18 22:59:16',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3681,'4000','121660850831','2022-08-18 22:59:16',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3682,'4000','121660850831','2022-08-18 22:59:16',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3683,'1110','121660909937','2022-08-19 16:21:22',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3684,'1110','121660909937','2022-08-19 16:21:22',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3685,'5500','121660909937','2022-08-19 16:21:22',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3686,'1000','121660909937','2022-08-19 16:21:22',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3687,'4000','121660909937','2022-08-19 16:21:22',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3688,'4000','121660909937','2022-08-19 16:21:22',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3689,'1110','121660927153','2022-08-19 19:39:17',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(3690,'5500','121660927153','2022-08-19 19:39:17',1650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3691,'1000','121660927153','2022-08-19 19:39:17',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3692,'4000','121660927153','2022-08-19 19:39:17',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(3693,'1110','121660927202','2022-08-19 20:18:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3694,'1110','121660927202','2022-08-19 20:18:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3695,'1110','121660927202','2022-08-19 20:18:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3696,'1110','121660927202','2022-08-19 20:18:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3697,'5500','121660927202','2022-08-19 20:18:37',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3698,'1000','121660927202','2022-08-19 20:18:37',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3699,'4000','121660927202','2022-08-19 20:18:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3700,'4000','121660927202','2022-08-19 20:18:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3701,'4000','121660927202','2022-08-19 20:18:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3702,'4000','121660927202','2022-08-19 20:18:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3703,'1110','121660929627','2022-08-19 21:12:50',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3704,'1110','121660929627','2022-08-19 21:12:50',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3705,'1110','121660929627','2022-08-19 21:12:50',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3706,'5500','121660929627','2022-08-19 21:12:50',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3707,'1000','121660929627','2022-08-19 21:12:50',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3708,'4000','121660929627','2022-08-19 21:12:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3709,'4000','121660929627','2022-08-19 21:12:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3710,'4000','121660929627','2022-08-19 21:12:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3711,'1110','121660933117','2022-08-19 21:22:26',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3712,'1110','121660933117','2022-08-19 21:22:26',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3713,'1110','121660933117','2022-08-19 21:22:26',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(3714,'5500','121660933117','2022-08-19 21:22:26',397.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3715,'1000','121660933117','2022-08-19 21:22:26',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3716,'4000','121660933117','2022-08-19 21:22:26',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3717,'4000','121660933117','2022-08-19 21:22:26',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(3718,'4000','121660933117','2022-08-19 21:22:26',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(3719,'1110','121660934182','2022-08-19 21:38:40',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3720,'5500','121660934182','2022-08-19 21:38:40',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3721,'1000','121660934182','2022-08-19 21:38:40',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3722,'4000','121660934182','2022-08-19 21:38:40',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(3723,'1110','121660940256','2022-08-19 23:27:01',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(3724,'1110','121660940256','2022-08-19 23:27:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3725,'1110','121660940256','2022-08-19 23:27:01',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3726,'1110','121660940256','2022-08-19 23:27:01',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3727,'1110','121660940256','2022-08-19 23:27:01',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3728,'5500','121660940256','2022-08-19 23:27:01',1111.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3729,'1000','121660940256','2022-08-19 23:27:01',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3730,'4000','121660940256','2022-08-19 23:27:01',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(3731,'4000','121660940256','2022-08-19 23:27:01',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3732,'4000','121660940256','2022-08-19 23:27:01',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3733,'4000','121660940256','2022-08-19 23:27:01',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3734,'4000','121660940256','2022-08-19 23:27:01',NULL,180.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3735,'1110','121660941040','2022-08-19 23:32:33',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(3736,'5500','121660941040','2022-08-19 23:32:33',7200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3737,'1000','121660941040','2022-08-19 23:32:33',9700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3738,'4000','121660941040','2022-08-19 23:32:33',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(3739,'1110','121660941230','2022-08-19 23:41:24',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3740,'1110','121660941230','2022-08-19 23:41:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3741,'1110','121660941230','2022-08-19 23:41:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3742,'5500','121660941230','2022-08-19 23:41:24',1646.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3743,'1000','121660941230','2022-08-19 23:41:24',2140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3744,'4000','121660941230','2022-08-19 23:41:24',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3745,'4000','121660941230','2022-08-19 23:41:24',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3746,'4000','121660941230','2022-08-19 23:41:24',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3747,'1110','121660941881','2022-08-19 23:47:38',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(3748,'5500','121660941881','2022-08-19 23:47:38',1916.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3749,'1000','121660941881','2022-08-19 23:47:38',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3750,'4000','121660941881','2022-08-19 23:47:38',NULL,2600.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(3751,'1110','121660942091','2022-08-19 23:49:49',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3752,'1110','121660942091','2022-08-19 23:49:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3753,'5500','121660942091','2022-08-19 23:49:49',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3754,'1000','121660942091','2022-08-19 23:49:49',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3755,'4000','121660942091','2022-08-19 23:49:49',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3756,'4000','121660942091','2022-08-19 23:49:49',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3757,'1110','121660942349','2022-08-19 23:54:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3758,'5500','121660942349','2022-08-19 23:54:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3759,'1000','121660942349','2022-08-19 23:54:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3760,'4000','121660942349','2022-08-19 23:54:22',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3761,'1110','121660942468','2022-08-20 00:14:43',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3762,'1110','121660942468','2022-08-20 00:14:43',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3763,'1110','121660942468','2022-08-20 00:14:43',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3764,'1110','121660942468','2022-08-20 00:14:43',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(3765,'1110','121660942468','2022-08-20 00:14:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3766,'1110','121660942468','2022-08-20 00:14:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3767,'1110','121660942468','2022-08-20 00:14:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3768,'1110','121660942468','2022-08-20 00:14:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3769,'5500','121660942468','2022-08-20 00:14:43',5410.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3770,'1000','121660942468','2022-08-20 00:14:43',6990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3771,'4000','121660942468','2022-08-20 00:14:43',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3772,'4000','121660942468','2022-08-20 00:14:43',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3773,'4000','121660942468','2022-08-20 00:14:43',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(3774,'4000','121660942468','2022-08-20 00:14:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(3775,'4000','121660942468','2022-08-20 00:14:43',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3776,'4000','121660942468','2022-08-20 00:14:43',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3777,'4000','121660942468','2022-08-20 00:14:43',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3778,'4000','121660942468','2022-08-20 00:14:43',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3779,'1110','121660943996','2022-08-20 00:21:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3780,'5500','121660943996','2022-08-20 00:21:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3781,'1000','121660943996','2022-08-20 00:21:04',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3782,'4000','121660943996','2022-08-20 00:21:04',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3783,'1110','121660944068','2022-08-20 00:21:42',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3784,'5500','121660944068','2022-08-20 00:21:42',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3785,'1000','121660944068','2022-08-20 00:21:42',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3786,'4000','121660944068','2022-08-20 00:21:42',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3787,'1110','121660944108','2022-08-20 01:14:08',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(3788,'5500','121660944108','2022-08-20 01:14:08',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3789,'1000','121660944108','2022-08-20 01:14:08',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3790,'4000','121660944108','2022-08-20 01:14:08',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(3791,'1110','121660947284','2022-08-20 01:58:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3792,'1110','121660947284','2022-08-20 01:58:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3793,'5500','121660947284','2022-08-20 01:58:04',116.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3794,'1000','121660947284','2022-08-20 01:58:04',170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3795,'4000','121660947284','2022-08-20 01:58:04',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3796,'4000','121660947284','2022-08-20 01:58:04',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3797,'1110','121660950234','2022-08-20 02:04:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3798,'5500','121660950234','2022-08-20 02:04:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3799,'1000','121660950234','2022-08-20 02:04:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3800,'4000','121660950234','2022-08-20 02:04:03',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3801,'1110','121660950262','2022-08-20 02:40:53',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3802,'1110','121660950262','2022-08-20 02:40:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3803,'5500','121660950262','2022-08-20 02:40:53',541.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3804,'1000','121660950262','2022-08-20 02:40:53',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3805,'4000','121660950262','2022-08-20 02:40:53',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(3806,'4000','121660950262','2022-08-20 02:40:53',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3807,'1110','121660993769','2022-08-20 14:10:56',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3808,'5500','121660993769','2022-08-20 14:10:56',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3809,'1000','121660993769','2022-08-20 14:10:56',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3810,'4000','121660993769','2022-08-20 14:10:56',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3811,'1110','121661009478','2022-08-20 20:00:46',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3812,'5500','121661009478','2022-08-20 20:00:46',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3813,'1000','121661009478','2022-08-20 20:00:46',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3814,'4000','121661009478','2022-08-20 20:00:46',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(3815,'1110','121661015181','2022-08-20 20:17:18',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3816,'5500','121661015181','2022-08-20 20:17:18',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3817,'1000','121661015181','2022-08-20 20:17:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3818,'4000','121661015181','2022-08-20 20:17:18',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3819,'1110','121661025432','2022-08-20 23:01:28',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(3820,'1110','121661025432','2022-08-20 23:01:28',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3821,'5500','121661025432','2022-08-20 23:01:28',487.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3822,'1000','121661025432','2022-08-20 23:01:28',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3823,'4000','121661025432','2022-08-20 23:01:28',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(3824,'4000','121661025432','2022-08-20 23:01:28',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3825,'1110','121661026147','2022-08-20 23:26:38',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452371506','','No',NULL,NULL,''),(3826,'1110','121661026147','2022-08-20 23:26:38',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(3827,'1110','121661026147','2022-08-20 23:26:38',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(3828,'5500','121661026147','2022-08-20 23:26:38',1621.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3829,'1000','121661026147','2022-08-20 23:26:38',2310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3830,'4000','121661026147','2022-08-20 23:26:38',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452371506','','No',NULL,NULL,''),(3831,'4000','121661026147','2022-08-20 23:26:38',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(3832,'4000','121661026147','2022-08-20 23:26:38',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(3833,'1110','121661027579','2022-08-20 23:43:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3834,'5500','121661027579','2022-08-20 23:43:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3835,'1000','121661027579','2022-08-20 23:43:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3836,'4000','121661027579','2022-08-20 23:43:14',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3837,'1110','121661028341','2022-08-20 23:46:42',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3838,'1110','121661028341','2022-08-20 23:46:42',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3839,'1110','121661028341','2022-08-20 23:46:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(3840,'5500','121661028341','2022-08-20 23:46:42',976.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3841,'1000','121661028341','2022-08-20 23:46:42',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3842,'4000','121661028341','2022-08-20 23:46:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3843,'4000','121661028341','2022-08-20 23:46:42',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(3844,'4000','121661028341','2022-08-20 23:46:42',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(3845,'1110','121661029222','2022-08-21 00:00:45',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3846,'5500','121661029222','2022-08-21 00:00:45',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3847,'1000','121661029222','2022-08-21 00:00:45',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3848,'4000','121661029222','2022-08-21 00:00:45',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3849,'1110','121661029580','2022-08-21 00:26:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3850,'5500','121661029580','2022-08-21 00:26:40',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3851,'1000','121661029580','2022-08-21 00:26:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3852,'4000','121661029580','2022-08-21 00:26:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3853,'1110','121661031135','2022-08-21 00:42:57',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3854,'1110','121661031135','2022-08-21 00:42:57',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3855,'1110','121661031135','2022-08-21 00:42:57',NULL,160.00,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(3856,'5500','121661031135','2022-08-21 00:42:57',3460.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3857,'1000','121661031135','2022-08-21 00:42:57',4810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3858,'4000','121661031135','2022-08-21 00:42:57',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3859,'4000','121661031135','2022-08-21 00:42:57',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(3860,'4000','121661031135','2022-08-21 00:42:57',NULL,210.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(3861,'1110','121661033376','2022-08-21 01:15:27',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3862,'5500','121661033376','2022-08-21 01:15:27',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3863,'1000','121661033376','2022-08-21 01:15:27',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3864,'4000','121661033376','2022-08-21 01:15:27',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(3865,'1110','121661033786','2022-08-21 01:23:36',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3866,'5500','121661033786','2022-08-21 01:23:36',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3867,'1000','121661033786','2022-08-21 01:23:36',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3868,'4000','121661033786','2022-08-21 01:23:36',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3869,'1110','121661034668','2022-08-21 01:31:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3870,'5500','121661034668','2022-08-21 01:31:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3871,'1000','121661034668','2022-08-21 01:31:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3872,'4000','121661034668','2022-08-21 01:31:24',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3873,'1110','121661035785','2022-08-21 02:05:05',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3874,'1110','121661035785','2022-08-21 02:05:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3875,'1110','121661035785','2022-08-21 02:05:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3876,'5500','121661035785','2022-08-21 02:05:05',425.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3877,'1000','121661035785','2022-08-21 02:05:05',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3878,'4000','121661035785','2022-08-21 02:05:05',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(3879,'4000','121661035785','2022-08-21 02:05:05',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(3880,'4000','121661035785','2022-08-21 02:05:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(3881,'1110','121661037384','2022-08-21 02:16:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3882,'5500','121661037384','2022-08-21 02:16:39',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3883,'1000','121661037384','2022-08-21 02:16:39',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3884,'4000','121661037384','2022-08-21 02:16:39',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(3885,'1110','121661081596','2022-08-21 15:22:57',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(3886,'5500','121661081596','2022-08-21 15:22:57',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3887,'1000','121661081596','2022-08-21 15:22:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3888,'4000','121661081596','2022-08-21 15:22:57',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(3889,'1110','121661086321','2022-08-21 16:18:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3890,'5500','121661086321','2022-08-21 16:18:13',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3891,'1000','121661086321','2022-08-21 16:18:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3892,'4000','121661086321','2022-08-21 16:18:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3893,'1110','121661095830','2022-08-21 18:33:51',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3894,'5500','121661095830','2022-08-21 18:33:51',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3895,'1000','121661095830','2022-08-21 18:33:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3896,'4000','121661095830','2022-08-21 18:33:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3897,'1110','121661096034','2022-08-21 19:25:09',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(3898,'5500','121661096034','2022-08-21 19:25:09',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3899,'1000','121661096034','2022-08-21 19:25:09',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3900,'4000','121661096034','2022-08-21 19:25:09',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(3901,'1110','121661099293','2022-08-21 19:52:32',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3902,'5500','121661099293','2022-08-21 19:52:32',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3903,'1000','121661099293','2022-08-21 19:52:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3904,'4000','121661099293','2022-08-21 19:52:32',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3905,'1110','121661100859','2022-08-21 20:59:43',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(3906,'5500','121661100859','2022-08-21 20:59:43',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3907,'1000','121661100859','2022-08-21 20:59:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3908,'4000','121661100859','2022-08-21 20:59:43',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(3909,'1110','121661104866','2022-08-21 21:19:30',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3910,'5500','121661104866','2022-08-21 21:19:30',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3911,'1000','121661104866','2022-08-21 21:19:30',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3912,'4000','121661104866','2022-08-21 21:19:30',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(3913,'1110','121661106240','2022-08-21 21:36:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3914,'5500','121661106240','2022-08-21 21:36:53',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3915,'1000','121661106240','2022-08-21 21:36:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3916,'4000','121661106240','2022-08-21 21:36:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(3917,'1110','121661107115','2022-08-21 23:12:47',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929190378','','No',NULL,NULL,''),(3918,'1110','121661107115','2022-08-21 23:12:47',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3919,'1110','121661107115','2022-08-21 23:12:47',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3920,'5500','121661107115','2022-08-21 23:12:47',2953.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3921,'1000','121661107115','2022-08-21 23:12:47',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3922,'4000','121661107115','2022-08-21 23:12:47',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929190378','','No',NULL,NULL,''),(3923,'4000','121661107115','2022-08-21 23:12:47',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3924,'4000','121661107115','2022-08-21 23:12:47',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3925,'1110','121661159996','2022-08-22 12:57:09',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3926,'5500','121661159996','2022-08-22 12:57:09',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3927,'1000','121661159996','2022-08-22 12:57:09',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3928,'4000','121661159996','2022-08-22 12:57:09',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3929,'1110','121661171093','2022-08-22 15:24:55',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3930,'5500','121661171093','2022-08-22 15:24:55',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3931,'1000','121661171093','2022-08-22 15:24:55',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3932,'4000','121661171093','2022-08-22 15:24:55',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(3933,'1110','121661171246','2022-08-22 16:39:36',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3934,'5500','121661171246','2022-08-22 16:39:36',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3935,'1000','121661171246','2022-08-22 16:39:36',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3936,'4000','121661171246','2022-08-22 16:39:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(3937,'1110','121661175686','2022-08-22 17:10:17',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3938,'5500','121661175686','2022-08-22 17:10:17',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3939,'1000','121661175686','2022-08-22 17:10:17',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3940,'4000','121661175686','2022-08-22 17:10:17',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3941,'1110','121661185771','2022-08-22 19:51:00',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3942,'5500','121661185771','2022-08-22 19:51:00',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3943,'1000','121661185771','2022-08-22 19:51:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3944,'4000','121661185771','2022-08-22 19:51:00',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3945,'1110','121661187240','2022-08-22 20:01:13',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3946,'1110','121661187240','2022-08-22 20:01:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3947,'1110','121661187240','2022-08-22 20:01:13',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3948,'1110','121661187240','2022-08-22 20:01:13',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3949,'1110','121661187240','2022-08-22 20:01:13',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3950,'5500','121661187240','2022-08-22 20:01:13',3060.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3951,'1000','121661187240','2022-08-22 20:01:13',4270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3952,'4000','121661187240','2022-08-22 20:01:13',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3953,'4000','121661187240','2022-08-22 20:01:13',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3954,'4000','121661187240','2022-08-22 20:01:13',NULL,400.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3955,'4000','121661187240','2022-08-22 20:01:13',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(3956,'4000','121661187240','2022-08-22 20:01:13',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(3957,'1110','121661187757','2022-08-22 20:18:15',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3958,'5500','121661187757','2022-08-22 20:18:15',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3959,'1000','121661187757','2022-08-22 20:18:15',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3960,'4000','121661187757','2022-08-22 20:18:15',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(3961,'1110','121661188806','2022-08-22 20:28:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3962,'5500','121661188806','2022-08-22 20:28:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3963,'1000','121661188806','2022-08-22 20:28:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3964,'4000','121661188806','2022-08-22 20:28:25',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3965,'1110','121661189314','2022-08-22 20:40:35',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3966,'5500','121661189314','2022-08-22 20:40:35',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3967,'1000','121661189314','2022-08-22 20:40:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3968,'4000','121661189314','2022-08-22 20:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3969,'1110','121661190044','2022-08-22 20:46:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3970,'1110','121661190044','2022-08-22 20:46:16',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3971,'5500','121661190044','2022-08-22 20:46:16',364.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3972,'1000','121661190044','2022-08-22 20:46:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3973,'4000','121661190044','2022-08-22 20:46:16',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3974,'4000','121661190044','2022-08-22 20:46:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3975,'1110','121661190479','2022-08-22 20:48:14',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3976,'5500','121661190479','2022-08-22 20:48:14',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3977,'1000','121661190479','2022-08-22 20:48:14',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3978,'4000','121661190479','2022-08-22 20:48:14',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(3979,'1110','121661190509','2022-08-22 20:49:05',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3980,'5500','121661190509','2022-08-22 20:49:05',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3981,'1000','121661190509','2022-08-22 20:49:05',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3982,'4000','121661190509','2022-08-22 20:49:05',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(3983,'1110','121661190549','2022-08-22 21:34:44',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(3984,'1110','121661190549','2022-08-22 21:34:44',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3985,'1110','121661190549','2022-08-22 21:34:44',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3986,'5500','121661190549','2022-08-22 21:34:44',607.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3987,'1000','121661190549','2022-08-22 21:34:44',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3988,'4000','121661190549','2022-08-22 21:34:44',NULL,500.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(3989,'4000','121661190549','2022-08-22 21:34:44',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(3990,'4000','121661190549','2022-08-22 21:34:44',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(3991,'1110','121661193311','2022-08-22 21:41:47',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3992,'5500','121661193311','2022-08-22 21:41:47',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3993,'1000','121661193311','2022-08-22 21:41:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3994,'4000','121661193311','2022-08-22 21:41:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(3995,'1110','121661203425','2022-08-23 00:24:04',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3996,'5500','121661203425','2022-08-23 00:24:04',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3997,'1000','121661203425','2022-08-23 00:24:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3998,'4000','121661203425','2022-08-23 00:24:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(3999,'1110','121661259299','2022-08-23 16:10:38',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4000,'1110','121661259299','2022-08-23 16:10:38',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4001,'5500','121661259299','2022-08-23 16:10:38',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4002,'1000','121661259299','2022-08-23 16:10:38',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4003,'4000','121661259299','2022-08-23 16:10:38',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4004,'4000','121661259299','2022-08-23 16:10:38',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4005,'1110','121661260260','2022-08-23 17:55:44',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(4006,'1110','121661260260','2022-08-23 17:55:44',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4007,'5500','121661260260','2022-08-23 17:55:44',345.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4008,'1000','121661260260','2022-08-23 17:55:44',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4009,'4000','121661260260','2022-08-23 17:55:44',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(4010,'4000','121661260260','2022-08-23 17:55:44',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4011,'1110','121661280831','2022-08-23 21:53:56',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(4012,'5500','121661280831','2022-08-23 21:53:56',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4013,'1000','121661280831','2022-08-23 21:53:56',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4014,'4000','121661280831','2022-08-23 21:53:56',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(4015,'1110','121661280892','2022-08-23 22:03:02',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(4016,'1110','121661280892','2022-08-23 22:03:02',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(4017,'5500','121661280892','2022-08-23 22:03:02',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4018,'1000','121661280892','2022-08-23 22:03:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4019,'4000','121661280892','2022-08-23 22:03:02',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(4020,'4000','121661280892','2022-08-23 22:03:02',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(4021,'1110','121661281388','2022-08-23 22:09:47',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4022,'1110','121661281388','2022-08-23 22:09:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(4023,'5500','121661281388','2022-08-23 22:09:47',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4024,'1000','121661281388','2022-08-23 22:09:47',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4025,'4000','121661281388','2022-08-23 22:09:47',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4026,'4000','121661281388','2022-08-23 22:09:47',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(4027,'1110','121661281802','2022-08-23 22:45:29',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4028,'5500','121661281802','2022-08-23 22:45:29',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4029,'1000','121661281802','2022-08-23 22:45:29',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4030,'4000','121661281802','2022-08-23 22:45:29',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4031,'1110','121661287945','2022-08-23 23:52:49',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4032,'5500','121661287945','2022-08-23 23:52:49',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4033,'1000','121661287945','2022-08-23 23:52:49',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4034,'4000','121661287945','2022-08-23 23:52:49',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4035,'1110','121661334819','2022-08-24 14:37:52',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4036,'5500','121661334819','2022-08-24 14:37:52',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4037,'1000','121661334819','2022-08-24 14:37:52',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4038,'4000','121661334819','2022-08-24 14:37:52',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4039,'1110','121661350711','2022-08-24 17:20:32',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4040,'1110','121661350711','2022-08-24 17:20:32',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4041,'1110','121661350711','2022-08-24 17:20:32',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4042,'1110','121661350711','2022-08-24 17:20:32',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4043,'5500','121661350711','2022-08-24 17:20:32',1512.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4044,'1000','121661350711','2022-08-24 17:20:32',2130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4045,'4000','121661350711','2022-08-24 17:20:32',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4046,'4000','121661350711','2022-08-24 17:20:32',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4047,'4000','121661350711','2022-08-24 17:20:32',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4048,'4000','121661350711','2022-08-24 17:20:32',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4049,'1110','121661351171','2022-08-24 17:34:56',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(4050,'1110','121661351171','2022-08-24 17:34:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4051,'5500','121661351171','2022-08-24 17:34:56',413.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4052,'1000','121661351171','2022-08-24 17:34:56',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4053,'4000','121661351171','2022-08-24 17:34:56',NULL,350.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(4054,'4000','121661351171','2022-08-24 17:34:56',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4055,'1110','121661351761','2022-08-24 19:01:51',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(4056,'5500','121661351761','2022-08-24 19:01:51',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4057,'1000','121661351761','2022-08-24 19:01:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4058,'4000','121661351761','2022-08-24 19:01:51',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(4059,'1110','121661356919','2022-08-24 20:23:53',NULL,501.84,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4060,'1110','121661356919','2022-08-24 20:23:53',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4061,'1110','121661356919','2022-08-24 20:23:53',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4062,'5500','121661356919','2022-08-24 20:23:53',2944.34,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4063,'1000','121661356919','2022-08-24 20:23:53',4140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4064,'4000','121661356919','2022-08-24 20:23:53',NULL,840.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4065,'4000','121661356919','2022-08-24 20:23:53',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4066,'4000','121661356919','2022-08-24 20:23:53',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4067,'1110','121661363587','2022-08-24 21:07:32',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(4068,'1110','121661363587','2022-08-24 21:07:32',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387004605','','No',NULL,NULL,''),(4069,'1110','121661363587','2022-08-24 21:07:32',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4070,'5500','121661363587','2022-08-24 21:07:32',3143.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4071,'1000','121661363587','2022-08-24 21:07:32',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4072,'4000','121661363587','2022-08-24 21:07:32',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(4073,'4000','121661363587','2022-08-24 21:07:32',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387004605','','No',NULL,NULL,''),(4074,'4000','121661363587','2022-08-24 21:07:32',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4075,'1110','121661365030','2022-08-24 21:18:43',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4076,'1110','121661365030','2022-08-24 21:18:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(4077,'1110','121661365030','2022-08-24 21:18:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(4078,'5500','121661365030','2022-08-24 21:18:43',551.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4079,'1000','121661365030','2022-08-24 21:18:43',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4080,'4000','121661365030','2022-08-24 21:18:43',NULL,400.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4081,'4000','121661365030','2022-08-24 21:18:43',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(4082,'4000','121661365030','2022-08-24 21:18:43',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(4083,'1110','121661365130','2022-08-24 21:52:50',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4084,'5500','121661365130','2022-08-24 21:52:50',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4085,'1000','121661365130','2022-08-24 21:52:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4086,'4000','121661365130','2022-08-24 21:52:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4087,'1110','121661367195','2022-08-24 21:55:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(4088,'1110','121661367195','2022-08-24 21:55:48',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4089,'5500','121661367195','2022-08-24 21:55:48',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4090,'1000','121661367195','2022-08-24 21:55:48',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4091,'4000','121661367195','2022-08-24 21:55:48',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(4092,'4000','121661367195','2022-08-24 21:55:48',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4093,'1110','121661367353','2022-08-24 22:16:21',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4094,'5500','121661367353','2022-08-24 22:16:21',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4095,'1000','121661367353','2022-08-24 22:16:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4096,'4000','121661367353','2022-08-24 22:16:21',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4097,'1110','121661368591','2022-08-24 23:23:45',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4098,'1110','121661368591','2022-08-24 23:23:45',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4099,'5500','121661368591','2022-08-24 23:23:45',1013.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4100,'1000','121661368591','2022-08-24 23:23:45',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4101,'4000','121661368591','2022-08-24 23:23:45',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4102,'4000','121661368591','2022-08-24 23:23:45',NULL,920.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4103,'1110','121661372713','2022-08-24 23:32:31',NULL,3300.00,'','12','1','Inventory sold','1','','sales','5099873011737','','No',NULL,NULL,''),(4104,'5500','121661372713','2022-08-24 23:32:31',3300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4105,'1000','121661372713','2022-08-24 23:32:31',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4106,'4000','121661372713','2022-08-24 23:32:31',NULL,4500.00,'','12','1','Good sold','1','','sales','5099873011737','','No',NULL,NULL,''),(4107,'1110','121661373165','2022-08-24 23:34:27',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(4108,'5500','121661373165','2022-08-24 23:34:27',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4109,'1000','121661373165','2022-08-24 23:34:27',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4110,'4000','121661373165','2022-08-24 23:34:27',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(4111,'1110','121661373295','2022-08-24 23:35:09',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4112,'5500','121661373295','2022-08-24 23:35:09',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4113,'1000','121661373295','2022-08-24 23:35:09',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4114,'4000','121661373295','2022-08-24 23:35:09',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4115,'1110','121661373348','2022-08-24 23:37:58',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4116,'1110','121661373348','2022-08-24 23:37:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4117,'1110','121661373348','2022-08-24 23:37:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4118,'5500','121661373348','2022-08-24 23:37:58',802.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4119,'1000','121661373348','2022-08-24 23:37:58',1060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4120,'4000','121661373348','2022-08-24 23:37:58',NULL,920.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4121,'4000','121661373348','2022-08-24 23:37:58',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4122,'4000','121661373348','2022-08-24 23:37:58',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4123,'1110','121661423707','2022-08-25 13:36:47',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4124,'1110','121661423707','2022-08-25 13:36:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4125,'1110','121661423707','2022-08-25 13:36:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4126,'1110','121661423707','2022-08-25 13:36:47',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4127,'1110','121661423707','2022-08-25 13:36:47',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4128,'5500','121661423707','2022-08-25 13:36:47',1033.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4129,'1000','121661423707','2022-08-25 13:36:47',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4130,'4000','121661423707','2022-08-25 13:36:47',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4131,'4000','121661423707','2022-08-25 13:36:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4132,'4000','121661423707','2022-08-25 13:36:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4133,'4000','121661423707','2022-08-25 13:36:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4134,'4000','121661423707','2022-08-25 13:36:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4135,'1110','121661424012','2022-08-25 13:40:35',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4136,'5500','121661424012','2022-08-25 13:40:35',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4137,'1000','121661424012','2022-08-25 13:40:35',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4138,'4000','121661424012','2022-08-25 13:40:35',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4139,'1110','121661424039','2022-08-25 13:57:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4140,'1110','121661424039','2022-08-25 13:57:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4141,'5500','121661424039','2022-08-25 13:57:03',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4142,'1000','121661424039','2022-08-25 13:57:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4143,'4000','121661424039','2022-08-25 13:57:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4144,'4000','121661424039','2022-08-25 13:57:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4145,'1110','121661425030','2022-08-25 13:59:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4146,'5500','121661425030','2022-08-25 13:59:08',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4147,'1000','121661425030','2022-08-25 13:59:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4148,'4000','121661425030','2022-08-25 13:59:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4149,'1110','121661434976','2022-08-25 17:59:51',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4150,'1110','121661434976','2022-08-25 17:59:51',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4151,'1110','121661434976','2022-08-25 17:59:51',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(4152,'5500','121661434976','2022-08-25 17:59:51',500.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4153,'1000','121661434976','2022-08-25 17:59:51',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4154,'4000','121661434976','2022-08-25 17:59:51',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4155,'4000','121661434976','2022-08-25 17:59:51',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4156,'4000','121661434976','2022-08-25 17:59:51',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(4157,'1110','121661439652','2022-08-25 18:04:06',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4158,'5500','121661439652','2022-08-25 18:04:06',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4159,'1000','121661439652','2022-08-25 18:04:06',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4160,'4000','121661439652','2022-08-25 18:04:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4161,'1110','121661450831','2022-08-25 21:07:18',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4162,'5500','121661450831','2022-08-25 21:07:18',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4163,'1000','121661450831','2022-08-25 21:07:18',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4164,'4000','121661450831','2022-08-25 21:07:18',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4165,'1110','121661450865','2022-08-25 21:24:41',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4166,'5500','121661450865','2022-08-25 21:24:41',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4167,'1000','121661450865','2022-08-25 21:24:41',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4168,'4000','121661450865','2022-08-25 21:24:41',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4169,'1110','121661451965','2022-08-25 22:54:57',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4170,'5500','121661451965','2022-08-25 22:54:57',1138.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4171,'1000','121661451965','2022-08-25 22:54:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4172,'4000','121661451965','2022-08-25 22:54:57',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4173,'1110','121661457309','2022-08-25 23:00:25',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4174,'1110','121661457309','2022-08-25 23:00:25',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(4175,'5500','121661457309','2022-08-25 23:00:25',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4176,'1000','121661457309','2022-08-25 23:00:25',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4177,'4000','121661457309','2022-08-25 23:00:25',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4178,'4000','121661457309','2022-08-25 23:00:25',NULL,70.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(4179,'1110','121661457726','2022-08-25 23:02:25',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4180,'1110','121661457726','2022-08-25 23:02:25',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4181,'5500','121661457726','2022-08-25 23:02:25',437.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4182,'1000','121661457726','2022-08-25 23:02:25',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4183,'4000','121661457726','2022-08-25 23:02:25',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4184,'4000','121661457726','2022-08-25 23:02:25',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4185,'1110','121661510403','2022-08-26 14:16:07',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4186,'1110','121661510403','2022-08-26 14:16:07',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4187,'1110','121661510403','2022-08-26 14:16:07',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4188,'5500','121661510403','2022-08-26 14:16:07',345.27,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4189,'1000','121661510403','2022-08-26 14:16:07',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4190,'4000','121661510403','2022-08-26 14:16:07',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4191,'4000','121661510403','2022-08-26 14:16:07',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4192,'4000','121661510403','2022-08-26 14:16:07',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4193,'1110','121661512576','2022-08-26 14:21:34',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4194,'1110','121661512576','2022-08-26 14:21:34',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4195,'5500','121661512576','2022-08-26 14:21:34',634.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4196,'1000','121661512576','2022-08-26 14:21:34',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4197,'4000','121661512576','2022-08-26 14:21:34',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4198,'4000','121661512576','2022-08-26 14:21:34',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4199,'1110','121661522898','2022-08-26 17:08:37',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4200,'5500','121661522898','2022-08-26 17:08:37',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4201,'1000','121661522898','2022-08-26 17:08:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4202,'4000','121661522898','2022-08-26 17:08:37',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4203,'1110','121661523286','2022-08-26 17:15:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4204,'5500','121661523286','2022-08-26 17:15:59',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4205,'1000','121661523286','2022-08-26 17:15:59',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4206,'4000','121661523286','2022-08-26 17:15:59',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4207,'1110','121661527842','2022-08-26 18:30:45',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4208,'5500','121661527842','2022-08-26 18:30:45',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4209,'1000','121661527842','2022-08-26 18:30:45',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4210,'4000','121661527842','2022-08-26 18:30:45',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4211,'1110','121661527918','2022-08-26 19:42:10',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4212,'5500','121661527918','2022-08-26 19:42:10',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4213,'1000','121661527918','2022-08-26 19:42:10',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4214,'4000','121661527918','2022-08-26 19:42:10',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4215,'1110','121661546018','2022-08-26 23:33:45',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4216,'5500','121661546018','2022-08-26 23:33:45',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4217,'1000','121661546018','2022-08-26 23:33:45',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4218,'4000','121661546018','2022-08-26 23:33:45',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4219,'1110','121661546090','2022-08-26 23:45:48',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(4220,'5500','121661546090','2022-08-26 23:45:48',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4221,'1000','121661546090','2022-08-26 23:45:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4222,'4000','121661546090','2022-08-26 23:45:48',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(4223,'1110','121661546782','2022-08-26 23:46:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4224,'1110','121661546782','2022-08-26 23:46:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4225,'5500','121661546782','2022-08-26 23:46:38',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4226,'1000','121661546782','2022-08-26 23:46:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4227,'4000','121661546782','2022-08-26 23:46:38',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4228,'4000','121661546782','2022-08-26 23:46:38',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4229,'1110','121661548766','2022-08-27 01:27:02',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(4230,'5500','121661548766','2022-08-27 01:27:02',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4231,'1000','121661548766','2022-08-27 01:27:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4232,'4000','121661548766','2022-08-27 01:27:02',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(4233,'1110','121661554269','2022-08-27 01:55:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4234,'1110','121661554269','2022-08-27 01:55:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4235,'1110','121661554269','2022-08-27 01:55:46',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(4236,'1110','121661554269','2022-08-27 01:55:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4237,'1110','121661554269','2022-08-27 01:55:46',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(4238,'1110','121661554269','2022-08-27 01:55:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4239,'5500','121661554269','2022-08-27 01:55:46',1499.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4240,'1000','121661554269','2022-08-27 01:55:46',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4241,'4000','121661554269','2022-08-27 01:55:46',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4242,'4000','121661554269','2022-08-27 01:55:46',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4243,'4000','121661554269','2022-08-27 01:55:46',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(4244,'4000','121661554269','2022-08-27 01:55:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4245,'4000','121661554269','2022-08-27 01:55:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(4246,'4000','121661554269','2022-08-27 01:55:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4247,'1110','121661600248','2022-08-27 14:37:46',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4248,'5500','121661600248','2022-08-27 14:37:46',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4249,'1000','121661600248','2022-08-27 14:37:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4250,'4000','121661600248','2022-08-27 14:37:46',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4251,'1110','121661615859','2022-08-27 18:57:42',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4252,'5500','121661615859','2022-08-27 18:57:42',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4253,'1000','121661615859','2022-08-27 18:57:42',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4254,'4000','121661615859','2022-08-27 18:57:42',NULL,450.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4255,'1110','121661623156','2022-08-27 20:59:24',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4256,'1110','121661623156','2022-08-27 20:59:24',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4257,'5500','121661623156','2022-08-27 20:59:24',634.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4258,'1000','121661623156','2022-08-27 20:59:24',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4259,'4000','121661623156','2022-08-27 20:59:24',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4260,'4000','121661623156','2022-08-27 20:59:24',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4261,'1110','121661623204','2022-08-27 22:50:05',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(4262,'5500','121661623204','2022-08-27 22:50:05',1141.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4263,'1000','121661623204','2022-08-27 22:50:05',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4264,'4000','121661623204','2022-08-27 22:50:05',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(4265,'1110','121661629926','2022-08-27 22:53:23',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4266,'5500','121661629926','2022-08-27 22:53:23',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4267,'1000','121661629926','2022-08-27 22:53:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4268,'4000','121661629926','2022-08-27 22:53:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4269,'1110','121661630008','2022-08-27 23:04:56',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(4270,'5500','121661630008','2022-08-27 23:04:56',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4271,'1000','121661630008','2022-08-27 23:04:56',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4272,'4000','121661630008','2022-08-27 23:04:56',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(4273,'1110','121661630780','2022-08-27 23:30:00',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4274,'5500','121661630780','2022-08-27 23:30:00',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4275,'1000','121661630780','2022-08-27 23:30:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4276,'4000','121661630780','2022-08-27 23:30:00',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4277,'1110','121661634268','2022-08-28 00:07:00',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4278,'5500','121661634268','2022-08-28 00:07:00',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4279,'1000','121661634268','2022-08-28 00:07:00',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4280,'4000','121661634268','2022-08-28 00:07:00',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4281,'1110','121661637447','2022-08-28 00:57:31',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4282,'5500','121661637447','2022-08-28 00:57:31',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4283,'1000','121661637447','2022-08-28 00:57:31',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4284,'4000','121661637447','2022-08-28 00:57:31',NULL,450.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4285,'1110','121661637795','2022-08-28 01:04:10',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4286,'5500','121661637795','2022-08-28 01:04:10',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4287,'1000','121661637795','2022-08-28 01:04:10',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4288,'4000','121661637795','2022-08-28 01:04:10',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4289,'1110','121661637914','2022-08-28 01:26:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4290,'1110','121661637914','2022-08-28 01:26:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4291,'1110','121661637914','2022-08-28 01:26:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4292,'5500','121661637914','2022-08-28 01:26:37',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4293,'1000','121661637914','2022-08-28 01:26:37',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4294,'4000','121661637914','2022-08-28 01:26:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4295,'4000','121661637914','2022-08-28 01:26:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4296,'4000','121661637914','2022-08-28 01:26:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(4297,'1110','121661639206','2022-08-28 02:17:58',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4298,'1110','121661639206','2022-08-28 02:17:58',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4299,'5500','121661639206','2022-08-28 02:17:58',532.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4300,'1000','121661639206','2022-08-28 02:17:58',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4301,'4000','121661639206','2022-08-28 02:17:58',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4302,'4000','121661639206','2022-08-28 02:17:58',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4303,'1110','121661642323','2022-08-28 02:46:13',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4304,'1110','121661642323','2022-08-28 02:46:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4305,'1110','121661642323','2022-08-28 02:46:13',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(4306,'5500','121661642323','2022-08-28 02:46:13',1810.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4307,'1000','121661642323','2022-08-28 02:46:13',2510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4308,'4000','121661642323','2022-08-28 02:46:13',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4309,'4000','121661642323','2022-08-28 02:46:13',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4310,'4000','121661642323','2022-08-28 02:46:13',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(4311,'1110','121661681871','2022-08-28 13:37:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4312,'5500','121661681871','2022-08-28 13:37:28',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4313,'1000','121661681871','2022-08-28 13:37:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4314,'4000','121661681871','2022-08-28 13:37:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4315,'1110','121661695761','2022-08-28 17:09:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4316,'1110','121661695761','2022-08-28 17:09:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4317,'5500','121661695761','2022-08-28 17:09:44',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4318,'1000','121661695761','2022-08-28 17:09:44',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4319,'4000','121661695761','2022-08-28 17:09:44',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4320,'4000','121661695761','2022-08-28 17:09:44',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4321,'1110','121661703675','2022-08-28 19:21:30',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4322,'1110','121661703675','2022-08-28 19:21:30',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4323,'5500','121661703675','2022-08-28 19:21:30',634.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4324,'1000','121661703675','2022-08-28 19:21:30',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4325,'4000','121661703675','2022-08-28 19:21:30',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4326,'4000','121661703675','2022-08-28 19:21:30',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4327,'1110','121661705101','2022-08-28 19:49:45',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(4328,'5500','121661705101','2022-08-28 19:49:45',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4329,'1000','121661705101','2022-08-28 19:49:45',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4330,'4000','121661705101','2022-08-28 19:49:45',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(4331,'1110','121661705432','2022-08-28 20:32:35',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4332,'5500','121661705432','2022-08-28 20:32:35',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4333,'1000','121661705432','2022-08-28 20:32:35',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4334,'4000','121661705432','2022-08-28 20:32:35',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4335,'1110','121661707959','2022-08-28 21:14:39',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4336,'1110','121661707959','2022-08-28 21:14:39',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4337,'1110','121661707959','2022-08-28 21:14:39',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4338,'1110','121661707959','2022-08-28 21:14:39',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4339,'5500','121661707959','2022-08-28 21:14:39',760.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4340,'1000','121661707959','2022-08-28 21:14:39',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4341,'4000','121661707959','2022-08-28 21:14:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4342,'4000','121661707959','2022-08-28 21:14:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4343,'4000','121661707959','2022-08-28 21:14:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4344,'4000','121661707959','2022-08-28 21:14:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4345,'1110','121661710574','2022-08-28 21:36:13',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4346,'1110','121661710574','2022-08-28 21:36:13',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4347,'1110','121661710574','2022-08-28 21:36:13',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4348,'1110','121661710574','2022-08-28 21:36:13',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4349,'5500','121661710574','2022-08-28 21:36:13',1551.56,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4350,'1000','121661710574','2022-08-28 21:36:13',2170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4351,'4000','121661710574','2022-08-28 21:36:13',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4352,'4000','121661710574','2022-08-28 21:36:13',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4353,'4000','121661710574','2022-08-28 21:36:13',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4354,'4000','121661710574','2022-08-28 21:36:13',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4355,'1110','121661712840','2022-08-28 21:58:56',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4356,'5500','121661712840','2022-08-28 21:58:56',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4357,'1000','121661712840','2022-08-28 21:58:56',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4358,'4000','121661712840','2022-08-28 21:58:56',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4359,'1110','121661715865','2022-08-28 22:44:36',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4360,'5500','121661715865','2022-08-28 22:44:36',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4361,'1000','121661715865','2022-08-28 22:44:36',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4362,'4000','121661715865','2022-08-28 22:44:36',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(4363,'1110','121661716167','2022-08-28 22:50:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4364,'5500','121661716167','2022-08-28 22:50:08',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4365,'1000','121661716167','2022-08-28 22:50:08',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4366,'4000','121661716167','2022-08-28 22:50:08',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4367,'1110','121661716212','2022-08-28 23:09:30',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4368,'5500','121661716212','2022-08-28 23:09:30',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4369,'1000','121661716212','2022-08-28 23:09:30',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4370,'4000','121661716212','2022-08-28 23:09:30',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4375,'1000','121661717380','2022-08-29 00:08:24',1090.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4379,'1110','121661720984','2022-08-29 00:25:07',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(4380,'5500','121661720984','2022-08-29 00:25:07',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4381,'1000','121661720984','2022-08-29 00:25:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4382,'4000','121661720984','2022-08-29 00:25:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(4383,'1110','121661721967','2022-08-29 00:28:16',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(4384,'1110','121661721967','2022-08-29 00:28:16',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4385,'1110','121661721967','2022-08-29 00:28:16',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691314','','No',NULL,NULL,''),(4386,'5500','121661721967','2022-08-29 00:28:16',2768.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4387,'1000','121661721967','2022-08-29 00:28:16',4200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4388,'4000','121661721967','2022-08-29 00:28:16',NULL,1700.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(4389,'4000','121661721967','2022-08-29 00:28:16',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4390,'4000','121661721967','2022-08-29 00:28:16',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691314','','No',NULL,NULL,''),(4391,'1110','121661717380','2022-08-29 00:08:24',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(4392,'1110','121661717380','2022-08-29 00:34:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4393,'1110','121661717380','2022-08-29 00:34:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4394,'5500','121661717380','2022-08-29 00:34:21',1781.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4395,'1000','121661717380','2022-08-29 00:08:24',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4396,'4000','121661717380','2022-08-29 00:08:24',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(4397,'4000','121661717380','2022-08-29 00:34:21',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4398,'4000','121661717380','2022-08-29 00:34:21',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4399,'1110','121661722488','2022-08-29 00:47:14',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4400,'5500','121661722488','2022-08-29 00:47:14',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4401,'1000','121661722488','2022-08-29 00:47:14',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4402,'4000','121661722488','2022-08-29 00:47:14',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4403,'1110','121661723275','2022-08-29 00:49:28',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(4404,'1110','121661723275','2022-08-29 00:49:28',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4405,'5500','121661723275','2022-08-29 00:49:28',351.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4406,'1000','121661723275','2022-08-29 00:49:28',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4407,'4000','121661723275','2022-08-29 00:49:28',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(4408,'4000','121661723275','2022-08-29 00:49:28',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4409,'1110','121661723383','2022-08-29 01:04:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4410,'1110','121661723383','2022-08-29 01:04:46',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4411,'5500','121661723383','2022-08-29 01:04:46',332.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4412,'1000','121661723383','2022-08-29 01:04:46',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4413,'4000','121661723383','2022-08-29 01:04:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4414,'4000','121661723383','2022-08-29 01:04:46',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4415,'1110','121661724444','2022-08-29 01:15:46',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4416,'1110','121661724444','2022-08-29 01:15:46',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4417,'1110','121661724444','2022-08-29 01:15:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4418,'1110','121661724444','2022-08-29 01:15:46',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4419,'5500','121661724444','2022-08-29 01:15:46',1599.72,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4420,'1000','121661724444','2022-08-29 01:15:46',2040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4421,'4000','121661724444','2022-08-29 01:15:46',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4422,'4000','121661724444','2022-08-29 01:15:46',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4423,'4000','121661724444','2022-08-29 01:15:46',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4424,'4000','121661724444','2022-08-29 01:15:46',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4425,'1110','121661725075','2022-08-29 02:43:43',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4426,'5500','121661725075','2022-08-29 02:43:43',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4427,'1000','121661725075','2022-08-29 02:43:43',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4428,'4000','121661725075','2022-08-29 02:43:43',NULL,450.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4429,'1110','121661730291','2022-08-29 02:47:21',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4430,'5500','121661730291','2022-08-29 02:47:21',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4431,'1000','121661730291','2022-08-29 02:47:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4432,'4000','121661730291','2022-08-29 02:47:21',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4433,'1110','121661732587','2022-08-29 03:25:08',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4434,'1110','121661732587','2022-08-29 03:25:08',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4435,'5500','121661732587','2022-08-29 03:25:08',872.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4436,'1000','121661732587','2022-08-29 03:25:08',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4437,'4000','121661732587','2022-08-29 03:25:08',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4438,'4000','121661732587','2022-08-29 03:25:08',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4439,'1110','121661781764','2022-08-29 17:24:40',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4440,'5500','121661781764','2022-08-29 17:24:40',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4441,'1000','121661781764','2022-08-29 17:24:40',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4442,'4000','121661781764','2022-08-29 17:24:40',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4443,'1110','121661796048','2022-08-29 21:01:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(4444,'1110','121661796048','2022-08-29 21:01:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(4445,'5500','121661796048','2022-08-29 21:01:02',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4446,'1000','121661796048','2022-08-29 21:01:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4447,'4000','121661796048','2022-08-29 21:01:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(4448,'4000','121661796048','2022-08-29 21:01:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(4449,'1110','121661796071','2022-08-29 21:14:18',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4450,'5500','121661796071','2022-08-29 21:14:18',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4451,'1000','121661796071','2022-08-29 21:14:18',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4452,'4000','121661796071','2022-08-29 21:14:18',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4453,'1110','121661796867','2022-08-29 21:31:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4454,'5500','121661796867','2022-08-29 21:31:51',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4455,'1000','121661796867','2022-08-29 21:31:51',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4456,'4000','121661796867','2022-08-29 21:31:51',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4457,'1110','121661798277','2022-08-29 21:40:13',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4458,'1110','121661798277','2022-08-29 21:40:13',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4459,'5500','121661798277','2022-08-29 21:40:13',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4460,'1000','121661798277','2022-08-29 21:40:13',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4461,'4000','121661798277','2022-08-29 21:40:13',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4462,'4000','121661798277','2022-08-29 21:40:13',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4463,'1110','121661798481','2022-08-29 21:49:44',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4464,'1110','121661798481','2022-08-29 21:49:44',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4465,'5500','121661798481','2022-08-29 21:49:44',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4466,'1000','121661798481','2022-08-29 21:49:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4467,'4000','121661798481','2022-08-29 21:49:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4468,'4000','121661798481','2022-08-29 21:49:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4469,'1110','121661798998','2022-08-29 21:57:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4470,'5500','121661798998','2022-08-29 21:57:06',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4471,'1000','121661798998','2022-08-29 21:57:06',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4472,'4000','121661798998','2022-08-29 21:57:06',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4473,'1110','121661799499','2022-08-29 22:25:34',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4474,'5500','121661799499','2022-08-29 22:25:34',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4475,'1000','121661799499','2022-08-29 22:25:34',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4476,'4000','121661799499','2022-08-29 22:25:34',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4477,'1110','121661801144','2022-08-29 22:42:55',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(4478,'5500','121661801144','2022-08-29 22:42:55',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4479,'1000','121661801144','2022-08-29 22:42:55',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4480,'4000','121661801144','2022-08-29 22:42:55',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(4481,'1110','121661802252','2022-08-29 23:21:12',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4482,'5500','121661802252','2022-08-29 23:21:12',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4483,'1000','121661802252','2022-08-29 23:21:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4484,'4000','121661802252','2022-08-29 23:21:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4485,'1110','121661804476','2022-08-29 23:21:58',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(4486,'1110','121661804476','2022-08-29 23:21:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4487,'1110','121661804476','2022-08-29 23:21:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4488,'5500','121661804476','2022-08-29 23:21:58',1804.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4489,'1000','121661804476','2022-08-29 23:21:58',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4490,'4000','121661804476','2022-08-29 23:21:58',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(4491,'4000','121661804476','2022-08-29 23:21:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4492,'4000','121661804476','2022-08-29 23:21:58',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4493,'1110','121661804618','2022-08-29 23:31:54',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4494,'1110','121661804618','2022-08-29 23:31:54',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4495,'5500','121661804618','2022-08-29 23:31:54',724.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4496,'1000','121661804618','2022-08-29 23:31:54',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4497,'4000','121661804618','2022-08-29 23:31:54',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4498,'4000','121661804618','2022-08-29 23:31:54',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4499,'1110','121661805125','2022-08-29 23:34:08',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4500,'5500','121661805125','2022-08-29 23:34:08',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4501,'1000','121661805125','2022-08-29 23:34:08',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4502,'4000','121661805125','2022-08-29 23:34:08',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4503,'1110','121661805253','2022-08-29 23:41:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4504,'5500','121661805253','2022-08-29 23:41:21',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4505,'1000','121661805253','2022-08-29 23:41:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4506,'4000','121661805253','2022-08-29 23:41:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4507,'1110','121661805686','2022-08-30 00:02:00',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(4508,'1110','121661805686','2022-08-30 00:02:00',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4509,'1110','121661805686','2022-08-30 00:02:00',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4510,'1110','121661805686','2022-08-30 00:02:00',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4511,'1110','121661805686','2022-08-30 00:02:00',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4512,'5500','121661805686','2022-08-30 00:02:00',1011.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4513,'1000','121661805686','2022-08-30 00:02:00',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4514,'4000','121661805686','2022-08-30 00:02:00',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(4515,'4000','121661805686','2022-08-30 00:02:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4516,'4000','121661805686','2022-08-30 00:02:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4517,'4000','121661805686','2022-08-30 00:02:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4518,'4000','121661805686','2022-08-30 00:02:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4521,'1000','121661807019','2022-08-30 00:06:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4523,'1110','121661807185','2022-08-30 01:12:17',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4524,'1110','121661807185','2022-08-30 01:12:17',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4525,'1110','121661807185','2022-08-30 01:12:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4526,'1110','121661807185','2022-08-30 01:12:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4527,'5500','121661807185','2022-08-30 01:12:17',728.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4528,'1000','121661807185','2022-08-30 01:12:17',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4529,'4000','121661807185','2022-08-30 01:12:17',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4530,'4000','121661807185','2022-08-30 01:12:17',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4531,'4000','121661807185','2022-08-30 01:12:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4532,'4000','121661807185','2022-08-30 01:12:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4533,'1110','121661807019','2022-08-30 00:06:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4534,'5500','121661807019','2022-08-30 01:16:50',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4535,'1000','121661807019','2022-08-30 00:06:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4536,'4000','121661807019','2022-08-30 00:06:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4537,'1110','121661811416','2022-08-30 01:18:07',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4538,'1110','121661811416','2022-08-30 01:18:07',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4539,'5500','121661811416','2022-08-30 01:18:07',221.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4540,'1000','121661811416','2022-08-30 01:18:07',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4541,'4000','121661811416','2022-08-30 01:18:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4542,'4000','121661811416','2022-08-30 01:18:07',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4543,'1110','121661870765','2022-08-30 17:46:22',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4544,'5500','121661870765','2022-08-30 17:46:22',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4545,'1000','121661870765','2022-08-30 17:46:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4546,'4000','121661870765','2022-08-30 17:46:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4547,'1110','121661870789','2022-08-30 18:46:34',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(4548,'5500','121661870789','2022-08-30 18:46:34',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4549,'1000','121661870789','2022-08-30 18:46:34',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4550,'4000','121661870789','2022-08-30 18:46:34',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(4551,'1110','121661879890','2022-08-30 20:22:22',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4552,'5500','121661879890','2022-08-30 20:22:22',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4553,'1000','121661879890','2022-08-30 20:22:22',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4554,'4000','121661879890','2022-08-30 20:22:22',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(4555,'1110','121661880288','2022-08-30 21:37:36',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4556,'5500','121661880288','2022-08-30 21:37:36',2433.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4557,'1000','121661880288','2022-08-30 21:37:36',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4558,'4000','121661880288','2022-08-30 21:37:36',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4559,'1110','121661884795','2022-08-30 21:49:51',NULL,815.00,'','12','1','Inventory sold','1','','sales','6001812011912','','No',NULL,NULL,''),(4560,'5500','121661884795','2022-08-30 21:49:51',815.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4561,'1000','121661884795','2022-08-30 21:49:51',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4562,'4000','121661884795','2022-08-30 21:49:51',NULL,1100.00,'','12','1','Good sold','1','','sales','6001812011912','','No',NULL,NULL,''),(4563,'1110','121661889032','2022-08-30 22:50:42',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4564,'5500','121661889032','2022-08-30 22:50:42',2433.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4565,'1000','121661889032','2022-08-30 22:50:42',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4566,'4000','121661889032','2022-08-30 22:50:42',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4567,'1110','121661889047','2022-08-30 22:58:57',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4568,'1110','121661889047','2022-08-30 22:58:57',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4569,'1110','121661889047','2022-08-30 22:58:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4570,'5500','121661889047','2022-08-30 22:58:57',2614.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4571,'1000','121661889047','2022-08-30 22:58:57',3540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4572,'4000','121661889047','2022-08-30 22:58:57',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(4573,'4000','121661889047','2022-08-30 22:58:57',NULL,140.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4574,'4000','121661889047','2022-08-30 22:58:57',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4575,'1110','121661889576','2022-08-30 22:59:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4576,'1110','121661889576','2022-08-30 22:59:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4577,'1110','121661889576','2022-08-30 22:59:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4578,'1110','121661889576','2022-08-30 22:59:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4579,'5500','121661889576','2022-08-30 22:59:59',178.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4580,'1000','121661889576','2022-08-30 22:59:59',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4581,'4000','121661889576','2022-08-30 22:59:59',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4582,'4000','121661889576','2022-08-30 22:59:59',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4583,'4000','121661889576','2022-08-30 22:59:59',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4584,'4000','121661889576','2022-08-30 22:59:59',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4585,'1110','121661889714','2022-08-30 23:18:53',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(4586,'5500','121661889714','2022-08-30 23:18:53',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4587,'1000','121661889714','2022-08-30 23:18:53',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4588,'4000','121661889714','2022-08-30 23:18:53',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(4589,'1110','121661890800','2022-08-31 00:22:14',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4590,'1110','121661890800','2022-08-31 00:22:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4591,'5500','121661890800','2022-08-31 00:22:14',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4592,'1000','121661890800','2022-08-31 00:22:14',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4593,'4000','121661890800','2022-08-31 00:22:14',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4594,'4000','121661890800','2022-08-31 00:22:14',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4595,'1110','121661894548','2022-08-31 00:46:05',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4596,'5500','121661894548','2022-08-31 00:46:05',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4597,'1000','121661894548','2022-08-31 00:46:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4598,'4000','121661894548','2022-08-31 00:46:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4599,'1110','121661895976','2022-08-31 01:23:52',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4600,'1110','121661895976','2022-08-31 01:23:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4601,'1110','121661895976','2022-08-31 01:23:52',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4602,'1110','121661895976','2022-08-31 01:23:52',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4603,'1110','121661895976','2022-08-31 01:23:52',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4604,'5500','121661895976','2022-08-31 01:23:52',803.56,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4605,'1000','121661895976','2022-08-31 01:23:52',1040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4606,'4000','121661895976','2022-08-31 01:23:52',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4607,'4000','121661895976','2022-08-31 01:23:52',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4608,'4000','121661895976','2022-08-31 01:23:52',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4609,'4000','121661895976','2022-08-31 01:23:52',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4610,'4000','121661895976','2022-08-31 01:23:52',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4611,'1110','121661941972','2022-08-31 13:33:08',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4612,'1110','121661941972','2022-08-31 13:33:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4613,'1110','121661941972','2022-08-31 13:33:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4614,'1110','121661941972','2022-08-31 13:33:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4615,'1110','121661941972','2022-08-31 13:33:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4616,'5500','121661941972','2022-08-31 13:33:08',881.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4617,'1000','121661941972','2022-08-31 13:33:08',1130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4618,'4000','121661941972','2022-08-31 13:33:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4619,'4000','121661941972','2022-08-31 13:33:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4620,'4000','121661941972','2022-08-31 13:33:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4621,'4000','121661941972','2022-08-31 13:33:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4622,'4000','121661941972','2022-08-31 13:33:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4623,'1110','121661956214','2022-08-31 17:30:30',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4624,'1110','121661956214','2022-08-31 17:30:30',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4625,'5500','121661956214','2022-08-31 17:30:30',419.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4626,'1000','121661956214','2022-08-31 17:30:30',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4627,'4000','121661956214','2022-08-31 17:30:30',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4628,'4000','121661956214','2022-08-31 17:30:30',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(4629,'1110','121661965509','2022-08-31 21:18:21',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(4630,'5500','121661965509','2022-08-31 21:18:21',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4631,'1000','121661965509','2022-08-31 21:18:21',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4632,'4000','121661965509','2022-08-31 21:18:21',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(4633,'1110','121661969907','2022-08-31 21:18:42',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(4634,'5500','121661969907','2022-08-31 21:18:42',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4635,'1000','121661969907','2022-08-31 21:18:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4636,'4000','121661969907','2022-08-31 21:18:42',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(4637,'1110','121661969927','2022-08-31 21:25:19',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4638,'5500','121661969927','2022-08-31 21:25:19',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4639,'1000','121661969927','2022-08-31 21:25:19',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4640,'4000','121661969927','2022-08-31 21:25:19',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4641,'1110','121661970526','2022-08-31 21:30:12',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(4642,'5500','121661970526','2022-08-31 21:30:12',502.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4643,'1000','121661970526','2022-08-31 21:30:12',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4644,'4000','121661970526','2022-08-31 21:30:12',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(4645,'1110','121661970715','2022-08-31 21:44:02',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4646,'5500','121661970715','2022-08-31 21:44:02',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4647,'1000','121661970715','2022-08-31 21:44:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4648,'4000','121661970715','2022-08-31 21:44:02',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4649,'1110','121661971524','2022-08-31 21:53:25',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4650,'5500','121661971524','2022-08-31 21:53:25',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4651,'1000','121661971524','2022-08-31 21:53:25',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4652,'4000','121661971524','2022-08-31 21:53:25',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4653,'1110','121661972009','2022-08-31 22:49:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4654,'5500','121661972009','2022-08-31 22:49:42',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4655,'1000','121661972009','2022-08-31 22:49:42',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4656,'4000','121661972009','2022-08-31 22:49:42',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4657,'1110','121661975435','2022-08-31 22:55:05',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4658,'5500','121661975435','2022-08-31 22:55:05',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4659,'1000','121661975435','2022-08-31 22:55:05',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4660,'4000','121661975435','2022-08-31 22:55:05',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4661,'1110','121661975767','2022-08-31 23:10:58',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4662,'5500','121661975767','2022-08-31 23:10:58',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4663,'1000','121661975767','2022-08-31 23:10:58',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4664,'4000','121661975767','2022-08-31 23:10:58',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4665,'1110','121661976697','2022-08-31 23:28:19',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(4666,'1110','121661976697','2022-08-31 23:28:19',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4667,'5500','121661976697','2022-08-31 23:28:19',474.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4668,'1000','121661976697','2022-08-31 23:28:19',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4669,'4000','121661976697','2022-08-31 23:28:19',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(4670,'4000','121661976697','2022-08-31 23:28:19',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4671,'1110','121661977835','2022-08-31 23:32:25',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4672,'5500','121661977835','2022-08-31 23:32:25',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4673,'1000','121661977835','2022-08-31 23:32:25',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4674,'4000','121661977835','2022-08-31 23:32:25',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4675,'1110','121661978054','2022-08-31 23:36:57',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(4676,'5500','121661978054','2022-08-31 23:36:57',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4677,'1000','121661978054','2022-08-31 23:36:57',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4678,'4000','121661978054','2022-08-31 23:36:57',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(4679,'1110','121661978324','2022-09-01 00:08:21',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4680,'1110','121661978324','2022-09-01 00:08:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(4681,'5500','121661978324','2022-09-01 00:08:21',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4682,'1000','121661978324','2022-09-01 00:08:21',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4683,'4000','121661978324','2022-09-01 00:08:21',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4684,'4000','121661978324','2022-09-01 00:08:21',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(4685,'1110','121662022644','2022-09-01 12:00:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4686,'5500','121662022644','2022-09-01 12:00:43',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4687,'1000','121662022644','2022-09-01 12:00:43',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4688,'4000','121662022644','2022-09-01 12:00:43',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4689,'1110','121662024381','2022-09-01 12:26:26',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(4690,'5500','121662024381','2022-09-01 12:26:26',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4691,'1000','121662024381','2022-09-01 12:26:26',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4692,'4000','121662024381','2022-09-01 12:26:26',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(4693,'1110','121662024667','2022-09-01 13:44:24',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(4694,'1110','121662024667','2022-09-01 13:44:24',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4695,'5500','121662024667','2022-09-01 13:44:24',410.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4696,'1000','121662024667','2022-09-01 13:44:24',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4697,'4000','121662024667','2022-09-01 13:44:24',NULL,350.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(4698,'4000','121662024667','2022-09-01 13:44:24',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4699,'1110','121662029069','2022-09-01 13:57:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4700,'1110','121662029069','2022-09-01 13:57:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4701,'1110','121662029069','2022-09-01 13:57:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4702,'1110','121662029069','2022-09-01 13:57:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4703,'5500','121662029069','2022-09-01 13:57:54',664.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4704,'1000','121662029069','2022-09-01 13:57:54',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4705,'4000','121662029069','2022-09-01 13:57:54',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4706,'4000','121662029069','2022-09-01 13:57:54',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(4707,'4000','121662029069','2022-09-01 13:57:54',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4708,'4000','121662029069','2022-09-01 13:57:54',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4709,'1110','121662035854','2022-09-01 15:38:07',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4710,'1110','121662035854','2022-09-01 15:38:07',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4711,'1110','121662035854','2022-09-01 15:38:07',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4712,'5500','121662035854','2022-09-01 15:38:07',463.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4713,'1000','121662035854','2022-09-01 15:38:07',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4714,'4000','121662035854','2022-09-01 15:38:07',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4715,'4000','121662035854','2022-09-01 15:38:07',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(4716,'4000','121662035854','2022-09-01 15:38:07',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4717,'1110','121662035939','2022-09-01 15:51:59',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4718,'5500','121662035939','2022-09-01 15:51:59',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4719,'1000','121662035939','2022-09-01 15:51:59',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4720,'4000','121662035939','2022-09-01 15:51:59',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4721,'1110','121662049952','2022-09-01 19:32:42',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4722,'5500','121662049952','2022-09-01 19:32:42',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4723,'1000','121662049952','2022-09-01 19:32:42',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4724,'4000','121662049952','2022-09-01 19:32:42',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(4725,'1110','121662050058','2022-09-01 19:40:11',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4726,'5500','121662050058','2022-09-01 19:40:11',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4727,'1000','121662050058','2022-09-01 19:40:11',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4728,'4000','121662050058','2022-09-01 19:40:11',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4729,'1110','121662061222','2022-09-01 22:40:37',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(4730,'5500','121662061222','2022-09-01 22:40:37',1650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4731,'1000','121662061222','2022-09-01 22:40:37',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4732,'4000','121662061222','2022-09-01 22:40:37',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(4733,'1110','121662061315','2022-09-01 22:50:09',NULL,62.50,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4734,'5500','121662061315','2022-09-01 22:50:09',62.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4735,'1000','121662061315','2022-09-01 22:50:09',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4736,'4000','121662061315','2022-09-01 22:50:09',NULL,140.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4737,'1110','121662061813','2022-09-01 22:54:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4738,'5500','121662061813','2022-09-01 22:54:22',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4739,'1000','121662061813','2022-09-01 22:54:22',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4740,'4000','121662061813','2022-09-01 22:54:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4741,'1110','121662062079','2022-09-02 00:09:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4742,'5500','121662062079','2022-09-02 00:09:01',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4743,'1000','121662062079','2022-09-02 00:09:01',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4744,'4000','121662062079','2022-09-02 00:09:01',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(4745,'1110','121662066642','2022-09-02 00:16:13',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4746,'5500','121662066642','2022-09-02 00:16:13',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4747,'1000','121662066642','2022-09-02 00:16:13',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4748,'4000','121662066642','2022-09-02 00:16:13',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4749,'1110','121662072250','2022-09-02 01:44:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4750,'5500','121662072250','2022-09-02 01:44:32',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4751,'1000','121662072250','2022-09-02 01:44:32',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4752,'4000','121662072250','2022-09-02 01:44:32',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4753,'1110','121662072275','2022-09-02 01:47:22',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4754,'1110','121662072275','2022-09-02 01:47:22',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(4755,'1110','121662072275','2022-09-02 01:47:22',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4756,'1110','121662072275','2022-09-02 01:47:22',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4757,'1110','121662072275','2022-09-02 01:47:22',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4758,'5500','121662072275','2022-09-02 01:47:22',2054.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4759,'1000','121662072275','2022-09-02 01:47:22',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4760,'4000','121662072275','2022-09-02 01:47:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4761,'4000','121662072275','2022-09-02 01:47:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(4762,'4000','121662072275','2022-09-02 01:47:22',NULL,180.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4763,'4000','121662072275','2022-09-02 01:47:22',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4764,'4000','121662072275','2022-09-02 01:47:22',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4765,'1110','121662072513','2022-09-02 01:48:37',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4766,'5500','121662072513','2022-09-02 01:48:37',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4767,'1000','121662072513','2022-09-02 01:48:37',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4768,'4000','121662072513','2022-09-02 01:48:37',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(4769,'1110','121662072524','2022-09-02 02:01:46',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(4770,'1110','121662072524','2022-09-02 02:01:46',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4771,'1110','121662072524','2022-09-02 02:01:46',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4772,'5500','121662072524','2022-09-02 02:01:46',3012.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4773,'1000','121662072524','2022-09-02 02:01:46',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4774,'4000','121662072524','2022-09-02 02:01:46',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(4775,'4000','121662072524','2022-09-02 02:01:46',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4776,'4000','121662072524','2022-09-02 02:01:46',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(4777,'1110','121662073599','2022-09-02 02:16:31',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4778,'1110','121662073599','2022-09-02 02:16:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4779,'1110','121662073599','2022-09-02 02:16:31',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4780,'5500','121662073599','2022-09-02 02:16:31',1255.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4781,'1000','121662073599','2022-09-02 02:16:31',1660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4782,'4000','121662073599','2022-09-02 02:16:31',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(4783,'4000','121662073599','2022-09-02 02:16:31',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4784,'4000','121662073599','2022-09-02 02:16:31',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4785,'1110','121662077539','2022-09-02 03:12:32',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4786,'5500','121662077539','2022-09-02 03:12:32',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4787,'1000','121662077539','2022-09-02 03:12:32',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4788,'4000','121662077539','2022-09-02 03:12:32',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4789,'1110','121662212570','2022-09-03 16:43:02',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4790,'5500','121662212570','2022-09-03 16:43:02',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4791,'1000','121662212570','2022-09-03 16:43:02',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4792,'4000','121662212570','2022-09-03 16:43:02',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4793,'1110','121662213813','2022-09-03 17:03:41',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4794,'5500','121662213813','2022-09-03 17:03:41',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4795,'1000','121662213813','2022-09-03 17:03:41',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4796,'4000','121662213813','2022-09-03 17:03:41',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(4797,'1110','121662221352','2022-09-03 19:09:19',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4798,'5500','121662221352','2022-09-03 19:09:19',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4799,'1000','121662221352','2022-09-03 19:09:19',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4800,'4000','121662221352','2022-09-03 19:09:19',NULL,450.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(4801,'1110','121662226938','2022-09-03 20:42:21',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4802,'5500','121662226938','2022-09-03 20:42:21',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4803,'1000','121662226938','2022-09-03 20:42:21',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4804,'4000','121662226938','2022-09-03 20:42:21',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4805,'1110','121662229946','2022-09-03 21:35:59',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4806,'1110','121662229946','2022-09-03 21:35:59',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(4807,'1110','121662229946','2022-09-03 21:35:59',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4808,'1110','121662229946','2022-09-03 21:35:59',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4809,'1110','121662229946','2022-09-03 21:35:59',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(4810,'5500','121662229946','2022-09-03 21:35:59',3771.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4811,'1000','121662229946','2022-09-03 21:35:59',5100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4812,'4000','121662229946','2022-09-03 21:35:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4813,'4000','121662229946','2022-09-03 21:35:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(4814,'4000','121662229946','2022-09-03 21:35:59',NULL,400.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4815,'4000','121662229946','2022-09-03 21:35:59',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4816,'4000','121662229946','2022-09-03 21:35:59',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(4817,'1110','121662231261','2022-09-03 22:06:55',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4818,'5500','121662231261','2022-09-03 22:06:55',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4819,'1000','121662231261','2022-09-03 22:06:55',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4820,'4000','121662231261','2022-09-03 22:06:55',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4821,'1110','121662232020','2022-09-03 22:18:53',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4822,'5500','121662232020','2022-09-03 22:18:53',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4823,'1000','121662232020','2022-09-03 22:18:53',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4824,'4000','121662232020','2022-09-03 22:18:53',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4825,'1110','121662232782','2022-09-03 22:35:16',NULL,5900.00,'','12','1','Inventory sold','1','','sales','082184087008','','No',NULL,NULL,''),(4826,'1110','121662232782','2022-09-03 22:35:16',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4827,'1110','121662232782','2022-09-03 22:35:16',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4828,'1110','121662232782','2022-09-03 22:35:16',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4829,'5500','121662232782','2022-09-03 22:35:16',6692.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4830,'1000','121662232782','2022-09-03 22:35:16',9100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4831,'4000','121662232782','2022-09-03 22:35:16',NULL,8000.00,'','12','1','Good sold','1','','sales','082184087008','','No',NULL,NULL,''),(4832,'4000','121662232782','2022-09-03 22:35:16',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4833,'4000','121662232782','2022-09-03 22:35:16',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(4834,'4000','121662232782','2022-09-03 22:35:16',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4835,'1110','121662234417','2022-09-03 22:47:28',NULL,617.06,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4836,'1110','121662234417','2022-09-03 22:47:28',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4837,'5500','121662234417','2022-09-03 22:47:28',710.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4838,'1000','121662234417','2022-09-03 22:47:28',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4839,'4000','121662234417','2022-09-03 22:47:28',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4840,'4000','121662234417','2022-09-03 22:47:28',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(4841,'1110','121662234474','2022-09-03 23:18:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4842,'5500','121662234474','2022-09-03 23:18:08',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4843,'1000','121662234474','2022-09-03 23:18:08',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4844,'4000','121662234474','2022-09-03 23:18:08',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(4845,'1110','121662236291','2022-09-03 23:20:20',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(4846,'5500','121662236291','2022-09-03 23:20:20',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4847,'1000','121662236291','2022-09-03 23:20:20',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4848,'4000','121662236291','2022-09-03 23:20:20',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(4849,'1110','121662236423','2022-09-03 23:30:22',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4850,'5500','121662236423','2022-09-03 23:30:22',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4851,'1000','121662236423','2022-09-03 23:30:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4852,'4000','121662236423','2022-09-03 23:30:22',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(4853,'1110','121662237188','2022-09-03 23:45:46',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4854,'1110','121662237188','2022-09-03 23:45:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4855,'1110','121662237188','2022-09-03 23:45:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4856,'5500','121662237188','2022-09-03 23:45:46',535.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4857,'1000','121662237188','2022-09-03 23:45:46',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4858,'4000','121662237188','2022-09-03 23:45:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4859,'4000','121662237188','2022-09-03 23:45:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4860,'4000','121662237188','2022-09-03 23:45:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4861,'1110','121662239354','2022-09-04 00:16:07',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4862,'5500','121662239354','2022-09-04 00:16:07',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4863,'1000','121662239354','2022-09-04 00:16:07',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4864,'4000','121662239354','2022-09-04 00:16:07',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(4865,'1110','121662239799','2022-09-04 00:44:20',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(4866,'1110','121662239799','2022-09-04 00:44:20',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4867,'1110','121662239799','2022-09-04 00:44:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4868,'1110','121662239799','2022-09-04 00:44:20',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4869,'1110','121662239799','2022-09-04 00:44:20',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4870,'5500','121662239799','2022-09-04 00:44:20',2115.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4871,'1000','121662239799','2022-09-04 00:44:20',3010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4872,'4000','121662239799','2022-09-04 00:44:20',NULL,1550.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(4873,'4000','121662239799','2022-09-04 00:44:20',NULL,400.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4874,'4000','121662239799','2022-09-04 00:44:20',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4875,'4000','121662239799','2022-09-04 00:44:20',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4876,'4000','121662239799','2022-09-04 00:44:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4877,'1110','121662242068','2022-09-04 01:10:34',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4878,'5500','121662242068','2022-09-04 01:10:34',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4879,'1000','121662242068','2022-09-04 01:10:34',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4880,'4000','121662242068','2022-09-04 01:10:34',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4881,'1110','121662243098','2022-09-04 01:14:31',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4882,'5500','121662243098','2022-09-04 01:14:31',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4883,'1000','121662243098','2022-09-04 01:14:31',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4884,'4000','121662243098','2022-09-04 01:14:31',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(4885,'1110','121662243429','2022-09-04 01:32:09',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4886,'5500','121662243429','2022-09-04 01:32:09',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4887,'1000','121662243429','2022-09-04 01:32:09',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4888,'4000','121662243429','2022-09-04 01:32:09',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4889,'1110','121662244381','2022-09-04 01:37:23',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4890,'1110','121662244381','2022-09-04 01:37:23',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4891,'1110','121662244381','2022-09-04 01:37:23',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4892,'1110','121662244381','2022-09-04 01:37:23',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4893,'5500','121662244381','2022-09-04 01:37:23',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4894,'1000','121662244381','2022-09-04 01:37:23',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4895,'4000','121662244381','2022-09-04 01:37:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4896,'4000','121662244381','2022-09-04 01:37:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4897,'4000','121662244381','2022-09-04 01:37:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4898,'4000','121662244381','2022-09-04 01:37:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(4899,'1110','121662244718','2022-09-04 02:00:34',NULL,920.00,'','12','1','Inventory sold','1','','sales','8908006354191','','No',NULL,NULL,''),(4900,'5500','121662244718','2022-09-04 02:00:34',920.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4901,'1000','121662244718','2022-09-04 02:00:34',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4902,'4000','121662244718','2022-09-04 02:00:34',NULL,1300.00,'','12','1','Good sold','1','','sales','8908006354191','','No',NULL,NULL,''),(4903,'1110','121662246591','2022-09-04 02:11:30',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4904,'5500','121662246591','2022-09-04 02:11:30',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4905,'1000','121662246591','2022-09-04 02:11:30',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4906,'4000','121662246591','2022-09-04 02:11:30',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4907,'1110','121662246694','2022-09-04 02:12:12',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4908,'1110','121662246694','2022-09-04 02:12:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4909,'5500','121662246694','2022-09-04 02:12:12',708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4910,'1000','121662246694','2022-09-04 02:12:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4911,'4000','121662246694','2022-09-04 02:12:12',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4912,'4000','121662246694','2022-09-04 02:12:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4913,'1110','121662288340','2022-09-04 13:46:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4914,'1110','121662288340','2022-09-04 13:46:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4915,'1110','121662288340','2022-09-04 13:46:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4916,'1110','121662288340','2022-09-04 13:46:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4917,'5500','121662288340','2022-09-04 13:46:03',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4918,'1000','121662288340','2022-09-04 13:46:03',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4919,'4000','121662288340','2022-09-04 13:46:03',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4920,'4000','121662288340','2022-09-04 13:46:03',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4921,'4000','121662288340','2022-09-04 13:46:03',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4922,'4000','121662288340','2022-09-04 13:46:03',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(4923,'1110','121662288976','2022-09-04 13:59:22',NULL,1900.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4924,'5500','121662288976','2022-09-04 13:59:22',1900.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4925,'1000','121662288976','2022-09-04 13:59:22',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4926,'4000','121662288976','2022-09-04 13:59:22',NULL,2750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(4927,'1110','121662289166','2022-09-04 14:00:10',NULL,556.20,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4928,'5500','121662289166','2022-09-04 14:00:10',556.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4929,'1000','121662289166','2022-09-04 14:00:10',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4930,'4000','121662289166','2022-09-04 14:00:10',NULL,900.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(4931,'1110','121662289214','2022-09-04 14:02:26',NULL,5200.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(4932,'5500','121662289214','2022-09-04 14:02:26',5200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4933,'1000','121662289214','2022-09-04 14:02:26',7000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4934,'4000','121662289214','2022-09-04 14:02:26',NULL,7000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(4935,'1110','121662289351','2022-09-04 14:04:18',NULL,5900.00,'','12','1','Inventory sold','1','','sales','082184087008','','No',NULL,NULL,''),(4936,'5500','121662289351','2022-09-04 14:04:18',5900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4937,'1000','121662289351','2022-09-04 14:04:18',8000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4938,'4000','121662289351','2022-09-04 14:04:18',NULL,8000.00,'','12','1','Good sold','1','','sales','082184087008','','No',NULL,NULL,''),(4939,'1110','121662289462','2022-09-04 14:14:42',NULL,2300.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(4940,'5500','121662289462','2022-09-04 14:14:42',2300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4941,'1000','121662289462','2022-09-04 14:14:42',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4942,'4000','121662289462','2022-09-04 14:14:42',NULL,3100.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(4943,'1110','121662290086','2022-09-04 14:16:51',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4944,'1110','121662290086','2022-09-04 14:16:51',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(4945,'1110','121662290086','2022-09-04 14:16:51',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(4946,'5500','121662290086','2022-09-04 14:16:51',921.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4947,'1000','121662290086','2022-09-04 14:16:51',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4948,'4000','121662290086','2022-09-04 14:16:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4949,'4000','121662290086','2022-09-04 14:16:51',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(4950,'4000','121662290086','2022-09-04 14:16:51',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(4951,'1110','121662300717','2022-09-04 17:12:29',NULL,1458.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(4952,'5500','121662300717','2022-09-04 17:12:29',1458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4953,'1000','121662300717','2022-09-04 17:12:29',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4954,'4000','121662300717','2022-09-04 17:12:29',NULL,2000.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(4955,'1110','121662313086','2022-09-04 21:57:14',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4956,'5500','121662313086','2022-09-04 21:57:14',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4957,'1000','121662313086','2022-09-04 21:57:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4958,'4000','121662313086','2022-09-04 21:57:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(4959,'1110','121662326249','2022-09-05 00:32:31',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(4960,'1110','121662326249','2022-09-05 00:32:31',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4961,'5500','121662326249','2022-09-05 00:32:31',700.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4962,'1000','121662326249','2022-09-05 00:32:31',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4963,'4000','121662326249','2022-09-05 00:32:31',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(4964,'4000','121662326249','2022-09-05 00:32:31',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(4965,'1110','121662327167','2022-09-05 00:36:14',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(4966,'5500','121662327167','2022-09-05 00:36:14',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4967,'1000','121662327167','2022-09-05 00:36:14',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4968,'4000','121662327167','2022-09-05 00:36:14',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(4969,'1110','121662327460','2022-09-05 01:04:54',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(4970,'1110','121662327460','2022-09-05 01:04:54',NULL,31.25,'','12','1','Inventory sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4971,'5500','121662327460','2022-09-05 01:04:54',474.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4972,'1000','121662327460','2022-09-05 01:04:54',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4973,'4000','121662327460','2022-09-05 01:04:54',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(4974,'4000','121662327460','2022-09-05 01:04:54',NULL,70.00,'','12','1','Good sold','1','','sales','6009644549320','','No',NULL,NULL,''),(4975,'1110','121662329099','2022-09-05 01:47:33',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4976,'1110','121662329099','2022-09-05 01:47:33',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4977,'1110','121662329099','2022-09-05 01:47:33',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4978,'1110','121662329099','2022-09-05 01:47:33',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(4979,'1110','121662329099','2022-09-05 01:47:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(4980,'1110','121662329099','2022-09-05 01:47:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4981,'5500','121662329099','2022-09-05 01:47:33',4200.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4982,'1000','121662329099','2022-09-05 01:47:33',5750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4983,'4000','121662329099','2022-09-05 01:47:33',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4984,'4000','121662329099','2022-09-05 01:47:33',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(4985,'4000','121662329099','2022-09-05 01:47:33',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(4986,'4000','121662329099','2022-09-05 01:47:33',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(4987,'4000','121662329099','2022-09-05 01:47:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(4988,'4000','121662329099','2022-09-05 01:47:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(4989,'1110','121662387236','2022-09-05 17:23:53',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(4990,'5500','121662387236','2022-09-05 17:23:53',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4991,'1000','121662387236','2022-09-05 17:23:53',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4992,'4000','121662387236','2022-09-05 17:23:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(4996,'1000','121662387991','2022-09-05 18:52:09',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4999,'1110','121662387991','2022-09-05 18:52:09',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5000,'1110','121662387991','2022-09-05 20:40:24',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5001,'1110','121662387991','2022-09-05 20:40:24',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(5002,'1110','121662387991','2022-09-05 20:40:24',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5003,'1110','121662387991','2022-09-05 20:40:24',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(5004,'5500','121662387991','2022-09-05 20:40:24',1326.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5005,'1000','121662387991','2022-09-05 18:52:09',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5006,'4000','121662387991','2022-09-05 18:52:09',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5007,'4000','121662387991','2022-09-05 20:40:24',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5008,'4000','121662387991','2022-09-05 20:40:24',NULL,450.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(5009,'4000','121662387991','2022-09-05 20:40:24',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(5010,'4000','121662387991','2022-09-05 20:40:24',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(5011,'1110','121662399704','2022-09-05 20:49:32',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(5012,'5500','121662399704','2022-09-05 20:49:32',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5013,'1000','121662399704','2022-09-05 20:49:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5014,'4000','121662399704','2022-09-05 20:49:32',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(5017,'1000','121662400176','2022-09-05 21:24:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5019,'1110','121662402505','2022-09-05 21:29:49',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(5020,'5500','121662402505','2022-09-05 21:29:49',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5021,'1000','121662402505','2022-09-05 21:29:49',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5022,'4000','121662402505','2022-09-05 21:29:49',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(5023,'1110','121662400176','2022-09-05 21:24:54',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5024,'5500','121662400176','2022-09-06 00:02:26',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5025,'1000','121662400176','2022-09-05 21:24:54',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5026,'4000','121662400176','2022-09-05 21:24:54',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5027,'1110','121662411751','2022-09-06 01:11:38',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5028,'5500','121662411751','2022-09-06 01:11:38',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5029,'1000','121662411751','2022-09-06 01:11:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5030,'4000','121662411751','2022-09-06 01:11:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5031,'1110','121662470763','2022-09-06 16:26:10',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5032,'5500','121662470763','2022-09-06 16:26:10',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5033,'1000','121662470763','2022-09-06 16:26:10',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5034,'4000','121662470763','2022-09-06 16:26:10',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5035,'1110','121662482715','2022-09-06 19:58:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5036,'5500','121662482715','2022-09-06 19:58:43',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5037,'1000','121662482715','2022-09-06 19:58:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5038,'4000','121662482715','2022-09-06 19:58:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5039,'1110','121662483599','2022-09-06 20:54:11',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5040,'5500','121662483599','2022-09-06 20:54:11',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5041,'1000','121662483599','2022-09-06 20:54:11',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5042,'4000','121662483599','2022-09-06 20:54:11',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5043,'1110','121662486858','2022-09-06 21:18:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5044,'1110','121662486858','2022-09-06 21:18:00',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(5045,'5500','121662486858','2022-09-06 21:18:00',1891.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5046,'1000','121662486858','2022-09-06 21:18:00',2570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5047,'4000','121662486858','2022-09-06 21:18:00',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5048,'4000','121662486858','2022-09-06 21:18:00',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(5049,'1110','121662488562','2022-09-06 21:23:11',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5050,'5500','121662488562','2022-09-06 21:23:11',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5051,'1000','121662488562','2022-09-06 21:23:11',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5052,'4000','121662488562','2022-09-06 21:23:11',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5053,'1110','121662488762','2022-09-06 21:27:29',NULL,3920.00,'','12','1','Inventory sold','1','','sales','5099873038758','','No',NULL,NULL,''),(5054,'1110','121662488762','2022-09-06 21:27:29',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5055,'1110','121662488762','2022-09-06 21:27:29',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5056,'1110','121662488762','2022-09-06 21:27:29',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5057,'5500','121662488762','2022-09-06 21:27:29',4487.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5058,'1000','121662488762','2022-09-06 21:27:29',9310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5059,'4000','121662488762','2022-09-06 21:27:29',NULL,8500.00,'','12','1','Good sold','1','','sales','5099873038758','','No',NULL,NULL,''),(5060,'4000','121662488762','2022-09-06 21:27:29',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5061,'4000','121662488762','2022-09-06 21:27:29',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5062,'4000','121662488762','2022-09-06 21:27:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5063,'1110','121662490133','2022-09-06 21:49:01',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5064,'5500','121662490133','2022-09-06 21:49:01',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5065,'1000','121662490133','2022-09-06 21:49:01',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5066,'4000','121662490133','2022-09-06 21:49:01',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5067,'1110','121662490309','2022-09-06 22:06:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5068,'1110','121662490309','2022-09-06 22:06:42',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5069,'5500','121662490309','2022-09-06 22:06:42',372.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5070,'1000','121662490309','2022-09-06 22:06:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5071,'4000','121662490309','2022-09-06 22:06:42',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5072,'4000','121662490309','2022-09-06 22:06:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5073,'1110','121662491330','2022-09-06 22:25:27',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5074,'5500','121662491330','2022-09-06 22:25:27',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5075,'1000','121662491330','2022-09-06 22:25:27',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5076,'4000','121662491330','2022-09-06 22:25:27',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5077,'1110','121662492485','2022-09-06 22:33:29',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5078,'1110','121662492485','2022-09-06 22:33:29',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5079,'5500','121662492485','2022-09-06 22:33:29',194.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5080,'1000','121662492485','2022-09-06 22:33:29',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5081,'4000','121662492485','2022-09-06 22:33:29',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5082,'4000','121662492485','2022-09-06 22:33:29',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5083,'1110','121662492815','2022-09-06 22:38:47',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5084,'5500','121662492815','2022-09-06 22:38:47',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5085,'1000','121662492815','2022-09-06 22:38:47',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5086,'4000','121662492815','2022-09-06 22:38:47',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5087,'1110','121662493690','2022-09-06 22:50:28',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5088,'5500','121662493690','2022-09-06 22:50:28',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5089,'1000','121662493690','2022-09-06 22:50:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5090,'4000','121662493690','2022-09-06 22:50:28',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5091,'1110','121662493921','2022-09-06 23:36:06',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(5092,'1110','121662493921','2022-09-06 23:36:06',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5093,'5500','121662493921','2022-09-06 23:36:06',852.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5094,'1000','121662493921','2022-09-06 23:36:06',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5095,'4000','121662493921','2022-09-06 23:36:06',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(5096,'4000','121662493921','2022-09-06 23:36:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5097,'1110','121662498193','2022-09-07 00:52:24',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5098,'1110','121662498193','2022-09-07 00:52:24',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5099,'1110','121662498193','2022-09-07 00:52:24',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5100,'1110','121662498193','2022-09-07 00:52:24',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5101,'1110','121662498193','2022-09-07 00:52:24',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5102,'5500','121662498193','2022-09-07 00:52:24',3749.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5103,'1000','121662498193','2022-09-07 00:52:24',5230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5104,'4000','121662498193','2022-09-07 00:52:24',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5105,'4000','121662498193','2022-09-07 00:52:24',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5106,'4000','121662498193','2022-09-07 00:52:24',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5107,'4000','121662498193','2022-09-07 00:52:24',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5108,'4000','121662498193','2022-09-07 00:52:24',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5109,'1110','121662501159','2022-09-07 01:10:47',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(5110,'1110','121662501159','2022-09-07 01:10:47',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5111,'1110','121662501159','2022-09-07 01:10:47',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5112,'1110','121662501159','2022-09-07 01:10:47',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5113,'5500','121662501159','2022-09-07 01:10:47',1429.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5114,'1000','121662501159','2022-09-07 01:10:47',2010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5115,'4000','121662501159','2022-09-07 01:10:47',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(5116,'4000','121662501159','2022-09-07 01:10:47',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5117,'4000','121662501159','2022-09-07 01:10:47',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5118,'4000','121662501159','2022-09-07 01:10:47',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5119,'1110','121662557206','2022-09-07 16:26:56',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5120,'5500','121662557206','2022-09-07 16:26:56',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5121,'1000','121662557206','2022-09-07 16:26:56',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5122,'4000','121662557206','2022-09-07 16:26:56',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5123,'1110','121662570087','2022-09-07 20:01:38',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5124,'5500','121662570087','2022-09-07 20:01:38',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5125,'1000','121662570087','2022-09-07 20:01:38',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5126,'4000','121662570087','2022-09-07 20:01:38',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5127,'1110','121662570102','2022-09-07 20:03:05',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5128,'5500','121662570102','2022-09-07 20:03:05',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5129,'1000','121662570102','2022-09-07 20:03:05',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5130,'4000','121662570102','2022-09-07 20:03:05',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5131,'1110','121662571122','2022-09-07 20:20:24',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5132,'1110','121662571122','2022-09-07 20:20:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5133,'5500','121662571122','2022-09-07 20:20:24',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5134,'1000','121662571122','2022-09-07 20:20:24',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5135,'4000','121662571122','2022-09-07 20:20:24',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5136,'4000','121662571122','2022-09-07 20:20:24',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5137,'1110','121662571242','2022-09-07 21:14:39',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5138,'5500','121662571242','2022-09-07 21:14:39',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5139,'1000','121662571242','2022-09-07 21:14:39',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5140,'4000','121662571242','2022-09-07 21:14:39',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5141,'1110','121662574484','2022-09-07 21:30:11',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(5142,'5500','121662574484','2022-09-07 21:30:11',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5143,'1000','121662574484','2022-09-07 21:30:11',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5144,'4000','121662574484','2022-09-07 21:30:11',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(5145,'1110','121662575516','2022-09-07 21:48:26',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5146,'5500','121662575516','2022-09-07 21:48:26',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5147,'1000','121662575516','2022-09-07 21:48:26',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5148,'4000','121662575516','2022-09-07 21:48:26',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5149,'1110','121662576703','2022-09-07 22:09:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5150,'1110','121662576703','2022-09-07 22:09:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5151,'5500','121662576703','2022-09-07 22:09:27',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5152,'1000','121662576703','2022-09-07 22:09:27',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5153,'4000','121662576703','2022-09-07 22:09:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5154,'4000','121662576703','2022-09-07 22:09:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5155,'1110','121662577786','2022-09-07 22:46:12',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(5156,'1110','121662577786','2022-09-07 22:46:12',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5157,'1110','121662577786','2022-09-07 22:46:12',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5158,'1110','121662577786','2022-09-07 22:46:12',NULL,4520.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(5159,'1110','121662577786','2022-09-07 22:46:12',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5160,'1110','121662577786','2022-09-07 22:46:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5161,'1110','121662577786','2022-09-07 22:46:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5162,'1110','121662577786','2022-09-07 22:46:12',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5163,'1110','121662577786','2022-09-07 22:46:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5164,'1110','121662577786','2022-09-07 22:46:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5165,'1110','121662577786','2022-09-07 22:46:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5166,'1110','121662577786','2022-09-07 22:46:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5167,'1110','121662577786','2022-09-07 22:46:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5168,'5500','121662577786','2022-09-07 22:46:12',9009.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5169,'1000','121662577786','2022-09-07 22:46:12',12080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5170,'4000','121662577786','2022-09-07 22:46:12',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(5171,'4000','121662577786','2022-09-07 22:46:12',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5172,'4000','121662577786','2022-09-07 22:46:12',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5173,'4000','121662577786','2022-09-07 22:46:12',NULL,6000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(5174,'4000','121662577786','2022-09-07 22:46:12',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5175,'4000','121662577786','2022-09-07 22:46:12',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5176,'4000','121662577786','2022-09-07 22:46:12',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5177,'4000','121662577786','2022-09-07 22:46:12',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5178,'4000','121662577786','2022-09-07 22:46:12',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5179,'4000','121662577786','2022-09-07 22:46:12',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5180,'4000','121662577786','2022-09-07 22:46:12',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5181,'4000','121662577786','2022-09-07 22:46:12',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5182,'4000','121662577786','2022-09-07 22:46:12',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5183,'1110','121662579982','2022-09-07 22:48:34',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5184,'1110','121662579982','2022-09-07 22:48:34',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5185,'1110','121662579982','2022-09-07 22:48:34',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5186,'1110','121662579982','2022-09-07 22:48:34',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5187,'5500','121662579982','2022-09-07 22:48:34',1390.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5188,'1000','121662579982','2022-09-07 22:48:34',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5189,'4000','121662579982','2022-09-07 22:48:34',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5190,'4000','121662579982','2022-09-07 22:48:34',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5191,'4000','121662579982','2022-09-07 22:48:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5192,'4000','121662579982','2022-09-07 22:48:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5193,'1110','121662580385','2022-09-07 22:56:47',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5194,'5500','121662580385','2022-09-07 22:56:47',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5195,'1000','121662580385','2022-09-07 22:56:47',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5196,'4000','121662580385','2022-09-07 22:56:47',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5197,'1110','121662580612','2022-09-07 23:05:46',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5198,'5500','121662580612','2022-09-07 23:05:46',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5199,'1000','121662580612','2022-09-07 23:05:46',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5200,'4000','121662580612','2022-09-07 23:05:46',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5201,'1110','121662581634','2022-09-07 23:14:33',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(5202,'5500','121662581634','2022-09-07 23:14:33',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5203,'1000','121662581634','2022-09-07 23:14:33',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5204,'4000','121662581634','2022-09-07 23:14:33',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(5205,'1110','121662581677','2022-09-07 23:53:47',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5206,'1110','121662581677','2022-09-07 23:53:47',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5207,'5500','121662581677','2022-09-07 23:53:47',1737.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5208,'1000','121662581677','2022-09-07 23:53:47',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5209,'4000','121662581677','2022-09-07 23:53:47',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5210,'4000','121662581677','2022-09-07 23:53:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5211,'1110','121662584302','2022-09-08 00:04:19',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5212,'1110','121662584302','2022-09-08 00:04:19',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5213,'1110','121662584302','2022-09-08 00:04:19',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5214,'5500','121662584302','2022-09-08 00:04:19',125.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5215,'1000','121662584302','2022-09-08 00:04:19',210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5216,'4000','121662584302','2022-09-08 00:04:19',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5217,'4000','121662584302','2022-09-08 00:04:19',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5218,'4000','121662584302','2022-09-08 00:04:19',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5219,'1110','121662584665','2022-09-08 00:49:11',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(5220,'1110','121662584665','2022-09-08 00:49:11',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5221,'1110','121662584665','2022-09-08 00:49:11',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5222,'5500','121662584665','2022-09-08 00:49:11',2727.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5223,'1000','121662584665','2022-09-08 00:49:11',3760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5224,'4000','121662584665','2022-09-08 00:49:11',NULL,3300.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(5225,'4000','121662584665','2022-09-08 00:49:11',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5226,'4000','121662584665','2022-09-08 00:49:11',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5227,'1110','121662587926','2022-09-08 01:01:07',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5228,'5500','121662587926','2022-09-08 01:01:07',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5229,'1000','121662587926','2022-09-08 01:01:07',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5230,'4000','121662587926','2022-09-08 01:01:07',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5231,'1110','121662588075','2022-09-08 01:28:11',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(5232,'1110','121662588075','2022-09-08 01:28:11',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5233,'1110','121662588075','2022-09-08 01:28:11',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5234,'1110','121662588075','2022-09-08 01:28:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5235,'1110','121662588075','2022-09-08 01:28:11',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5236,'5500','121662588075','2022-09-08 01:28:11',1886.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5237,'1000','121662588075','2022-09-08 01:28:11',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5238,'4000','121662588075','2022-09-08 01:28:11',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(5239,'4000','121662588075','2022-09-08 01:28:11',NULL,180.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5240,'4000','121662588075','2022-09-08 01:28:11',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5241,'4000','121662588075','2022-09-08 01:28:11',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5242,'4000','121662588075','2022-09-08 01:28:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5243,'1110','121662592224','2022-09-08 02:10:34',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5244,'5500','121662592224','2022-09-08 02:10:34',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5245,'1000','121662592224','2022-09-08 02:10:34',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5246,'4000','121662592224','2022-09-08 02:10:34',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5247,'1110','121662592296','2022-09-08 02:16:09',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5248,'5500','121662592296','2022-09-08 02:16:09',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5249,'1000','121662592296','2022-09-08 02:16:09',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5250,'4000','121662592296','2022-09-08 02:16:09',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5251,'1110','121662645757','2022-09-08 17:03:13',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5252,'1110','121662645757','2022-09-08 17:03:13',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5253,'5500','121662645757','2022-09-08 17:03:13',126.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5254,'1000','121662645757','2022-09-08 17:03:13',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5255,'4000','121662645757','2022-09-08 17:03:13',NULL,120.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5256,'4000','121662645757','2022-09-08 17:03:13',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5257,'1110','121662653542','2022-09-08 19:12:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5258,'5500','121662653542','2022-09-08 19:12:33',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5259,'1000','121662653542','2022-09-08 19:12:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5260,'4000','121662653542','2022-09-08 19:12:33',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5261,'1110','121662653557','2022-09-08 20:15:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5262,'5500','121662653557','2022-09-08 20:15:13',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5263,'1000','121662653557','2022-09-08 20:15:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5264,'4000','121662653557','2022-09-08 20:15:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5265,'1110','121662657374','2022-09-08 20:17:48',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5266,'1110','121662657374','2022-09-08 20:17:48',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5267,'5500','121662657374','2022-09-08 20:17:48',578.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5268,'1000','121662657374','2022-09-08 20:17:48',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5269,'4000','121662657374','2022-09-08 20:17:48',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5270,'4000','121662657374','2022-09-08 20:17:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5271,'1110','121662657472','2022-09-08 20:32:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5272,'5500','121662657472','2022-09-08 20:32:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5273,'1000','121662657472','2022-09-08 20:32:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5274,'4000','121662657472','2022-09-08 20:32:28',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5275,'1110','121662658359','2022-09-08 20:34:24',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5276,'5500','121662658359','2022-09-08 20:34:24',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5277,'1000','121662658359','2022-09-08 20:34:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5278,'4000','121662658359','2022-09-08 20:34:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5279,'1110','121662658468','2022-09-08 21:13:33',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5280,'1110','121662658468','2022-09-08 21:13:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5281,'5500','121662658468','2022-09-08 21:13:33',484.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5282,'1000','121662658468','2022-09-08 21:13:33',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5283,'4000','121662658468','2022-09-08 21:13:33',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5284,'4000','121662658468','2022-09-08 21:13:33',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5285,'1110','121662660931','2022-09-08 21:22:50',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5286,'5500','121662660931','2022-09-08 21:22:50',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5287,'1000','121662660931','2022-09-08 21:22:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5288,'4000','121662660931','2022-09-08 21:22:50',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5289,'1110','121662661374','2022-09-08 21:24:02',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5290,'5500','121662661374','2022-09-08 21:24:02',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5291,'1000','121662661374','2022-09-08 21:24:02',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5292,'4000','121662661374','2022-09-08 21:24:02',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5293,'1110','121662661449','2022-09-08 22:32:05',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5294,'1110','121662661449','2022-09-08 22:32:05',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5295,'1110','121662661449','2022-09-08 22:32:05',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5296,'1110','121662661449','2022-09-08 22:32:05',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5297,'5500','121662661449','2022-09-08 22:32:05',759.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5298,'1000','121662661449','2022-09-08 22:32:05',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5299,'4000','121662661449','2022-09-08 22:32:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5300,'4000','121662661449','2022-09-08 22:32:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5301,'4000','121662661449','2022-09-08 22:32:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5302,'4000','121662661449','2022-09-08 22:32:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5305,'1000','121662665575','2022-09-08 22:35:59',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5307,'1110','121662665575','2022-09-08 22:35:59',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(5308,'1110','121662665575','2022-09-08 23:07:01',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5309,'5500','121662665575','2022-09-08 23:07:01',814.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5310,'1000','121662665575','2022-09-08 22:35:59',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5311,'4000','121662665575','2022-09-08 22:35:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(5312,'4000','121662665575','2022-09-08 23:07:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5313,'1110','121662667645','2022-09-08 23:50:02',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5314,'1110','121662667645','2022-09-08 23:50:02',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(5315,'5500','121662667645','2022-09-08 23:50:02',2750.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5316,'1000','121662667645','2022-09-08 23:50:02',3700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5317,'4000','121662667645','2022-09-08 23:50:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5318,'4000','121662667645','2022-09-08 23:50:02',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(5319,'1110','121662670323','2022-09-09 00:13:16',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5320,'1110','121662670323','2022-09-09 00:13:16',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5321,'5500','121662670323','2022-09-09 00:13:16',533.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5322,'1000','121662670323','2022-09-09 00:13:16',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5323,'4000','121662670323','2022-09-09 00:13:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5324,'4000','121662670323','2022-09-09 00:13:16',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5325,'1110','121662672611','2022-09-09 01:33:10',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5326,'1110','121662672611','2022-09-09 01:33:10',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5327,'5500','121662672611','2022-09-09 01:33:10',363.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5328,'1000','121662672611','2022-09-09 01:33:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5329,'4000','121662672611','2022-09-09 01:33:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5330,'4000','121662672611','2022-09-09 01:33:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5331,'1110','121662725599','2022-09-09 15:13:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5332,'5500','121662725599','2022-09-09 15:13:36',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5333,'1000','121662725599','2022-09-09 15:13:36',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5334,'4000','121662725599','2022-09-09 15:13:36',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5335,'1110','121662727620','2022-09-09 16:27:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5336,'1110','121662727620','2022-09-09 16:27:36',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5337,'5500','121662727620','2022-09-09 16:27:36',345.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5338,'1000','121662727620','2022-09-09 16:27:36',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5339,'4000','121662727620','2022-09-09 16:27:36',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5340,'4000','121662727620','2022-09-09 16:27:36',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5341,'1110','121662730225','2022-09-09 16:42:41',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5342,'1110','121662730225','2022-09-09 16:42:41',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5343,'5500','121662730225','2022-09-09 16:42:41',1055.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5344,'1000','121662730225','2022-09-09 16:42:41',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5345,'4000','121662730225','2022-09-09 16:42:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5346,'4000','121662730225','2022-09-09 16:42:41',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5347,'1110','121662732207','2022-09-09 17:03:37',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(5348,'5500','121662732207','2022-09-09 17:03:37',1960.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5349,'1000','121662732207','2022-09-09 17:03:37',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5350,'4000','121662732207','2022-09-09 17:03:37',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(5351,'1110','121662732268','2022-09-09 17:05:51',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(5352,'5500','121662732268','2022-09-09 17:05:51',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5353,'1000','121662732268','2022-09-09 17:05:51',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5354,'4000','121662732268','2022-09-09 17:05:51',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(5355,'1110','121662732397','2022-09-09 17:24:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5356,'1110','121662732397','2022-09-09 17:24:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5357,'5500','121662732397','2022-09-09 17:24:45',256.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5358,'1000','121662732397','2022-09-09 17:24:45',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5359,'4000','121662732397','2022-09-09 17:24:45',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5360,'4000','121662732397','2022-09-09 17:24:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5361,'1110','121662733540','2022-09-09 18:35:41',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5362,'5500','121662733540','2022-09-09 18:35:41',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5363,'1000','121662733540','2022-09-09 18:35:41',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5364,'4000','121662733540','2022-09-09 18:35:41',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5365,'1110','121662737766','2022-09-09 20:17:06',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(5366,'5500','121662737766','2022-09-09 20:17:06',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5367,'1000','121662737766','2022-09-09 20:17:06',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5368,'4000','121662737766','2022-09-09 20:17:06',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(5369,'1110','121662743913','2022-09-09 20:28:20',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5370,'5500','121662743913','2022-09-09 20:28:20',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5371,'1000','121662743913','2022-09-09 20:28:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5372,'4000','121662743913','2022-09-09 20:28:20',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5373,'1110','121662744509','2022-09-09 20:52:36',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5374,'5500','121662744509','2022-09-09 20:52:36',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5375,'1000','121662744509','2022-09-09 20:52:36',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5376,'4000','121662744509','2022-09-09 20:52:36',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5377,'1110','121662745960','2022-09-09 22:07:45',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5378,'5500','121662745960','2022-09-09 22:07:45',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5379,'1000','121662745960','2022-09-09 22:07:45',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5380,'4000','121662745960','2022-09-09 22:07:45',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5381,'1110','121662750469','2022-09-09 22:11:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5382,'5500','121662750469','2022-09-09 22:11:27',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5383,'1000','121662750469','2022-09-09 22:11:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5384,'4000','121662750469','2022-09-09 22:11:27',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5385,'1110','121662750691','2022-09-09 22:51:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5386,'5500','121662750691','2022-09-09 22:51:45',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5387,'1000','121662750691','2022-09-09 22:51:45',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5388,'4000','121662750691','2022-09-09 22:51:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5389,'1110','121662753813','2022-09-09 23:04:30',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5390,'5500','121662753813','2022-09-09 23:04:30',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5391,'1000','121662753813','2022-09-09 23:04:30',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5392,'4000','121662753813','2022-09-09 23:04:30',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5393,'1110','121662753925','2022-09-09 23:05:42',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(5394,'5500','121662753925','2022-09-09 23:05:42',1141.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5395,'1000','121662753925','2022-09-09 23:05:42',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5396,'4000','121662753925','2022-09-09 23:05:42',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(5397,'1110','121662753994','2022-09-09 23:46:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5398,'5500','121662753994','2022-09-09 23:46:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5399,'1000','121662753994','2022-09-09 23:46:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5400,'4000','121662753994','2022-09-09 23:46:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5401,'1110','121662756418','2022-09-10 00:30:23',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5402,'1110','121662756418','2022-09-10 00:30:23',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5403,'1110','121662756418','2022-09-10 00:30:23',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5404,'1110','121662756418','2022-09-10 00:30:23',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(5405,'5500','121662756418','2022-09-10 00:30:23',900.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5406,'1000','121662756418','2022-09-10 00:30:23',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5407,'4000','121662756418','2022-09-10 00:30:23',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5408,'4000','121662756418','2022-09-10 00:30:23',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5409,'4000','121662756418','2022-09-10 00:30:23',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(5410,'4000','121662756418','2022-09-10 00:30:23',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(5411,'1110','121662759075','2022-09-10 00:39:11',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5412,'1110','121662759075','2022-09-10 00:39:11',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5413,'1110','121662759075','2022-09-10 00:39:11',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5414,'1110','121662759075','2022-09-10 00:39:11',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5415,'1110','121662759075','2022-09-10 00:39:11',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5416,'5500','121662759075','2022-09-10 00:39:11',1792.44,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5417,'1000','121662759075','2022-09-10 00:39:11',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5418,'4000','121662759075','2022-09-10 00:39:11',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5419,'4000','121662759075','2022-09-10 00:39:11',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5420,'4000','121662759075','2022-09-10 00:39:11',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5421,'4000','121662759075','2022-09-10 00:39:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5422,'4000','121662759075','2022-09-10 00:39:11',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5423,'1110','121662759555','2022-09-10 00:43:36',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5424,'5500','121662759555','2022-09-10 00:43:36',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5425,'1000','121662759555','2022-09-10 00:43:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5426,'4000','121662759555','2022-09-10 00:43:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5427,'1110','121662760098','2022-09-10 01:04:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5428,'5500','121662760098','2022-09-10 01:04:19',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5429,'1000','121662760098','2022-09-10 01:04:19',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5430,'4000','121662760098','2022-09-10 01:04:19',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5431,'1110','121662761460','2022-09-10 01:32:14',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5432,'5500','121662761460','2022-09-10 01:32:14',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5433,'1000','121662761460','2022-09-10 01:32:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5434,'4000','121662761460','2022-09-10 01:32:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5435,'1110','121662765275','2022-09-10 02:16:30',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(5436,'1110','121662765275','2022-09-10 02:16:30',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5437,'5500','121662765275','2022-09-10 02:16:30',2220.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5438,'1000','121662765275','2022-09-10 02:16:30',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5439,'4000','121662765275','2022-09-10 02:16:30',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(5440,'4000','121662765275','2022-09-10 02:16:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5441,'1110','121662765907','2022-09-10 02:25:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(5442,'5500','121662765907','2022-09-10 02:25:16',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5443,'1000','121662765907','2022-09-10 02:25:16',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5444,'4000','121662765907','2022-09-10 02:25:16',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(5445,'1110','121662765919','2022-09-10 02:29:53',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5446,'5500','121662765919','2022-09-10 02:29:53',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5447,'1000','121662765919','2022-09-10 02:29:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5448,'4000','121662765919','2022-09-10 02:29:53',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5449,'1110','121662766200','2022-09-10 02:35:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5450,'1110','121662766200','2022-09-10 02:35:26',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5451,'5500','121662766200','2022-09-10 02:35:26',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5452,'1000','121662766200','2022-09-10 02:35:26',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5453,'4000','121662766200','2022-09-10 02:35:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5454,'4000','121662766200','2022-09-10 02:35:26',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5455,'1110','121662766672','2022-09-10 02:59:31',NULL,1650.00,'','12','1','Inventory sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5456,'5500','121662766672','2022-09-10 02:59:31',1650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5457,'1000','121662766672','2022-09-10 02:59:31',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5458,'4000','121662766672','2022-09-10 02:59:31',NULL,2300.00,'','12','1','Good sold','1','','sales','5099873089712','','No',NULL,NULL,''),(5459,'1110','121662768524','2022-09-10 04:01:46',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5460,'1110','121662768524','2022-09-10 04:01:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5461,'5500','121662768524','2022-09-10 04:01:46',354.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5462,'1000','121662768524','2022-09-10 04:01:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5463,'4000','121662768524','2022-09-10 04:01:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5464,'4000','121662768524','2022-09-10 04:01:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5465,'1110','121662821338','2022-09-10 18:26:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5466,'1110','121662821338','2022-09-10 18:26:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5467,'5500','121662821338','2022-09-10 18:26:37',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5468,'1000','121662821338','2022-09-10 18:26:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5469,'4000','121662821338','2022-09-10 18:26:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5470,'4000','121662821338','2022-09-10 18:26:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5471,'1110','121662824864','2022-09-10 19:52:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5472,'1110','121662824864','2022-09-10 19:52:05',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5473,'5500','121662824864','2022-09-10 19:52:05',575.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5474,'1000','121662824864','2022-09-10 19:52:05',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5475,'4000','121662824864','2022-09-10 19:52:05',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5476,'4000','121662824864','2022-09-10 19:52:05',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5477,'1110','121662829129','2022-09-10 20:28:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5478,'1110','121662829129','2022-09-10 20:28:40',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5479,'1110','121662829129','2022-09-10 20:28:40',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5480,'5500','121662829129','2022-09-10 20:28:40',545.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5481,'1000','121662829129','2022-09-10 20:28:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5482,'4000','121662829129','2022-09-10 20:28:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5483,'4000','121662829129','2022-09-10 20:28:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5484,'4000','121662829129','2022-09-10 20:28:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5485,'1110','121662831134','2022-09-10 21:10:21',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5486,'1110','121662831134','2022-09-10 21:10:21',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5487,'5500','121662831134','2022-09-10 21:10:21',487.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5488,'1000','121662831134','2022-09-10 21:10:21',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5489,'4000','121662831134','2022-09-10 21:10:21',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5490,'4000','121662831134','2022-09-10 21:10:21',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5491,'1110','121662835090','2022-09-10 21:38:15',NULL,445.00,'','12','1','Inventory sold','1','','sales','8908006354207','','No',NULL,NULL,''),(5492,'5500','121662835090','2022-09-10 21:38:15',445.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5493,'1000','121662835090','2022-09-10 21:38:15',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5494,'4000','121662835090','2022-09-10 21:38:15',NULL,650.00,'','12','1','Good sold','1','','sales','8908006354207','','No',NULL,NULL,''),(5495,'1110','121662835299','2022-09-10 21:41:49',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5496,'5500','121662835299','2022-09-10 21:41:49',1138.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5497,'1000','121662835299','2022-09-10 21:41:49',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5498,'4000','121662835299','2022-09-10 21:41:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5499,'1110','121662835344','2022-09-10 22:28:39',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5500,'5500','121662835344','2022-09-10 22:28:39',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5501,'1000','121662835344','2022-09-10 22:28:39',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5502,'4000','121662835344','2022-09-10 22:28:39',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5503,'1110','121662838122','2022-09-10 22:32:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5504,'5500','121662838122','2022-09-10 22:32:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5505,'1000','121662838122','2022-09-10 22:32:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5506,'4000','121662838122','2022-09-10 22:32:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5507,'1110','121662838417','2022-09-10 22:34:47',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5508,'5500','121662838417','2022-09-10 22:34:47',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5509,'1000','121662838417','2022-09-10 22:34:47',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5510,'4000','121662838417','2022-09-10 22:34:47',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5511,'1110','121662838505','2022-09-10 22:50:00',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5512,'1110','121662838505','2022-09-10 22:50:00',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5513,'5500','121662838505','2022-09-10 22:50:00',1117.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5514,'1000','121662838505','2022-09-10 22:50:00',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5515,'4000','121662838505','2022-09-10 22:50:00',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5516,'4000','121662838505','2022-09-10 22:50:00',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5517,'1110','121662839409','2022-09-11 00:07:25',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5518,'1110','121662839409','2022-09-11 00:07:25',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5519,'1110','121662839409','2022-09-11 00:07:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5520,'1110','121662839409','2022-09-11 00:07:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5521,'1110','121662839409','2022-09-11 00:07:25',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(5522,'1110','121662839409','2022-09-11 00:07:25',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5523,'1110','121662839409','2022-09-11 00:07:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5524,'1110','121662839409','2022-09-11 00:07:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5525,'5500','121662839409','2022-09-11 00:07:25',1791.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5526,'1000','121662839409','2022-09-11 00:07:25',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5527,'4000','121662839409','2022-09-11 00:07:25',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5528,'4000','121662839409','2022-09-11 00:07:25',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(5529,'4000','121662839409','2022-09-11 00:07:25',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5530,'4000','121662839409','2022-09-11 00:07:25',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5531,'4000','121662839409','2022-09-11 00:07:25',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(5532,'4000','121662839409','2022-09-11 00:07:25',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5533,'4000','121662839409','2022-09-11 00:07:25',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5534,'4000','121662839409','2022-09-11 00:07:25',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5535,'1110','121662844071','2022-09-11 00:14:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5536,'1110','121662844071','2022-09-11 00:14:51',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5537,'1110','121662844071','2022-09-11 00:14:51',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(5538,'5500','121662844071','2022-09-11 00:14:51',933.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5539,'1000','121662844071','2022-09-11 00:14:51',1330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5540,'4000','121662844071','2022-09-11 00:14:51',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5541,'4000','121662844071','2022-09-11 00:14:51',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5542,'4000','121662844071','2022-09-11 00:14:51',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(5543,'1110','121662844729','2022-09-11 00:32:23',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5544,'5500','121662844729','2022-09-11 00:32:23',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5545,'1000','121662844729','2022-09-11 00:32:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5546,'4000','121662844729','2022-09-11 00:32:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5547,'1110','121662845546','2022-09-11 00:57:47',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5548,'1110','121662845546','2022-09-11 00:57:47',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5549,'1110','121662845546','2022-09-11 00:57:47',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5550,'5500','121662845546','2022-09-11 00:57:47',153.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5551,'1000','121662845546','2022-09-11 00:57:47',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5552,'4000','121662845546','2022-09-11 00:57:47',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5553,'4000','121662845546','2022-09-11 00:57:47',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5554,'4000','121662845546','2022-09-11 00:57:47',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5555,'1110','121662847166','2022-09-11 01:00:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5556,'5500','121662847166','2022-09-11 01:00:10',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5557,'1000','121662847166','2022-09-11 01:00:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5558,'4000','121662847166','2022-09-11 01:00:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5559,'1110','121662847215','2022-09-11 01:02:32',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(5560,'5500','121662847215','2022-09-11 01:02:32',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5561,'1000','121662847215','2022-09-11 01:02:32',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5562,'4000','121662847215','2022-09-11 01:02:32',NULL,950.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(5563,'1110','121662847372','2022-09-11 01:03:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5564,'5500','121662847372','2022-09-11 01:03:53',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5565,'1000','121662847372','2022-09-11 01:03:53',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5566,'4000','121662847372','2022-09-11 01:03:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5567,'1110','121662847437','2022-09-11 02:19:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5568,'5500','121662847437','2022-09-11 02:19:48',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5569,'1000','121662847437','2022-09-11 02:19:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5570,'4000','121662847437','2022-09-11 02:19:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5571,'1110','121662851992','2022-09-11 02:53:40',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(5572,'5500','121662851992','2022-09-11 02:53:40',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5573,'1000','121662851992','2022-09-11 02:53:40',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5574,'4000','121662851992','2022-09-11 02:53:40',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(5575,'1110','121662854029','2022-09-11 03:23:42',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5576,'5500','121662854029','2022-09-11 03:23:42',726.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5577,'1000','121662854029','2022-09-11 03:23:42',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5578,'4000','121662854029','2022-09-11 03:23:42',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5579,'1110','121662855826','2022-09-11 03:26:00',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5580,'5500','121662855826','2022-09-11 03:26:00',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5581,'1000','121662855826','2022-09-11 03:26:00',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5582,'4000','121662855826','2022-09-11 03:26:00',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5583,'1110','121662855963','2022-09-11 03:29:21',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5584,'5500','121662855963','2022-09-11 03:29:21',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5585,'1000','121662855963','2022-09-11 03:29:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5586,'4000','121662855963','2022-09-11 03:29:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5587,'1110','121662857432','2022-09-11 03:53:31',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(5588,'1110','121662857432','2022-09-11 03:53:31',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(5589,'5500','121662857432','2022-09-11 03:53:31',631.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5590,'1000','121662857432','2022-09-11 03:53:31',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5591,'4000','121662857432','2022-09-11 03:53:31',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(5592,'4000','121662857432','2022-09-11 03:53:31',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(5593,'1110','121662857621','2022-09-11 03:55:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5594,'5500','121662857621','2022-09-11 03:55:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5595,'1000','121662857621','2022-09-11 03:55:04',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5596,'4000','121662857621','2022-09-11 03:55:04',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5597,'1110','121662907330','2022-09-11 17:42:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5598,'5500','121662907330','2022-09-11 17:42:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5599,'1000','121662907330','2022-09-11 17:42:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5600,'4000','121662907330','2022-09-11 17:42:24',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5601,'1110','121662907421','2022-09-11 17:48:22',NULL,2855.34,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(5602,'1110','121662907421','2022-09-11 17:48:22',NULL,981.12,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5603,'1110','121662907421','2022-09-11 17:48:22',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5604,'1110','121662907421','2022-09-11 17:48:22',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5605,'1110','121662907421','2022-09-11 17:48:22',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5606,'5500','121662907421','2022-09-11 17:48:22',4447.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5607,'1000','121662907421','2022-09-11 17:48:22',5080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5608,'4000','121662907421','2022-09-11 17:48:22',NULL,3150.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(5609,'4000','121662907421','2022-09-11 17:48:22',NULL,1110.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5610,'4000','121662907421','2022-09-11 17:48:22',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5611,'4000','121662907421','2022-09-11 17:48:22',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5612,'4000','121662907421','2022-09-11 17:48:22',NULL,500.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5613,'1110','121662907770','2022-09-11 17:49:45',NULL,1044.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(5614,'5500','121662907770','2022-09-11 17:49:45',1044.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5615,'1000','121662907770','2022-09-11 17:49:45',1380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5616,'4000','121662907770','2022-09-11 17:49:45',NULL,1380.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(5617,'1110','121662907789','2022-09-11 18:52:20',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(5618,'1110','121662907789','2022-09-11 18:52:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5619,'5500','121662907789','2022-09-11 18:52:20',387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5620,'1000','121662907789','2022-09-11 18:52:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5621,'4000','121662907789','2022-09-11 18:52:20',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(5622,'4000','121662907789','2022-09-11 18:52:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5623,'1110','121662911686','2022-09-11 19:17:51',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5624,'1110','121662911686','2022-09-11 19:17:51',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(5625,'5500','121662911686','2022-09-11 19:17:51',311.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5626,'1000','121662911686','2022-09-11 19:17:51',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5627,'4000','121662911686','2022-09-11 19:17:51',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5628,'4000','121662911686','2022-09-11 19:17:51',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(5629,'1110','121662914033','2022-09-11 20:09:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5630,'5500','121662914033','2022-09-11 20:09:46',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5631,'1000','121662914033','2022-09-11 20:09:46',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5632,'4000','121662914033','2022-09-11 20:09:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5633,'1110','121662919113','2022-09-11 21:05:02',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5634,'1110','121662919113','2022-09-11 21:05:02',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5635,'5500','121662919113','2022-09-11 21:05:02',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5636,'1000','121662919113','2022-09-11 21:05:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5637,'4000','121662919113','2022-09-11 21:05:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5638,'4000','121662919113','2022-09-11 21:05:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5639,'1110','121662919824','2022-09-11 21:50:48',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5640,'1110','121662919824','2022-09-11 21:50:48',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5641,'1110','121662919824','2022-09-11 21:50:48',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5642,'1110','121662919824','2022-09-11 21:50:48',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5643,'1110','121662919824','2022-09-11 21:50:48',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5644,'5500','121662919824','2022-09-11 21:50:48',947.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5645,'1000','121662919824','2022-09-11 21:50:48',1340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5646,'4000','121662919824','2022-09-11 21:50:48',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5647,'4000','121662919824','2022-09-11 21:50:48',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5648,'4000','121662919824','2022-09-11 21:50:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5649,'4000','121662919824','2022-09-11 21:50:48',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5650,'4000','121662919824','2022-09-11 21:50:48',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5651,'1110','121662922259','2022-09-11 22:41:43',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5652,'5500','121662922259','2022-09-11 22:41:43',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5653,'1000','121662922259','2022-09-11 22:41:43',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5654,'4000','121662922259','2022-09-11 22:41:43',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5655,'1110','121662925449','2022-09-11 23:41:04',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5656,'1110','121662925449','2022-09-11 23:41:04',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5657,'5500','121662925449','2022-09-11 23:41:04',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5658,'1000','121662925449','2022-09-11 23:41:04',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5659,'4000','121662925449','2022-09-11 23:41:04',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5660,'4000','121662925449','2022-09-11 23:41:04',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(5661,'1110','121662928902','2022-09-11 23:44:51',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5662,'5500','121662928902','2022-09-11 23:44:51',459.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5663,'1000','121662928902','2022-09-11 23:44:51',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5664,'4000','121662928902','2022-09-11 23:44:51',NULL,600.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5665,'1110','121662929096','2022-09-12 00:24:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5666,'5500','121662929096','2022-09-12 00:24:51',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5667,'1000','121662929096','2022-09-12 00:24:51',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5668,'4000','121662929096','2022-09-12 00:24:51',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5669,'1110','121662931520','2022-09-12 00:36:54',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5670,'1110','121662931520','2022-09-12 00:36:54',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5671,'1110','121662931520','2022-09-12 00:36:54',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(5672,'5500','121662931520','2022-09-12 00:36:54',2702.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5673,'1000','121662931520','2022-09-12 00:36:54',3610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5674,'4000','121662931520','2022-09-12 00:36:54',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5675,'4000','121662931520','2022-09-12 00:36:54',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5676,'4000','121662931520','2022-09-12 00:36:54',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(5677,'1110','121662937368','2022-09-12 02:03:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5678,'1110','121662937368','2022-09-12 02:03:16',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5679,'5500','121662937368','2022-09-12 02:03:16',226.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5680,'1000','121662937368','2022-09-12 02:03:16',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5681,'4000','121662937368','2022-09-12 02:03:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5682,'4000','121662937368','2022-09-12 02:03:16',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5683,'1110','121662937530','2022-09-12 02:16:59',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5684,'5500','121662937530','2022-09-12 02:16:59',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5685,'1000','121662937530','2022-09-12 02:16:59',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5686,'4000','121662937530','2022-09-12 02:16:59',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5687,'1110','121662938254','2022-09-12 03:40:14',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(5688,'5500','121662938254','2022-09-12 03:40:14',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5689,'1000','121662938254','2022-09-12 03:40:14',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5690,'4000','121662938254','2022-09-12 03:40:14',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(5691,'1110','121662943311','2022-09-12 03:58:30',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5692,'5500','121662943311','2022-09-12 03:58:30',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5693,'1000','121662943311','2022-09-12 03:58:30',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5694,'4000','121662943311','2022-09-12 03:58:30',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5695,'1110','121662944747','2022-09-12 04:30:32',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5696,'1110','121662944747','2022-09-12 04:30:32',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5697,'5500','121662944747','2022-09-12 04:30:32',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5698,'1000','121662944747','2022-09-12 04:30:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5699,'4000','121662944747','2022-09-12 04:30:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5700,'4000','121662944747','2022-09-12 04:30:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5701,'1110','121662997983','2022-09-12 18:53:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5702,'5500','121662997983','2022-09-12 18:53:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5703,'1000','121662997983','2022-09-12 18:53:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5704,'4000','121662997983','2022-09-12 18:53:25',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5705,'1110','121662998082','2022-09-12 18:55:52',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5706,'1110','121662998082','2022-09-12 18:55:52',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5707,'1110','121662998082','2022-09-12 18:55:52',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5708,'5500','121662998082','2022-09-12 18:55:52',308.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5709,'1000','121662998082','2022-09-12 18:55:52',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5710,'4000','121662998082','2022-09-12 18:55:52',NULL,180.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5711,'4000','121662998082','2022-09-12 18:55:52',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5712,'4000','121662998082','2022-09-12 18:55:52',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5713,'1110','121662998156','2022-09-12 19:18:06',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(5714,'5500','121662998156','2022-09-12 19:18:06',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5715,'1000','121662998156','2022-09-12 19:18:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5716,'4000','121662998156','2022-09-12 19:18:06',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(5717,'1110','121662999564','2022-09-12 20:12:19',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5718,'1110','121662999564','2022-09-12 20:12:19',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5719,'1110','121662999564','2022-09-12 20:12:19',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5720,'1110','121662999564','2022-09-12 20:12:19',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5721,'5500','121662999564','2022-09-12 20:12:19',1225.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5722,'1000','121662999564','2022-09-12 20:12:19',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5723,'4000','121662999564','2022-09-12 20:12:19',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5724,'4000','121662999564','2022-09-12 20:12:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5725,'4000','121662999564','2022-09-12 20:12:19',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5726,'4000','121662999564','2022-09-12 20:12:19',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5727,'1110','121663002800','2022-09-12 20:24:48',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5728,'5500','121663002800','2022-09-12 20:24:48',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5729,'1000','121663002800','2022-09-12 20:24:48',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5730,'4000','121663002800','2022-09-12 20:24:48',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5731,'1110','121663003492','2022-09-12 20:53:12',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5732,'5500','121663003492','2022-09-12 20:53:12',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5733,'1000','121663003492','2022-09-12 20:53:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5734,'4000','121663003492','2022-09-12 20:53:12',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5735,'1110','121663005196','2022-09-12 21:11:52',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5736,'1110','121663005196','2022-09-12 21:11:52',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5737,'5500','121663005196','2022-09-12 21:11:52',593.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5738,'1000','121663005196','2022-09-12 21:11:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5739,'4000','121663005196','2022-09-12 21:11:52',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5740,'4000','121663005196','2022-09-12 21:11:52',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5741,'1110','121663007940','2022-09-12 21:39:14',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5742,'5500','121663007940','2022-09-12 21:39:14',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5743,'1000','121663007940','2022-09-12 21:39:14',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5744,'4000','121663007940','2022-09-12 21:39:14',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5745,'1110','121663007982','2022-09-12 21:42:10',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(5746,'5500','121663007982','2022-09-12 21:42:10',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5747,'1000','121663007982','2022-09-12 21:42:10',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5748,'4000','121663007982','2022-09-12 21:42:10',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(5749,'1110','121663008134','2022-09-12 21:52:41',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5750,'5500','121663008134','2022-09-12 21:52:41',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5751,'1000','121663008134','2022-09-12 21:52:41',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5752,'4000','121663008134','2022-09-12 21:52:41',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5753,'1110','121663008776','2022-09-12 22:40:35',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(5754,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5755,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5756,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5757,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5758,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5759,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5760,'1110','121663008776','2022-09-12 22:40:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5761,'5500','121663008776','2022-09-12 22:40:35',1915.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5762,'1000','121663008776','2022-09-12 22:40:35',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5763,'4000','121663008776','2022-09-12 22:40:35',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(5764,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5765,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5766,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5767,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5768,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5769,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(5770,'4000','121663008776','2022-09-12 22:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5771,'1110','121663011918','2022-09-12 22:45:39',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5772,'1110','121663011918','2022-09-12 22:45:39',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5773,'5500','121663011918','2022-09-12 22:45:39',227.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5774,'1000','121663011918','2022-09-12 22:45:39',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5775,'4000','121663011918','2022-09-12 22:45:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5776,'4000','121663011918','2022-09-12 22:45:39',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5777,'1110','121663014303','2022-09-12 23:33:52',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(5778,'1110','121663014303','2022-09-12 23:33:52',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(5779,'5500','121663014303','2022-09-12 23:33:52',3080.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5780,'1000','121663014303','2022-09-12 23:33:52',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5781,'4000','121663014303','2022-09-12 23:33:52',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(5782,'4000','121663014303','2022-09-12 23:33:52',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(5783,'1110','121663014872','2022-09-12 23:34:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5784,'5500','121663014872','2022-09-12 23:34:53',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5785,'1000','121663014872','2022-09-12 23:34:53',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5786,'4000','121663014872','2022-09-12 23:34:53',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5787,'1110','121663015020','2022-09-12 23:40:36',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5788,'1110','121663015020','2022-09-12 23:40:36',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5789,'1110','121663015020','2022-09-12 23:40:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5790,'5500','121663015020','2022-09-12 23:40:36',637.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5791,'1000','121663015020','2022-09-12 23:40:36',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5792,'4000','121663015020','2022-09-12 23:40:36',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5793,'4000','121663015020','2022-09-12 23:40:36',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5794,'4000','121663015020','2022-09-12 23:40:36',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5795,'1110','121663015240','2022-09-12 23:49:09',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(5796,'5500','121663015240','2022-09-12 23:49:09',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5797,'1000','121663015240','2022-09-12 23:49:09',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5798,'4000','121663015240','2022-09-12 23:49:09',NULL,1550.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(5799,'1110','121663016366','2022-09-13 00:33:51',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5800,'5500','121663016366','2022-09-13 00:33:51',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5801,'1000','121663016366','2022-09-13 00:33:51',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5802,'4000','121663016366','2022-09-13 00:33:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5803,'1110','121663018492','2022-09-13 00:36:03',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5804,'1110','121663018492','2022-09-13 00:36:03',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(5805,'5500','121663018492','2022-09-13 00:36:03',1326.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5806,'1000','121663018492','2022-09-13 00:36:03',1720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5807,'4000','121663018492','2022-09-13 00:36:03',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5808,'4000','121663018492','2022-09-13 00:36:03',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(5809,'1110','121663018618','2022-09-13 00:38:25',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5810,'5500','121663018618','2022-09-13 00:38:25',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5811,'1000','121663018618','2022-09-13 00:38:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5812,'4000','121663018618','2022-09-13 00:38:25',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5813,'1110','121663018713','2022-09-13 00:46:18',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5814,'5500','121663018713','2022-09-13 00:46:18',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5815,'1000','121663018713','2022-09-13 00:46:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5816,'4000','121663018713','2022-09-13 00:46:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(5817,'1110','121663019249','2022-09-13 01:27:56',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(5818,'5500','121663019249','2022-09-13 01:27:56',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5819,'1000','121663019249','2022-09-13 01:27:56',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5820,'4000','121663019249','2022-09-13 01:27:56',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(5821,'1110','121663021683','2022-09-13 02:07:54',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5822,'1110','121663021683','2022-09-13 02:07:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5823,'5500','121663021683','2022-09-13 02:07:54',495.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5824,'1000','121663021683','2022-09-13 02:07:54',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5825,'4000','121663021683','2022-09-13 02:07:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5826,'4000','121663021683','2022-09-13 02:07:54',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5827,'1110','121663024181','2022-09-13 02:10:18',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5828,'5500','121663024181','2022-09-13 02:10:18',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5829,'1000','121663024181','2022-09-13 02:10:18',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5830,'4000','121663024181','2022-09-13 02:10:18',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5831,'1110','121663027097','2022-09-13 02:58:32',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(5832,'5500','121663027097','2022-09-13 02:58:32',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5833,'1000','121663027097','2022-09-13 02:58:32',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5834,'4000','121663027097','2022-09-13 02:58:32',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(5835,'1110','121663080464','2022-09-13 17:47:55',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5836,'5500','121663080464','2022-09-13 17:47:55',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5837,'1000','121663080464','2022-09-13 17:47:55',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5838,'4000','121663080464','2022-09-13 17:47:55',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5839,'1110','121663080482','2022-09-13 18:00:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5840,'5500','121663080482','2022-09-13 18:00:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5841,'1000','121663080482','2022-09-13 18:00:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5842,'4000','121663080482','2022-09-13 18:00:47',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5843,'1110','121663081458','2022-09-13 18:13:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5844,'5500','121663081458','2022-09-13 18:13:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5845,'1000','121663081458','2022-09-13 18:13:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5846,'4000','121663081458','2022-09-13 18:13:22',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5847,'1110','121663082005','2022-09-13 19:14:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5848,'5500','121663082005','2022-09-13 19:14:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5849,'1000','121663082005','2022-09-13 19:14:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5850,'4000','121663082005','2022-09-13 19:14:24',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5851,'1110','121663085669','2022-09-13 20:12:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5852,'5500','121663085669','2022-09-13 20:12:51',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5853,'1000','121663085669','2022-09-13 20:12:51',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5854,'4000','121663085669','2022-09-13 20:12:51',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5855,'1110','121663089197','2022-09-13 20:40:51',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5856,'1110','121663089197','2022-09-13 20:40:51',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5857,'5500','121663089197','2022-09-13 20:40:51',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5858,'1000','121663089197','2022-09-13 20:40:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5859,'4000','121663089197','2022-09-13 20:40:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5860,'4000','121663089197','2022-09-13 20:40:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5861,'1110','121663093960','2022-09-13 21:58:30',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5862,'5500','121663093960','2022-09-13 21:58:30',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5863,'1000','121663093960','2022-09-13 21:58:30',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5864,'4000','121663093960','2022-09-13 21:58:30',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5865,'1110','121663095795','2022-09-13 22:03:23',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5866,'1110','121663095795','2022-09-13 22:03:23',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5867,'5500','121663095795','2022-09-13 22:03:23',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5868,'1000','121663095795','2022-09-13 22:03:23',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5869,'4000','121663095795','2022-09-13 22:03:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(5870,'4000','121663095795','2022-09-13 22:03:23',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5871,'1110','121663095873','2022-09-13 22:25:14',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5872,'1110','121663095873','2022-09-13 22:25:14',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5873,'1110','121663095873','2022-09-13 22:25:14',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5874,'5500','121663095873','2022-09-13 22:25:14',1789.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5875,'1000','121663095873','2022-09-13 22:25:14',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5876,'4000','121663095873','2022-09-13 22:25:14',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5877,'4000','121663095873','2022-09-13 22:25:14',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(5878,'4000','121663095873','2022-09-13 22:25:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5879,'1110','121663097187','2022-09-13 22:57:33',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(5880,'1110','121663097187','2022-09-13 22:57:33',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5881,'1110','121663097187','2022-09-13 22:57:33',NULL,267.48,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5882,'1110','121663097187','2022-09-13 22:57:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(5883,'5500','121663097187','2022-09-13 22:57:33',2405.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5884,'1000','121663097187','2022-09-13 22:57:33',3290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5885,'4000','121663097187','2022-09-13 22:57:33',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(5886,'4000','121663097187','2022-09-13 22:57:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5887,'4000','121663097187','2022-09-13 22:57:33',NULL,360.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(5888,'4000','121663097187','2022-09-13 22:57:33',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(5889,'1110','121663099807','2022-09-13 23:11:30',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5890,'1110','121663099807','2022-09-13 23:11:30',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5891,'1110','121663099807','2022-09-13 23:11:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5892,'1110','121663099807','2022-09-13 23:11:30',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5893,'1110','121663099807','2022-09-13 23:11:30',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5894,'5500','121663099807','2022-09-13 23:11:30',1515.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5895,'1000','121663099807','2022-09-13 23:11:30',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5896,'4000','121663099807','2022-09-13 23:11:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5897,'4000','121663099807','2022-09-13 23:11:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(5898,'4000','121663099807','2022-09-13 23:11:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5899,'4000','121663099807','2022-09-13 23:11:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5900,'4000','121663099807','2022-09-13 23:11:30',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039006019','','No',NULL,NULL,''),(5901,'1110','121663103193','2022-09-14 00:21:38',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5902,'1110','121663103193','2022-09-14 00:21:38',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5903,'1110','121663103193','2022-09-14 00:21:38',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5904,'5500','121663103193','2022-09-14 00:21:38',936.51,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5905,'1000','121663103193','2022-09-14 00:21:38',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5906,'4000','121663103193','2022-09-14 00:21:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(5907,'4000','121663103193','2022-09-14 00:21:38',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5908,'4000','121663103193','2022-09-14 00:21:38',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5909,'1110','121663104111','2022-09-14 00:42:09',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5910,'5500','121663104111','2022-09-14 00:42:09',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5911,'1000','121663104111','2022-09-14 00:42:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5912,'4000','121663104111','2022-09-14 00:42:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(5915,'1000','121663151791','2022-09-14 14:11:14',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5917,'1110','121663151791','2022-09-14 14:11:14',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(5918,'5500','121663151791','2022-09-14 16:06:59',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5919,'1000','121663151791','2022-09-14 14:11:14',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5920,'4000','121663151791','2022-09-14 14:11:14',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(5921,'1110','121663160924','2022-09-14 16:34:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5922,'5500','121663160924','2022-09-14 16:34:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5923,'1000','121663160924','2022-09-14 16:34:58',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5924,'4000','121663160924','2022-09-14 16:34:58',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(5925,'1110','121663162590','2022-09-14 16:53:40',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5926,'1110','121663162590','2022-09-14 16:53:40',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5927,'5500','121663162590','2022-09-14 16:53:40',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5928,'1000','121663162590','2022-09-14 16:53:40',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5929,'4000','121663162590','2022-09-14 16:53:40',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5930,'4000','121663162590','2022-09-14 16:53:40',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(5931,'1110','121663171257','2022-09-14 19:01:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(5932,'5500','121663171257','2022-09-14 19:01:06',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5933,'1000','121663171257','2022-09-14 19:01:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5934,'4000','121663171257','2022-09-14 19:01:06',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(5935,'1110','121663171330','2022-09-14 19:04:04',NULL,3270.40,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5936,'5500','121663171330','2022-09-14 19:04:04',3270.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5937,'1000','121663171330','2022-09-14 19:04:04',3700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5938,'4000','121663171330','2022-09-14 19:04:04',NULL,3700.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(5939,'1110','121663171699','2022-09-14 20:51:06',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5940,'5500','121663171699','2022-09-14 20:51:06',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5941,'1000','121663171699','2022-09-14 20:51:06',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5942,'4000','121663171699','2022-09-14 20:51:06',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(5943,'1110','121663177925','2022-09-14 21:04:21',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5944,'5500','121663177925','2022-09-14 21:04:21',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5945,'1000','121663177925','2022-09-14 21:04:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5946,'4000','121663177925','2022-09-14 21:04:21',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(5947,'1110','121663178665','2022-09-14 21:04:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5948,'5500','121663178665','2022-09-14 21:04:33',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5949,'1000','121663178665','2022-09-14 21:04:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5950,'4000','121663178665','2022-09-14 21:04:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(5951,'1110','121663178678','2022-09-14 21:49:58',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5952,'1110','121663178678','2022-09-14 21:49:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5953,'5500','121663178678','2022-09-14 21:49:58',453.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5954,'1000','121663178678','2022-09-14 21:49:58',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5955,'4000','121663178678','2022-09-14 21:49:58',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(5956,'4000','121663178678','2022-09-14 21:49:58',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(5957,'1110','121663181402','2022-09-14 21:50:18',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5958,'5500','121663181402','2022-09-14 21:50:18',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5959,'1000','121663181402','2022-09-14 21:50:18',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5960,'4000','121663181402','2022-09-14 21:50:18',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5961,'1110','121663181422','2022-09-14 21:58:33',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(5962,'5500','121663181422','2022-09-14 21:58:33',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5963,'1000','121663181422','2022-09-14 21:58:33',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5964,'4000','121663181422','2022-09-14 21:58:33',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(5965,'1110','121663181952','2022-09-14 22:04:40',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5966,'1110','121663181952','2022-09-14 22:04:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5967,'5500','121663181952','2022-09-14 22:04:40',1265.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5968,'1000','121663181952','2022-09-14 22:04:40',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5969,'4000','121663181952','2022-09-14 22:04:40',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(5970,'4000','121663181952','2022-09-14 22:04:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5971,'1110','121663182417','2022-09-14 22:22:51',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(5972,'5500','121663182417','2022-09-14 22:22:51',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5973,'1000','121663182417','2022-09-14 22:22:51',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5974,'4000','121663182417','2022-09-14 22:22:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(5975,'1110','121663183444','2022-09-14 22:30:40',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5976,'1110','121663183444','2022-09-14 22:30:40',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5977,'1110','121663183444','2022-09-14 22:30:40',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5978,'5500','121663183444','2022-09-14 22:30:40',724.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5979,'1000','121663183444','2022-09-14 22:30:40',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5980,'4000','121663183444','2022-09-14 22:30:40',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5981,'4000','121663183444','2022-09-14 22:30:40',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(5982,'4000','121663183444','2022-09-14 22:30:40',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(5983,'1110','121663184273','2022-09-15 00:28:00',NULL,920.00,'','12','1','Inventory sold','1','','sales','8908006354191','','No',NULL,NULL,''),(5984,'1110','121663184273','2022-09-15 00:28:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5985,'1110','121663184273','2022-09-15 00:28:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5986,'1110','121663184273','2022-09-15 00:28:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5987,'5500','121663184273','2022-09-15 00:28:00',1031.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5988,'1000','121663184273','2022-09-15 00:28:00',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5989,'4000','121663184273','2022-09-15 00:28:00',NULL,1300.00,'','12','1','Good sold','1','','sales','8908006354191','','No',NULL,NULL,''),(5990,'4000','121663184273','2022-09-15 00:28:00',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5991,'4000','121663184273','2022-09-15 00:28:00',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5992,'4000','121663184273','2022-09-15 00:28:00',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(5993,'1110','121663190933','2022-09-15 00:41:31',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(5994,'5500','121663190933','2022-09-15 00:41:31',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5995,'1000','121663190933','2022-09-15 00:41:31',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5996,'4000','121663190933','2022-09-15 00:41:31',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(5997,'1110','121663249912','2022-09-15 16:51:57',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(5998,'5500','121663249912','2022-09-15 16:51:57',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5999,'1000','121663249912','2022-09-15 16:51:57',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6000,'4000','121663249912','2022-09-15 16:51:57',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(6001,'1110','121663256792','2022-09-15 19:34:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6002,'1110','121663256792','2022-09-15 19:34:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6003,'1110','121663256792','2022-09-15 19:34:02',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6004,'5500','121663256792','2022-09-15 19:34:02',492.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6005,'1000','121663256792','2022-09-15 19:34:02',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6006,'4000','121663256792','2022-09-15 19:34:02',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6007,'4000','121663256792','2022-09-15 19:34:02',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6008,'4000','121663256792','2022-09-15 19:34:02',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6009,'1110','121663259651','2022-09-15 20:01:23',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6010,'5500','121663259651','2022-09-15 20:01:23',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6011,'1000','121663259651','2022-09-15 20:01:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6012,'4000','121663259651','2022-09-15 20:01:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6013,'1110','121663261288','2022-09-15 20:05:07',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6014,'5500','121663261288','2022-09-15 20:05:07',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6015,'1000','121663261288','2022-09-15 20:05:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6016,'4000','121663261288','2022-09-15 20:05:07',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6017,'1110','121663261618','2022-09-15 20:44:35',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6018,'5500','121663261618','2022-09-15 20:44:35',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6019,'1000','121663261618','2022-09-15 20:44:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6020,'4000','121663261618','2022-09-15 20:44:35',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6021,'1110','121663263878','2022-09-15 21:15:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6022,'1110','121663263878','2022-09-15 21:15:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6023,'1110','121663263878','2022-09-15 21:15:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6024,'1110','121663263878','2022-09-15 21:15:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6025,'5500','121663263878','2022-09-15 21:15:06',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6026,'1000','121663263878','2022-09-15 21:15:06',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6027,'4000','121663263878','2022-09-15 21:15:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6028,'4000','121663263878','2022-09-15 21:15:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6029,'4000','121663263878','2022-09-15 21:15:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6030,'4000','121663263878','2022-09-15 21:15:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6031,'1110','121663266542','2022-09-15 21:49:44',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(6032,'5500','121663266542','2022-09-15 21:49:44',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6033,'1000','121663266542','2022-09-15 21:49:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6034,'4000','121663266542','2022-09-15 21:49:44',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(6035,'1110','121663267832','2022-09-15 21:54:29',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6036,'1110','121663267832','2022-09-15 21:54:29',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6037,'1110','121663267832','2022-09-15 21:54:29',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6038,'5500','121663267832','2022-09-15 21:54:29',724.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6039,'1000','121663267832','2022-09-15 21:54:29',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6040,'4000','121663267832','2022-09-15 21:54:29',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6041,'4000','121663267832','2022-09-15 21:54:29',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6042,'4000','121663267832','2022-09-15 21:54:29',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6043,'1110','121663268079','2022-09-15 22:27:46',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6044,'5500','121663268079','2022-09-15 22:27:46',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6045,'1000','121663268079','2022-09-15 22:27:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6046,'4000','121663268079','2022-09-15 22:27:46',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6047,'1110','121663270079','2022-09-15 22:59:38',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6048,'5500','121663270079','2022-09-15 22:59:38',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6049,'1000','121663270079','2022-09-15 22:59:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6050,'4000','121663270079','2022-09-15 22:59:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6051,'1110','121663272197','2022-09-15 23:14:28',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6052,'5500','121663272197','2022-09-15 23:14:28',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6053,'1000','121663272197','2022-09-15 23:14:28',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6054,'4000','121663272197','2022-09-15 23:14:28',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6055,'1110','121663272954','2022-09-15 23:17:54',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6056,'1110','121663272954','2022-09-15 23:17:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6057,'1110','121663272954','2022-09-15 23:17:54',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6058,'5500','121663272954','2022-09-15 23:17:54',907.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6059,'1000','121663272954','2022-09-15 23:17:54',1190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6060,'4000','121663272954','2022-09-15 23:17:54',NULL,600.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6061,'4000','121663272954','2022-09-15 23:17:54',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6062,'4000','121663272954','2022-09-15 23:17:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6063,'1110','121663273971','2022-09-15 23:33:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6064,'1110','121663273971','2022-09-15 23:33:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6065,'1110','121663273971','2022-09-15 23:33:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6066,'1110','121663273971','2022-09-15 23:33:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6067,'5500','121663273971','2022-09-15 23:33:39',407.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6068,'1000','121663273971','2022-09-15 23:33:39',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6069,'4000','121663273971','2022-09-15 23:33:39',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6070,'4000','121663273971','2022-09-15 23:33:39',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6071,'4000','121663273971','2022-09-15 23:33:39',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6072,'4000','121663273971','2022-09-15 23:33:39',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6073,'1110','121663274040','2022-09-15 23:53:42',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6074,'5500','121663274040','2022-09-15 23:53:42',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6075,'1000','121663274040','2022-09-15 23:53:42',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6076,'4000','121663274040','2022-09-15 23:53:42',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6077,'1110','121663275225','2022-09-15 23:57:31',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(6078,'5500','121663275225','2022-09-15 23:57:31',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6079,'1000','121663275225','2022-09-15 23:57:31',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6080,'4000','121663275225','2022-09-15 23:57:31',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(6081,'1110','121663275486','2022-09-16 00:05:42',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6082,'5500','121663275486','2022-09-16 00:05:42',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6083,'1000','121663275486','2022-09-16 00:05:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6084,'4000','121663275486','2022-09-16 00:05:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6085,'1110','121663275986','2022-09-16 00:34:24',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6086,'1110','121663275986','2022-09-16 00:34:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6087,'1110','121663275986','2022-09-16 00:34:24',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6088,'5500','121663275986','2022-09-16 00:34:24',1031.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6089,'1000','121663275986','2022-09-16 00:34:24',1420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6090,'4000','121663275986','2022-09-16 00:34:24',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6091,'4000','121663275986','2022-09-16 00:34:24',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6092,'4000','121663275986','2022-09-16 00:34:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6093,'1110','121663277775','2022-09-16 00:43:45',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6094,'5500','121663277775','2022-09-16 00:43:45',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6095,'1000','121663277775','2022-09-16 00:43:45',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6096,'4000','121663277775','2022-09-16 00:43:45',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6097,'1110','121663278299','2022-09-16 01:04:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6098,'5500','121663278299','2022-09-16 01:04:25',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6099,'1000','121663278299','2022-09-16 01:04:25',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6100,'4000','121663278299','2022-09-16 01:04:25',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6101,'1110','121663316773','2022-09-16 11:26:29',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6102,'5500','121663316773','2022-09-16 11:26:29',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6103,'1000','121663316773','2022-09-16 11:26:29',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6104,'4000','121663316773','2022-09-16 11:26:29',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6105,'1110','121663324099','2022-09-16 13:28:28',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6106,'5500','121663324099','2022-09-16 13:28:28',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6107,'1000','121663324099','2022-09-16 13:28:28',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6108,'4000','121663324099','2022-09-16 13:28:28',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6109,'1110','121663329132','2022-09-16 16:43:25',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6110,'5500','121663329132','2022-09-16 16:43:25',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6111,'1000','121663329132','2022-09-16 16:43:25',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6112,'4000','121663329132','2022-09-16 16:43:25',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6113,'1110','121663336206','2022-09-16 16:50:19',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6114,'5500','121663336206','2022-09-16 16:50:19',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6115,'1000','121663336206','2022-09-16 16:50:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6116,'4000','121663336206','2022-09-16 16:50:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6117,'1110','121663338618','2022-09-16 19:10:48',NULL,617.06,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6118,'5500','121663338618','2022-09-16 19:10:48',617.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6119,'1000','121663338618','2022-09-16 19:10:48',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6120,'4000','121663338618','2022-09-16 19:10:48',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6121,'1110','121663350316','2022-09-16 20:48:13',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6122,'1110','121663350316','2022-09-16 20:48:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6123,'1110','121663350316','2022-09-16 20:48:13',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6124,'1110','121663350316','2022-09-16 20:48:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6125,'1110','121663350316','2022-09-16 20:48:13',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6126,'5500','121663350316','2022-09-16 20:48:13',1573.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6127,'1000','121663350316','2022-09-16 20:48:13',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6128,'4000','121663350316','2022-09-16 20:48:13',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6129,'4000','121663350316','2022-09-16 20:48:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6130,'4000','121663350316','2022-09-16 20:48:13',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6131,'4000','121663350316','2022-09-16 20:48:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6132,'4000','121663350316','2022-09-16 20:48:13',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6133,'1110','121663350528','2022-09-16 20:58:23',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6134,'1110','121663350528','2022-09-16 20:58:23',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(6135,'1110','121663350528','2022-09-16 20:58:23',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6136,'1110','121663350528','2022-09-16 20:58:23',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6137,'5500','121663350528','2022-09-16 20:58:23',1911.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6138,'1000','121663350528','2022-09-16 20:58:23',2570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6139,'4000','121663350528','2022-09-16 20:58:23',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6140,'4000','121663350528','2022-09-16 20:58:23',NULL,920.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(6141,'4000','121663350528','2022-09-16 20:58:23',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6142,'4000','121663350528','2022-09-16 20:58:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6143,'1110','121663351107','2022-09-16 21:04:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6144,'1110','121663351107','2022-09-16 21:04:15',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6145,'5500','121663351107','2022-09-16 21:04:15',297.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6146,'1000','121663351107','2022-09-16 21:04:15',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6147,'4000','121663351107','2022-09-16 21:04:15',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6148,'4000','121663351107','2022-09-16 21:04:15',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6149,'1110','121663351480','2022-09-16 21:08:35',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6150,'5500','121663351480','2022-09-16 21:08:35',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6151,'1000','121663351480','2022-09-16 21:08:35',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6152,'4000','121663351480','2022-09-16 21:08:35',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6153,'1110','121663354150','2022-09-16 21:49:22',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(6154,'5500','121663354150','2022-09-16 21:49:22',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6155,'1000','121663354150','2022-09-16 21:49:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6156,'4000','121663354150','2022-09-16 21:49:22',NULL,750.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(6157,'1110','121663354166','2022-09-16 21:50:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6158,'1110','121663354166','2022-09-16 21:50:08',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6159,'5500','121663354166','2022-09-16 21:50:08',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6160,'1000','121663354166','2022-09-16 21:50:08',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6161,'4000','121663354166','2022-09-16 21:50:08',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6162,'4000','121663354166','2022-09-16 21:50:08',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6163,'1110','121663354215','2022-09-16 21:56:43',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6164,'1110','121663354215','2022-09-16 21:56:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6165,'1110','121663354215','2022-09-16 21:56:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6166,'5500','121663354215','2022-09-16 21:56:43',752.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6167,'1000','121663354215','2022-09-16 21:56:43',1060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6168,'4000','121663354215','2022-09-16 21:56:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6169,'4000','121663354215','2022-09-16 21:56:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6170,'4000','121663354215','2022-09-16 21:56:43',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6171,'1110','121663354612','2022-09-16 22:02:26',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6172,'1110','121663354612','2022-09-16 22:02:26',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6173,'1110','121663354612','2022-09-16 22:02:26',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6174,'1110','121663354612','2022-09-16 22:02:26',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6175,'5500','121663354612','2022-09-16 22:02:26',1114.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6176,'1000','121663354612','2022-09-16 22:02:26',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6177,'4000','121663354612','2022-09-16 22:02:26',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6178,'4000','121663354612','2022-09-16 22:02:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6179,'4000','121663354612','2022-09-16 22:02:26',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6180,'4000','121663354612','2022-09-16 22:02:26',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6181,'1110','121663354951','2022-09-16 22:09:42',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6182,'5500','121663354951','2022-09-16 22:09:42',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6183,'1000','121663354951','2022-09-16 22:09:42',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6184,'4000','121663354951','2022-09-16 22:09:42',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6185,'1110','121663355400','2022-09-16 22:49:05',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(6186,'1110','121663355400','2022-09-16 22:49:05',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6187,'5500','121663355400','2022-09-16 22:49:05',1182.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6188,'1000','121663355400','2022-09-16 22:49:05',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6189,'4000','121663355400','2022-09-16 22:49:05',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(6190,'4000','121663355400','2022-09-16 22:49:05',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6191,'1110','121663357750','2022-09-16 23:18:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6192,'1110','121663357750','2022-09-16 23:18:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6193,'1110','121663357750','2022-09-16 23:18:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6194,'5500','121663357750','2022-09-16 23:18:53',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6195,'1000','121663357750','2022-09-16 23:18:53',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6196,'4000','121663357750','2022-09-16 23:18:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6197,'4000','121663357750','2022-09-16 23:18:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6198,'4000','121663357750','2022-09-16 23:18:53',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6199,'1110','121663359550','2022-09-17 00:14:45',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5010103912976','','No',NULL,NULL,''),(6200,'1110','121663359550','2022-09-17 00:14:45',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(6201,'1110','121663359550','2022-09-17 00:14:45',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(6202,'5500','121663359550','2022-09-17 00:14:45',4119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6203,'1000','121663359550','2022-09-17 00:14:45',5580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6204,'4000','121663359550','2022-09-17 00:14:45',NULL,5400.00,'','12','1','Good sold','1','','sales','5010103912976','','No',NULL,NULL,''),(6205,'4000','121663359550','2022-09-17 00:14:45',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(6206,'4000','121663359550','2022-09-17 00:14:45',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(6207,'1110','121663363032','2022-09-17 00:18:09',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(6208,'1110','121663363032','2022-09-17 00:18:09',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(6209,'1110','121663363032','2022-09-17 00:18:09',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6210,'1110','121663363032','2022-09-17 00:18:09',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6211,'5500','121663363032','2022-09-17 00:18:09',925.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6212,'1000','121663363032','2022-09-17 00:18:09',1260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6213,'4000','121663363032','2022-09-17 00:18:09',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(6214,'4000','121663363032','2022-09-17 00:18:09',NULL,400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(6215,'4000','121663363032','2022-09-17 00:18:09',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6216,'4000','121663363032','2022-09-17 00:18:09',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6217,'1110','121663363224','2022-09-17 00:27:50',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6218,'1110','121663363224','2022-09-17 00:27:50',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6219,'5500','121663363224','2022-09-17 00:27:50',894.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6220,'1000','121663363224','2022-09-17 00:27:50',1240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6221,'4000','121663363224','2022-09-17 00:27:50',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6222,'4000','121663363224','2022-09-17 00:27:50',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6223,'1110','121663363680','2022-09-17 00:33:32',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6224,'1110','121663363680','2022-09-17 00:33:32',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(6225,'5500','121663363680','2022-09-17 00:33:32',4450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6226,'1000','121663363680','2022-09-17 00:33:32',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6227,'4000','121663363680','2022-09-17 00:33:32',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6228,'4000','121663363680','2022-09-17 00:33:32',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(6229,'1110','121663364019','2022-09-17 00:34:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6230,'1110','121663364019','2022-09-17 00:34:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6231,'1110','121663364019','2022-09-17 00:34:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6232,'1110','121663364019','2022-09-17 00:34:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6233,'1110','121663364019','2022-09-17 00:34:38',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6234,'5500','121663364019','2022-09-17 00:34:38',662.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6235,'1000','121663364019','2022-09-17 00:34:38',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6236,'4000','121663364019','2022-09-17 00:34:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6237,'4000','121663364019','2022-09-17 00:34:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6238,'4000','121663364019','2022-09-17 00:34:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6239,'4000','121663364019','2022-09-17 00:34:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6240,'4000','121663364019','2022-09-17 00:34:38',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6241,'1110','121663364282','2022-09-17 00:40:12',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(6242,'1110','121663364282','2022-09-17 00:40:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6243,'5500','121663364282','2022-09-17 00:40:12',2142.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6244,'1000','121663364282','2022-09-17 00:40:12',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6245,'4000','121663364282','2022-09-17 00:40:12',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(6246,'4000','121663364282','2022-09-17 00:40:12',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6247,'1110','121663364483','2022-09-17 00:42:47',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(6248,'5500','121663364483','2022-09-17 00:42:47',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6249,'1000','121663364483','2022-09-17 00:42:47',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6250,'4000','121663364483','2022-09-17 00:42:47',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(6251,'1110','121663364572','2022-09-17 00:44:21',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6252,'5500','121663364572','2022-09-17 00:44:21',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6253,'1000','121663364572','2022-09-17 00:44:21',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6254,'4000','121663364572','2022-09-17 00:44:21',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6255,'1110','121663366783','2022-09-17 01:20:22',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(6256,'5500','121663366783','2022-09-17 01:20:22',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6257,'1000','121663366783','2022-09-17 01:20:22',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6258,'4000','121663366783','2022-09-17 01:20:22',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(6259,'1110','121663366947','2022-09-17 01:22:51',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(6260,'5500','121663366947','2022-09-17 01:22:51',1270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6261,'1000','121663366947','2022-09-17 01:22:51',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6262,'4000','121663366947','2022-09-17 01:22:51',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(6263,'1110','121663367105','2022-09-17 01:28:46',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(6264,'1110','121663367105','2022-09-17 01:28:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6265,'5500','121663367105','2022-09-17 01:28:46',1722.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6266,'1000','121663367105','2022-09-17 01:28:46',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6267,'4000','121663367105','2022-09-17 01:28:46',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(6268,'4000','121663367105','2022-09-17 01:28:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6269,'1110','121663367432','2022-09-17 01:37:22',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6270,'1110','121663367432','2022-09-17 01:37:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6271,'1110','121663367432','2022-09-17 01:37:22',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6272,'5500','121663367432','2022-09-17 01:37:22',879.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6273,'1000','121663367432','2022-09-17 01:37:22',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6274,'4000','121663367432','2022-09-17 01:37:22',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(6275,'4000','121663367432','2022-09-17 01:37:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6276,'4000','121663367432','2022-09-17 01:37:22',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6277,'1110','121663367900','2022-09-17 01:57:42',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(6278,'5500','121663367900','2022-09-17 01:57:42',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6279,'1000','121663367900','2022-09-17 01:57:42',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6280,'4000','121663367900','2022-09-17 01:57:42',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(6281,'1110','121663369392','2022-09-17 03:12:08',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6282,'5500','121663369392','2022-09-17 03:12:08',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6283,'1000','121663369392','2022-09-17 03:12:08',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6284,'4000','121663369392','2022-09-17 03:12:08',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6285,'1110','121663409506','2022-09-17 13:11:54',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(6286,'1110','121663409506','2022-09-17 13:11:54',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800783','','No',NULL,NULL,''),(6287,'5500','121663409506','2022-09-17 13:11:54',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6288,'1000','121663409506','2022-09-17 13:11:54',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6289,'4000','121663409506','2022-09-17 13:11:54',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(6290,'4000','121663409506','2022-09-17 13:11:54',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800783','','No',NULL,NULL,''),(6291,'1110','121663409711','2022-09-17 13:38:44',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6292,'1110','121663409711','2022-09-17 13:38:44',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6293,'5500','121663409711','2022-09-17 13:38:44',377.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6294,'1000','121663409711','2022-09-17 13:38:44',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6295,'4000','121663409711','2022-09-17 13:38:44',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6296,'4000','121663409711','2022-09-17 13:38:44',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6297,'1110','121663411172','2022-09-17 13:57:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6298,'5500','121663411172','2022-09-17 13:57:04',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6299,'1000','121663411172','2022-09-17 13:57:04',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6300,'4000','121663411172','2022-09-17 13:57:04',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6301,'1110','121663412241','2022-09-17 14:03:28',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6302,'5500','121663412241','2022-09-17 14:03:28',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6303,'1000','121663412241','2022-09-17 14:03:28',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6304,'4000','121663412241','2022-09-17 14:03:28',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6305,'1110','121663412613','2022-09-17 14:37:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(6306,'5500','121663412613','2022-09-17 14:37:01',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6307,'1000','121663412613','2022-09-17 14:37:01',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6308,'4000','121663412613','2022-09-17 14:37:01',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(6309,'1110','121663414625','2022-09-17 15:08:35',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6310,'5500','121663414625','2022-09-17 15:08:35',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6311,'1000','121663414625','2022-09-17 15:08:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6312,'4000','121663414625','2022-09-17 15:08:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6313,'1110','121663416518','2022-09-17 16:59:57',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6314,'1110','121663416518','2022-09-17 16:59:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6315,'1110','121663416518','2022-09-17 16:59:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6316,'5500','121663416518','2022-09-17 16:59:57',575.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6317,'1000','121663416518','2022-09-17 16:59:57',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6318,'4000','121663416518','2022-09-17 16:59:57',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6319,'4000','121663416518','2022-09-17 16:59:57',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6320,'4000','121663416518','2022-09-17 16:59:57',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6321,'1110','121663423280','2022-09-17 17:11:51',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6322,'5500','121663423280','2022-09-17 17:11:51',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6323,'1000','121663423280','2022-09-17 17:11:51',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6324,'4000','121663423280','2022-09-17 17:11:51',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6325,'1110','121663423915','2022-09-17 17:50:32',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6326,'5500','121663423915','2022-09-17 17:50:32',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6327,'1000','121663423915','2022-09-17 17:50:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6328,'4000','121663423915','2022-09-17 17:50:32',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6329,'1110','121663426272','2022-09-17 18:09:34',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6330,'1110','121663426272','2022-09-17 18:09:34',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6331,'1110','121663426272','2022-09-17 18:09:34',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(6332,'5500','121663426272','2022-09-17 18:09:34',710.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6333,'1000','121663426272','2022-09-17 18:09:34',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6334,'4000','121663426272','2022-09-17 18:09:34',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6335,'4000','121663426272','2022-09-17 18:09:34',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6336,'4000','121663426272','2022-09-17 18:09:34',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(6337,'1110','121663427566','2022-09-17 18:22:07',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(6338,'1110','121663427566','2022-09-17 18:22:07',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(6339,'5500','121663427566','2022-09-17 18:22:07',9358.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6340,'1000','121663427566','2022-09-17 18:22:07',12750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6341,'4000','121663427566','2022-09-17 18:22:07',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(6342,'4000','121663427566','2022-09-17 18:22:07',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(6343,'1110','121663428178','2022-09-17 18:53:51',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6344,'5500','121663428178','2022-09-17 18:53:51',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6345,'1000','121663428178','2022-09-17 18:53:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6346,'4000','121663428178','2022-09-17 18:53:51',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6347,'1110','121663437475','2022-09-17 20:58:51',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6348,'1110','121663437475','2022-09-17 20:58:51',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(6349,'1110','121663437475','2022-09-17 20:58:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6350,'5500','121663437475','2022-09-17 20:58:51',549.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6351,'1000','121663437475','2022-09-17 20:58:51',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6352,'4000','121663437475','2022-09-17 20:58:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6353,'4000','121663437475','2022-09-17 20:58:51',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(6354,'4000','121663437475','2022-09-17 20:58:51',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6355,'1110','121663438063','2022-09-17 21:30:59',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6356,'1110','121663438063','2022-09-17 21:30:59',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6357,'1110','121663438063','2022-09-17 21:30:59',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6358,'5500','121663438063','2022-09-17 21:30:59',897.54,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6359,'1000','121663438063','2022-09-17 21:30:59',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6360,'4000','121663438063','2022-09-17 21:30:59',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6361,'4000','121663438063','2022-09-17 21:30:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6362,'4000','121663438063','2022-09-17 21:30:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6363,'1110','121663439466','2022-09-17 22:16:56',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(6364,'1110','121663439466','2022-09-17 22:16:56',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(6365,'1110','121663439466','2022-09-17 22:16:56',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6366,'5500','121663439466','2022-09-17 22:16:56',1546.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6367,'1000','121663439466','2022-09-17 22:16:56',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6368,'4000','121663439466','2022-09-17 22:16:56',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(6369,'4000','121663439466','2022-09-17 22:16:56',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(6370,'4000','121663439466','2022-09-17 22:16:56',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6371,'1110','121663442484','2022-09-17 22:21:27',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6372,'5500','121663442484','2022-09-17 22:21:27',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6373,'1000','121663442484','2022-09-17 22:21:27',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6374,'4000','121663442484','2022-09-17 22:21:27',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(6375,'1110','121663442826','2022-09-17 23:21:18',NULL,6800.00,'','12','1','Inventory sold','1','','sales','5010327302201','','No',NULL,NULL,''),(6376,'5500','121663442826','2022-09-17 23:21:18',6800.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6377,'1000','121663442826','2022-09-17 23:21:18',8500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6378,'4000','121663442826','2022-09-17 23:21:18',NULL,8500.00,'','12','1','Good sold','1','','sales','5010327302201','','No',NULL,NULL,''),(6379,'1110','121663446104','2022-09-17 23:55:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6380,'1110','121663446104','2022-09-17 23:55:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6381,'1110','121663446104','2022-09-17 23:55:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6382,'1110','121663446104','2022-09-17 23:55:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6383,'5500','121663446104','2022-09-17 23:55:36',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6384,'1000','121663446104','2022-09-17 23:55:36',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6385,'4000','121663446104','2022-09-17 23:55:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6386,'4000','121663446104','2022-09-17 23:55:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6387,'4000','121663446104','2022-09-17 23:55:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6388,'4000','121663446104','2022-09-17 23:55:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6389,'1110','121663448337','2022-09-18 00:11:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6390,'5500','121663448337','2022-09-18 00:11:52',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6391,'1000','121663448337','2022-09-18 00:11:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6392,'4000','121663448337','2022-09-18 00:11:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6393,'1110','121663449122','2022-09-18 00:14:33',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6394,'5500','121663449122','2022-09-18 00:14:33',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6395,'1000','121663449122','2022-09-18 00:14:33',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6396,'4000','121663449122','2022-09-18 00:14:33',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6397,'1110','121663449279','2022-09-18 00:25:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6398,'1110','121663449279','2022-09-18 00:25:47',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6399,'1110','121663449279','2022-09-18 00:25:47',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(6400,'5500','121663449279','2022-09-18 00:25:47',382.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6401,'1000','121663449279','2022-09-18 00:25:47',510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6402,'4000','121663449279','2022-09-18 00:25:47',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6403,'4000','121663449279','2022-09-18 00:25:47',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6404,'4000','121663449279','2022-09-18 00:25:47',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(6405,'1110','121663449952','2022-09-18 00:38:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6406,'1110','121663449952','2022-09-18 00:38:20',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6407,'5500','121663449952','2022-09-18 00:38:20',337.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6408,'1000','121663449952','2022-09-18 00:38:20',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6409,'4000','121663449952','2022-09-18 00:38:20',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6410,'4000','121663449952','2022-09-18 00:38:20',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6411,'1110','121663450967','2022-09-18 00:43:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6412,'5500','121663450967','2022-09-18 00:43:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6413,'1000','121663450967','2022-09-18 00:43:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6414,'4000','121663450967','2022-09-18 00:43:05',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6415,'1110','121663451119','2022-09-18 01:38:05',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(6416,'1110','121663451119','2022-09-18 01:38:05',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(6417,'5500','121663451119','2022-09-18 01:38:05',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6418,'1000','121663451119','2022-09-18 01:38:05',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6419,'4000','121663451119','2022-09-18 01:38:05',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(6420,'4000','121663451119','2022-09-18 01:38:05',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(6421,'1110','121663454402','2022-09-18 02:05:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6422,'1110','121663454402','2022-09-18 02:05:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6423,'1110','121663454402','2022-09-18 02:05:17',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6424,'5500','121663454402','2022-09-18 02:05:17',156.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6425,'1000','121663454402','2022-09-18 02:05:17',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6426,'4000','121663454402','2022-09-18 02:05:17',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6427,'4000','121663454402','2022-09-18 02:05:17',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6428,'4000','121663454402','2022-09-18 02:05:17',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6429,'1110','121663455924','2022-09-18 02:13:40',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6430,'1110','121663455924','2022-09-18 02:13:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6431,'5500','121663455924','2022-09-18 02:13:40',354.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6432,'1000','121663455924','2022-09-18 02:13:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6433,'4000','121663455924','2022-09-18 02:13:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6434,'4000','121663455924','2022-09-18 02:13:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6435,'1110','121663456424','2022-09-18 02:33:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6436,'5500','121663456424','2022-09-18 02:33:12',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6437,'1000','121663456424','2022-09-18 02:33:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6438,'4000','121663456424','2022-09-18 02:33:12',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6439,'1110','121663457596','2022-09-18 02:49:11',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6440,'5500','121663457596','2022-09-18 02:49:11',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6441,'1000','121663457596','2022-09-18 02:49:11',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6442,'4000','121663457596','2022-09-18 02:49:11',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6443,'1110','121663458556','2022-09-18 02:49:34',NULL,5710.68,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6444,'5500','121663458556','2022-09-18 02:49:34',5710.68,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6445,'1000','121663458556','2022-09-18 02:49:34',6300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6446,'4000','121663458556','2022-09-18 02:49:34',NULL,6300.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6447,'1110','121663458578','2022-09-18 02:49:54',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6448,'5500','121663458578','2022-09-18 02:49:54',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6449,'1000','121663458578','2022-09-18 02:49:54',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6450,'4000','121663458578','2022-09-18 02:49:54',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(6451,'1110','121663458597','2022-09-18 02:51:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6452,'5500','121663458597','2022-09-18 02:51:01',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6453,'1000','121663458597','2022-09-18 02:51:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6454,'4000','121663458597','2022-09-18 02:51:01',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6455,'1110','121663458665','2022-09-18 03:49:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6456,'1110','121663458665','2022-09-18 03:49:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6457,'1110','121663458665','2022-09-18 03:49:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6458,'5500','121663458665','2022-09-18 03:49:57',529.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6459,'1000','121663458665','2022-09-18 03:49:57',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6460,'4000','121663458665','2022-09-18 03:49:57',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6461,'4000','121663458665','2022-09-18 03:49:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6462,'4000','121663458665','2022-09-18 03:49:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6463,'1110','121663462479','2022-09-18 03:54:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6464,'5500','121663462479','2022-09-18 03:54:48',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6465,'1000','121663462479','2022-09-18 03:54:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6466,'4000','121663462479','2022-09-18 03:54:48',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6467,'1110','121663506045','2022-09-18 16:01:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6468,'1110','121663506045','2022-09-18 16:01:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6469,'1110','121663506045','2022-09-18 16:01:32',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6470,'1110','121663506045','2022-09-18 16:01:32',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6471,'5500','121663506045','2022-09-18 16:01:32',681.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6472,'1000','121663506045','2022-09-18 16:01:32',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6473,'4000','121663506045','2022-09-18 16:01:32',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6474,'4000','121663506045','2022-09-18 16:01:32',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6475,'4000','121663506045','2022-09-18 16:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6476,'4000','121663506045','2022-09-18 16:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6479,'1000','121663506252','2022-09-18 16:06:02',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6481,'1110','121663506252','2022-09-18 16:06:02',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(6482,'5500','121663506252','2022-09-18 16:11:17',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6483,'1000','121663506252','2022-09-18 16:06:02',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6484,'4000','121663506252','2022-09-18 16:06:02',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(6485,'1110','121663514899','2022-09-18 18:29:11',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6486,'5500','121663514899','2022-09-18 18:29:11',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6487,'1000','121663514899','2022-09-18 18:29:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6488,'4000','121663514899','2022-09-18 18:29:11',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6489,'1110','121663526011','2022-09-18 21:36:43',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6490,'1110','121663526011','2022-09-18 21:36:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6491,'5500','121663526011','2022-09-18 21:36:43',2042.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6492,'1000','121663526011','2022-09-18 21:36:43',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6493,'4000','121663526011','2022-09-18 21:36:43',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6494,'4000','121663526011','2022-09-18 21:36:43',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6495,'1110','121663526282','2022-09-18 21:38:24',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6496,'5500','121663526282','2022-09-18 21:38:24',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6497,'1000','121663526282','2022-09-18 21:38:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6498,'4000','121663526282','2022-09-18 21:38:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6499,'1110','121663526367','2022-09-18 21:40:03',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(6500,'5500','121663526367','2022-09-18 21:40:03',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6501,'1000','121663526367','2022-09-18 21:40:03',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6502,'4000','121663526367','2022-09-18 21:40:03',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(6503,'1110','121663526442','2022-09-18 21:41:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6504,'5500','121663526442','2022-09-18 21:41:45',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6505,'1000','121663526442','2022-09-18 21:41:45',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6506,'4000','121663526442','2022-09-18 21:41:45',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6507,'1110','121663526509','2022-09-18 22:59:56',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6508,'5500','121663526509','2022-09-18 22:59:56',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6509,'1000','121663526509','2022-09-18 22:59:56',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6510,'4000','121663526509','2022-09-18 22:59:56',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6511,'1110','121663531200','2022-09-18 23:05:13',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6512,'1110','121663531200','2022-09-18 23:05:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6513,'1110','121663531200','2022-09-18 23:05:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6514,'1110','121663531200','2022-09-18 23:05:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6515,'5500','121663531200','2022-09-18 23:05:13',708.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6516,'1000','121663531200','2022-09-18 23:05:13',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6517,'4000','121663531200','2022-09-18 23:05:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6518,'4000','121663531200','2022-09-18 23:05:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6519,'4000','121663531200','2022-09-18 23:05:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6520,'4000','121663531200','2022-09-18 23:05:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6521,'1110','121663531561','2022-09-18 23:46:54',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(6522,'1110','121663531561','2022-09-18 23:46:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6523,'1110','121663531561','2022-09-18 23:46:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6524,'5500','121663531561','2022-09-18 23:46:54',961.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6525,'1000','121663531561','2022-09-18 23:46:54',1340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6526,'4000','121663531561','2022-09-18 23:46:54',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(6527,'4000','121663531561','2022-09-18 23:46:54',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6528,'4000','121663531561','2022-09-18 23:46:54',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6529,'1110','121663534253','2022-09-19 00:06:56',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(6530,'1110','121663534253','2022-09-19 00:06:56',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6531,'1110','121663534253','2022-09-19 00:06:56',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(6532,'5500','121663534253','2022-09-19 00:06:56',1551.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6533,'1000','121663534253','2022-09-19 00:06:56',2090.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6534,'4000','121663534253','2022-09-19 00:06:56',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(6535,'4000','121663534253','2022-09-19 00:06:56',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6536,'4000','121663534253','2022-09-19 00:06:56',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(6537,'1110','121663535316','2022-09-19 00:11:44',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(6538,'5500','121663535316','2022-09-19 00:11:44',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6539,'1000','121663535316','2022-09-19 00:11:44',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6540,'4000','121663535316','2022-09-19 00:11:44',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(6541,'1110','121663535508','2022-09-19 00:18:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6542,'1110','121663535508','2022-09-19 00:18:10',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6543,'5500','121663535508','2022-09-19 00:18:10',1231.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6544,'1000','121663535508','2022-09-19 00:18:10',1690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6545,'4000','121663535508','2022-09-19 00:18:10',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6546,'4000','121663535508','2022-09-19 00:18:10',NULL,140.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6547,'1110','121663536048','2022-09-19 00:26:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6548,'1110','121663536048','2022-09-19 00:26:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6549,'5500','121663536048','2022-09-19 00:26:42',90.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6550,'1000','121663536048','2022-09-19 00:26:42',130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6551,'4000','121663536048','2022-09-19 00:26:42',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6552,'4000','121663536048','2022-09-19 00:26:42',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6553,'1110','121663536451','2022-09-19 00:32:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6554,'1110','121663536451','2022-09-19 00:32:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6555,'5500','121663536451','2022-09-19 00:32:02',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6556,'1000','121663536451','2022-09-19 00:32:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6557,'4000','121663536451','2022-09-19 00:32:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6558,'4000','121663536451','2022-09-19 00:32:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6559,'1110','121663536760','2022-09-19 01:17:51',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6560,'5500','121663536760','2022-09-19 01:17:51',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6561,'1000','121663536760','2022-09-19 01:17:51',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6562,'4000','121663536760','2022-09-19 01:17:51',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6563,'1110','121663539508','2022-09-19 02:39:23',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322693936','','No',NULL,NULL,''),(6564,'5500','121663539508','2022-09-19 02:39:23',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6565,'1000','121663539508','2022-09-19 02:39:23',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6566,'4000','121663539508','2022-09-19 02:39:23',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322693936','','No',NULL,NULL,''),(6567,'1110','121663544368','2022-09-19 03:49:51',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6568,'5500','121663544368','2022-09-19 03:49:51',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6569,'1000','121663544368','2022-09-19 03:49:51',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6570,'4000','121663544368','2022-09-19 03:49:51',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6571,'1110','121663603116','2022-09-19 18:58:45',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(6572,'5500','121663603116','2022-09-19 18:58:45',1417.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6573,'1000','121663603116','2022-09-19 18:58:45',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6574,'4000','121663603116','2022-09-19 18:58:45',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(6575,'1110','121663603482','2022-09-19 19:05:37',NULL,119.33,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6576,'5500','121663603482','2022-09-19 19:05:37',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6577,'1000','121663603482','2022-09-19 19:05:37',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6578,'4000','121663603482','2022-09-19 19:05:37',NULL,180.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6579,'1110','121663603569','2022-09-19 19:34:47',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6580,'5500','121663603569','2022-09-19 19:34:47',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6581,'1000','121663603569','2022-09-19 19:34:47',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6582,'4000','121663603569','2022-09-19 19:34:47',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6583,'1110','121663605349','2022-09-19 19:54:38',NULL,708.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(6584,'5500','121663605349','2022-09-19 19:54:38',708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6585,'1000','121663605349','2022-09-19 19:54:38',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6586,'4000','121663605349','2022-09-19 19:54:38',NULL,1000.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(6587,'1110','121663606482','2022-09-19 19:54:54',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6588,'5500','121663606482','2022-09-19 19:54:54',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6589,'1000','121663606482','2022-09-19 19:54:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6590,'4000','121663606482','2022-09-19 19:54:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6591,'1110','121663606498','2022-09-19 20:05:23',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001108001436','','No',NULL,NULL,''),(6592,'1110','121663606498','2022-09-19 20:05:23',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6593,'1110','121663606498','2022-09-19 20:05:23',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6594,'1110','121663606498','2022-09-19 20:05:23',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6595,'5500','121663606498','2022-09-19 20:05:23',1550.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6596,'1000','121663606498','2022-09-19 20:05:23',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6597,'4000','121663606498','2022-09-19 20:05:23',NULL,1600.00,'','12','1','Good sold','1','','sales','6001108001436','','No',NULL,NULL,''),(6598,'4000','121663606498','2022-09-19 20:05:23',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6599,'4000','121663606498','2022-09-19 20:05:23',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6600,'4000','121663606498','2022-09-19 20:05:23',NULL,140.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6601,'1110','121663607840','2022-09-19 21:22:14',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6602,'1110','121663607840','2022-09-19 21:22:14',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(6603,'1110','121663607840','2022-09-19 21:22:14',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6604,'5500','121663607840','2022-09-19 21:22:14',1176.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6605,'1000','121663607840','2022-09-19 21:22:14',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6606,'4000','121663607840','2022-09-19 21:22:14',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6607,'4000','121663607840','2022-09-19 21:22:14',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(6608,'4000','121663607840','2022-09-19 21:22:14',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6609,'1110','121663611849','2022-09-19 21:25:19',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6610,'5500','121663611849','2022-09-19 21:25:19',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6611,'1000','121663611849','2022-09-19 21:25:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6612,'4000','121663611849','2022-09-19 21:25:19',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6613,'1110','121663611922','2022-09-19 21:37:42',NULL,1084.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(6614,'1110','121663611922','2022-09-19 21:37:42',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6615,'1110','121663611922','2022-09-19 21:37:42',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6616,'1110','121663611922','2022-09-19 21:37:42',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6617,'5500','121663611922','2022-09-19 21:37:42',1366.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6618,'1000','121663611922','2022-09-19 21:37:42',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6619,'4000','121663611922','2022-09-19 21:37:42',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(6620,'4000','121663611922','2022-09-19 21:37:42',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6621,'4000','121663611922','2022-09-19 21:37:42',NULL,200.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6622,'4000','121663611922','2022-09-19 21:37:42',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6623,'1110','121663612666','2022-09-19 21:49:00',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6624,'5500','121663612666','2022-09-19 21:49:00',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6625,'1000','121663612666','2022-09-19 21:49:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6626,'4000','121663612666','2022-09-19 21:49:00',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6627,'1110','121663613344','2022-09-19 22:39:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6628,'1110','121663613344','2022-09-19 22:39:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6629,'5500','121663613344','2022-09-19 22:39:45',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6630,'1000','121663613344','2022-09-19 22:39:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6631,'4000','121663613344','2022-09-19 22:39:45',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6632,'4000','121663613344','2022-09-19 22:39:45',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6633,'1110','121663616413','2022-09-20 00:14:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6634,'1110','121663616413','2022-09-20 00:14:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6635,'1110','121663616413','2022-09-20 00:14:40',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(6636,'1110','121663616413','2022-09-20 00:14:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6637,'5500','121663616413','2022-09-20 00:14:40',825.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6638,'1000','121663616413','2022-09-20 00:14:40',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6639,'4000','121663616413','2022-09-20 00:14:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6640,'4000','121663616413','2022-09-20 00:14:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6641,'4000','121663616413','2022-09-20 00:14:40',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(6642,'4000','121663616413','2022-09-20 00:14:40',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6643,'1110','121663622168','2022-09-20 00:16:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(6644,'5500','121663622168','2022-09-20 00:16:22',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6645,'1000','121663622168','2022-09-20 00:16:22',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6646,'4000','121663622168','2022-09-20 00:16:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(6647,'1110','121663622321','2022-09-20 01:20:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6648,'5500','121663622321','2022-09-20 01:20:34',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6649,'1000','121663622321','2022-09-20 01:20:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6650,'4000','121663622321','2022-09-20 01:20:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(6651,'1110','121663626052','2022-09-20 01:23:59',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(6652,'1110','121663626052','2022-09-20 01:23:59',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6653,'1110','121663626052','2022-09-20 01:23:59',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6654,'1110','121663626052','2022-09-20 01:23:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6655,'1110','121663626052','2022-09-20 01:23:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6656,'1110','121663626052','2022-09-20 01:23:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6657,'5500','121663626052','2022-09-20 01:23:59',3414.77,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6658,'1000','121663626052','2022-09-20 01:23:59',4600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6659,'4000','121663626052','2022-09-20 01:23:59',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(6660,'4000','121663626052','2022-09-20 01:23:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6661,'4000','121663626052','2022-09-20 01:23:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(6662,'4000','121663626052','2022-09-20 01:23:59',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6663,'4000','121663626052','2022-09-20 01:23:59',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6664,'4000','121663626052','2022-09-20 01:23:59',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6665,'1110','121663626366','2022-09-20 01:28:40',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6666,'5500','121663626366','2022-09-20 01:28:40',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6667,'1000','121663626366','2022-09-20 01:28:40',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6668,'4000','121663626366','2022-09-20 01:28:40',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6669,'1110','121663679747','2022-09-20 16:16:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6670,'5500','121663679747','2022-09-20 16:16:06',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6671,'1000','121663679747','2022-09-20 16:16:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6672,'4000','121663679747','2022-09-20 16:16:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6673,'1110','121663687946','2022-09-20 18:32:35',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691345','','No',NULL,NULL,''),(6674,'5500','121663687946','2022-09-20 18:32:35',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6675,'1000','121663687946','2022-09-20 18:32:35',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6676,'4000','121663687946','2022-09-20 18:32:35',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691345','','No',NULL,NULL,''),(6677,'1110','121663689244','2022-09-20 18:54:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6678,'5500','121663689244','2022-09-20 18:54:24',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6679,'1000','121663689244','2022-09-20 18:54:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6680,'4000','121663689244','2022-09-20 18:54:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6681,'1110','121663689268','2022-09-20 18:57:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6682,'5500','121663689268','2022-09-20 18:57:05',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6683,'1000','121663689268','2022-09-20 18:57:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6684,'4000','121663689268','2022-09-20 18:57:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6685,'1110','121663689436','2022-09-20 20:57:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6686,'1110','121663689436','2022-09-20 20:57:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6687,'5500','121663689436','2022-09-20 20:57:51',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6688,'1000','121663689436','2022-09-20 20:57:51',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6689,'4000','121663689436','2022-09-20 20:57:51',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6690,'4000','121663689436','2022-09-20 20:57:51',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6691,'1110','121663696678','2022-09-20 20:58:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6692,'5500','121663696678','2022-09-20 20:58:15',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6693,'1000','121663696678','2022-09-20 20:58:15',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6694,'4000','121663696678','2022-09-20 20:58:15',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6695,'1110','121663696698','2022-09-20 21:31:55',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(6696,'1110','121663696698','2022-09-20 21:31:55',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6697,'5500','121663696698','2022-09-20 21:31:55',892.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6698,'1000','121663696698','2022-09-20 21:31:55',1260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6699,'4000','121663696698','2022-09-20 21:31:55',NULL,1200.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(6700,'4000','121663696698','2022-09-20 21:31:55',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6701,'1110','121663698812','2022-09-20 22:03:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6702,'5500','121663698812','2022-09-20 22:03:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6703,'1000','121663698812','2022-09-20 22:03:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6704,'4000','121663698812','2022-09-20 22:03:58',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6705,'1110','121663700641','2022-09-20 22:34:24',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6706,'5500','121663700641','2022-09-20 22:34:24',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6707,'1000','121663700641','2022-09-20 22:34:24',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6708,'4000','121663700641','2022-09-20 22:34:24',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6709,'1110','121663702508','2022-09-20 22:55:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6710,'1110','121663702508','2022-09-20 22:55:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6711,'5500','121663702508','2022-09-20 22:55:37',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6712,'1000','121663702508','2022-09-20 22:55:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6713,'4000','121663702508','2022-09-20 22:55:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6714,'4000','121663702508','2022-09-20 22:55:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6715,'1110','121663703739','2022-09-20 23:34:49',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6716,'5500','121663703739','2022-09-20 23:34:49',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6717,'1000','121663703739','2022-09-20 23:34:49',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6718,'4000','121663703739','2022-09-20 23:34:49',NULL,140.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6719,'1110','121663706093','2022-09-21 00:17:43',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6720,'5500','121663706093','2022-09-21 00:17:43',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6721,'1000','121663706093','2022-09-21 00:17:43',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6722,'4000','121663706093','2022-09-21 00:17:43',NULL,350.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(6723,'1110','121663708849','2022-09-21 00:49:20',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(6724,'5500','121663708849','2022-09-21 00:49:20',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6725,'1000','121663708849','2022-09-21 00:49:20',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6726,'4000','121663708849','2022-09-21 00:49:20',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(6727,'1110','121663769965','2022-09-21 17:21:40',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(6728,'1110','121663769965','2022-09-21 17:21:40',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6729,'1110','121663769965','2022-09-21 17:21:40',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6730,'5500','121663769965','2022-09-21 17:21:40',3137.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6731,'1000','121663769965','2022-09-21 17:21:40',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6732,'4000','121663769965','2022-09-21 17:21:40',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(6733,'4000','121663769965','2022-09-21 17:21:40',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6734,'4000','121663769965','2022-09-21 17:21:40',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6735,'1110','121663770257','2022-09-21 17:26:57',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(6736,'1110','121663770257','2022-09-21 17:26:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6737,'1110','121663770257','2022-09-21 17:26:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6738,'1110','121663770257','2022-09-21 17:26:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6739,'1110','121663770257','2022-09-21 17:26:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6740,'5500','121663770257','2022-09-21 17:26:57',1048.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6741,'1000','121663770257','2022-09-21 17:26:57',1540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6742,'4000','121663770257','2022-09-21 17:26:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(6743,'4000','121663770257','2022-09-21 17:26:57',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6744,'4000','121663770257','2022-09-21 17:26:57',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6745,'4000','121663770257','2022-09-21 17:26:57',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6746,'4000','121663770257','2022-09-21 17:26:57',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6747,'4000','121663770257','2022-09-21 17:32:47',1000.00,NULL,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(6748,'1000','121663770257','2022-09-21 17:32:47',NULL,1000.00,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(6749,'5500','121663770257','2022-09-21 17:32:47',NULL,641.00,'','12','1','Cost of goods returned','1','','sales','6001108049582','','No',NULL,NULL,''),(6750,'1110','121663770257','2022-09-21 17:32:47',641.00,NULL,'','12','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(6751,'4000','121663770257','2022-09-21 17:32:48',1000.00,NULL,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(6752,'1000','121663770257','2022-09-21 17:32:48',NULL,1000.00,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(6753,'5500','121663770257','2022-09-21 17:32:48',NULL,641.00,'','12','1','Cost of goods returned','1','','sales','6001108049582','','No',NULL,NULL,''),(6754,'1110','121663770257','2022-09-21 17:32:48',641.00,NULL,'','12','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(6755,'1110','121663770896','2022-09-21 17:38:51',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(6756,'1110','121663770896','2022-09-21 17:38:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6757,'1110','121663770896','2022-09-21 17:38:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6758,'1110','121663770896','2022-09-21 17:38:51',NULL,179.00,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6759,'5500','121663770896','2022-09-21 17:38:51',948.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6760,'1000','121663770896','2022-09-21 17:38:51',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6761,'4000','121663770896','2022-09-21 17:38:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(6762,'4000','121663770896','2022-09-21 17:38:51',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(6763,'4000','121663770896','2022-09-21 17:38:51',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6764,'4000','121663770896','2022-09-21 17:38:51',NULL,270.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6765,'1110','121663771234','2022-09-21 17:59:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6766,'1110','121663771234','2022-09-21 17:59:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6767,'5500','121663771234','2022-09-21 17:59:16',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6768,'1000','121663771234','2022-09-21 17:59:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6769,'4000','121663771234','2022-09-21 17:59:16',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6770,'4000','121663771234','2022-09-21 17:59:16',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6771,'1110','121663772403','2022-09-21 18:36:52',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6772,'5500','121663772403','2022-09-21 18:36:52',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6773,'1000','121663772403','2022-09-21 18:36:52',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6774,'4000','121663772403','2022-09-21 18:36:52',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(6775,'1110','121663774663','2022-09-21 18:49:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6776,'1110','121663774663','2022-09-21 18:49:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6777,'5500','121663774663','2022-09-21 18:49:34',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6778,'1000','121663774663','2022-09-21 18:49:34',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6779,'4000','121663774663','2022-09-21 18:49:34',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6780,'4000','121663774663','2022-09-21 18:49:34',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(6781,'1110','121663777213','2022-09-21 19:40:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6782,'5500','121663777213','2022-09-21 19:40:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6783,'1000','121663777213','2022-09-21 19:40:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6784,'4000','121663777213','2022-09-21 19:40:10',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6785,'1110','121663778414','2022-09-21 20:27:54',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6786,'5500','121663778414','2022-09-21 20:27:54',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6787,'1000','121663778414','2022-09-21 20:27:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6788,'4000','121663778414','2022-09-21 20:27:54',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6789,'1110','121663781281','2022-09-21 20:46:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(6790,'5500','121663781281','2022-09-21 20:46:16',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6791,'1000','121663781281','2022-09-21 20:46:16',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6792,'4000','121663781281','2022-09-21 20:46:16',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(6793,'1110','121663782380','2022-09-21 21:11:25',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6794,'5500','121663782380','2022-09-21 21:11:25',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6795,'1000','121663782380','2022-09-21 21:11:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6796,'4000','121663782380','2022-09-21 21:11:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6799,'1000','121663784645','2022-09-21 21:24:15',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6813,'1110','121663784645','2022-09-21 22:05:47',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6814,'1110','121663784645','2022-09-21 22:05:47',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6815,'5500','121663784645','2022-09-21 22:05:47',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6816,'1000','121663784645','2022-09-21 21:24:15',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6817,'4000','121663784645','2022-09-21 22:05:47',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6818,'4000','121663784645','2022-09-21 22:05:47',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6819,'1110','121663789866','2022-09-21 22:51:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6820,'5500','121663789866','2022-09-21 22:51:20',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6821,'1000','121663789866','2022-09-21 22:51:20',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6822,'4000','121663789866','2022-09-21 22:51:20',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(6823,'1110','121663789885','2022-09-21 23:43:03',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(6824,'5500','121663789885','2022-09-21 23:43:03',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6825,'1000','121663789885','2022-09-21 23:43:03',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6826,'4000','121663789885','2022-09-21 23:43:03',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(6827,'1110','121663793023','2022-09-21 23:45:18',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6828,'5500','121663793023','2022-09-21 23:45:18',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6829,'1000','121663793023','2022-09-21 23:45:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6830,'4000','121663793023','2022-09-21 23:45:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6831,'1110','121663793573','2022-09-21 23:53:27',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6832,'1110','121663793573','2022-09-21 23:53:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6833,'5500','121663793573','2022-09-21 23:53:27',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6834,'1000','121663793573','2022-09-21 23:53:27',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6835,'4000','121663793573','2022-09-21 23:53:27',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6836,'4000','121663793573','2022-09-21 23:53:27',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6837,'1110','121663793610','2022-09-22 00:02:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6838,'1110','121663793610','2022-09-22 00:02:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6839,'1110','121663793610','2022-09-22 00:02:17',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(6840,'5500','121663793610','2022-09-22 00:02:17',272.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6841,'1000','121663793610','2022-09-22 00:02:17',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6842,'4000','121663793610','2022-09-22 00:02:17',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(6843,'4000','121663793610','2022-09-22 00:02:17',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6844,'4000','121663793610','2022-09-22 00:02:17',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(6845,'1110','121663794158','2022-09-22 00:21:13',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6846,'5500','121663794158','2022-09-22 00:21:13',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6847,'1000','121663794158','2022-09-22 00:21:13',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6848,'4000','121663794158','2022-09-22 00:21:13',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6849,'1110','121663796238','2022-09-22 00:37:33',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(6850,'5500','121663796238','2022-09-22 00:37:33',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6851,'1000','121663796238','2022-09-22 00:37:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6852,'4000','121663796238','2022-09-22 00:37:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(6853,'1110','121663796814','2022-09-22 01:23:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(6854,'5500','121663796814','2022-09-22 01:23:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6855,'1000','121663796814','2022-09-22 01:23:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6856,'4000','121663796814','2022-09-22 01:23:28',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(6857,'1110','121663799049','2022-09-22 01:25:53',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(6858,'5500','121663799049','2022-09-22 01:25:53',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6859,'1000','121663799049','2022-09-22 01:25:53',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6860,'4000','121663799049','2022-09-22 01:25:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(6861,'1110','121663799157','2022-09-22 01:49:20',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(6862,'1110','121663799157','2022-09-22 01:49:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6863,'5500','121663799157','2022-09-22 01:49:20',1167.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6864,'1000','121663799157','2022-09-22 01:49:20',1610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6865,'4000','121663799157','2022-09-22 01:49:20',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(6866,'4000','121663799157','2022-09-22 01:49:20',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6867,'1110','121663800564','2022-09-22 01:50:22',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(6868,'5500','121663800564','2022-09-22 01:50:22',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6869,'1000','121663800564','2022-09-22 01:50:22',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6870,'4000','121663800564','2022-09-22 01:50:22',NULL,90.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(6871,'1110','121663800626','2022-09-22 03:44:34',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6872,'1110','121663800626','2022-09-22 03:44:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(6873,'5500','121663800626','2022-09-22 03:44:34',554.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6874,'1000','121663800626','2022-09-22 03:44:34',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6875,'4000','121663800626','2022-09-22 03:44:34',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(6876,'4000','121663800626','2022-09-22 03:44:34',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(6877,'1110','121663846094','2022-09-22 14:35:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6878,'1110','121663846094','2022-09-22 14:35:16',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6879,'1110','121663846094','2022-09-22 14:35:16',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6880,'5500','121663846094','2022-09-22 14:35:16',1199.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6881,'1000','121663846094','2022-09-22 14:35:16',1670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6882,'4000','121663846094','2022-09-22 14:35:16',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6883,'4000','121663846094','2022-09-22 14:35:16',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6884,'4000','121663846094','2022-09-22 14:35:16',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6885,'1110','121663846593','2022-09-22 14:44:48',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6886,'5500','121663846593','2022-09-22 14:44:48',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6887,'1000','121663846593','2022-09-22 14:44:48',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6888,'4000','121663846593','2022-09-22 14:44:48',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(6889,'1110','121663847093','2022-09-22 16:21:58',NULL,1282.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(6890,'5500','121663847093','2022-09-22 16:21:58',1282.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6891,'1000','121663847093','2022-09-22 16:21:58',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6892,'4000','121663847093','2022-09-22 16:21:58',NULL,2000.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(6893,'1110','121663852922','2022-09-22 16:25:07',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(6894,'1110','121663852922','2022-09-22 16:25:07',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(6895,'5500','121663852922','2022-09-22 16:25:07',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6896,'1000','121663852922','2022-09-22 16:25:07',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6897,'4000','121663852922','2022-09-22 16:25:07',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(6898,'4000','121663852922','2022-09-22 16:25:07',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(6899,'1110','121663855890','2022-09-22 18:13:41',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(6900,'5500','121663855890','2022-09-22 18:13:41',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6901,'1000','121663855890','2022-09-22 18:13:41',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6902,'4000','121663855890','2022-09-22 18:13:41',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(6903,'1110','121663859787','2022-09-22 18:19:54',NULL,1308.16,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6904,'5500','121663859787','2022-09-22 18:19:54',1308.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6905,'1000','121663859787','2022-09-22 18:19:54',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6906,'4000','121663859787','2022-09-22 18:19:54',NULL,1480.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(6907,'1110','121663859998','2022-09-22 18:53:14',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6908,'1110','121663859998','2022-09-22 18:53:14',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6909,'1110','121663859998','2022-09-22 18:53:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6910,'1110','121663859998','2022-09-22 18:53:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6911,'5500','121663859998','2022-09-22 18:53:14',743.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6912,'1000','121663859998','2022-09-22 18:53:14',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6913,'4000','121663859998','2022-09-22 18:53:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6914,'4000','121663859998','2022-09-22 18:53:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6915,'4000','121663859998','2022-09-22 18:53:14',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6916,'4000','121663859998','2022-09-22 18:53:14',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(6917,'1110','121663862006','2022-09-22 19:23:34',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6918,'5500','121663862006','2022-09-22 19:23:34',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6919,'1000','121663862006','2022-09-22 19:23:34',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6920,'4000','121663862006','2022-09-22 19:23:34',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6921,'1110','121663863822','2022-09-22 20:54:01',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(6922,'5500','121663863822','2022-09-22 20:54:01',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6923,'1000','121663863822','2022-09-22 20:54:01',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6924,'4000','121663863822','2022-09-22 20:54:01',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(6925,'1110','121663869329','2022-09-22 21:17:52',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(6926,'5500','121663869329','2022-09-22 21:17:52',1130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6927,'1000','121663869329','2022-09-22 21:17:52',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6928,'4000','121663869329','2022-09-22 21:17:52',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(6929,'1110','121663870695','2022-09-22 21:22:31',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(6930,'1110','121663870695','2022-09-22 21:22:31',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6931,'1110','121663870695','2022-09-22 21:22:31',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929192235','','No',NULL,NULL,''),(6932,'5500','121663870695','2022-09-22 21:22:31',3689.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6933,'1000','121663870695','2022-09-22 21:22:31',4880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6934,'4000','121663870695','2022-09-22 21:22:31',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(6935,'4000','121663870695','2022-09-22 21:22:31',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(6936,'4000','121663870695','2022-09-22 21:22:31',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929192235','','No',NULL,NULL,''),(6937,'1110','121663871115','2022-09-22 22:09:58',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387003585','','No',NULL,NULL,''),(6938,'5500','121663871115','2022-09-22 22:09:58',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6939,'1000','121663871115','2022-09-22 22:09:58',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6940,'4000','121663871115','2022-09-22 22:09:58',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387003585','','No',NULL,NULL,''),(6941,'1110','121663873833','2022-09-22 22:25:02',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6942,'5500','121663873833','2022-09-22 22:25:02',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6943,'1000','121663873833','2022-09-22 22:25:02',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6944,'4000','121663873833','2022-09-22 22:25:02',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(6945,'1110','121663874829','2022-09-22 22:42:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6946,'5500','121663874829','2022-09-22 22:42:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6947,'1000','121663874829','2022-09-22 22:42:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6948,'4000','121663874829','2022-09-22 22:42:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(6949,'1110','121663875859','2022-09-22 23:11:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6950,'5500','121663875859','2022-09-22 23:11:06',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6951,'1000','121663875859','2022-09-22 23:11:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6952,'4000','121663875859','2022-09-22 23:11:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6953,'1110','121663877469','2022-09-22 23:12:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6954,'5500','121663877469','2022-09-22 23:12:25',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6955,'1000','121663877469','2022-09-22 23:12:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6956,'4000','121663877469','2022-09-22 23:12:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6957,'1110','121663877552','2022-09-22 23:33:49',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6958,'1110','121663877552','2022-09-22 23:33:49',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(6959,'5500','121663877552','2022-09-22 23:33:49',2332.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6960,'1000','121663877552','2022-09-22 23:33:49',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6961,'4000','121663877552','2022-09-22 23:33:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(6962,'4000','121663877552','2022-09-22 23:33:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(6963,'1110','121663878954','2022-09-22 23:36:51',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6964,'1110','121663878954','2022-09-22 23:36:51',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(6965,'1110','121663878954','2022-09-22 23:36:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(6966,'1110','121663878954','2022-09-22 23:36:51',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6967,'5500','121663878954','2022-09-22 23:36:51',1387.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6968,'1000','121663878954','2022-09-22 23:36:51',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6969,'4000','121663878954','2022-09-22 23:36:51',NULL,180.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(6970,'4000','121663878954','2022-09-22 23:36:51',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(6971,'4000','121663878954','2022-09-22 23:36:51',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(6972,'4000','121663878954','2022-09-22 23:36:51',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(6973,'1110','121663879103','2022-09-23 00:06:19',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6974,'5500','121663879103','2022-09-23 00:06:19',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6975,'1000','121663879103','2022-09-23 00:06:19',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6976,'4000','121663879103','2022-09-23 00:06:19',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(6977,'1110','121663880887','2022-09-23 00:17:05',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(6978,'5500','121663880887','2022-09-23 00:17:05',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6979,'1000','121663880887','2022-09-23 00:17:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6980,'4000','121663880887','2022-09-23 00:17:05',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(6981,'1110','121663881446','2022-09-23 00:21:59',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(6982,'5500','121663881446','2022-09-23 00:21:59',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6983,'1000','121663881446','2022-09-23 00:21:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6984,'4000','121663881446','2022-09-23 00:21:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(6985,'1110','121663881732','2022-09-23 00:51:09',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6986,'5500','121663881732','2022-09-23 00:51:09',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6987,'1000','121663881732','2022-09-23 00:51:09',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6988,'4000','121663881732','2022-09-23 00:51:09',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(6989,'1110','121663883482','2022-09-23 01:06:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6990,'5500','121663883482','2022-09-23 01:06:37',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6991,'1000','121663883482','2022-09-23 01:06:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6992,'4000','121663883482','2022-09-23 01:06:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6993,'1110','121663884488','2022-09-23 01:51:50',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6994,'1110','121663884488','2022-09-23 01:51:50',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6995,'5500','121663884488','2022-09-23 01:51:50',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6996,'1000','121663884488','2022-09-23 01:51:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6997,'4000','121663884488','2022-09-23 01:51:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(6998,'4000','121663884488','2022-09-23 01:51:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(6999,'1110','121663887114','2022-09-23 01:55:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7000,'1110','121663887114','2022-09-23 01:55:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7001,'5500','121663887114','2022-09-23 01:55:05',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7002,'1000','121663887114','2022-09-23 01:55:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7003,'4000','121663887114','2022-09-23 01:55:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7004,'4000','121663887114','2022-09-23 01:55:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7005,'1110','121663887403','2022-09-23 01:57:44',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7006,'5500','121663887403','2022-09-23 01:57:44',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7007,'1000','121663887403','2022-09-23 01:57:44',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7008,'4000','121663887403','2022-09-23 01:57:44',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7016,'1000','121663887566','2022-09-23 03:11:45',4480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7023,'1110','121663887566','2022-09-23 03:11:45',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(7024,'1110','121663887566','2022-09-23 03:57:44',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7025,'1110','121663887566','2022-09-23 03:57:44',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7026,'1110','121663887566','2022-09-23 03:57:44',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7027,'5500','121663887566','2022-09-23 03:57:44',1320.56,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7028,'1000','121663887566','2022-09-23 03:11:45',1840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7029,'4000','121663887566','2022-09-23 03:11:45',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(7030,'4000','121663887566','2022-09-23 03:57:44',NULL,120.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7031,'4000','121663887566','2022-09-23 03:57:44',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7032,'4000','121663887566','2022-09-23 03:57:44',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7033,'1110','121663894697','2022-09-23 03:59:32',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7034,'1110','121663894697','2022-09-23 03:59:32',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7035,'1110','121663894697','2022-09-23 03:59:32',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7036,'5500','121663894697','2022-09-23 03:59:32',1542.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7037,'1000','121663894697','2022-09-23 03:59:32',2180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7038,'4000','121663894697','2022-09-23 03:59:32',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7039,'4000','121663894697','2022-09-23 03:59:32',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7040,'4000','121663894697','2022-09-23 03:59:32',NULL,180.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7041,'1110','121663945355','2022-09-23 18:02:59',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7042,'1110','121663945355','2022-09-23 18:02:59',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7043,'5500','121663945355','2022-09-23 18:02:59',372.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7044,'1000','121663945355','2022-09-23 18:02:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7045,'4000','121663945355','2022-09-23 18:02:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7046,'4000','121663945355','2022-09-23 18:02:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7047,'1110','121663946297','2022-09-23 18:18:27',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(7048,'5500','121663946297','2022-09-23 18:18:27',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7049,'1000','121663946297','2022-09-23 18:18:27',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7050,'4000','121663946297','2022-09-23 18:18:27',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(7051,'1110','121663946324','2022-09-23 18:42:19',NULL,119.33,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(7052,'5500','121663946324','2022-09-23 18:42:19',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7053,'1000','121663946324','2022-09-23 18:42:19',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7054,'4000','121663946324','2022-09-23 18:42:19',NULL,180.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(7055,'1110','121663947744','2022-09-23 18:54:13',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7056,'5500','121663947744','2022-09-23 18:54:13',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7057,'1000','121663947744','2022-09-23 18:54:13',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7058,'4000','121663947744','2022-09-23 18:54:13',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7059,'1110','121663948461','2022-09-23 19:25:33',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7060,'5500','121663948461','2022-09-23 19:25:33',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7061,'1000','121663948461','2022-09-23 19:25:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7062,'4000','121663948461','2022-09-23 19:25:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7063,'1110','121663950339','2022-09-23 20:10:39',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7064,'5500','121663950339','2022-09-23 20:10:39',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7065,'1000','121663950339','2022-09-23 20:10:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7066,'4000','121663950339','2022-09-23 20:10:39',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7067,'1110','121663953143','2022-09-23 20:14:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7068,'5500','121663953143','2022-09-23 20:14:06',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7069,'1000','121663953143','2022-09-23 20:14:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7070,'4000','121663953143','2022-09-23 20:14:06',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7071,'1110','121663953253','2022-09-23 20:29:55',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(7072,'1110','121663953253','2022-09-23 20:29:55',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(7073,'1110','121663953253','2022-09-23 20:29:55',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(7074,'1110','121663953253','2022-09-23 20:29:55',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7075,'1110','121663953253','2022-09-23 20:29:55',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(7076,'1110','121663953253','2022-09-23 20:29:55',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7077,'1110','121663953253','2022-09-23 20:29:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(7078,'5500','121663953253','2022-09-23 20:29:55',11830.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7079,'1000','121663953253','2022-09-23 20:29:55',16170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7080,'4000','121663953253','2022-09-23 20:29:55',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(7081,'4000','121663953253','2022-09-23 20:29:55',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(7082,'4000','121663953253','2022-09-23 20:29:55',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(7083,'4000','121663953253','2022-09-23 20:29:55',NULL,180.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7084,'4000','121663953253','2022-09-23 20:29:55',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(7085,'4000','121663953253','2022-09-23 20:29:55',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7086,'4000','121663953253','2022-09-23 20:29:55',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(7087,'1110','121663954389','2022-09-23 20:33:25',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7088,'5500','121663954389','2022-09-23 20:33:25',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7089,'1000','121663954389','2022-09-23 20:33:25',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7090,'4000','121663954389','2022-09-23 20:33:25',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7091,'1110','121663959016','2022-09-23 21:50:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7092,'5500','121663959016','2022-09-23 21:50:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7093,'1000','121663959016','2022-09-23 21:50:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7094,'4000','121663959016','2022-09-23 21:50:28',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7097,'1000','121663959032','2022-09-23 21:56:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7099,'1110','121663959032','2022-09-23 21:56:02',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7100,'1110','121663959032','2022-09-23 22:19:20',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(7101,'5500','121663959032','2022-09-23 22:19:20',456.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7102,'1000','121663959032','2022-09-23 21:56:02',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7103,'4000','121663959032','2022-09-23 21:56:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7104,'4000','121663959032','2022-09-23 22:19:20',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(7105,'1110','121663960764','2022-09-23 22:23:19',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7106,'1110','121663960764','2022-09-23 22:23:19',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7107,'1110','121663960764','2022-09-23 22:23:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7108,'1110','121663960764','2022-09-23 22:23:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7109,'5500','121663960764','2022-09-23 22:23:19',664.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7110,'1000','121663960764','2022-09-23 22:23:19',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7111,'4000','121663960764','2022-09-23 22:23:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7112,'4000','121663960764','2022-09-23 22:23:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7113,'4000','121663960764','2022-09-23 22:23:19',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7114,'4000','121663960764','2022-09-23 22:23:19',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7115,'1110','121663961186','2022-09-23 22:41:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7116,'5500','121663961186','2022-09-23 22:41:37',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7117,'1000','121663961186','2022-09-23 22:41:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7118,'4000','121663961186','2022-09-23 22:41:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7119,'1110','121663962224','2022-09-23 23:05:05',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(7120,'5500','121663962224','2022-09-23 23:05:05',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7121,'1000','121663962224','2022-09-23 23:05:05',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7122,'4000','121663962224','2022-09-23 23:05:05',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(7123,'1110','121663963646','2022-09-23 23:07:36',NULL,1730.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(7124,'5500','121663963646','2022-09-23 23:07:36',1730.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7125,'1000','121663963646','2022-09-23 23:07:36',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7126,'4000','121663963646','2022-09-23 23:07:36',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(7127,'1110','121663963854','2022-09-23 23:45:03',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322690379','','No',NULL,NULL,''),(7128,'5500','121663963854','2022-09-23 23:45:03',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7129,'1000','121663963854','2022-09-23 23:45:03',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7130,'4000','121663963854','2022-09-23 23:45:03',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322690379','','No',NULL,NULL,''),(7131,'1110','121663966073','2022-09-23 23:53:18',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(7132,'5500','121663966073','2022-09-23 23:53:18',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7133,'1000','121663966073','2022-09-23 23:53:18',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7134,'4000','121663966073','2022-09-23 23:53:18',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(7135,'1110','121663966421','2022-09-24 00:01:16',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7136,'1110','121663966421','2022-09-24 00:01:16',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7137,'1110','121663966421','2022-09-24 00:01:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7138,'1110','121663966421','2022-09-24 00:01:16',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7139,'1110','121663966421','2022-09-24 00:01:16',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7140,'5500','121663966421','2022-09-24 00:01:16',3319.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7141,'1000','121663966421','2022-09-24 00:01:16',4400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7142,'4000','121663966421','2022-09-24 00:01:16',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7143,'4000','121663966421','2022-09-24 00:01:16',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7144,'4000','121663966421','2022-09-24 00:01:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7145,'4000','121663966421','2022-09-24 00:01:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7146,'4000','121663966421','2022-09-24 00:01:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7147,'1110','121663966904','2022-09-24 00:02:06',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7148,'5500','121663966904','2022-09-24 00:02:06',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7149,'1000','121663966904','2022-09-24 00:02:06',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7150,'4000','121663966904','2022-09-24 00:02:06',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7151,'1110','121663967737','2022-09-24 00:17:29',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(7152,'1110','121663967737','2022-09-24 00:17:29',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7153,'5500','121663967737','2022-09-24 00:17:29',1804.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7154,'1000','121663967737','2022-09-24 00:17:29',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7155,'4000','121663967737','2022-09-24 00:17:29',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(7156,'4000','121663967737','2022-09-24 00:17:29',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7157,'1110','121663970808','2022-09-24 01:07:32',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(7158,'5500','121663970808','2022-09-24 01:07:32',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7159,'1000','121663970808','2022-09-24 01:07:32',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7160,'4000','121663970808','2022-09-24 01:07:32',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(7161,'1110','121663970943','2022-09-24 01:09:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7162,'5500','121663970943','2022-09-24 01:09:31',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7163,'1000','121663970943','2022-09-24 01:09:31',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7164,'4000','121663970943','2022-09-24 01:09:31',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7165,'1110','121663970977','2022-09-24 01:12:15',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7166,'5500','121663970977','2022-09-24 01:12:15',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7167,'1000','121663970977','2022-09-24 01:12:15',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7168,'4000','121663970977','2022-09-24 01:12:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7169,'1110','121663971324','2022-09-24 01:58:37',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7170,'1110','121663971324','2022-09-24 01:58:37',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7171,'1110','121663971324','2022-09-24 01:58:37',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7172,'5500','121663971324','2022-09-24 01:58:37',1825.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7173,'1000','121663971324','2022-09-24 01:58:37',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7174,'4000','121663971324','2022-09-24 01:58:37',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7175,'4000','121663971324','2022-09-24 01:58:37',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7176,'4000','121663971324','2022-09-24 01:58:37',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7177,'1110','121663974854','2022-09-24 02:15:10',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7178,'1110','121663974854','2022-09-24 02:15:10',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7179,'1110','121663974854','2022-09-24 02:15:10',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7180,'5500','121663974854','2022-09-24 02:15:10',823.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7181,'1000','121663974854','2022-09-24 02:15:10',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7182,'4000','121663974854','2022-09-24 02:15:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7183,'4000','121663974854','2022-09-24 02:15:10',NULL,180.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7184,'4000','121663974854','2022-09-24 02:15:10',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7185,'1110','121663975637','2022-09-24 02:28:17',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7186,'1110','121663975637','2022-09-24 02:28:17',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7187,'1110','121663975637','2022-09-24 02:28:17',NULL,0.00,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7188,'1110','121663975637','2022-09-24 02:28:17',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7189,'5500','121663975637','2022-09-24 02:28:17',494.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7190,'1000','121663975637','2022-09-24 02:28:17',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7191,'4000','121663975637','2022-09-24 02:28:17',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7192,'4000','121663975637','2022-09-24 02:28:17',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7193,'4000','121663975637','2022-09-24 02:28:17',NULL,0.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7194,'4000','121663975637','2022-09-24 02:28:17',NULL,400.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7195,'1110','121663975700','2022-09-24 02:59:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7196,'5500','121663975700','2022-09-24 02:59:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7197,'1000','121663975700','2022-09-24 02:59:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7198,'4000','121663975700','2022-09-24 02:59:05',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7199,'1110','121663977552','2022-09-24 03:00:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7200,'5500','121663977552','2022-09-24 03:00:01',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7201,'1000','121663977552','2022-09-24 03:00:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7202,'4000','121663977552','2022-09-24 03:00:01',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7203,'1110','121663977605','2022-09-24 03:14:50',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(7204,'5500','121663977605','2022-09-24 03:14:50',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7205,'1000','121663977605','2022-09-24 03:14:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7206,'4000','121663977605','2022-09-24 03:14:50',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(7207,'1110','121663978646','2022-09-24 04:09:22',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7208,'5500','121663978646','2022-09-24 04:09:22',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7209,'1000','121663978646','2022-09-24 04:09:22',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7210,'4000','121663978646','2022-09-24 04:09:22',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7211,'1110','121663981767','2022-09-24 04:12:27',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(7212,'1110','121663981767','2022-09-24 04:12:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7213,'1110','121663981767','2022-09-24 04:12:27',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7214,'5500','121663981767','2022-09-24 04:12:27',1722.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7215,'1000','121663981767','2022-09-24 04:12:27',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7216,'4000','121663981767','2022-09-24 04:12:27',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(7217,'4000','121663981767','2022-09-24 04:12:27',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7218,'4000','121663981767','2022-09-24 04:12:27',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7219,'1110','121663982171','2022-09-24 04:18:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7220,'5500','121663982171','2022-09-24 04:18:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7221,'1000','121663982171','2022-09-24 04:18:04',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7222,'4000','121663982171','2022-09-24 04:18:04',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7223,'1110','121663982287','2022-09-24 04:47:16',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7224,'1110','121663982287','2022-09-24 04:47:16',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(7225,'5500','121663982287','2022-09-24 04:47:16',1462.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7226,'1000','121663982287','2022-09-24 04:47:16',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7227,'4000','121663982287','2022-09-24 04:47:16',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7228,'4000','121663982287','2022-09-24 04:47:16',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(7229,'1110','121663984446','2022-09-24 05:18:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(7230,'5500','121663984446','2022-09-24 05:18:58',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7231,'1000','121663984446','2022-09-24 05:18:58',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7232,'4000','121663984446','2022-09-24 05:18:58',NULL,70.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(7233,'1110','121664034442','2022-09-24 19:09:46',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7234,'1110','121664034442','2022-09-24 19:09:46',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7235,'5500','121664034442','2022-09-24 19:09:46',78.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7236,'1000','121664034442','2022-09-24 19:09:46',130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7237,'4000','121664034442','2022-09-24 19:09:46',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7238,'4000','121664034442','2022-09-24 19:09:46',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7239,'1110','121664035791','2022-09-24 19:12:44',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7240,'5500','121664035791','2022-09-24 19:12:44',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7241,'1000','121664035791','2022-09-24 19:12:44',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7242,'4000','121664035791','2022-09-24 19:12:44',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7243,'1110','121664035976','2022-09-24 20:27:09',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(7244,'5500','121664035976','2022-09-24 20:27:09',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7245,'1000','121664035976','2022-09-24 20:27:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7246,'4000','121664035976','2022-09-24 20:27:09',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(7247,'1110','121664040592','2022-09-24 20:41:49',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7248,'5500','121664040592','2022-09-24 20:41:49',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7249,'1000','121664040592','2022-09-24 20:41:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7250,'4000','121664040592','2022-09-24 20:41:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7251,'1110','121664041389','2022-09-24 21:31:55',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7252,'5500','121664041389','2022-09-24 21:31:55',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7253,'1000','121664041389','2022-09-24 21:31:55',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7254,'4000','121664041389','2022-09-24 21:31:55',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7255,'1110','121664044319','2022-09-24 21:59:56',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(7256,'5500','121664044319','2022-09-24 21:59:56',1130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7257,'1000','121664044319','2022-09-24 21:59:56',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7258,'4000','121664044319','2022-09-24 21:59:56',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(7259,'1110','121664046410','2022-09-24 22:15:07',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506003599','','No',NULL,NULL,''),(7260,'5500','121664046410','2022-09-24 22:15:07',850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7261,'1000','121664046410','2022-09-24 22:15:07',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7262,'4000','121664046410','2022-09-24 22:15:07',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506003599','','No',NULL,NULL,''),(7263,'1110','121664046913','2022-09-24 22:25:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7264,'5500','121664046913','2022-09-24 22:25:55',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7265,'1000','121664046913','2022-09-24 22:25:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7266,'4000','121664046913','2022-09-24 22:25:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7267,'1110','121664047559','2022-09-24 22:40:22',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7268,'5500','121664047559','2022-09-24 22:40:22',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7269,'1000','121664047559','2022-09-24 22:40:22',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7270,'4000','121664047559','2022-09-24 22:40:22',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7271,'1110','121664048950','2022-09-24 22:51:25',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(7272,'5500','121664048950','2022-09-24 22:51:25',2070.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7273,'1000','121664048950','2022-09-24 22:51:25',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7274,'4000','121664048950','2022-09-24 22:51:25',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(7275,'1110','121664049250','2022-09-24 23:03:52',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7276,'5500','121664049250','2022-09-24 23:03:52',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7277,'1000','121664049250','2022-09-24 23:03:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7278,'4000','121664049250','2022-09-24 23:03:52',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7279,'1110','121664049835','2022-09-24 23:09:08',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(7280,'5500','121664049835','2022-09-24 23:09:08',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7281,'1000','121664049835','2022-09-24 23:09:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7282,'4000','121664049835','2022-09-24 23:09:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(7283,'1110','121664050360','2022-09-24 23:12:55',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7284,'5500','121664050360','2022-09-24 23:12:55',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7285,'1000','121664050360','2022-09-24 23:12:55',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7286,'4000','121664050360','2022-09-24 23:12:55',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7287,'1110','121664050379','2022-09-24 23:28:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7288,'1110','121664050379','2022-09-24 23:28:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7289,'1110','121664050379','2022-09-24 23:28:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7290,'1110','121664050379','2022-09-24 23:28:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7291,'5500','121664050379','2022-09-24 23:28:41',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7292,'1000','121664050379','2022-09-24 23:28:41',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7293,'4000','121664050379','2022-09-24 23:28:41',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7294,'4000','121664050379','2022-09-24 23:28:41',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7295,'4000','121664050379','2022-09-24 23:28:41',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7296,'4000','121664050379','2022-09-24 23:28:41',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7297,'1110','121664051357','2022-09-24 23:38:09',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(7298,'1110','121664051357','2022-09-24 23:38:09',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7299,'5500','121664051357','2022-09-24 23:38:09',562.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7300,'1000','121664051357','2022-09-24 23:38:09',780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7301,'4000','121664051357','2022-09-24 23:38:09',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(7302,'4000','121664051357','2022-09-24 23:38:09',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7303,'1110','121664051901','2022-09-24 23:51:27',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7304,'5500','121664051901','2022-09-24 23:51:27',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7305,'1000','121664051901','2022-09-24 23:51:27',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7306,'4000','121664051901','2022-09-24 23:51:27',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7307,'1110','121664052755','2022-09-24 23:53:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7308,'5500','121664052755','2022-09-24 23:53:28',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7309,'1000','121664052755','2022-09-24 23:53:28',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7310,'4000','121664052755','2022-09-24 23:53:28',NULL,200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7311,'1110','121664053681','2022-09-25 00:31:24',NULL,1257.93,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(7312,'5500','121664053681','2022-09-25 00:31:24',1257.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7313,'1000','121664053681','2022-09-25 00:31:24',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7314,'4000','121664053681','2022-09-25 00:31:24',NULL,1700.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(7315,'1110','121664055353','2022-09-25 00:36:44',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7316,'5500','121664055353','2022-09-25 00:36:44',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7317,'1000','121664055353','2022-09-25 00:36:44',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7318,'4000','121664055353','2022-09-25 00:36:44',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7319,'1110','121664055447','2022-09-25 00:52:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7320,'5500','121664055447','2022-09-25 00:52:31',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7321,'1000','121664055447','2022-09-25 00:52:31',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7322,'4000','121664055447','2022-09-25 00:52:31',NULL,70.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7323,'1110','121664056871','2022-09-25 01:07:39',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7324,'5500','121664056871','2022-09-25 01:07:39',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7325,'1000','121664056871','2022-09-25 01:07:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7326,'4000','121664056871','2022-09-25 01:07:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7327,'1110','121664057707','2022-09-25 01:17:28',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7328,'5500','121664057707','2022-09-25 01:17:28',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7329,'1000','121664057707','2022-09-25 01:17:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7330,'4000','121664057707','2022-09-25 01:17:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7331,'1110','121664057855','2022-09-25 01:30:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7332,'5500','121664057855','2022-09-25 01:30:11',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7333,'1000','121664057855','2022-09-25 01:30:11',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7334,'4000','121664057855','2022-09-25 01:30:11',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7335,'1110','121664060988','2022-09-25 02:10:02',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(7336,'5500','121664060988','2022-09-25 02:10:02',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7337,'1000','121664060988','2022-09-25 02:10:02',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7338,'4000','121664060988','2022-09-25 02:10:02',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(7339,'1110','121664061006','2022-09-25 02:11:32',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(7340,'1110','121664061006','2022-09-25 02:11:32',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7341,'5500','121664061006','2022-09-25 02:11:32',3944.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7342,'1000','121664061006','2022-09-25 02:11:32',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7343,'4000','121664061006','2022-09-25 02:11:32',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(7344,'4000','121664061006','2022-09-25 02:11:32',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7345,'1110','121664061197','2022-09-25 02:13:36',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7346,'5500','121664061197','2022-09-25 02:13:36',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7347,'1000','121664061197','2022-09-25 02:13:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7348,'4000','121664061197','2022-09-25 02:13:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7349,'1110','121664061774','2022-09-25 02:23:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7350,'1110','121664061774','2022-09-25 02:23:41',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7351,'5500','121664061774','2022-09-25 02:23:41',251.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7352,'1000','121664061774','2022-09-25 02:23:41',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7353,'4000','121664061774','2022-09-25 02:23:41',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7354,'4000','121664061774','2022-09-25 02:23:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7355,'1110','121664061853','2022-09-25 02:24:22',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7356,'5500','121664061853','2022-09-25 02:24:22',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7357,'1000','121664061853','2022-09-25 02:24:22',90.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7358,'4000','121664061853','2022-09-25 02:24:22',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7359,'1110','121664061867','2022-09-25 02:38:53',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7360,'1110','121664061867','2022-09-25 02:38:53',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7361,'5500','121664061867','2022-09-25 02:38:53',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7362,'1000','121664061867','2022-09-25 02:38:53',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7363,'4000','121664061867','2022-09-25 02:38:53',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7364,'4000','121664061867','2022-09-25 02:38:53',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7369,'1000','121664062737','2022-09-25 03:39:56',1840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7373,'1110','121664062737','2022-09-25 03:39:56',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7374,'5500','121664062737','2022-09-25 03:47:33',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7375,'1000','121664062737','2022-09-25 03:39:56',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7376,'4000','121664062737','2022-09-25 03:39:56',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7377,'1110','121664066898','2022-09-25 04:08:49',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7378,'1110','121664066898','2022-09-25 04:08:49',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7379,'1110','121664066898','2022-09-25 04:08:49',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7380,'1110','121664066898','2022-09-25 04:08:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7381,'5500','121664066898','2022-09-25 04:08:49',626.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7382,'1000','121664066898','2022-09-25 04:08:49',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7383,'4000','121664066898','2022-09-25 04:08:49',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7384,'4000','121664066898','2022-09-25 04:08:49',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7385,'4000','121664066898','2022-09-25 04:08:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7386,'4000','121664066898','2022-09-25 04:08:49',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7387,'1110','121664075619','2022-09-25 06:14:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7388,'1110','121664075619','2022-09-25 06:14:11',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7389,'1110','121664075619','2022-09-25 06:14:11',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7390,'5500','121664075619','2022-09-25 06:14:11',728.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7391,'1000','121664075619','2022-09-25 06:14:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7392,'4000','121664075619','2022-09-25 06:14:11',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7393,'4000','121664075619','2022-09-25 06:14:11',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7394,'4000','121664075619','2022-09-25 06:14:11',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7395,'1110','121664118996','2022-09-25 18:17:02',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7396,'1110','121664118996','2022-09-25 18:17:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7397,'5500','121664118996','2022-09-25 18:17:02',437.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7398,'1000','121664118996','2022-09-25 18:17:02',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7399,'4000','121664118996','2022-09-25 18:17:02',NULL,500.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7400,'4000','121664118996','2022-09-25 18:17:02',NULL,70.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7401,'1110','121664119026','2022-09-25 19:41:26',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7402,'5500','121664119026','2022-09-25 19:41:26',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7403,'1000','121664119026','2022-09-25 19:41:26',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7404,'4000','121664119026','2022-09-25 19:41:26',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7405,'1110','121664124103','2022-09-25 20:16:17',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7406,'1110','121664124103','2022-09-25 20:16:17',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7407,'1110','121664124103','2022-09-25 20:16:17',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7408,'5500','121664124103','2022-09-25 20:16:17',838.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7409,'1000','121664124103','2022-09-25 20:16:17',1210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7410,'4000','121664124103','2022-09-25 20:16:17',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7411,'4000','121664124103','2022-09-25 20:16:17',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7412,'4000','121664124103','2022-09-25 20:16:17',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7413,'1110','121664127748','2022-09-25 20:43:56',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7414,'1110','121664127748','2022-09-25 20:43:56',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7415,'5500','121664127748','2022-09-25 20:43:56',488.43,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7416,'1000','121664127748','2022-09-25 20:43:56',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7417,'4000','121664127748','2022-09-25 20:43:56',NULL,600.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7418,'4000','121664127748','2022-09-25 20:43:56',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7419,'1110','121664128932','2022-09-25 22:39:20',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7420,'1110','121664128932','2022-09-25 22:39:20',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7421,'1110','121664128932','2022-09-25 22:39:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7422,'5500','121664128932','2022-09-25 22:39:20',761.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7423,'1000','121664128932','2022-09-25 22:39:20',1060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7424,'4000','121664128932','2022-09-25 22:39:20',NULL,700.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(7425,'4000','121664128932','2022-09-25 22:39:20',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7426,'4000','121664128932','2022-09-25 22:39:20',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7427,'1110','121664138536','2022-09-26 00:17:26',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7428,'5500','121664138536','2022-09-26 00:17:26',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7429,'1000','121664138536','2022-09-26 00:17:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7430,'4000','121664138536','2022-09-26 00:17:26',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7431,'1110','121664141188','2022-09-26 00:30:29',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(7432,'5500','121664141188','2022-09-26 00:30:29',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7433,'1000','121664141188','2022-09-26 00:30:29',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7434,'4000','121664141188','2022-09-26 00:30:29',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(7435,'1110','121664141582','2022-09-26 02:17:23',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7436,'1110','121664141582','2022-09-26 02:17:23',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7437,'1110','121664141582','2022-09-26 02:17:23',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7438,'5500','121664141582','2022-09-26 02:17:23',2185.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7439,'1000','121664141582','2022-09-26 02:17:23',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7440,'4000','121664141582','2022-09-26 02:17:23',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7441,'4000','121664141582','2022-09-26 02:17:23',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7442,'4000','121664141582','2022-09-26 02:17:23',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7443,'1110','121664148135','2022-09-26 03:20:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7444,'1110','121664148135','2022-09-26 03:20:55',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(7445,'5500','121664148135','2022-09-26 03:20:55',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7446,'1000','121664148135','2022-09-26 03:20:55',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7447,'4000','121664148135','2022-09-26 03:20:55',NULL,90.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7448,'4000','121664148135','2022-09-26 03:20:55',NULL,90.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(7449,'1110','121664200869','2022-09-26 17:01:57',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7450,'1110','121664200869','2022-09-26 17:01:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7451,'5500','121664200869','2022-09-26 17:01:57',495.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7452,'1000','121664200869','2022-09-26 17:01:57',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7453,'4000','121664200869','2022-09-26 17:01:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7454,'4000','121664200869','2022-09-26 17:01:57',NULL,200.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7455,'1110','121664209735','2022-09-26 19:29:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7456,'5500','121664209735','2022-09-26 19:29:05',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7457,'1000','121664209735','2022-09-26 19:29:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7458,'4000','121664209735','2022-09-26 19:29:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7459,'1110','121664209750','2022-09-26 19:58:50',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7460,'5500','121664209750','2022-09-26 19:58:50',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7461,'1000','121664209750','2022-09-26 19:58:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7462,'4000','121664209750','2022-09-26 19:58:50',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7463,'1110','121664211617','2022-09-26 20:33:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7464,'1110','121664211617','2022-09-26 20:33:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7465,'5500','121664211617','2022-09-26 20:33:25',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7466,'1000','121664211617','2022-09-26 20:33:25',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7467,'4000','121664211617','2022-09-26 20:33:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7468,'4000','121664211617','2022-09-26 20:33:25',NULL,60.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7469,'1110','121664213990','2022-09-26 21:13:58',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7470,'5500','121664213990','2022-09-26 21:13:58',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7471,'1000','121664213990','2022-09-26 21:13:58',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7472,'4000','121664213990','2022-09-26 21:13:58',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7473,'1110','121664216063','2022-09-26 21:34:39',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7474,'5500','121664216063','2022-09-26 21:34:39',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7475,'1000','121664216063','2022-09-26 21:34:39',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7476,'4000','121664216063','2022-09-26 21:34:39',NULL,700.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7477,'1110','121664218491','2022-09-26 22:12:56',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(7478,'5500','121664218491','2022-09-26 22:12:56',1400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7479,'1000','121664218491','2022-09-26 22:12:56',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7480,'4000','121664218491','2022-09-26 22:12:56',NULL,2000.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(7481,'1110','121664219684','2022-09-26 22:32:31',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7482,'1110','121664219684','2022-09-26 22:32:31',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(7483,'1110','121664219684','2022-09-26 22:32:31',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7484,'5500','121664219684','2022-09-26 22:32:31',1291.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7485,'1000','121664219684','2022-09-26 22:32:31',1790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7486,'4000','121664219684','2022-09-26 22:32:31',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7487,'4000','121664219684','2022-09-26 22:32:31',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(7488,'4000','121664219684','2022-09-26 22:32:31',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7489,'1110','121664220755','2022-09-26 22:57:12',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7490,'5500','121664220755','2022-09-26 22:57:12',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7491,'1000','121664220755','2022-09-26 22:57:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7492,'4000','121664220755','2022-09-26 22:57:12',NULL,500.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7493,'1110','121664222236','2022-09-26 23:14:00',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7494,'1110','121664222236','2022-09-26 23:14:00',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7495,'5500','121664222236','2022-09-26 23:14:00',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7496,'1000','121664222236','2022-09-26 23:14:00',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7497,'4000','121664222236','2022-09-26 23:14:00',NULL,1550.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(7498,'4000','121664222236','2022-09-26 23:14:00',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7499,'1110','121664227839','2022-09-27 00:30:55',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(7500,'1110','121664227839','2022-09-27 00:30:55',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7501,'5500','121664227839','2022-09-27 00:30:55',2287.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7502,'1000','121664227839','2022-09-27 00:30:55',2970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7503,'4000','121664227839','2022-09-27 00:30:55',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(7504,'4000','121664227839','2022-09-27 00:30:55',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7505,'1110','121664228830','2022-09-27 00:47:24',NULL,920.00,'','12','1','Inventory sold','1','','sales','8908006354191','','No',NULL,NULL,''),(7506,'1110','121664228830','2022-09-27 00:47:24',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(7507,'1110','121664228830','2022-09-27 00:47:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7508,'5500','121664228830','2022-09-27 00:47:24',2208.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7509,'1000','121664228830','2022-09-27 00:47:24',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7510,'4000','121664228830','2022-09-27 00:47:24',NULL,1300.00,'','12','1','Good sold','1','','sales','8908006354191','','No',NULL,NULL,''),(7511,'4000','121664228830','2022-09-27 00:47:24',NULL,1550.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(7512,'4000','121664228830','2022-09-27 00:47:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(7513,'1110','121664276026','2022-09-27 13:54:07',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7514,'5500','121664276026','2022-09-27 13:54:07',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7515,'1000','121664276026','2022-09-27 13:54:07',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7516,'4000','121664276026','2022-09-27 13:54:07',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7517,'1110','121664288348','2022-09-27 17:19:19',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7518,'5500','121664288348','2022-09-27 17:19:19',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7519,'1000','121664288348','2022-09-27 17:19:19',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7520,'4000','121664288348','2022-09-27 17:19:19',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7521,'1110','121664289499','2022-09-27 19:15:17',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(7522,'5500','121664289499','2022-09-27 19:15:17',1400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7523,'1000','121664289499','2022-09-27 19:15:17',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7524,'4000','121664289499','2022-09-27 19:15:17',NULL,2000.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(7525,'1110','121664295417','2022-09-27 19:33:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7526,'5500','121664295417','2022-09-27 19:33:45',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7527,'1000','121664295417','2022-09-27 19:33:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7528,'4000','121664295417','2022-09-27 19:33:45',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7529,'1110','121664296431','2022-09-27 19:48:53',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7530,'1110','121664296431','2022-09-27 19:48:53',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7531,'5500','121664296431','2022-09-27 19:48:53',1210.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7532,'1000','121664296431','2022-09-27 19:48:53',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7533,'4000','121664296431','2022-09-27 19:48:53',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7534,'4000','121664296431','2022-09-27 19:48:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7535,'1110','121664297365','2022-09-27 20:26:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7536,'5500','121664297365','2022-09-27 20:26:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7537,'1000','121664297365','2022-09-27 20:26:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7538,'4000','121664297365','2022-09-27 20:26:49',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7539,'1110','121664299613','2022-09-27 20:37:13',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(7540,'1110','121664299613','2022-09-27 20:37:13',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(7541,'1110','121664299613','2022-09-27 20:37:13',NULL,372.90,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7542,'1110','121664299613','2022-09-27 20:37:13',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7543,'1110','121664299613','2022-09-27 20:37:13',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7544,'1110','121664299613','2022-09-27 20:37:13',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7545,'1110','121664299613','2022-09-27 20:37:13',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7546,'1110','121664299613','2022-09-27 20:37:13',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(7547,'5500','121664299613','2022-09-27 20:37:13',9159.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7548,'1000','121664299613','2022-09-27 20:37:13',12530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7549,'4000','121664299613','2022-09-27 20:37:13',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(7550,'4000','121664299613','2022-09-27 20:37:13',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(7551,'4000','121664299613','2022-09-27 20:37:13',NULL,500.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7552,'4000','121664299613','2022-09-27 20:37:13',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7553,'4000','121664299613','2022-09-27 20:37:13',NULL,600.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7554,'4000','121664299613','2022-09-27 20:37:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7555,'4000','121664299613','2022-09-27 20:37:13',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7556,'4000','121664299613','2022-09-27 20:37:13',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(7557,'1110','121664300254','2022-09-27 20:38:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7558,'5500','121664300254','2022-09-27 20:38:05',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7559,'1000','121664300254','2022-09-27 20:38:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7560,'4000','121664300254','2022-09-27 20:38:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7561,'1110','121664300289','2022-09-27 21:02:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7562,'5500','121664300289','2022-09-27 21:02:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7563,'1000','121664300289','2022-09-27 21:02:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7564,'4000','121664300289','2022-09-27 21:02:24',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7565,'1110','121664301752','2022-09-27 21:28:32',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(7566,'1110','121664301752','2022-09-27 21:28:32',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7567,'5500','121664301752','2022-09-27 21:28:32',3424.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7568,'1000','121664301752','2022-09-27 21:28:32',4580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7569,'4000','121664301752','2022-09-27 21:28:32',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(7570,'4000','121664301752','2022-09-27 21:28:32',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7571,'1110','121664303316','2022-09-27 21:38:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7572,'5500','121664303316','2022-09-27 21:38:43',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7573,'1000','121664303316','2022-09-27 21:38:43',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7574,'4000','121664303316','2022-09-27 21:38:43',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7575,'1110','121664303998','2022-09-27 21:48:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7576,'1110','121664303998','2022-09-27 21:48:44',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7577,'5500','121664303998','2022-09-27 21:48:44',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7578,'1000','121664303998','2022-09-27 21:48:44',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7579,'4000','121664303998','2022-09-27 21:48:44',NULL,300.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7580,'4000','121664303998','2022-09-27 21:48:44',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7581,'1110','121664304527','2022-09-27 21:56:15',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7582,'5500','121664304527','2022-09-27 21:56:15',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7583,'1000','121664304527','2022-09-27 21:56:15',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7584,'4000','121664304527','2022-09-27 21:56:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(7585,'1110','121664305030','2022-09-27 22:04:25',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7586,'5500','121664305030','2022-09-27 22:04:25',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7587,'1000','121664305030','2022-09-27 22:04:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7588,'4000','121664305030','2022-09-27 22:04:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7589,'1110','121664305496','2022-09-27 22:05:06',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(7590,'5500','121664305496','2022-09-27 22:05:06',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7591,'1000','121664305496','2022-09-27 22:05:06',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7592,'4000','121664305496','2022-09-27 22:05:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(7593,'1110','121664305790','2022-09-27 22:44:26',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(7594,'5500','121664305790','2022-09-27 22:44:26',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7595,'1000','121664305790','2022-09-27 22:44:26',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7596,'4000','121664305790','2022-09-27 22:44:26',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(7597,'1110','121664307931','2022-09-27 22:46:30',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7598,'5500','121664307931','2022-09-27 22:46:30',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7599,'1000','121664307931','2022-09-27 22:46:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7600,'4000','121664307931','2022-09-27 22:46:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7601,'1110','121664307998','2022-09-27 22:51:33',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7602,'5500','121664307998','2022-09-27 22:51:33',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7603,'1000','121664307998','2022-09-27 22:51:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7604,'4000','121664307998','2022-09-27 22:51:33',NULL,250.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7605,'1110','121664308325','2022-09-28 00:01:04',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(7606,'1110','121664308325','2022-09-28 00:01:04',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7607,'5500','121664308325','2022-09-28 00:01:04',1462.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7608,'1000','121664308325','2022-09-28 00:01:04',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7609,'4000','121664308325','2022-09-28 00:01:04',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(7610,'4000','121664308325','2022-09-28 00:01:04',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7611,'1110','121664312551','2022-09-28 00:13:53',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7612,'1110','121664312551','2022-09-28 00:13:53',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7613,'5500','121664312551','2022-09-28 00:13:53',481.36,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7614,'1000','121664312551','2022-09-28 00:13:53',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7615,'4000','121664312551','2022-09-28 00:13:53',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7616,'4000','121664312551','2022-09-28 00:13:53',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7617,'1110','121664314483','2022-09-28 00:36:39',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7618,'5500','121664314483','2022-09-28 00:36:39',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7619,'1000','121664314483','2022-09-28 00:36:39',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7620,'4000','121664314483','2022-09-28 00:36:39',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7621,'1110','121664314603','2022-09-28 00:53:27',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7622,'1110','121664314603','2022-09-28 00:53:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7623,'1110','121664314603','2022-09-28 00:53:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7624,'1110','121664314603','2022-09-28 00:53:27',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7625,'5500','121664314603','2022-09-28 00:53:27',1235.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7626,'1000','121664314603','2022-09-28 00:53:27',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7627,'4000','121664314603','2022-09-28 00:53:27',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7628,'4000','121664314603','2022-09-28 00:53:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7629,'4000','121664314603','2022-09-28 00:53:27',NULL,100.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7630,'4000','121664314603','2022-09-28 00:53:27',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7631,'1110','121664315947','2022-09-28 01:25:54',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7632,'1110','121664315947','2022-09-28 01:25:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7633,'1110','121664315947','2022-09-28 01:25:54',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7634,'1110','121664315947','2022-09-28 01:25:54',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7635,'5500','121664315947','2022-09-28 01:25:54',834.22,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7636,'1000','121664315947','2022-09-28 01:25:54',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7637,'4000','121664315947','2022-09-28 01:25:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7638,'4000','121664315947','2022-09-28 01:25:54',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7639,'4000','121664315947','2022-09-28 01:25:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7640,'4000','121664315947','2022-09-28 01:25:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(7641,'1110','121664317581','2022-09-28 01:48:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7642,'5500','121664317581','2022-09-28 01:48:28',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7643,'1000','121664317581','2022-09-28 01:48:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7644,'4000','121664317581','2022-09-28 01:48:28',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7645,'1110','121664321106','2022-09-28 02:36:46',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7646,'5500','121664321106','2022-09-28 02:36:46',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7647,'1000','121664321106','2022-09-28 02:36:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7648,'4000','121664321106','2022-09-28 02:36:46',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7649,'1110','121664321810','2022-09-28 03:08:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7650,'5500','121664321810','2022-09-28 03:08:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7651,'1000','121664321810','2022-09-28 03:08:55',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7652,'4000','121664321810','2022-09-28 03:08:55',NULL,300.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7653,'1110','121664323802','2022-09-28 03:10:37',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7654,'5500','121664323802','2022-09-28 03:10:37',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7655,'1000','121664323802','2022-09-28 03:10:37',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7656,'4000','121664323802','2022-09-28 03:10:37',NULL,60.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7657,'1110','121664324297','2022-09-28 03:18:59',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(7658,'5500','121664324297','2022-09-28 03:18:59',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7659,'1000','121664324297','2022-09-28 03:18:59',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7660,'4000','121664324297','2022-09-28 03:18:59',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(7661,'1110','121664324452','2022-09-28 03:21:12',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(7662,'5500','121664324452','2022-09-28 03:21:12',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7663,'1000','121664324452','2022-09-28 03:21:12',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7664,'4000','121664324452','2022-09-28 03:21:12',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(7665,'1110','121664324476','2022-09-28 03:22:15',NULL,179.00,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(7666,'5500','121664324476','2022-09-28 03:22:15',179.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7667,'1000','121664324476','2022-09-28 03:22:15',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7668,'4000','121664324476','2022-09-28 03:22:15',NULL,300.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(7669,'1110','121664324565','2022-09-28 03:22:57',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(7670,'5500','121664324565','2022-09-28 03:22:57',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7671,'1000','121664324565','2022-09-28 03:22:57',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''); INSERT INTO `debitcredit` VALUES (7672,'4000','121664324565','2022-09-28 03:22:57',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(7673,'1110','121664325324','2022-09-28 03:35:52',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7674,'5500','121664325324','2022-09-28 03:35:52',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7675,'1000','121664325324','2022-09-28 03:35:52',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7676,'4000','121664325324','2022-09-28 03:35:52',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7677,'1110','121664325355','2022-09-28 03:37:21',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7678,'5500','121664325355','2022-09-28 03:37:21',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7679,'1000','121664325355','2022-09-28 03:37:21',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7680,'4000','121664325355','2022-09-28 03:37:21',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(7681,'1110','121664325811','2022-09-28 03:44:12',NULL,1354.05,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7682,'5500','121664325811','2022-09-28 03:44:12',1354.05,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7683,'1000','121664325811','2022-09-28 03:44:12',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7684,'4000','121664325811','2022-09-28 03:44:12',NULL,2250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(7685,'1110','121664325938','2022-09-28 03:45:51',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7686,'5500','121664325938','2022-09-28 03:45:51',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7687,'1000','121664325938','2022-09-28 03:45:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7688,'4000','121664325938','2022-09-28 03:45:51',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7689,'1110','121664326008','2022-09-28 03:47:26',NULL,870.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7690,'5500','121664326008','2022-09-28 03:47:26',870.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7691,'1000','121664326008','2022-09-28 03:47:26',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7692,'4000','121664326008','2022-09-28 03:47:26',NULL,1150.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7693,'1110','121664326253','2022-09-28 03:51:04',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(7694,'5500','121664326253','2022-09-28 03:51:04',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7695,'1000','121664326253','2022-09-28 03:51:04',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7696,'4000','121664326253','2022-09-28 03:51:04',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(7697,'1110','121664326334','2022-09-28 03:52:28',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7698,'5500','121664326334','2022-09-28 03:52:28',929.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7699,'1000','121664326334','2022-09-28 03:52:28',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7700,'4000','121664326334','2022-09-28 03:52:28',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7701,'1110','121664326565','2022-09-28 03:56:33',NULL,1382.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7702,'5500','121664326565','2022-09-28 03:56:33',1382.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7703,'1000','121664326565','2022-09-28 03:56:33',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7704,'4000','121664326565','2022-09-28 03:56:33',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7705,'1110','121664326856','2022-09-28 04:01:03',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7706,'5500','121664326856','2022-09-28 04:01:03',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7707,'1000','121664326856','2022-09-28 04:01:03',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7708,'4000','121664326856','2022-09-28 04:01:03',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(7709,'1110','121664326866','2022-09-28 04:27:24',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7710,'5500','121664326866','2022-09-28 04:27:24',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7711,'1000','121664326866','2022-09-28 04:27:24',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7712,'4000','121664326866','2022-09-28 04:27:24',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7713,'1110','121664375094','2022-09-28 18:50:11',NULL,3172.60,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(7714,'1110','121664375094','2022-09-28 18:50:11',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7715,'5500','121664375094','2022-09-28 18:50:11',3499.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7716,'1000','121664375094','2022-09-28 18:50:11',3870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7717,'4000','121664375094','2022-09-28 18:50:11',NULL,3500.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(7718,'4000','121664375094','2022-09-28 18:50:11',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7719,'1110','121664380216','2022-09-28 18:50:30',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(7720,'5500','121664380216','2022-09-28 18:50:30',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7721,'1000','121664380216','2022-09-28 18:50:30',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7722,'4000','121664380216','2022-09-28 18:50:30',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(7723,'1110','121664380238','2022-09-28 19:22:25',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7724,'5500','121664380238','2022-09-28 19:22:25',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7725,'1000','121664380238','2022-09-28 19:22:25',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7726,'4000','121664380238','2022-09-28 19:22:25',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7727,'1110','121664382150','2022-09-28 19:32:42',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7728,'1110','121664382150','2022-09-28 19:32:42',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7729,'1110','121664382150','2022-09-28 19:32:42',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7730,'1110','121664382150','2022-09-28 19:32:42',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7731,'5500','121664382150','2022-09-28 19:32:42',1234.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7732,'1000','121664382150','2022-09-28 19:32:42',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7733,'4000','121664382150','2022-09-28 19:32:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7734,'4000','121664382150','2022-09-28 19:32:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7735,'4000','121664382150','2022-09-28 19:32:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7736,'4000','121664382150','2022-09-28 19:32:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(7737,'1110','121664383015','2022-09-28 19:44:21',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7738,'5500','121664383015','2022-09-28 19:44:21',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7739,'1000','121664383015','2022-09-28 19:44:21',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7740,'4000','121664383015','2022-09-28 19:44:21',NULL,300.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7741,'1110','121664384103','2022-09-28 19:56:00',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7742,'1110','121664384103','2022-09-28 19:56:00',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7743,'1110','121664384103','2022-09-28 19:56:00',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7744,'1110','121664384103','2022-09-28 19:56:00',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(7745,'5500','121664384103','2022-09-28 19:56:00',819.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7746,'1000','121664384103','2022-09-28 19:56:00',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7747,'4000','121664384103','2022-09-28 19:56:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7748,'4000','121664384103','2022-09-28 19:56:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7749,'4000','121664384103','2022-09-28 19:56:00',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7750,'4000','121664384103','2022-09-28 19:56:00',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(7751,'1110','121664384326','2022-09-28 20:04:47',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7752,'5500','121664384326','2022-09-28 20:04:47',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7753,'1000','121664384326','2022-09-28 20:04:47',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7754,'4000','121664384326','2022-09-28 20:04:47',NULL,300.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7755,'1110','121664384797','2022-09-28 21:19:00',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7756,'5500','121664384797','2022-09-28 21:19:00',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7757,'1000','121664384797','2022-09-28 21:19:00',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7758,'4000','121664384797','2022-09-28 21:19:00',NULL,300.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7759,'1110','121664389147','2022-09-28 21:29:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7760,'1110','121664389147','2022-09-28 21:29:31',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7761,'1110','121664389147','2022-09-28 21:29:31',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7762,'5500','121664389147','2022-09-28 21:29:31',724.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7763,'1000','121664389147','2022-09-28 21:29:31',1290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7764,'4000','121664389147','2022-09-28 21:29:31',NULL,850.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(7765,'4000','121664389147','2022-09-28 21:29:31',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7766,'4000','121664389147','2022-09-28 21:29:31',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7767,'1110','121664390084','2022-09-28 21:38:59',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(7768,'5500','121664390084','2022-09-28 21:38:59',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7769,'1000','121664390084','2022-09-28 21:38:59',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7770,'4000','121664390084','2022-09-28 21:38:59',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(7771,'1110','121664390525','2022-09-28 21:46:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7772,'5500','121664390525','2022-09-28 21:46:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7773,'1000','121664390525','2022-09-28 21:46:28',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7774,'4000','121664390525','2022-09-28 21:46:28',NULL,300.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7775,'1110','121664391168','2022-09-28 22:30:13',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7776,'1110','121664391168','2022-09-28 22:30:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7777,'5500','121664391168','2022-09-28 22:30:13',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7778,'1000','121664391168','2022-09-28 22:30:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7779,'4000','121664391168','2022-09-28 22:30:13',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7780,'4000','121664391168','2022-09-28 22:30:13',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7781,'1110','121664394703','2022-09-28 22:52:05',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(7782,'5500','121664394703','2022-09-28 22:52:05',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7783,'1000','121664394703','2022-09-28 22:52:05',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7784,'4000','121664394703','2022-09-28 22:52:05',NULL,3500.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(7785,'1110','121664395112','2022-09-28 23:46:54',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(7786,'5500','121664395112','2022-09-28 23:46:54',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7787,'1000','121664395112','2022-09-28 23:46:54',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7788,'4000','121664395112','2022-09-28 23:46:54',NULL,1500.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(7789,'1110','121664398073','2022-09-28 23:55:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7790,'1110','121664398073','2022-09-28 23:55:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7791,'5500','121664398073','2022-09-28 23:55:15',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7792,'1000','121664398073','2022-09-28 23:55:15',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7793,'4000','121664398073','2022-09-28 23:55:15',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7794,'4000','121664398073','2022-09-28 23:55:15',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7795,'1110','121664398819','2022-09-29 00:07:09',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7796,'5500','121664398819','2022-09-29 00:07:09',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7797,'1000','121664398819','2022-09-29 00:07:09',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7798,'4000','121664398819','2022-09-29 00:07:09',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7799,'1110','121664399233','2022-09-29 00:07:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7800,'1110','121664399233','2022-09-29 00:07:42',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(7801,'5500','121664399233','2022-09-29 00:07:42',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7802,'1000','121664399233','2022-09-29 00:07:42',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7803,'4000','121664399233','2022-09-29 00:07:42',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7804,'4000','121664399233','2022-09-29 00:07:42',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(7805,'1110','121664399306','2022-09-29 00:51:29',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7806,'1110','121664399306','2022-09-29 00:51:29',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7807,'5500','121664399306','2022-09-29 00:51:29',388.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7808,'1000','121664399306','2022-09-29 00:51:29',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7809,'4000','121664399306','2022-09-29 00:51:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(7810,'4000','121664399306','2022-09-29 00:51:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7811,'1110','121664402025','2022-09-29 01:10:56',NULL,119.33,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7812,'5500','121664402025','2022-09-29 01:10:56',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7813,'1000','121664402025','2022-09-29 01:10:56',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7814,'4000','121664402025','2022-09-29 01:10:56',NULL,200.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7815,'1110','121664403061','2022-09-29 01:11:27',NULL,119.33,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7816,'5500','121664403061','2022-09-29 01:11:27',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7817,'1000','121664403061','2022-09-29 01:11:27',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7818,'4000','121664403061','2022-09-29 01:11:27',NULL,200.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7819,'1110','121664403091','2022-09-29 01:29:38',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(7820,'1110','121664403091','2022-09-29 01:29:38',NULL,160.00,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7821,'1110','121664403091','2022-09-29 01:29:38',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7822,'1110','121664403091','2022-09-29 01:29:38',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7823,'5500','121664403091','2022-09-29 01:29:38',1337.11,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7824,'1000','121664403091','2022-09-29 01:29:38',1840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7825,'4000','121664403091','2022-09-29 01:29:38',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(7826,'4000','121664403091','2022-09-29 01:29:38',NULL,240.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(7827,'4000','121664403091','2022-09-29 01:29:38',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(7828,'4000','121664403091','2022-09-29 01:29:38',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7829,'1110','121664404353','2022-09-29 01:39:02',NULL,588.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(7830,'5500','121664404353','2022-09-29 01:39:02',588.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7831,'1000','121664404353','2022-09-29 01:39:02',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7832,'4000','121664404353','2022-09-29 01:39:02',NULL,920.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(7833,'1110','121664404766','2022-09-29 01:41:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7834,'5500','121664404766','2022-09-29 01:41:24',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7835,'1000','121664404766','2022-09-29 01:41:24',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7836,'4000','121664404766','2022-09-29 01:41:24',NULL,300.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7837,'1110','121664404982','2022-09-29 01:44:32',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7838,'5500','121664404982','2022-09-29 01:44:32',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7839,'1000','121664404982','2022-09-29 01:44:32',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7840,'4000','121664404982','2022-09-29 01:44:32',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7843,'1000','121664405134','2022-09-29 01:50:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7845,'1110','121664405134','2022-09-29 01:50:18',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7846,'5500','121664405134','2022-09-29 01:55:16',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7847,'1000','121664405134','2022-09-29 01:50:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7848,'4000','121664405134','2022-09-29 01:50:18',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7849,'1110','121664407368','2022-09-29 02:23:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7850,'5500','121664407368','2022-09-29 02:23:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7851,'1000','121664407368','2022-09-29 02:23:10',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7852,'4000','121664407368','2022-09-29 02:23:10',NULL,300.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7853,'1110','121664407397','2022-09-29 02:25:39',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7854,'5500','121664407397','2022-09-29 02:25:39',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7855,'1000','121664407397','2022-09-29 02:25:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7856,'4000','121664407397','2022-09-29 02:25:39',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(7857,'1110','121664447656','2022-09-29 13:34:49',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(7858,'1110','121664447656','2022-09-29 13:34:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7859,'5500','121664447656','2022-09-29 13:34:49',127.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7860,'1000','121664447656','2022-09-29 13:34:49',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7861,'4000','121664447656','2022-09-29 13:34:49',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(7862,'4000','121664447656','2022-09-29 13:34:49',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(7863,'1110','121664447692','2022-09-29 13:46:22',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7864,'5500','121664447692','2022-09-29 13:46:22',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7865,'1000','121664447692','2022-09-29 13:46:22',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7866,'4000','121664447692','2022-09-29 13:46:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(7867,'1110','121664459759','2022-09-29 17:08:06',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7868,'5500','121664459759','2022-09-29 17:08:06',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7869,'1000','121664459759','2022-09-29 17:08:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7870,'4000','121664459759','2022-09-29 17:08:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7871,'1110','121664460866','2022-09-29 19:33:34',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7872,'1110','121664460866','2022-09-29 19:33:34',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7873,'5500','121664460866','2022-09-29 19:33:34',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7874,'1000','121664460866','2022-09-29 19:33:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7875,'4000','121664460866','2022-09-29 19:33:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7876,'4000','121664460866','2022-09-29 19:33:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7877,'1110','121664469269','2022-09-29 19:57:19',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7878,'5500','121664469269','2022-09-29 19:57:19',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7879,'1000','121664469269','2022-09-29 19:57:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7880,'4000','121664469269','2022-09-29 19:57:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7881,'1110','121664470652','2022-09-29 20:20:50',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7882,'1110','121664470652','2022-09-29 20:20:50',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7883,'1110','121664470652','2022-09-29 20:20:50',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7884,'1110','121664470652','2022-09-29 20:20:50',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7885,'1110','121664470652','2022-09-29 20:20:50',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7886,'1110','121664470652','2022-09-29 20:20:50',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7887,'5500','121664470652','2022-09-29 20:20:50',2069.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7888,'1000','121664470652','2022-09-29 20:20:50',2880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7889,'4000','121664470652','2022-09-29 20:20:50',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7890,'4000','121664470652','2022-09-29 20:20:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(7891,'4000','121664470652','2022-09-29 20:20:50',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7892,'4000','121664470652','2022-09-29 20:20:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7893,'4000','121664470652','2022-09-29 20:20:50',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7894,'4000','121664470652','2022-09-29 20:20:50',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7895,'1110','121664472059','2022-09-29 20:36:22',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7896,'5500','121664472059','2022-09-29 20:36:22',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7897,'1000','121664472059','2022-09-29 20:36:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7898,'4000','121664472059','2022-09-29 20:36:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(7899,'1110','121664473428','2022-09-29 20:51:24',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7900,'5500','121664473428','2022-09-29 20:51:24',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7901,'1000','121664473428','2022-09-29 20:51:24',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7902,'4000','121664473428','2022-09-29 20:51:24',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(7903,'1110','121664473888','2022-09-29 21:13:16',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691345','','No',NULL,NULL,''),(7904,'1110','121664473888','2022-09-29 21:13:16',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691321','','No',NULL,NULL,''),(7905,'5500','121664473888','2022-09-29 21:13:16',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7906,'1000','121664473888','2022-09-29 21:13:16',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7907,'4000','121664473888','2022-09-29 21:13:16',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691345','','No',NULL,NULL,''),(7908,'4000','121664473888','2022-09-29 21:13:16',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691321','','No',NULL,NULL,''),(7909,'1110','121664475319','2022-09-29 21:28:07',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7910,'5500','121664475319','2022-09-29 21:28:07',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7911,'1000','121664475319','2022-09-29 21:28:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7912,'4000','121664475319','2022-09-29 21:28:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(7913,'1110','121664479769','2022-09-29 22:30:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(7914,'1110','121664479769','2022-09-29 22:30:20',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7915,'1110','121664479769','2022-09-29 22:30:20',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7916,'5500','121664479769','2022-09-29 22:30:20',744.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7917,'1000','121664479769','2022-09-29 22:30:20',1130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7918,'4000','121664479769','2022-09-29 22:30:20',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(7919,'4000','121664479769','2022-09-29 22:30:20',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7920,'4000','121664479769','2022-09-29 22:30:20',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(7921,'1110','121664481368','2022-09-29 22:56:19',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7922,'5500','121664481368','2022-09-29 22:56:19',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7923,'1000','121664481368','2022-09-29 22:56:19',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7924,'4000','121664481368','2022-09-29 22:56:19',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7925,'1110','121664483597','2022-09-30 00:08:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7926,'5500','121664483597','2022-09-30 00:08:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7927,'1000','121664483597','2022-09-30 00:08:26',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7928,'4000','121664483597','2022-09-30 00:08:26',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(7929,'1110','121664485866','2022-09-30 00:31:44',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(7930,'5500','121664485866','2022-09-30 00:31:44',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7931,'1000','121664485866','2022-09-30 00:31:44',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7932,'4000','121664485866','2022-09-30 00:31:44',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(7933,'1110','121664538254','2022-09-30 14:48:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(7934,'1110','121664538254','2022-09-30 14:48:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(7935,'1110','121664538254','2022-09-30 14:48:00',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(7936,'1110','121664538254','2022-09-30 14:48:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7937,'5500','121664538254','2022-09-30 14:48:00',1287.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7938,'1000','121664538254','2022-09-30 14:48:00',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7939,'4000','121664538254','2022-09-30 14:48:00',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(7940,'4000','121664538254','2022-09-30 14:48:00',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(7941,'4000','121664538254','2022-09-30 14:48:00',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(7942,'4000','121664538254','2022-09-30 14:48:00',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7943,'1110','121664538519','2022-09-30 15:01:09',NULL,1308.16,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7944,'5500','121664538519','2022-09-30 15:01:09',1308.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7945,'1000','121664538519','2022-09-30 15:01:09',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7946,'4000','121664538519','2022-09-30 15:01:09',NULL,1480.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(7947,'1110','121664539273','2022-09-30 16:25:56',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7948,'1110','121664539273','2022-09-30 16:25:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(7949,'5500','121664539273','2022-09-30 16:25:56',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7950,'1000','121664539273','2022-09-30 16:25:56',1630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7951,'4000','121664539273','2022-09-30 16:25:56',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7952,'4000','121664539273','2022-09-30 16:25:56',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(7953,'1110','121664544511','2022-09-30 16:32:26',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7954,'1110','121664544511','2022-09-30 16:32:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7955,'1110','121664544511','2022-09-30 16:32:26',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7956,'5500','121664544511','2022-09-30 16:32:26',438.29,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7957,'1000','121664544511','2022-09-30 16:32:26',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7958,'4000','121664544511','2022-09-30 16:32:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(7959,'4000','121664544511','2022-09-30 16:32:26',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(7960,'4000','121664544511','2022-09-30 16:32:26',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7961,'1110','121664544996','2022-09-30 17:14:01',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7962,'1110','121664544996','2022-09-30 17:14:01',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7963,'5500','121664544996','2022-09-30 17:14:01',825.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7964,'1000','121664544996','2022-09-30 17:14:01',1170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7965,'4000','121664544996','2022-09-30 17:14:01',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7966,'4000','121664544996','2022-09-30 17:14:01',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7967,'1110','121664549064','2022-09-30 18:01:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7968,'1110','121664549064','2022-09-30 18:01:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7969,'1110','121664549064','2022-09-30 18:01:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7970,'1110','121664549064','2022-09-30 18:01:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(7971,'5500','121664549064','2022-09-30 18:01:16',656.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7972,'1000','121664549064','2022-09-30 18:01:16',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7973,'4000','121664549064','2022-09-30 18:01:16',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7974,'4000','121664549064','2022-09-30 18:01:16',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7975,'4000','121664549064','2022-09-30 18:01:16',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(7976,'4000','121664549064','2022-09-30 18:01:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(7977,'1110','121664558392','2022-09-30 20:20:03',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7978,'5500','121664558392','2022-09-30 20:20:03',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7979,'1000','121664558392','2022-09-30 20:20:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7980,'4000','121664558392','2022-09-30 20:20:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(7981,'1110','121664558418','2022-09-30 20:56:31',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(7982,'1110','121664558418','2022-09-30 20:56:31',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7983,'5500','121664558418','2022-09-30 20:56:31',132.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7984,'1000','121664558418','2022-09-30 20:56:31',190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7985,'4000','121664558418','2022-09-30 20:56:31',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(7986,'4000','121664558418','2022-09-30 20:56:31',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(7987,'1110','121664560660','2022-09-30 22:13:07',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7988,'1110','121664560660','2022-09-30 22:13:07',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7989,'1110','121664560660','2022-09-30 22:13:07',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7990,'1110','121664560660','2022-09-30 22:13:07',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7991,'1110','121664560660','2022-09-30 22:13:07',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7992,'5500','121664560660','2022-09-30 22:13:07',2071.22,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7993,'1000','121664560660','2022-09-30 22:13:07',2960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7994,'4000','121664560660','2022-09-30 22:13:07',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(7995,'4000','121664560660','2022-09-30 22:13:07',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(7996,'4000','121664560660','2022-09-30 22:13:07',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7997,'4000','121664560660','2022-09-30 22:13:07',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(7998,'4000','121664560660','2022-09-30 22:13:07',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(7999,'1110','121664565326','2022-09-30 22:20:29',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8000,'5500','121664565326','2022-09-30 22:20:29',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8001,'1000','121664565326','2022-09-30 22:20:29',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8002,'4000','121664565326','2022-09-30 22:20:29',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8003,'1110','121664565697','2022-09-30 22:28:56',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(8004,'1110','121664565697','2022-09-30 22:28:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8005,'1110','121664565697','2022-09-30 22:28:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8006,'5500','121664565697','2022-09-30 22:28:56',1756.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8007,'1000','121664565697','2022-09-30 22:28:56',2460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8008,'4000','121664565697','2022-09-30 22:28:56',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(8009,'4000','121664565697','2022-09-30 22:28:56',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8010,'4000','121664565697','2022-09-30 22:28:56',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8011,'1110','121664566271','2022-09-30 22:31:44',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8012,'5500','121664566271','2022-09-30 22:31:44',315.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8013,'1000','121664566271','2022-09-30 22:31:44',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8014,'4000','121664566271','2022-09-30 22:31:44',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8015,'1110','121664566339','2022-09-30 22:56:28',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8016,'5500','121664566339','2022-09-30 22:56:28',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8017,'1000','121664566339','2022-09-30 22:56:28',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8018,'4000','121664566339','2022-09-30 22:56:28',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8019,'1110','121664567793','2022-09-30 23:03:08',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8020,'1110','121664567793','2022-09-30 23:03:08',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(8021,'5500','121664567793','2022-09-30 23:03:08',345.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8022,'1000','121664567793','2022-09-30 23:03:08',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8023,'4000','121664567793','2022-09-30 23:03:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8024,'4000','121664567793','2022-09-30 23:03:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(8025,'1110','121664568228','2022-09-30 23:11:56',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8026,'1110','121664568228','2022-09-30 23:11:56',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8027,'5500','121664568228','2022-09-30 23:11:56',2179.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8028,'1000','121664568228','2022-09-30 23:11:56',2820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8029,'4000','121664568228','2022-09-30 23:11:56',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8030,'4000','121664568228','2022-09-30 23:11:56',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8031,'1110','121664568980','2022-09-30 23:42:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8032,'1110','121664568980','2022-09-30 23:42:32',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(8033,'5500','121664568980','2022-09-30 23:42:32',455.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8034,'1000','121664568980','2022-09-30 23:42:32',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8035,'4000','121664568980','2022-09-30 23:42:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8036,'4000','121664568980','2022-09-30 23:42:32',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(8037,'1110','121664570586','2022-09-30 23:49:54',NULL,187.72,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(8038,'5500','121664570586','2022-09-30 23:49:54',187.72,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8039,'1000','121664570586','2022-09-30 23:49:54',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8040,'4000','121664570586','2022-09-30 23:49:54',NULL,240.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(8041,'1110','121664571039','2022-09-30 23:50:41',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(8042,'5500','121664571039','2022-09-30 23:50:41',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8043,'1000','121664571039','2022-09-30 23:50:41',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8044,'4000','121664571039','2022-09-30 23:50:41',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(8045,'1110','121664571308','2022-10-01 00:01:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8046,'5500','121664571308','2022-10-01 00:01:31',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8047,'1000','121664571308','2022-10-01 00:01:31',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8048,'4000','121664571308','2022-10-01 00:01:31',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8049,'1110','121664571696','2022-10-01 00:04:05',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(8050,'5500','121664571696','2022-10-01 00:04:05',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8051,'1000','121664571696','2022-10-01 00:04:05',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8052,'4000','121664571696','2022-10-01 00:04:05',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(8053,'1110','121664571850','2022-10-01 00:34:13',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8054,'5500','121664571850','2022-10-01 00:34:13',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8055,'1000','121664571850','2022-10-01 00:34:13',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8056,'4000','121664571850','2022-10-01 00:34:13',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8057,'1110','121664574785','2022-10-01 00:53:09',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(8058,'5500','121664574785','2022-10-01 00:53:09',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8059,'1000','121664574785','2022-10-01 00:53:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8060,'4000','121664574785','2022-10-01 00:53:09',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(8061,'1110','121664574896','2022-10-01 01:13:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8062,'5500','121664574896','2022-10-01 01:13:57',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8063,'1000','121664574896','2022-10-01 01:13:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8064,'4000','121664574896','2022-10-01 01:13:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8065,'1110','121664576069','2022-10-01 01:57:59',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8066,'1110','121664576069','2022-10-01 01:57:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8067,'1110','121664576069','2022-10-01 01:57:59',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8068,'1110','121664576069','2022-10-01 01:57:59',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8069,'5500','121664576069','2022-10-01 01:57:59',685.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8070,'1000','121664576069','2022-10-01 01:57:59',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8071,'4000','121664576069','2022-10-01 01:57:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8072,'4000','121664576069','2022-10-01 01:57:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8073,'4000','121664576069','2022-10-01 01:57:59',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8074,'4000','121664576069','2022-10-01 01:57:59',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8075,'1110','121664578766','2022-10-01 02:08:58',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8076,'1110','121664578766','2022-10-01 02:08:58',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8077,'5500','121664578766','2022-10-01 02:08:58',631.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8078,'1000','121664578766','2022-10-01 02:08:58',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8079,'4000','121664578766','2022-10-01 02:08:58',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8080,'4000','121664578766','2022-10-01 02:08:58',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(8081,'1110','121664579503','2022-10-01 02:12:12',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8082,'1110','121664579503','2022-10-01 02:12:12',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(8083,'1110','121664579503','2022-10-01 02:12:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8084,'5500','121664579503','2022-10-01 02:12:12',404.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8085,'1000','121664579503','2022-10-01 02:12:12',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8086,'4000','121664579503','2022-10-01 02:12:12',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8087,'4000','121664579503','2022-10-01 02:12:12',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(8088,'4000','121664579503','2022-10-01 02:12:12',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8089,'1110','121664579671','2022-10-01 03:01:45',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8090,'1110','121664579671','2022-10-01 03:01:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8091,'1110','121664579671','2022-10-01 03:01:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8092,'1110','121664579671','2022-10-01 03:01:45',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8093,'5500','121664579671','2022-10-01 03:01:45',534.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8094,'1000','121664579671','2022-10-01 03:01:45',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8095,'4000','121664579671','2022-10-01 03:01:45',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8096,'4000','121664579671','2022-10-01 03:01:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8097,'4000','121664579671','2022-10-01 03:01:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8098,'4000','121664579671','2022-10-01 03:01:45',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8099,'1110','121664631548','2022-10-01 18:02:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8100,'5500','121664631548','2022-10-01 18:02:00',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8101,'1000','121664631548','2022-10-01 18:02:00',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8102,'4000','121664631548','2022-10-01 18:02:00',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8103,'1110','121664636524','2022-10-01 18:03:10',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8104,'5500','121664636524','2022-10-01 18:03:10',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8105,'1000','121664636524','2022-10-01 18:03:10',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8106,'4000','121664636524','2022-10-01 18:03:10',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8107,'1110','121664636605','2022-10-01 18:41:52',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(8108,'5500','121664636605','2022-10-01 18:41:52',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8109,'1000','121664636605','2022-10-01 18:41:52',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8110,'4000','121664636605','2022-10-01 18:41:52',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(8111,'1110','121664639781','2022-10-01 19:04:36',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8112,'1110','121664639781','2022-10-01 19:04:36',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8113,'5500','121664639781','2022-10-01 19:04:36',693.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8114,'1000','121664639781','2022-10-01 19:04:36',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8115,'4000','121664639781','2022-10-01 19:04:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8116,'4000','121664639781','2022-10-01 19:04:36',NULL,460.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8117,'1110','121664640396','2022-10-01 19:13:37',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(8118,'1110','121664640396','2022-10-01 19:13:37',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8119,'5500','121664640396','2022-10-01 19:13:37',2243.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8120,'1000','121664640396','2022-10-01 19:13:37',2970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8121,'4000','121664640396','2022-10-01 19:13:37',NULL,2600.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(8122,'4000','121664640396','2022-10-01 19:13:37',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8123,'1110','121664643578','2022-10-01 20:02:16',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8124,'5500','121664643578','2022-10-01 20:02:16',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8125,'1000','121664643578','2022-10-01 20:02:16',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8126,'4000','121664643578','2022-10-01 20:02:16',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8127,'1110','121664643742','2022-10-01 20:16:39',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8128,'1110','121664643742','2022-10-01 20:16:39',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(8129,'5500','121664643742','2022-10-01 20:16:39',105.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8130,'1000','121664643742','2022-10-01 20:16:39',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8131,'4000','121664643742','2022-10-01 20:16:39',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8132,'4000','121664643742','2022-10-01 20:16:39',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(8133,'1110','121664644707','2022-10-01 20:34:27',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8134,'5500','121664644707','2022-10-01 20:34:27',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8135,'1000','121664644707','2022-10-01 20:34:27',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8136,'4000','121664644707','2022-10-01 20:34:27',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8137,'1110','121664645672','2022-10-01 20:39:09',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8138,'5500','121664645672','2022-10-01 20:39:09',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8139,'1000','121664645672','2022-10-01 20:39:09',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8140,'4000','121664645672','2022-10-01 20:39:09',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8141,'1110','121664645953','2022-10-01 20:49:09',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(8142,'1110','121664645953','2022-10-01 20:49:09',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8143,'1110','121664645953','2022-10-01 20:49:09',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8144,'1110','121664645953','2022-10-01 20:49:09',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8145,'5500','121664645953','2022-10-01 20:49:09',1003.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8146,'1000','121664645953','2022-10-01 20:49:09',1390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8147,'4000','121664645953','2022-10-01 20:49:09',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(8148,'4000','121664645953','2022-10-01 20:49:09',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8149,'4000','121664645953','2022-10-01 20:49:09',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8150,'4000','121664645953','2022-10-01 20:49:09',NULL,460.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8151,'1110','121664646561','2022-10-01 22:11:29',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(8152,'5500','121664646561','2022-10-01 22:11:29',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8153,'1000','121664646561','2022-10-01 22:11:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8154,'4000','121664646561','2022-10-01 22:11:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(8155,'1110','121664651493','2022-10-01 22:12:49',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(8156,'1110','121664651493','2022-10-01 22:12:49',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8157,'5500','121664651493','2022-10-01 22:12:49',132.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8158,'1000','121664651493','2022-10-01 22:12:49',190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8159,'4000','121664651493','2022-10-01 22:12:49',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(8160,'4000','121664651493','2022-10-01 22:12:49',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8161,'1110','121664651596','2022-10-01 22:13:28',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8162,'5500','121664651596','2022-10-01 22:13:28',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8163,'1000','121664651596','2022-10-01 22:13:28',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8164,'4000','121664651596','2022-10-01 22:13:28',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8165,'1110','121664651612','2022-10-01 22:35:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8166,'5500','121664651612','2022-10-01 22:35:40',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8167,'1000','121664651612','2022-10-01 22:35:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8168,'4000','121664651612','2022-10-01 22:35:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8169,'1110','121664652976','2022-10-01 22:45:26',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(8170,'1110','121664652976','2022-10-01 22:45:26',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(8171,'5500','121664652976','2022-10-01 22:45:26',1230.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8172,'1000','121664652976','2022-10-01 22:45:26',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8173,'4000','121664652976','2022-10-01 22:45:26',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(8174,'4000','121664652976','2022-10-01 22:45:26',NULL,1550.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(8175,'1110','121664653562','2022-10-01 22:46:54',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(8176,'5500','121664653562','2022-10-01 22:46:54',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8177,'1000','121664653562','2022-10-01 22:46:54',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8178,'4000','121664653562','2022-10-01 22:46:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(8179,'1110','121664653721','2022-10-01 22:51:34',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(8180,'1110','121664653721','2022-10-01 22:51:34',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8181,'5500','121664653721','2022-10-01 22:51:34',579.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8182,'1000','121664653721','2022-10-01 22:51:34',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8183,'4000','121664653721','2022-10-01 22:51:34',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(8184,'4000','121664653721','2022-10-01 22:51:34',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8185,'1110','121664653898','2022-10-01 22:54:38',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8186,'5500','121664653898','2022-10-01 22:54:38',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8187,'1000','121664653898','2022-10-01 22:54:38',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8188,'4000','121664653898','2022-10-01 22:54:38',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8189,'1110','121664654217','2022-10-01 23:24:03',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322691321','','No',NULL,NULL,''),(8190,'5500','121664654217','2022-10-01 23:24:03',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8191,'1000','121664654217','2022-10-01 23:24:03',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8192,'4000','121664654217','2022-10-01 23:24:03',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322691321','','No',NULL,NULL,''),(8193,'1110','121664655847','2022-10-01 23:29:49',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(8194,'5500','121664655847','2022-10-01 23:29:49',1417.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8195,'1000','121664655847','2022-10-01 23:29:49',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8196,'4000','121664655847','2022-10-01 23:29:49',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(8197,'1110','121664656340','2022-10-01 23:36:30',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8198,'1110','121664656340','2022-10-01 23:36:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8199,'5500','121664656340','2022-10-01 23:36:30',693.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8200,'1000','121664656340','2022-10-01 23:36:30',1070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8201,'4000','121664656340','2022-10-01 23:36:30',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8202,'4000','121664656340','2022-10-01 23:36:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8203,'1110','121664656610','2022-10-01 23:37:39',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8204,'1110','121664656610','2022-10-01 23:37:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8205,'5500','121664656610','2022-10-01 23:37:39',112.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8206,'1000','121664656610','2022-10-01 23:37:39',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8207,'4000','121664656610','2022-10-01 23:37:39',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8208,'4000','121664656610','2022-10-01 23:37:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8209,'1110','121664656879','2022-10-02 00:03:54',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(8210,'5500','121664656879','2022-10-02 00:03:54',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8211,'1000','121664656879','2022-10-02 00:03:54',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8212,'4000','121664656879','2022-10-02 00:03:54',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(8213,'1110','121664658285','2022-10-02 00:05:06',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8214,'5500','121664658285','2022-10-02 00:05:06',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8215,'1000','121664658285','2022-10-02 00:05:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8216,'4000','121664658285','2022-10-02 00:05:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8217,'1110','121664658310','2022-10-02 00:05:22',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8218,'5500','121664658310','2022-10-02 00:05:22',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8219,'1000','121664658310','2022-10-02 00:05:22',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8220,'4000','121664658310','2022-10-02 00:05:22',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8221,'1110','121664658342','2022-10-02 00:11:20',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(8222,'1110','121664658342','2022-10-02 00:11:20',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(8223,'1110','121664658342','2022-10-02 00:11:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8224,'1110','121664658342','2022-10-02 00:11:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8225,'1110','121664658342','2022-10-02 00:11:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8226,'5500','121664658342','2022-10-02 00:11:20',4783.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8227,'1000','121664658342','2022-10-02 00:11:20',7050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8228,'4000','121664658342','2022-10-02 00:11:20',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(8229,'4000','121664658342','2022-10-02 00:11:20',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(8230,'4000','121664658342','2022-10-02 00:11:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8231,'4000','121664658342','2022-10-02 00:11:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8232,'4000','121664658342','2022-10-02 00:11:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8233,'1110','121664658814','2022-10-02 00:14:26',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8234,'1110','121664658814','2022-10-02 00:14:26',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8235,'5500','121664658814','2022-10-02 00:14:26',1452.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8236,'1000','121664658814','2022-10-02 00:14:26',1920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8237,'4000','121664658814','2022-10-02 00:14:26',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8238,'4000','121664658814','2022-10-02 00:14:26',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8239,'1110','121664658938','2022-10-02 00:24:17',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8240,'1110','121664658938','2022-10-02 00:24:17',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8241,'5500','121664658938','2022-10-02 00:24:17',617.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8242,'1000','121664658938','2022-10-02 00:24:17',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8243,'4000','121664658938','2022-10-02 00:24:17',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8244,'4000','121664658938','2022-10-02 00:24:17',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8245,'1110','121664659502','2022-10-02 00:26:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8246,'5500','121664659502','2022-10-02 00:26:06',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8247,'1000','121664659502','2022-10-02 00:26:06',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8248,'4000','121664659502','2022-10-02 00:26:06',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8249,'1110','121664659571','2022-10-02 00:38:52',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8250,'1110','121664659571','2022-10-02 00:38:52',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(8251,'5500','121664659571','2022-10-02 00:38:52',347.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8252,'1000','121664659571','2022-10-02 00:38:52',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8253,'4000','121664659571','2022-10-02 00:38:52',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8254,'4000','121664659571','2022-10-02 00:38:52',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(8255,'1110','121664660354','2022-10-02 00:41:09',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8256,'5500','121664660354','2022-10-02 00:41:09',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8257,'1000','121664660354','2022-10-02 00:41:09',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8258,'4000','121664660354','2022-10-02 00:41:09',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8259,'1110','121664661067','2022-10-02 01:23:54',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8260,'5500','121664661067','2022-10-02 01:23:54',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8261,'1000','121664661067','2022-10-02 01:23:54',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8262,'4000','121664661067','2022-10-02 01:23:54',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8263,'1110','121664663078','2022-10-02 01:47:32',NULL,2381.40,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8264,'1110','121664663078','2022-10-02 01:47:32',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8265,'1110','121664663078','2022-10-02 01:47:32',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8266,'1110','121664663078','2022-10-02 01:47:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8267,'5500','121664663078','2022-10-02 01:47:32',3148.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8268,'1000','121664663078','2022-10-02 01:47:32',3950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8269,'4000','121664663078','2022-10-02 01:47:32',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8270,'4000','121664663078','2022-10-02 01:47:32',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8271,'4000','121664663078','2022-10-02 01:47:32',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8272,'4000','121664663078','2022-10-02 01:47:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8273,'1110','121664664514','2022-10-02 01:48:44',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(8274,'5500','121664664514','2022-10-02 01:48:44',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8275,'1000','121664664514','2022-10-02 01:48:44',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8276,'4000','121664664514','2022-10-02 01:48:44',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(8277,'1110','121664664537','2022-10-02 01:53:29',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8278,'5500','121664664537','2022-10-02 01:53:29',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8279,'1000','121664664537','2022-10-02 01:53:29',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8280,'4000','121664664537','2022-10-02 01:53:29',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8281,'1110','121664664813','2022-10-02 01:57:01',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8282,'5500','121664664813','2022-10-02 01:57:01',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8283,'1000','121664664813','2022-10-02 01:57:01',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8284,'4000','121664664813','2022-10-02 01:57:01',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8285,'1110','121664665026','2022-10-02 02:03:40',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8286,'1110','121664665026','2022-10-02 02:03:40',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8287,'1110','121664665026','2022-10-02 02:03:40',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8288,'5500','121664665026','2022-10-02 02:03:40',1105.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8289,'1000','121664665026','2022-10-02 02:03:40',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8290,'4000','121664665026','2022-10-02 02:03:40',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8291,'4000','121664665026','2022-10-02 02:03:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8292,'4000','121664665026','2022-10-02 02:03:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8293,'1110','121664665425','2022-10-02 02:23:13',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8294,'5500','121664665425','2022-10-02 02:23:13',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8295,'1000','121664665425','2022-10-02 02:23:13',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8296,'4000','121664665425','2022-10-02 02:23:13',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8297,'1110','121664666598','2022-10-02 02:28:37',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8298,'1110','121664666598','2022-10-02 02:28:37',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8299,'5500','121664666598','2022-10-02 02:28:37',635.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8300,'1000','121664666598','2022-10-02 02:28:37',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8301,'4000','121664666598','2022-10-02 02:28:37',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8302,'4000','121664666598','2022-10-02 02:28:37',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8303,'1110','121664666945','2022-10-02 03:00:33',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8304,'1110','121664666945','2022-10-02 03:00:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8305,'5500','121664666945','2022-10-02 03:00:33',664.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8306,'1000','121664666945','2022-10-02 03:00:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8307,'4000','121664666945','2022-10-02 03:00:33',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8308,'4000','121664666945','2022-10-02 03:00:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8309,'1110','121664668848','2022-10-02 03:28:13',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8310,'5500','121664668848','2022-10-02 03:28:13',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8311,'1000','121664668848','2022-10-02 03:28:13',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8312,'4000','121664668848','2022-10-02 03:28:13',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8313,'1110','121664670498','2022-10-02 03:30:35',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8314,'5500','121664670498','2022-10-02 03:30:35',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8315,'1000','121664670498','2022-10-02 03:30:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8316,'4000','121664670498','2022-10-02 03:30:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8317,'1110','121664671752','2022-10-02 04:25:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8318,'5500','121664671752','2022-10-02 04:25:33',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8319,'1000','121664671752','2022-10-02 04:25:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8320,'4000','121664671752','2022-10-02 04:25:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8321,'1110','121664673937','2022-10-02 04:27:00',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(8322,'5500','121664673937','2022-10-02 04:27:00',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8323,'1000','121664673937','2022-10-02 04:27:00',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8324,'4000','121664673937','2022-10-02 04:27:00',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(8325,'1110','121664674024','2022-10-02 04:55:59',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8326,'1110','121664674024','2022-10-02 04:55:59',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8327,'5500','121664674024','2022-10-02 04:55:59',2044.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8328,'1000','121664674024','2022-10-02 04:55:59',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8329,'4000','121664674024','2022-10-02 04:55:59',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8330,'4000','121664674024','2022-10-02 04:55:59',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8331,'1110','121664676174','2022-10-02 05:05:03',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8332,'5500','121664676174','2022-10-02 05:05:03',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8333,'1000','121664676174','2022-10-02 05:05:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8334,'4000','121664676174','2022-10-02 05:05:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8335,'1110','121664676306','2022-10-02 05:39:52',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8336,'5500','121664676306','2022-10-02 05:39:52',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8337,'1000','121664676306','2022-10-02 05:39:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8338,'4000','121664676306','2022-10-02 05:39:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8339,'1110','121664713224','2022-10-02 15:20:34',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8340,'5500','121664713224','2022-10-02 15:20:34',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8341,'1000','121664713224','2022-10-02 15:20:34',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8342,'4000','121664713224','2022-10-02 15:20:34',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8343,'1110','121664718591','2022-10-02 16:50:36',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8344,'1110','121664718591','2022-10-02 16:50:36',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8345,'1110','121664718591','2022-10-02 16:50:36',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8346,'5500','121664718591','2022-10-02 16:50:36',1416.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8347,'1000','121664718591','2022-10-02 16:50:36',1880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8348,'4000','121664718591','2022-10-02 16:50:36',NULL,880.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8349,'4000','121664718591','2022-10-02 16:50:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8350,'4000','121664718591','2022-10-02 16:50:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8351,'1110','121664718955','2022-10-02 16:59:51',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8352,'5500','121664718955','2022-10-02 16:59:51',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8353,'1000','121664718955','2022-10-02 16:59:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8354,'4000','121664718955','2022-10-02 16:59:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8355,'1110','121664719195','2022-10-02 17:50:31',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8356,'5500','121664719195','2022-10-02 17:50:31',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8357,'1000','121664719195','2022-10-02 17:50:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8358,'4000','121664719195','2022-10-02 17:50:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8359,'1110','121664722303','2022-10-02 18:24:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8360,'1110','121664722303','2022-10-02 18:24:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8361,'1110','121664722303','2022-10-02 18:24:00',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(8362,'5500','121664722303','2022-10-02 18:24:00',591.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8363,'1000','121664722303','2022-10-02 18:24:00',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8364,'4000','121664722303','2022-10-02 18:24:00',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8365,'4000','121664722303','2022-10-02 18:24:00',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8366,'4000','121664722303','2022-10-02 18:24:00',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(8367,'1110','121664724263','2022-10-02 19:11:20',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8368,'1110','121664724263','2022-10-02 19:11:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8369,'5500','121664724263','2022-10-02 19:11:20',375.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8370,'1000','121664724263','2022-10-02 19:11:20',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8371,'4000','121664724263','2022-10-02 19:11:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8372,'4000','121664724263','2022-10-02 19:11:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8373,'1110','121664727130','2022-10-02 19:16:03',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8374,'5500','121664727130','2022-10-02 19:16:03',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8375,'1000','121664727130','2022-10-02 19:16:03',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8376,'4000','121664727130','2022-10-02 19:16:03',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8377,'1110','121664728765','2022-10-02 20:21:51',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8378,'1110','121664728765','2022-10-02 20:21:51',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8379,'5500','121664728765','2022-10-02 20:21:51',519.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8380,'1000','121664728765','2022-10-02 20:21:51',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8381,'4000','121664728765','2022-10-02 20:21:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8382,'4000','121664728765','2022-10-02 20:21:51',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8383,'1110','121664731314','2022-10-02 20:40:41',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8384,'5500','121664731314','2022-10-02 20:40:41',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8385,'1000','121664731314','2022-10-02 20:40:41',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8386,'4000','121664731314','2022-10-02 20:40:41',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8387,'1110','121664732571','2022-10-02 20:57:24',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8388,'5500','121664732571','2022-10-02 20:57:24',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8389,'1000','121664732571','2022-10-02 20:57:24',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8390,'4000','121664732571','2022-10-02 20:57:24',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8391,'1110','121664737581','2022-10-02 22:06:30',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(8392,'1110','121664737581','2022-10-02 22:06:30',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(8393,'5500','121664737581','2022-10-02 22:06:30',1057.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8394,'1000','121664737581','2022-10-02 22:06:30',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8395,'4000','121664737581','2022-10-02 22:06:30',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(8396,'4000','121664737581','2022-10-02 22:06:30',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(8397,'1110','121664737690','2022-10-02 22:09:19',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(8398,'1110','121664737690','2022-10-02 22:09:19',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(8399,'5500','121664737690','2022-10-02 22:09:19',4000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8400,'1000','121664737690','2022-10-02 22:09:19',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8401,'4000','121664737690','2022-10-02 22:09:19',NULL,2000.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(8402,'4000','121664737690','2022-10-02 22:09:19',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(8403,'1110','121664738068','2022-10-02 22:20:22',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(8404,'1110','121664738068','2022-10-02 22:20:22',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(8405,'1110','121664738068','2022-10-02 22:20:22',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(8406,'5500','121664738068','2022-10-02 22:20:22',3048.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8407,'1000','121664738068','2022-10-02 22:20:22',4550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8408,'4000','121664738068','2022-10-02 22:20:22',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(8409,'4000','121664738068','2022-10-02 22:20:22',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(8410,'4000','121664738068','2022-10-02 22:20:22',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(8411,'1110','121664738567','2022-10-02 22:26:16',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8412,'5500','121664738567','2022-10-02 22:26:16',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8413,'1000','121664738567','2022-10-02 22:26:16',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8414,'4000','121664738567','2022-10-02 22:26:16',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8415,'1110','121664738781','2022-10-02 22:40:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8416,'5500','121664738781','2022-10-02 22:40:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8417,'1000','121664738781','2022-10-02 22:40:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8418,'4000','121664738781','2022-10-02 22:40:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8419,'1110','121664739688','2022-10-02 23:18:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8420,'5500','121664739688','2022-10-02 23:18:11',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8421,'1000','121664739688','2022-10-02 23:18:11',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8422,'4000','121664739688','2022-10-02 23:18:11',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(8423,'1110','121664741895','2022-10-02 23:20:37',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6002039008686','','No',NULL,NULL,''),(8424,'1110','121664741895','2022-10-02 23:20:37',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8425,'5500','121664741895','2022-10-02 23:20:37',2538.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8426,'1000','121664741895','2022-10-02 23:20:37',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8427,'4000','121664741895','2022-10-02 23:20:37',NULL,2000.00,'','12','1','Good sold','1','','sales','6002039008686','','No',NULL,NULL,''),(8428,'4000','121664741895','2022-10-02 23:20:37',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8429,'1110','121664742354','2022-10-02 23:37:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8430,'5500','121664742354','2022-10-02 23:37:27',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8431,'1000','121664742354','2022-10-02 23:37:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8432,'4000','121664742354','2022-10-02 23:37:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8433,'1110','121664743050','2022-10-02 23:48:01',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8434,'1110','121664743050','2022-10-02 23:48:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8435,'5500','121664743050','2022-10-02 23:48:01',668.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8436,'1000','121664743050','2022-10-02 23:48:01',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8437,'4000','121664743050','2022-10-02 23:48:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8438,'4000','121664743050','2022-10-02 23:48:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8439,'1110','121664743686','2022-10-03 00:11:13',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8440,'5500','121664743686','2022-10-03 00:11:13',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8441,'1000','121664743686','2022-10-03 00:11:13',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8442,'4000','121664743686','2022-10-03 00:11:13',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8443,'1110','121664745109','2022-10-03 00:12:33',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8444,'1110','121664745109','2022-10-03 00:12:33',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(8445,'1110','121664745109','2022-10-03 00:12:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8446,'5500','121664745109','2022-10-03 00:12:33',851.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8447,'1000','121664745109','2022-10-03 00:12:33',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8448,'4000','121664745109','2022-10-03 00:12:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8449,'4000','121664745109','2022-10-03 00:12:33',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(8450,'4000','121664745109','2022-10-03 00:12:33',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8451,'1110','121664745159','2022-10-03 00:13:50',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8452,'5500','121664745159','2022-10-03 00:13:50',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8453,'1000','121664745159','2022-10-03 00:13:50',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8454,'4000','121664745159','2022-10-03 00:13:50',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8455,'1110','121664745446','2022-10-03 00:18:42',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8456,'5500','121664745446','2022-10-03 00:18:42',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8457,'1000','121664745446','2022-10-03 00:18:42',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8458,'4000','121664745446','2022-10-03 00:18:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8459,'1110','121664745528','2022-10-03 00:30:38',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8460,'1110','121664745528','2022-10-03 00:30:38',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8461,'1110','121664745528','2022-10-03 00:30:38',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8462,'5500','121664745528','2022-10-03 00:30:38',651.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8463,'1000','121664745528','2022-10-03 00:30:38',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8464,'4000','121664745528','2022-10-03 00:30:38',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8465,'4000','121664745528','2022-10-03 00:30:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8466,'4000','121664745528','2022-10-03 00:30:38',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8467,'1110','121664746306','2022-10-03 00:59:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8468,'5500','121664746306','2022-10-03 00:59:56',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8469,'1000','121664746306','2022-10-03 00:59:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8470,'4000','121664746306','2022-10-03 00:59:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8471,'1110','121664748000','2022-10-03 02:03:03',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8472,'5500','121664748000','2022-10-03 02:03:03',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8473,'1000','121664748000','2022-10-03 02:03:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8474,'4000','121664748000','2022-10-03 02:03:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8475,'1110','121664751787','2022-10-03 02:07:38',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8476,'5500','121664751787','2022-10-03 02:07:38',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8477,'1000','121664751787','2022-10-03 02:07:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8478,'4000','121664751787','2022-10-03 02:07:38',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8479,'1110','121664752272','2022-10-03 02:29:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8480,'5500','121664752272','2022-10-03 02:29:30',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8481,'1000','121664752272','2022-10-03 02:29:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8482,'4000','121664752272','2022-10-03 02:29:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8483,'1110','121664753470','2022-10-03 02:33:50',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8484,'5500','121664753470','2022-10-03 02:33:50',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8485,'1000','121664753470','2022-10-03 02:33:50',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8486,'4000','121664753470','2022-10-03 02:33:50',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8487,'1110','121664786679','2022-10-03 11:45:00',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8488,'5500','121664786679','2022-10-03 11:45:00',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8489,'1000','121664786679','2022-10-03 11:45:00',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8490,'4000','121664786679','2022-10-03 11:45:00',NULL,460.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8491,'1110','121664799962','2022-10-03 15:58:05',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(8492,'5500','121664799962','2022-10-03 15:58:05',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8493,'1000','121664799962','2022-10-03 15:58:05',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8494,'4000','121664799962','2022-10-03 15:58:05',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(8495,'1110','121664801934','2022-10-03 17:22:28',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8496,'1110','121664801934','2022-10-03 17:22:28',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(8497,'5500','121664801934','2022-10-03 17:22:28',1627.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8498,'1000','121664801934','2022-10-03 17:22:28',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8499,'4000','121664801934','2022-10-03 17:22:28',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8500,'4000','121664801934','2022-10-03 17:22:28',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(8501,'1110','121664807059','2022-10-03 18:17:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8502,'5500','121664807059','2022-10-03 18:17:49',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8503,'1000','121664807059','2022-10-03 18:17:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8504,'4000','121664807059','2022-10-03 18:17:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8505,'1110','121664810273','2022-10-03 18:35:52',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8506,'1110','121664810273','2022-10-03 18:35:52',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(8507,'5500','121664810273','2022-10-03 18:35:52',121.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8508,'1000','121664810273','2022-10-03 18:35:52',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8509,'4000','121664810273','2022-10-03 18:35:52',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8510,'4000','121664810273','2022-10-03 18:35:52',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(8511,'1110','121664811387','2022-10-03 18:57:16',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8512,'5500','121664811387','2022-10-03 18:57:16',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8513,'1000','121664811387','2022-10-03 18:57:16',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8514,'4000','121664811387','2022-10-03 18:57:16',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(8515,'1110','121664812845','2022-10-03 19:06:56',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8516,'5500','121664812845','2022-10-03 19:06:56',1850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8517,'1000','121664812845','2022-10-03 19:06:56',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8518,'4000','121664812845','2022-10-03 19:06:56',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8519,'1110','121664814362','2022-10-03 19:57:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8520,'5500','121664814362','2022-10-03 19:57:04',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8521,'1000','121664814362','2022-10-03 19:57:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8522,'4000','121664814362','2022-10-03 19:57:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8523,'1110','121664816284','2022-10-03 21:05:24',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8524,'5500','121664816284','2022-10-03 21:05:24',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8525,'1000','121664816284','2022-10-03 21:05:24',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8526,'4000','121664816284','2022-10-03 21:05:24',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8527,'1110','121664820328','2022-10-03 21:34:54',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(8528,'5500','121664820328','2022-10-03 21:34:54',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8529,'1000','121664820328','2022-10-03 21:34:54',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8530,'4000','121664820328','2022-10-03 21:34:54',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(8531,'1110','121664822099','2022-10-03 21:39:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8532,'5500','121664822099','2022-10-03 21:39:45',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8533,'1000','121664822099','2022-10-03 21:39:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8534,'4000','121664822099','2022-10-03 21:39:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(8535,'1110','121664822474','2022-10-03 22:04:21',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8536,'1110','121664822474','2022-10-03 22:04:21',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8537,'1110','121664822474','2022-10-03 22:04:21',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8538,'5500','121664822474','2022-10-03 22:04:21',1525.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8539,'1000','121664822474','2022-10-03 22:04:21',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8540,'4000','121664822474','2022-10-03 22:04:21',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8541,'4000','121664822474','2022-10-03 22:04:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8542,'4000','121664822474','2022-10-03 22:04:21',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8543,'1110','121664824032','2022-10-03 22:10:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8544,'1110','121664824032','2022-10-03 22:10:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8545,'1110','121664824032','2022-10-03 22:10:29',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8546,'5500','121664824032','2022-10-03 22:10:29',391.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8547,'1000','121664824032','2022-10-03 22:10:29',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8548,'4000','121664824032','2022-10-03 22:10:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8549,'4000','121664824032','2022-10-03 22:10:29',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8550,'4000','121664824032','2022-10-03 22:10:29',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8551,'1110','121664824267','2022-10-03 22:23:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8552,'1110','121664824267','2022-10-03 22:23:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8553,'1110','121664824267','2022-10-03 22:23:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8554,'5500','121664824267','2022-10-03 22:23:17',305.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8555,'1000','121664824267','2022-10-03 22:23:17',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8556,'4000','121664824267','2022-10-03 22:23:17',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8557,'4000','121664824267','2022-10-03 22:23:17',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8558,'4000','121664824267','2022-10-03 22:23:17',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8559,'1110','121664826490','2022-10-03 22:49:19',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(8560,'1110','121664826490','2022-10-03 22:49:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8561,'1110','121664826490','2022-10-03 22:49:19',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8562,'1110','121664826490','2022-10-03 22:49:19',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8563,'5500','121664826490','2022-10-03 22:49:19',1739.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8564,'1000','121664826490','2022-10-03 22:49:19',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8565,'4000','121664826490','2022-10-03 22:49:19',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(8566,'4000','121664826490','2022-10-03 22:49:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8567,'4000','121664826490','2022-10-03 22:49:19',NULL,160.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8568,'4000','121664826490','2022-10-03 22:49:19',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8569,'1110','121664827116','2022-10-03 23:02:31',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8570,'5500','121664827116','2022-10-03 23:02:31',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8571,'1000','121664827116','2022-10-03 23:02:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8572,'4000','121664827116','2022-10-03 23:02:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8573,'1110','121664827356','2022-10-03 23:10:23',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8574,'5500','121664827356','2022-10-03 23:10:23',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8575,'1000','121664827356','2022-10-03 23:10:23',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8576,'4000','121664827356','2022-10-03 23:10:23',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(8577,'1110','121664828090','2022-10-03 23:15:14',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(8578,'5500','121664828090','2022-10-03 23:15:14',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8579,'1000','121664828090','2022-10-03 23:15:14',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8580,'4000','121664828090','2022-10-03 23:15:14',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(8581,'1110','121664830209','2022-10-04 00:43:07',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8582,'1110','121664830209','2022-10-04 00:43:07',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(8583,'5500','121664830209','2022-10-04 00:43:07',1337.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8584,'1000','121664830209','2022-10-04 00:43:07',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8585,'4000','121664830209','2022-10-04 00:43:07',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8586,'4000','121664830209','2022-10-04 00:43:07',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(8587,'1110','121664833860','2022-10-04 01:08:23',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8588,'5500','121664833860','2022-10-04 01:08:23',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8589,'1000','121664833860','2022-10-04 01:08:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8590,'4000','121664833860','2022-10-04 01:08:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8591,'1110','121664834907','2022-10-04 01:13:03',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(8592,'5500','121664834907','2022-10-04 01:13:03',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8593,'1000','121664834907','2022-10-04 01:13:03',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8594,'4000','121664834907','2022-10-04 01:13:03',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(8595,'1110','121664838218','2022-10-04 02:04:48',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8596,'5500','121664838218','2022-10-04 02:04:48',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8597,'1000','121664838218','2022-10-04 02:04:48',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8598,'4000','121664838218','2022-10-04 02:04:48',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8599,'1110','121664838295','2022-10-04 02:53:33',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(8600,'1110','121664838295','2022-10-04 02:53:33',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8601,'1110','121664838295','2022-10-04 02:53:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8602,'1110','121664838295','2022-10-04 02:53:33',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8603,'1110','121664838295','2022-10-04 02:53:33',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8604,'1110','121664838295','2022-10-04 02:53:33',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8605,'5500','121664838295','2022-10-04 02:53:33',2365.84,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8606,'1000','121664838295','2022-10-04 02:53:33',3230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8607,'4000','121664838295','2022-10-04 02:53:33',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(8608,'4000','121664838295','2022-10-04 02:53:33',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8609,'4000','121664838295','2022-10-04 02:53:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8610,'4000','121664838295','2022-10-04 02:53:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8611,'4000','121664838295','2022-10-04 02:53:33',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8612,'4000','121664838295','2022-10-04 02:53:33',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8613,'1110','121664841218','2022-10-04 03:13:28',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8614,'1110','121664841218','2022-10-04 03:13:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8615,'5500','121664841218','2022-10-04 03:13:28',566.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8616,'1000','121664841218','2022-10-04 03:13:28',790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8617,'4000','121664841218','2022-10-04 03:13:28',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8618,'4000','121664841218','2022-10-04 03:13:28',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8619,'1110','121664842524','2022-10-04 03:52:45',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8620,'5500','121664842524','2022-10-04 03:52:45',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8621,'1000','121664842524','2022-10-04 03:52:45',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8622,'4000','121664842524','2022-10-04 03:52:45',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8623,'1110','121664881341','2022-10-04 14:02:33',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8624,'5500','121664881341','2022-10-04 14:02:33',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8625,'1000','121664881341','2022-10-04 14:02:33',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8626,'4000','121664881341','2022-10-04 14:02:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8627,'1110','121664891428','2022-10-04 16:50:38',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8628,'5500','121664891428','2022-10-04 16:50:38',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8629,'1000','121664891428','2022-10-04 16:50:38',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8630,'4000','121664891428','2022-10-04 16:50:38',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8631,'1110','121664891443','2022-10-04 18:50:30',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8632,'5500','121664891443','2022-10-04 18:50:30',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8633,'1000','121664891443','2022-10-04 18:50:30',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8634,'4000','121664891443','2022-10-04 18:50:30',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8635,'1110','121664898709','2022-10-04 19:34:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8636,'1110','121664898709','2022-10-04 19:34:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8637,'5500','121664898709','2022-10-04 19:34:45',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8638,'1000','121664898709','2022-10-04 19:34:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8639,'4000','121664898709','2022-10-04 19:34:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8640,'4000','121664898709','2022-10-04 19:34:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8641,'1110','121664901307','2022-10-04 19:38:45',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8642,'5500','121664901307','2022-10-04 19:38:45',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8643,'1000','121664901307','2022-10-04 19:38:45',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8644,'4000','121664901307','2022-10-04 19:38:45',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(8645,'1110','121664901528','2022-10-04 21:20:05',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(8646,'5500','121664901528','2022-10-04 21:20:05',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8647,'1000','121664901528','2022-10-04 21:20:05',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8648,'4000','121664901528','2022-10-04 21:20:05',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(8649,'1110','121664907633','2022-10-04 21:23:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8650,'1110','121664907633','2022-10-04 21:23:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8651,'5500','121664907633','2022-10-04 21:23:46',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8652,'1000','121664907633','2022-10-04 21:23:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8653,'4000','121664907633','2022-10-04 21:23:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8654,'4000','121664907633','2022-10-04 21:23:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8655,'1110','121664907859','2022-10-04 21:39:55',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8656,'1110','121664907859','2022-10-04 21:39:55',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8657,'5500','121664907859','2022-10-04 21:39:55',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8658,'1000','121664907859','2022-10-04 21:39:55',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8659,'4000','121664907859','2022-10-04 21:39:55',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8660,'4000','121664907859','2022-10-04 21:39:55',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8661,'1110','121664908855','2022-10-04 21:42:16',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(8662,'5500','121664908855','2022-10-04 21:42:16',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8663,'1000','121664908855','2022-10-04 21:42:16',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8664,'4000','121664908855','2022-10-04 21:42:16',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(8665,'1110','121664908951','2022-10-04 22:16:53',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8666,'5500','121664908951','2022-10-04 22:16:53',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8667,'1000','121664908951','2022-10-04 22:16:53',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8668,'4000','121664908951','2022-10-04 22:16:53',NULL,920.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8669,'1110','121664911066','2022-10-04 22:42:19',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8670,'5500','121664911066','2022-10-04 22:42:19',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8671,'1000','121664911066','2022-10-04 22:42:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8672,'4000','121664911066','2022-10-04 22:42:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8673,'1110','121664912589','2022-10-04 23:29:18',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8674,'5500','121664912589','2022-10-04 23:29:18',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8675,'1000','121664912589','2022-10-04 23:29:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8676,'4000','121664912589','2022-10-04 23:29:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8677,'1110','121664915391','2022-10-04 23:52:19',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8678,'1110','121664915391','2022-10-04 23:52:19',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(8679,'1110','121664915391','2022-10-04 23:52:19',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8680,'5500','121664915391','2022-10-04 23:52:19',1136.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8681,'1000','121664915391','2022-10-04 23:52:19',1520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8682,'4000','121664915391','2022-10-04 23:52:19',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8683,'4000','121664915391','2022-10-04 23:52:19',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(8684,'4000','121664915391','2022-10-04 23:52:19',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(8685,'1110','121664916833','2022-10-05 00:40:56',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8686,'5500','121664916833','2022-10-05 00:40:56',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8687,'1000','121664916833','2022-10-05 00:40:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8688,'4000','121664916833','2022-10-05 00:40:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8689,'1110','121664921298','2022-10-05 01:08:30',NULL,2855.34,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(8690,'5500','121664921298','2022-10-05 01:08:30',2855.34,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8691,'1000','121664921298','2022-10-05 01:08:30',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8692,'4000','121664921298','2022-10-05 01:08:30',NULL,3150.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(8693,'1110','121664921314','2022-10-05 01:23:30',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(8694,'5500','121664921314','2022-10-05 01:23:30',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8695,'1000','121664921314','2022-10-05 01:23:30',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8696,'4000','121664921314','2022-10-05 01:23:30',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(8697,'1110','121664922285','2022-10-05 01:43:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8698,'5500','121664922285','2022-10-05 01:43:36',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8699,'1000','121664922285','2022-10-05 01:43:36',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8700,'4000','121664922285','2022-10-05 01:43:36',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8701,'1110','121664923419','2022-10-05 01:52:20',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(8702,'1110','121664923419','2022-10-05 01:52:20',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(8703,'5500','121664923419','2022-10-05 01:52:20',1184.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8704,'1000','121664923419','2022-10-05 01:52:20',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8705,'4000','121664923419','2022-10-05 01:52:20',NULL,1500.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(8706,'4000','121664923419','2022-10-05 01:52:20',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(8707,'1110','121664924623','2022-10-05 02:04:06',NULL,84.00,'','12','1','Inventory sold','1','','sales','5449000061478','','No',NULL,NULL,''),(8708,'5500','121664924623','2022-10-05 02:04:06',84.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8709,'1000','121664924623','2022-10-05 02:04:06',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8710,'4000','121664924623','2022-10-05 02:04:06',NULL,180.00,'','12','1','Good sold','1','','sales','5449000061478','','No',NULL,NULL,''),(8711,'1110','121664924670','2022-10-05 02:04:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8712,'1110','121664924670','2022-10-05 02:04:46',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8713,'5500','121664924670','2022-10-05 02:04:46',332.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8714,'1000','121664924670','2022-10-05 02:04:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8715,'4000','121664924670','2022-10-05 02:04:46',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8716,'4000','121664924670','2022-10-05 02:04:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8717,'1110','121664924690','2022-10-05 02:24:34',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8718,'5500','121664924690','2022-10-05 02:24:34',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8719,'1000','121664924690','2022-10-05 02:24:34',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8720,'4000','121664924690','2022-10-05 02:24:34',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8721,'1110','121664925908','2022-10-05 03:56:24',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(8722,'5500','121664925908','2022-10-05 03:56:24',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8723,'1000','121664925908','2022-10-05 03:56:24',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8724,'4000','121664925908','2022-10-05 03:56:24',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(8725,'1110','121664931698','2022-10-05 04:02:33',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(8726,'5500','121664931698','2022-10-05 04:02:33',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8727,'1000','121664931698','2022-10-05 04:02:33',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8728,'4000','121664931698','2022-10-05 04:02:33',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(8729,'1110','121664931757','2022-10-05 04:16:13',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8730,'1110','121664931757','2022-10-05 04:16:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8731,'1110','121664931757','2022-10-05 04:16:13',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8732,'5500','121664931757','2022-10-05 04:16:13',826.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8733,'1000','121664931757','2022-10-05 04:16:13',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8734,'4000','121664931757','2022-10-05 04:16:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8735,'4000','121664931757','2022-10-05 04:16:13',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8736,'4000','121664931757','2022-10-05 04:16:13',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8737,'1110','121664968736','2022-10-05 14:19:17',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(8738,'5500','121664968736','2022-10-05 14:19:17',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8739,'1000','121664968736','2022-10-05 14:19:17',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8740,'4000','121664968736','2022-10-05 14:19:17',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(8741,'1110','121664969065','2022-10-05 14:25:29',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8742,'5500','121664969065','2022-10-05 14:25:29',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8743,'1000','121664969065','2022-10-05 14:25:29',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8744,'4000','121664969065','2022-10-05 14:25:29',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8745,'1110','121664969226','2022-10-05 16:23:38',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8746,'1110','121664969226','2022-10-05 16:23:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(8747,'5500','121664969226','2022-10-05 16:23:38',191.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8748,'1000','121664969226','2022-10-05 16:23:38',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8749,'4000','121664969226','2022-10-05 16:23:38',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8750,'4000','121664969226','2022-10-05 16:23:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(8751,'1110','121664976552','2022-10-05 16:29:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8752,'5500','121664976552','2022-10-05 16:29:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8753,'1000','121664976552','2022-10-05 16:29:26',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8754,'4000','121664976552','2022-10-05 16:29:26',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8755,'1110','121664976570','2022-10-05 16:51:51',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(8756,'5500','121664976570','2022-10-05 16:51:51',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8757,'1000','121664976570','2022-10-05 16:51:51',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8758,'4000','121664976570','2022-10-05 16:51:51',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(8759,'1110','121664977959','2022-10-05 16:53:09',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8760,'5500','121664977959','2022-10-05 16:53:09',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8761,'1000','121664977959','2022-10-05 16:53:09',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8762,'4000','121664977959','2022-10-05 16:53:09',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8763,'1110','121664986687','2022-10-05 19:18:39',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8764,'1110','121664986687','2022-10-05 19:18:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8765,'1110','121664986687','2022-10-05 19:18:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8766,'5500','121664986687','2022-10-05 19:18:39',818.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8767,'1000','121664986687','2022-10-05 19:18:39',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8768,'4000','121664986687','2022-10-05 19:18:39',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8769,'4000','121664986687','2022-10-05 19:18:39',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8770,'4000','121664986687','2022-10-05 19:18:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8771,'1110','121664989159','2022-10-05 21:42:00',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8772,'1110','121664989159','2022-10-05 21:42:00',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8773,'5500','121664989159','2022-10-05 21:42:00',1107.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8774,'1000','121664989159','2022-10-05 21:42:00',1440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8775,'4000','121664989159','2022-10-05 21:42:00',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8776,'4000','121664989159','2022-10-05 21:42:00',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8777,'1110','121664995570','2022-10-05 21:46:31',NULL,213.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(8778,'1110','121664995570','2022-10-05 21:46:31',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(8779,'5500','121664995570','2022-10-05 21:46:31',1357.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8780,'1000','121664995570','2022-10-05 21:46:31',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8781,'4000','121664995570','2022-10-05 21:46:31',NULL,320.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(8782,'4000','121664995570','2022-10-05 21:46:31',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(8783,'1110','121664995669','2022-10-05 22:02:28',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8784,'1110','121664995669','2022-10-05 22:02:28',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8785,'1110','121664995669','2022-10-05 22:02:28',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(8786,'1110','121664995669','2022-10-05 22:02:28',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8787,'5500','121664995669','2022-10-05 22:02:28',1503.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8788,'1000','121664995669','2022-10-05 22:02:28',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8789,'4000','121664995669','2022-10-05 22:02:28',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8790,'4000','121664995669','2022-10-05 22:02:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8791,'4000','121664995669','2022-10-05 22:02:28',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(8792,'4000','121664995669','2022-10-05 22:02:28',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8793,'1110','121664997504','2022-10-05 23:49:25',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8794,'1110','121664997504','2022-10-05 23:49:25',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(8795,'5500','121664997504','2022-10-05 23:49:25',2550.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8796,'1000','121664997504','2022-10-05 23:49:25',3450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8797,'4000','121664997504','2022-10-05 23:49:25',NULL,2500.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(8798,'4000','121664997504','2022-10-05 23:49:25',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(8799,'1110','121665003037','2022-10-06 00:10:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8800,'1110','121665003037','2022-10-06 00:10:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8801,'5500','121665003037','2022-10-06 00:10:17',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8802,'1000','121665003037','2022-10-06 00:10:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8803,'4000','121665003037','2022-10-06 00:10:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8804,'4000','121665003037','2022-10-06 00:10:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8805,'1110','121665004352','2022-10-06 00:18:33',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8806,'1110','121665004352','2022-10-06 00:18:33',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8807,'5500','121665004352','2022-10-06 00:18:33',727.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8808,'1000','121665004352','2022-10-06 00:18:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8809,'4000','121665004352','2022-10-06 00:18:33',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8810,'4000','121665004352','2022-10-06 00:18:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8811,'1110','121665004843','2022-10-06 00:23:07',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8812,'1110','121665004843','2022-10-06 00:23:07',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8813,'5500','121665004843','2022-10-06 00:23:07',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8814,'1000','121665004843','2022-10-06 00:23:07',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8815,'4000','121665004843','2022-10-06 00:23:07',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8816,'4000','121665004843','2022-10-06 00:23:07',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8817,'1110','121665005038','2022-10-06 00:31:02',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(8818,'1110','121665005038','2022-10-06 00:31:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8819,'5500','121665005038','2022-10-06 00:31:02',847.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8820,'1000','121665005038','2022-10-06 00:31:02',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8821,'4000','121665005038','2022-10-06 00:31:02',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(8822,'4000','121665005038','2022-10-06 00:31:02',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8823,'1110','121665005738','2022-10-06 00:37:34',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291025930','','No',NULL,NULL,''),(8824,'5500','121665005738','2022-10-06 00:37:34',2220.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8825,'1000','121665005738','2022-10-06 00:37:34',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8826,'4000','121665005738','2022-10-06 00:37:34',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025930','','No',NULL,NULL,''),(8827,'1110','121665005953','2022-10-06 01:33:02',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8828,'1110','121665005953','2022-10-06 01:33:02',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(8829,'5500','121665005953','2022-10-06 01:33:02',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8830,'1000','121665005953','2022-10-06 01:33:02',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8831,'4000','121665005953','2022-10-06 01:33:02',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8832,'4000','121665005953','2022-10-06 01:33:02',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(8833,'1110','121665009219','2022-10-06 01:43:05',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8834,'1110','121665009219','2022-10-06 01:43:05',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8835,'1110','121665009219','2022-10-06 01:43:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8836,'5500','121665009219','2022-10-06 01:43:05',616.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8837,'1000','121665009219','2022-10-06 01:43:05',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8838,'4000','121665009219','2022-10-06 01:43:05',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8839,'4000','121665009219','2022-10-06 01:43:05',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8840,'4000','121665009219','2022-10-06 01:43:05',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(8841,'1110','121665009799','2022-10-06 01:43:27',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8842,'5500','121665009799','2022-10-06 01:43:27',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8843,'1000','121665009799','2022-10-06 01:43:27',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8844,'4000','121665009799','2022-10-06 01:43:27',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8845,'1110','121665009832','2022-10-06 02:29:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8846,'1110','121665009832','2022-10-06 02:29:34',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8847,'5500','121665009832','2022-10-06 02:29:34',371.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8848,'1000','121665009832','2022-10-06 02:29:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8849,'4000','121665009832','2022-10-06 02:29:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(8850,'4000','121665009832','2022-10-06 02:29:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8851,'1110','121665012596','2022-10-06 02:54:12',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8852,'5500','121665012596','2022-10-06 02:54:12',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8853,'1000','121665012596','2022-10-06 02:54:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8854,'4000','121665012596','2022-10-06 02:54:12',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(8855,'1110','121665014056','2022-10-06 03:10:49',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8856,'5500','121665014056','2022-10-06 03:10:49',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8857,'1000','121665014056','2022-10-06 03:10:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8858,'4000','121665014056','2022-10-06 03:10:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(8859,'1110','121665042110','2022-10-06 10:42:10',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(8860,'5500','121665042110','2022-10-06 10:42:10',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8861,'1000','121665042110','2022-10-06 10:42:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8862,'4000','121665042110','2022-10-06 10:42:10',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(8863,'1110','121665053950','2022-10-06 13:59:38',NULL,1500.00,'','12','1','Inventory sold','1','','sales','852848252017','','No',NULL,NULL,''),(8864,'5500','121665053950','2022-10-06 13:59:38',1500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8865,'1000','121665053950','2022-10-06 13:59:38',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8866,'4000','121665053950','2022-10-06 13:59:38',NULL,3800.00,'','12','1','Good sold','1','','sales','852848252017','','No',NULL,NULL,''),(8867,'1110','121665055019','2022-10-06 14:27:50',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8868,'5500','121665055019','2022-10-06 14:27:50',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8869,'1000','121665055019','2022-10-06 14:27:50',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8870,'4000','121665055019','2022-10-06 14:27:50',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8871,'1110','121665055674','2022-10-06 15:24:27',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(8872,'1110','121665055674','2022-10-06 15:24:27',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8873,'5500','121665055674','2022-10-06 15:24:27',475.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8874,'1000','121665055674','2022-10-06 15:24:27',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8875,'4000','121665055674','2022-10-06 15:24:27',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(8876,'4000','121665055674','2022-10-06 15:24:27',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8877,'1110','121665066851','2022-10-06 17:45:33',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8878,'5500','121665066851','2022-10-06 17:45:33',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8879,'1000','121665066851','2022-10-06 17:45:33',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8880,'4000','121665066851','2022-10-06 17:45:33',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8881,'1110','121665067541','2022-10-06 18:51:55',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8882,'1110','121665067541','2022-10-06 18:51:55',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8883,'5500','121665067541','2022-10-06 18:51:55',423.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8884,'1000','121665067541','2022-10-06 18:51:55',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8885,'4000','121665067541','2022-10-06 18:51:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(8886,'4000','121665067541','2022-10-06 18:51:55',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(8887,'1110','121665071604','2022-10-06 18:55:53',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8888,'5500','121665071604','2022-10-06 18:55:53',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8889,'1000','121665071604','2022-10-06 18:55:53',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8890,'4000','121665071604','2022-10-06 18:55:53',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(8891,'1110','121665071758','2022-10-06 18:57:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8892,'1110','121665071758','2022-10-06 18:57:56',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8893,'5500','121665071758','2022-10-06 18:57:56',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8894,'1000','121665071758','2022-10-06 18:57:56',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8895,'4000','121665071758','2022-10-06 18:57:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8896,'4000','121665071758','2022-10-06 18:57:56',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(8897,'1110','121665071881','2022-10-06 19:00:46',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8898,'5500','121665071881','2022-10-06 19:00:46',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8899,'1000','121665071881','2022-10-06 19:00:46',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8900,'4000','121665071881','2022-10-06 19:00:46',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(8901,'1110','121665072050','2022-10-06 20:03:12',NULL,136.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(8902,'5500','121665072050','2022-10-06 20:03:12',136.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8903,'1000','121665072050','2022-10-06 20:03:12',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8904,'4000','121665072050','2022-10-06 20:03:12',NULL,200.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(8905,'1110','121665075892','2022-10-06 20:50:11',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8906,'1110','121665075892','2022-10-06 20:50:11',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(8907,'5500','121665075892','2022-10-06 20:50:11',440.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8908,'1000','121665075892','2022-10-06 20:50:11',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8909,'4000','121665075892','2022-10-06 20:50:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8910,'4000','121665075892','2022-10-06 20:50:11',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(8911,'1110','121665078666','2022-10-06 21:07:48',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(8912,'1110','121665078666','2022-10-06 21:07:48',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(8913,'1110','121665078666','2022-10-06 21:07:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8914,'1110','121665078666','2022-10-06 21:07:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8915,'1110','121665078666','2022-10-06 21:07:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8916,'1110','121665078666','2022-10-06 21:07:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(8917,'1110','121665078666','2022-10-06 21:07:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8918,'1110','121665078666','2022-10-06 21:07:48',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322693936','','No',NULL,NULL,''),(8919,'5500','121665078666','2022-10-06 21:07:48',4475.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8920,'1000','121665078666','2022-10-06 21:07:48',6340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8921,'4000','121665078666','2022-10-06 21:07:48',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(8922,'4000','121665078666','2022-10-06 21:07:48',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(8923,'4000','121665078666','2022-10-06 21:07:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8924,'4000','121665078666','2022-10-06 21:07:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8925,'4000','121665078666','2022-10-06 21:07:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8926,'4000','121665078666','2022-10-06 21:07:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(8927,'4000','121665078666','2022-10-06 21:07:48',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(8928,'4000','121665078666','2022-10-06 21:07:48',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322693936','','No',NULL,NULL,''),(8929,'1110','121665079735','2022-10-06 22:10:09',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8930,'1110','121665079735','2022-10-06 22:10:09',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(8931,'5500','121665079735','2022-10-06 22:10:09',644.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8932,'1000','121665079735','2022-10-06 22:10:09',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8933,'4000','121665079735','2022-10-06 22:10:09',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(8934,'4000','121665079735','2022-10-06 22:10:09',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(8935,'1110','121665085174','2022-10-06 22:55:06',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(8936,'1110','121665085174','2022-10-06 22:55:06',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506011709','','No',NULL,NULL,''),(8937,'5500','121665085174','2022-10-06 22:55:06',1640.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8938,'1000','121665085174','2022-10-06 22:55:06',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8939,'4000','121665085174','2022-10-06 22:55:06',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(8940,'4000','121665085174','2022-10-06 22:55:06',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506011709','','No',NULL,NULL,''),(8941,'1110','121665089148','2022-10-06 23:46:22',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(8942,'1110','121665089148','2022-10-06 23:46:22',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(8943,'5500','121665089148','2022-10-06 23:46:22',5200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8944,'1000','121665089148','2022-10-06 23:46:22',8000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8945,'4000','121665089148','2022-10-06 23:46:22',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(8946,'4000','121665089148','2022-10-06 23:46:22',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(8947,'1110','121665089308','2022-10-07 00:10:41',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(8948,'5500','121665089308','2022-10-07 00:10:41',1270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8949,'1000','121665089308','2022-10-07 00:10:41',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8950,'4000','121665089308','2022-10-07 00:10:41',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(8951,'1110','121665090734','2022-10-07 00:14:47',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(8952,'5500','121665090734','2022-10-07 00:14:47',1840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8953,'1000','121665090734','2022-10-07 00:14:47',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8954,'4000','121665090734','2022-10-07 00:14:47',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(8955,'1110','121665090924','2022-10-07 00:17:01',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(8956,'5500','121665090924','2022-10-07 00:17:01',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8957,'1000','121665090924','2022-10-07 00:17:01',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8958,'4000','121665090924','2022-10-07 00:17:01',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(8959,'1110','121665091077','2022-10-07 00:30:37',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8960,'5500','121665091077','2022-10-07 00:30:37',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8961,'1000','121665091077','2022-10-07 00:30:37',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8962,'4000','121665091077','2022-10-07 00:30:37',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(8963,'1110','121665092108','2022-10-07 00:38:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8964,'5500','121665092108','2022-10-07 00:38:04',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8965,'1000','121665092108','2022-10-07 00:38:04',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8966,'4000','121665092108','2022-10-07 00:38:04',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(8967,'1110','121665092324','2022-10-07 00:45:45',NULL,2088.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8968,'1110','121665092324','2022-10-07 00:45:45',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8969,'5500','121665092324','2022-10-07 00:45:45',3124.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8970,'1000','121665092324','2022-10-07 00:45:45',4260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8971,'4000','121665092324','2022-10-07 00:45:45',NULL,2760.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(8972,'4000','121665092324','2022-10-07 00:45:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(8973,'1110','121665093079','2022-10-07 00:57:10',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8974,'1110','121665093079','2022-10-07 00:57:10',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8975,'1110','121665093079','2022-10-07 00:57:10',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8976,'1110','121665093079','2022-10-07 00:57:10',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8977,'5500','121665093079','2022-10-07 00:57:10',1787.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8978,'1000','121665093079','2022-10-07 00:57:10',2410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8979,'4000','121665093079','2022-10-07 00:57:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8980,'4000','121665093079','2022-10-07 00:57:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(8981,'4000','121665093079','2022-10-07 00:57:10',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8982,'4000','121665093079','2022-10-07 00:57:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8983,'1110','121665093978','2022-10-07 01:36:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8984,'1110','121665093978','2022-10-07 01:36:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8985,'5500','121665093978','2022-10-07 01:36:25',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8986,'1000','121665093978','2022-10-07 01:36:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8987,'4000','121665093978','2022-10-07 01:36:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8988,'4000','121665093978','2022-10-07 01:36:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(8989,'1110','121665095827','2022-10-07 02:00:09',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8990,'5500','121665095827','2022-10-07 02:00:09',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8991,'1000','121665095827','2022-10-07 02:00:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8992,'4000','121665095827','2022-10-07 02:00:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(8993,'1110','121665097213','2022-10-07 03:33:55',NULL,1552.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(8994,'1110','121665097213','2022-10-07 03:33:55',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(8995,'1110','121665097213','2022-10-07 03:33:55',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(8996,'1110','121665097213','2022-10-07 03:33:55',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(8997,'5500','121665097213','2022-10-07 03:33:55',2273.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8998,'1000','121665097213','2022-10-07 03:33:55',3110.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8999,'4000','121665097213','2022-10-07 03:33:55',NULL,2100.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(9000,'4000','121665097213','2022-10-07 03:33:55',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9001,'4000','121665097213','2022-10-07 03:33:55',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(9002,'4000','121665097213','2022-10-07 03:33:55',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(9003,'1110','121665146947','2022-10-07 15:49:15',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(9004,'1110','121665146947','2022-10-07 15:49:15',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(9005,'5500','121665146947','2022-10-07 15:49:15',1118.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9006,'1000','121665146947','2022-10-07 15:49:15',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9007,'4000','121665146947','2022-10-07 15:49:15',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(9008,'4000','121665146947','2022-10-07 15:49:15',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(9009,'1110','121665151721','2022-10-07 17:08:52',NULL,2855.34,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(9010,'5500','121665151721','2022-10-07 17:08:52',2855.34,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9011,'1000','121665151721','2022-10-07 17:08:52',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9012,'4000','121665151721','2022-10-07 17:08:52',NULL,3150.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(9013,'1110','121665151861','2022-10-07 17:11:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9014,'1110','121665151861','2022-10-07 17:11:53',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9015,'1110','121665151861','2022-10-07 17:11:53',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(9016,'5500','121665151861','2022-10-07 17:11:53',727.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9017,'1000','121665151861','2022-10-07 17:11:53',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9018,'4000','121665151861','2022-10-07 17:11:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9019,'4000','121665151861','2022-10-07 17:11:53',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9020,'4000','121665151861','2022-10-07 17:11:53',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(9021,'1110','121665151916','2022-10-07 18:39:57',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(9022,'5500','121665151916','2022-10-07 18:39:57',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9023,'1000','121665151916','2022-10-07 18:39:57',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9024,'4000','121665151916','2022-10-07 18:39:57',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(9025,'1110','121665157389','2022-10-07 19:07:56',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9026,'1110','121665157389','2022-10-07 19:07:56',NULL,319.98,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9027,'1110','121665157389','2022-10-07 19:07:56',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(9028,'1110','121665157389','2022-10-07 19:07:56',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9029,'1110','121665157389','2022-10-07 19:07:56',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9030,'1110','121665157389','2022-10-07 19:07:56',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9031,'5500','121665157389','2022-10-07 19:07:56',5716.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9032,'1000','121665157389','2022-10-07 19:07:56',7940.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9033,'4000','121665157389','2022-10-07 19:07:56',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9034,'4000','121665157389','2022-10-07 19:07:56',NULL,480.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9035,'4000','121665157389','2022-10-07 19:07:56',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(9036,'4000','121665157389','2022-10-07 19:07:56',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9037,'4000','121665157389','2022-10-07 19:07:56',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9038,'4000','121665157389','2022-10-07 19:07:56',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(9039,'1110','121665159034','2022-10-07 19:10:42',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9040,'5500','121665159034','2022-10-07 19:10:42',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9041,'1000','121665159034','2022-10-07 19:10:42',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9042,'4000','121665159034','2022-10-07 19:10:42',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9043,'1110','121665159264','2022-10-07 19:45:26',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9044,'5500','121665159264','2022-10-07 19:45:26',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9045,'1000','121665159264','2022-10-07 19:45:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9046,'4000','121665159264','2022-10-07 19:45:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9047,'1110','121665161130','2022-10-07 20:20:35',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9048,'5500','121665161130','2022-10-07 20:20:35',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9049,'1000','121665161130','2022-10-07 20:20:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9050,'4000','121665161130','2022-10-07 20:20:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9051,'1110','121665163448','2022-10-07 22:01:14',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(9052,'1110','121665163448','2022-10-07 22:01:14',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5000299618073','','No',NULL,NULL,''),(9053,'1110','121665163448','2022-10-07 22:01:14',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9054,'1110','121665163448','2022-10-07 22:01:14',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9055,'1110','121665163448','2022-10-07 22:01:14',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(9056,'1110','121665163448','2022-10-07 22:01:14',NULL,213.32,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9057,'5500','121665163448','2022-10-07 22:01:14',6544.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9058,'1000','121665163448','2022-10-07 22:01:14',9440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9059,'4000','121665163448','2022-10-07 22:01:14',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(9060,'4000','121665163448','2022-10-07 22:01:14',NULL,2400.00,'','12','1','Good sold','1','','sales','5000299618073','','No',NULL,NULL,''),(9061,'4000','121665163448','2022-10-07 22:01:14',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9062,'4000','121665163448','2022-10-07 22:01:14',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9063,'4000','121665163448','2022-10-07 22:01:14',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(9064,'4000','121665163448','2022-10-07 22:01:14',NULL,320.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9065,'1110','121665169407','2022-10-07 22:56:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9066,'1110','121665169407','2022-10-07 22:56:19',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9067,'5500','121665169407','2022-10-07 22:56:19',90.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9068,'1000','121665169407','2022-10-07 22:56:19',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9069,'4000','121665169407','2022-10-07 22:56:19',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9070,'4000','121665169407','2022-10-07 22:56:19',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9071,'1110','121665172670','2022-10-07 22:59:58',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9072,'5500','121665172670','2022-10-07 22:59:58',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9073,'1000','121665172670','2022-10-07 22:59:58',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9074,'4000','121665172670','2022-10-07 22:59:58',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9075,'1110','121665172851','2022-10-07 23:07:38',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9076,'1110','121665172851','2022-10-07 23:07:38',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9077,'5500','121665172851','2022-10-07 23:07:38',348.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9078,'1000','121665172851','2022-10-07 23:07:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9079,'4000','121665172851','2022-10-07 23:07:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9080,'4000','121665172851','2022-10-07 23:07:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9081,'1110','121665173407','2022-10-07 23:15:52',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(9082,'5500','121665173407','2022-10-07 23:15:52',1916.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9083,'1000','121665173407','2022-10-07 23:15:52',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9084,'4000','121665173407','2022-10-07 23:15:52',NULL,2600.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(9085,'1110','121665173826','2022-10-07 23:17:22',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9086,'5500','121665173826','2022-10-07 23:17:22',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9087,'1000','121665173826','2022-10-07 23:17:22',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9088,'4000','121665173826','2022-10-07 23:17:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9089,'1110','121665173881','2022-10-07 23:57:13',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(9090,'5500','121665173881','2022-10-07 23:57:13',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9091,'1000','121665173881','2022-10-07 23:57:13',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9092,'4000','121665173881','2022-10-07 23:57:13',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(9093,'1110','121665176271','2022-10-08 00:21:39',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(9094,'5500','121665176271','2022-10-08 00:21:39',3870.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9095,'1000','121665176271','2022-10-08 00:21:39',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9096,'4000','121665176271','2022-10-08 00:21:39',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(9097,'1110','121665177802','2022-10-08 00:33:37',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9098,'5500','121665177802','2022-10-08 00:33:37',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9099,'1000','121665177802','2022-10-08 00:33:37',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9100,'4000','121665177802','2022-10-08 00:33:37',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9101,'1110','121665178421','2022-10-08 01:17:19',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(9102,'5500','121665178421','2022-10-08 01:17:19',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9103,'1000','121665178421','2022-10-08 01:17:19',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9104,'4000','121665178421','2022-10-08 01:17:19',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(9105,'1110','121665181228','2022-10-08 01:22:24',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(9106,'1110','121665181228','2022-10-08 01:22:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9107,'5500','121665181228','2022-10-08 01:22:24',1462.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9108,'1000','121665181228','2022-10-08 01:22:24',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9109,'4000','121665181228','2022-10-08 01:22:24',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(9110,'4000','121665181228','2022-10-08 01:22:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9111,'1110','121665181434','2022-10-08 01:24:03',NULL,1960.00,'','12','1','Inventory sold','1','','sales','6001495062669','','No',NULL,NULL,''),(9112,'5500','121665181434','2022-10-08 01:24:03',1960.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9113,'1000','121665181434','2022-10-08 01:24:03',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9114,'4000','121665181434','2022-10-08 01:24:03',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495062669','','No',NULL,NULL,''),(9115,'1110','121665181447','2022-10-08 01:34:36',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9116,'5500','121665181447','2022-10-08 01:34:36',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9117,'1000','121665181447','2022-10-08 01:34:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9118,'4000','121665181447','2022-10-08 01:34:36',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9119,'1110','121665182211','2022-10-08 01:41:55',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9120,'5500','121665182211','2022-10-08 01:41:55',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9121,'1000','121665182211','2022-10-08 01:41:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9122,'4000','121665182211','2022-10-08 01:41:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9123,'1110','121665182605','2022-10-08 01:44:09',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9124,'1110','121665182605','2022-10-08 01:44:09',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(9125,'5500','121665182605','2022-10-08 01:44:09',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9126,'1000','121665182605','2022-10-08 01:44:09',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9127,'4000','121665182605','2022-10-08 01:44:09',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9128,'4000','121665182605','2022-10-08 01:44:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(9129,'1110','121665182655','2022-10-08 01:54:31',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9130,'5500','121665182655','2022-10-08 01:54:31',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9131,'1000','121665182655','2022-10-08 01:54:31',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9132,'4000','121665182655','2022-10-08 01:54:31',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9133,'1110','121665183284','2022-10-08 02:08:14',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9134,'5500','121665183284','2022-10-08 02:08:14',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9135,'1000','121665183284','2022-10-08 02:08:14',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9136,'4000','121665183284','2022-10-08 02:08:14',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9137,'1110','121665184174','2022-10-08 02:29:21',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(9138,'1110','121665184174','2022-10-08 02:29:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9139,'5500','121665184174','2022-10-08 02:29:21',340.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9140,'1000','121665184174','2022-10-08 02:29:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9141,'4000','121665184174','2022-10-08 02:29:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(9142,'4000','121665184174','2022-10-08 02:29:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9143,'1110','121665185364','2022-10-08 02:40:14',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(9144,'1110','121665185364','2022-10-08 02:40:14',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9145,'5500','121665185364','2022-10-08 02:40:14',1462.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9146,'1000','121665185364','2022-10-08 02:40:14',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9147,'4000','121665185364','2022-10-08 02:40:14',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(9148,'4000','121665185364','2022-10-08 02:40:14',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9149,'1110','121665186227','2022-10-08 02:44:38',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9150,'1110','121665186227','2022-10-08 02:44:38',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(9151,'5500','121665186227','2022-10-08 02:44:38',142.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9152,'1000','121665186227','2022-10-08 02:44:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9153,'4000','121665186227','2022-10-08 02:44:38',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9154,'4000','121665186227','2022-10-08 02:44:38',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(9155,'1110','121665187725','2022-10-08 03:09:36',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(9156,'1110','121665187725','2022-10-08 03:09:36',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9157,'1110','121665187725','2022-10-08 03:09:36',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9158,'1110','121665187725','2022-10-08 03:09:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9159,'5500','121665187725','2022-10-08 03:09:36',1994.27,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9160,'1000','121665187725','2022-10-08 03:09:36',2710.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9161,'4000','121665187725','2022-10-08 03:09:36',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(9162,'4000','121665187725','2022-10-08 03:09:36',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9163,'4000','121665187725','2022-10-08 03:09:36',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9164,'4000','121665187725','2022-10-08 03:09:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9165,'1110','121665187800','2022-10-08 03:11:14',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9166,'5500','121665187800','2022-10-08 03:11:14',1840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9167,'1000','121665187800','2022-10-08 03:11:14',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9168,'4000','121665187800','2022-10-08 03:11:14',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9169,'1110','121665188446','2022-10-08 03:21:13',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9170,'1110','121665188446','2022-10-08 03:21:13',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9171,'5500','121665188446','2022-10-08 03:21:13',550.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9172,'1000','121665188446','2022-10-08 03:21:13',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9173,'4000','121665188446','2022-10-08 03:21:13',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9174,'4000','121665188446','2022-10-08 03:21:13',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9175,'1110','121665188555','2022-10-08 03:23:12',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9176,'1110','121665188555','2022-10-08 03:23:12',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9177,'1110','121665188555','2022-10-08 03:23:12',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9178,'5500','121665188555','2022-10-08 03:23:12',3188.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9179,'1000','121665188555','2022-10-08 03:23:12',4250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9180,'4000','121665188555','2022-10-08 03:23:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9181,'4000','121665188555','2022-10-08 03:23:12',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9182,'4000','121665188555','2022-10-08 03:23:12',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9183,'1110','121665188791','2022-10-08 03:34:43',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9184,'5500','121665188791','2022-10-08 03:34:43',619.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9185,'1000','121665188791','2022-10-08 03:34:43',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9186,'4000','121665188791','2022-10-08 03:34:43',NULL,880.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9187,'1110','121665189398','2022-10-08 03:37:04',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(9188,'1110','121665189398','2022-10-08 03:37:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9189,'1110','121665189398','2022-10-08 03:37:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9190,'5500','121665189398','2022-10-08 03:37:04',1067.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9191,'1000','121665189398','2022-10-08 03:37:04',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9192,'4000','121665189398','2022-10-08 03:37:04',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(9193,'4000','121665189398','2022-10-08 03:37:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9194,'4000','121665189398','2022-10-08 03:37:04',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9195,'1110','121665189567','2022-10-08 03:54:08',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(9196,'5500','121665189567','2022-10-08 03:54:08',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9197,'1000','121665189567','2022-10-08 03:54:08',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9198,'4000','121665189567','2022-10-08 03:54:08',NULL,750.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(9199,'1110','121665190627','2022-10-08 03:57:15',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9200,'5500','121665190627','2022-10-08 03:57:15',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9201,'1000','121665190627','2022-10-08 03:57:15',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9202,'4000','121665190627','2022-10-08 03:57:15',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9203,'1110','121665190639','2022-10-08 04:20:07',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(9204,'1110','121665190639','2022-10-08 04:20:07',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9205,'1110','121665190639','2022-10-08 04:20:07',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9206,'5500','121665190639','2022-10-08 04:20:07',1279.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9207,'1000','121665190639','2022-10-08 04:20:07',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9208,'4000','121665190639','2022-10-08 04:20:07',NULL,750.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(9209,'4000','121665190639','2022-10-08 04:20:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9210,'4000','121665190639','2022-10-08 04:20:07',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9211,'1110','121665192184','2022-10-08 04:23:21',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9212,'5500','121665192184','2022-10-08 04:23:21',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9213,'1000','121665192184','2022-10-08 04:23:21',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9214,'4000','121665192184','2022-10-08 04:23:21',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9215,'1110','121665192205','2022-10-08 04:51:29',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(9216,'5500','121665192205','2022-10-08 04:51:29',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9217,'1000','121665192205','2022-10-08 04:51:29',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9218,'4000','121665192205','2022-10-08 04:51:29',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(9219,'1110','121665232812','2022-10-08 15:40:19',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9220,'5500','121665232812','2022-10-08 15:40:19',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9221,'1000','121665232812','2022-10-08 15:40:19',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9222,'4000','121665232812','2022-10-08 15:40:19',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9223,'1110','121665239333','2022-10-08 18:12:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9224,'5500','121665239333','2022-10-08 18:12:39',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9225,'1000','121665239333','2022-10-08 18:12:39',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9226,'4000','121665239333','2022-10-08 18:12:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9227,'1110','121665241963','2022-10-08 19:00:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9228,'1110','121665241963','2022-10-08 19:00:10',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9229,'5500','121665241963','2022-10-08 19:00:10',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9230,'1000','121665241963','2022-10-08 19:00:10',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9231,'4000','121665241963','2022-10-08 19:00:10',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9232,'4000','121665241963','2022-10-08 19:00:10',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9233,'1110','121665244813','2022-10-08 19:00:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9234,'1110','121665244813','2022-10-08 19:00:45',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9235,'5500','121665244813','2022-10-08 19:00:45',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9236,'1000','121665244813','2022-10-08 19:00:45',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9237,'4000','121665244813','2022-10-08 19:00:45',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9238,'4000','121665244813','2022-10-08 19:00:45',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9239,'1110','121665244852','2022-10-08 19:48:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9240,'5500','121665244852','2022-10-08 19:48:31',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9241,'1000','121665244852','2022-10-08 19:48:31',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9242,'4000','121665244852','2022-10-08 19:48:31',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9243,'1110','121665249468','2022-10-08 20:18:00',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9244,'5500','121665249468','2022-10-08 20:18:00',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9245,'1000','121665249468','2022-10-08 20:18:00',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9246,'4000','121665249468','2022-10-08 20:18:00',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9247,'1110','121665251955','2022-10-08 21:00:26',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(9248,'5500','121665251955','2022-10-08 21:00:26',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9249,'1000','121665251955','2022-10-08 21:00:26',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9250,'4000','121665251955','2022-10-08 21:00:26',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(9251,'1110','121665252032','2022-10-08 22:00:00',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9252,'1110','121665252032','2022-10-08 22:00:00',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9253,'5500','121665252032','2022-10-08 22:00:00',575.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9254,'1000','121665252032','2022-10-08 22:00:00',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9255,'4000','121665252032','2022-10-08 22:00:00',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9256,'4000','121665252032','2022-10-08 22:00:00',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9257,'1110','121665255604','2022-10-08 22:32:30',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9258,'5500','121665255604','2022-10-08 22:32:30',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9259,'1000','121665255604','2022-10-08 22:32:30',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9260,'4000','121665255604','2022-10-08 22:32:30',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9261,'1110','121665257586','2022-10-08 22:43:15',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9262,'5500','121665257586','2022-10-08 22:43:15',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9263,'1000','121665257586','2022-10-08 22:43:15',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9264,'4000','121665257586','2022-10-08 22:43:15',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9265,'1110','121665258444','2022-10-08 23:01:11',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9266,'5500','121665258444','2022-10-08 23:01:11',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9267,'1000','121665258444','2022-10-08 23:01:11',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9268,'4000','121665258444','2022-10-08 23:01:11',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9269,'1110','121665259320','2022-10-08 23:02:02',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(9270,'5500','121665259320','2022-10-08 23:02:02',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9271,'1000','121665259320','2022-10-08 23:02:02',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9272,'4000','121665259320','2022-10-08 23:02:02',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(9273,'1110','121665259371','2022-10-08 23:05:33',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(9274,'5500','121665259371','2022-10-08 23:05:33',710.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9275,'1000','121665259371','2022-10-08 23:05:33',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9276,'4000','121665259371','2022-10-08 23:05:33',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(9277,'1110','121665259649','2022-10-08 23:13:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(9278,'1110','121665259649','2022-10-08 23:13:14',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9279,'1110','121665259649','2022-10-08 23:13:14',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(9280,'1110','121665259649','2022-10-08 23:13:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9281,'1110','121665259649','2022-10-08 23:13:14',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9282,'5500','121665259649','2022-10-08 23:13:14',922.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9283,'1000','121665259649','2022-10-08 23:13:14',1510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9284,'4000','121665259649','2022-10-08 23:13:14',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(9285,'4000','121665259649','2022-10-08 23:13:14',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9286,'4000','121665259649','2022-10-08 23:13:14',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(9287,'4000','121665259649','2022-10-08 23:13:14',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9288,'4000','121665259649','2022-10-08 23:13:14',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9289,'1110','121665260098','2022-10-08 23:15:15',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9290,'5500','121665260098','2022-10-08 23:15:15',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9291,'1000','121665260098','2022-10-08 23:15:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9292,'4000','121665260098','2022-10-08 23:15:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9293,'1110','121665260119','2022-10-08 23:26:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9294,'5500','121665260119','2022-10-08 23:26:27',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9295,'1000','121665260119','2022-10-08 23:26:27',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9296,'4000','121665260119','2022-10-08 23:26:27',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9297,'1110','121665260874','2022-10-08 23:31:06',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9298,'5500','121665260874','2022-10-08 23:31:06',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9299,'1000','121665260874','2022-10-08 23:31:06',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9300,'4000','121665260874','2022-10-08 23:31:06',NULL,880.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9301,'1110','121665261636','2022-10-08 23:40:47',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9302,'5500','121665261636','2022-10-08 23:40:47',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9303,'1000','121665261636','2022-10-08 23:40:47',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9304,'4000','121665261636','2022-10-08 23:40:47',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9305,'1110','121665261653','2022-10-08 23:51:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9306,'5500','121665261653','2022-10-08 23:51:01',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9307,'1000','121665261653','2022-10-08 23:51:01',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9308,'4000','121665261653','2022-10-08 23:51:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9309,'1110','121665262443','2022-10-09 00:06:40',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(9310,'5500','121665262443','2022-10-09 00:06:40',93.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9311,'1000','121665262443','2022-10-09 00:06:40',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9312,'4000','121665262443','2022-10-09 00:06:40',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(9313,'1110','121665263265','2022-10-09 00:20:30',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9314,'1110','121665263265','2022-10-09 00:20:30',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9315,'5500','121665263265','2022-10-09 00:20:30',1593.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9316,'1000','121665263265','2022-10-09 00:20:30',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9317,'4000','121665263265','2022-10-09 00:20:30',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9318,'4000','121665263265','2022-10-09 00:20:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9319,'1110','121665264069','2022-10-09 00:26:31',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(9320,'1110','121665264069','2022-10-09 00:26:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9321,'5500','121665264069','2022-10-09 00:26:31',584.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9322,'1000','121665264069','2022-10-09 00:26:31',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9323,'4000','121665264069','2022-10-09 00:26:31',NULL,750.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(9324,'4000','121665264069','2022-10-09 00:26:31',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9325,'1110','121665264525','2022-10-09 00:42:04',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9326,'1110','121665264525','2022-10-09 00:42:04',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9327,'5500','121665264525','2022-10-09 00:42:04',617.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9328,'1000','121665264525','2022-10-09 00:42:04',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9329,'4000','121665264525','2022-10-09 00:42:04',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9330,'4000','121665264525','2022-10-09 00:42:04',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9331,'1110','121665267172','2022-10-09 01:13:29',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9332,'1110','121665267172','2022-10-09 01:13:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9333,'5500','121665267172','2022-10-09 01:13:29',337.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9334,'1000','121665267172','2022-10-09 01:13:29',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9335,'4000','121665267172','2022-10-09 01:13:29',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9336,'4000','121665267172','2022-10-09 01:13:29',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9337,'1110','121665267486','2022-10-09 01:18:40',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(9338,'1110','121665267486','2022-10-09 01:18:40',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9339,'5500','121665267486','2022-10-09 01:18:40',1457.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9340,'1000','121665267486','2022-10-09 01:18:40',2170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9341,'4000','121665267486','2022-10-09 01:18:40',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(9342,'4000','121665267486','2022-10-09 01:18:40',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9343,'1110','121665267675','2022-10-09 01:21:57',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(9344,'1110','121665267675','2022-10-09 01:21:57',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9345,'1110','121665267675','2022-10-09 01:21:57',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9346,'5500','121665267675','2022-10-09 01:21:57',1851.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9347,'1000','121665267675','2022-10-09 01:21:57',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9348,'4000','121665267675','2022-10-09 01:21:57',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(9349,'4000','121665267675','2022-10-09 01:21:57',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9350,'4000','121665267675','2022-10-09 01:21:57',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9351,'1110','121665267750','2022-10-09 01:50:21',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9352,'5500','121665267750','2022-10-09 01:50:21',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9353,'1000','121665267750','2022-10-09 01:50:21',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9354,'4000','121665267750','2022-10-09 01:50:21',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9355,'1110','121665269554','2022-10-09 01:55:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9356,'5500','121665269554','2022-10-09 01:55:14',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9357,'1000','121665269554','2022-10-09 01:55:14',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9358,'4000','121665269554','2022-10-09 01:55:14',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9359,'1110','121665269813','2022-10-09 02:02:29',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9360,'5500','121665269813','2022-10-09 02:02:29',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9361,'1000','121665269813','2022-10-09 02:02:29',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9362,'4000','121665269813','2022-10-09 02:02:29',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9363,'1110','121665270196','2022-10-09 02:07:39',NULL,213.32,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9364,'5500','121665270196','2022-10-09 02:07:39',213.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9365,'1000','121665270196','2022-10-09 02:07:39',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9366,'4000','121665270196','2022-10-09 02:07:39',NULL,320.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9367,'1110','121665270562','2022-10-09 02:10:06',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9368,'5500','121665270562','2022-10-09 02:10:06',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9369,'1000','121665270562','2022-10-09 02:10:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9370,'4000','121665270562','2022-10-09 02:10:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9374,'1000','121665322818','2022-10-09 16:42:22',1440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9377,'1110','121665322818','2022-10-09 16:42:22',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(9378,'5500','121665322818','2022-10-09 17:29:25',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9379,'1000','121665322818','2022-10-09 16:42:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9380,'4000','121665322818','2022-10-09 16:42:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(9381,'1110','121665325815','2022-10-09 19:12:10',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(9382,'1110','121665325815','2022-10-09 19:12:10',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9383,'5500','121665325815','2022-10-09 19:12:10',727.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9384,'1000','121665325815','2022-10-09 19:12:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9385,'4000','121665325815','2022-10-09 19:12:10',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(9386,'4000','121665325815','2022-10-09 19:12:10',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9387,'1110','121665331996','2022-10-09 20:04:32',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9388,'5500','121665331996','2022-10-09 20:04:32',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9389,'1000','121665331996','2022-10-09 20:04:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9390,'4000','121665331996','2022-10-09 20:04:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9391,'1110','121665335113','2022-10-09 20:47:30',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9392,'5500','121665335113','2022-10-09 20:47:30',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9393,'1000','121665335113','2022-10-09 20:47:30',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9394,'4000','121665335113','2022-10-09 20:47:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9395,'1110','121665337656','2022-10-09 21:05:15',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9396,'5500','121665337656','2022-10-09 21:05:15',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9397,'1000','121665337656','2022-10-09 21:05:15',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9398,'4000','121665337656','2022-10-09 21:05:15',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9399,'1110','121665338719','2022-10-09 21:05:57',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9400,'5500','121665338719','2022-10-09 21:05:57',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9401,'1000','121665338719','2022-10-09 21:05:57',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9402,'4000','121665338719','2022-10-09 21:05:57',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9403,'1110','121665338761','2022-10-09 21:10:15',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9404,'1110','121665338761','2022-10-09 21:10:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9405,'5500','121665338761','2022-10-09 21:10:15',554.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9406,'1000','121665338761','2022-10-09 21:10:15',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9407,'4000','121665338761','2022-10-09 21:10:15',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9408,'4000','121665338761','2022-10-09 21:10:15',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9409,'1110','121665339119','2022-10-09 21:25:51',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9410,'1110','121665339119','2022-10-09 21:25:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9411,'5500','121665339119','2022-10-09 21:25:51',1053.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9412,'1000','121665339119','2022-10-09 21:25:51',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9413,'4000','121665339119','2022-10-09 21:25:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9414,'4000','121665339119','2022-10-09 21:25:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9415,'1110','121665339961','2022-10-09 21:40:10',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(9416,'5500','121665339961','2022-10-09 21:40:10',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9417,'1000','121665339961','2022-10-09 21:40:10',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9418,'4000','121665339961','2022-10-09 21:40:10',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(9419,'1110','121665340899','2022-10-09 22:40:58',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9420,'1110','121665340899','2022-10-09 22:40:58',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(9421,'5500','121665340899','2022-10-09 22:40:58',106.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9422,'1000','121665340899','2022-10-09 22:40:58',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9423,'4000','121665340899','2022-10-09 22:40:58',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9424,'4000','121665340899','2022-10-09 22:40:58',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(9425,'1110','121665344463','2022-10-09 23:32:10',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9426,'5500','121665344463','2022-10-09 23:32:10',1840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9427,'1000','121665344463','2022-10-09 23:32:10',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9428,'4000','121665344463','2022-10-09 23:32:10',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9429,'1110','121665347966','2022-10-09 23:42:18',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(9430,'5500','121665347966','2022-10-09 23:42:18',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9431,'1000','121665347966','2022-10-09 23:42:18',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9432,'4000','121665347966','2022-10-09 23:42:18',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(9433,'1110','121665348353','2022-10-10 00:04:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9434,'5500','121665348353','2022-10-10 00:04:08',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9435,'1000','121665348353','2022-10-10 00:04:08',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9436,'4000','121665348353','2022-10-10 00:04:08',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9437,'1110','121665349452','2022-10-10 00:18:56',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9438,'5500','121665349452','2022-10-10 00:18:56',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9439,'1000','121665349452','2022-10-10 00:18:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9440,'4000','121665349452','2022-10-10 00:18:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9441,'1110','121665351317','2022-10-10 00:35:50',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(9442,'5500','121665351317','2022-10-10 00:35:50',922.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9443,'1000','121665351317','2022-10-10 00:35:50',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9444,'4000','121665351317','2022-10-10 00:35:50',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(9445,'1110','121665351379','2022-10-10 00:48:49',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9446,'5500','121665351379','2022-10-10 00:48:49',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9447,'1000','121665351379','2022-10-10 00:48:49',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9448,'4000','121665351379','2022-10-10 00:48:49',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9449,'1110','121665352203','2022-10-10 01:03:52',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9450,'5500','121665352203','2022-10-10 01:03:52',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9451,'1000','121665352203','2022-10-10 01:03:52',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9452,'4000','121665352203','2022-10-10 01:03:52',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9453,'1110','121665353087','2022-10-10 01:14:36',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9454,'1110','121665353087','2022-10-10 01:14:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9455,'5500','121665353087','2022-10-10 01:14:36',337.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9456,'1000','121665353087','2022-10-10 01:14:36',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9457,'4000','121665353087','2022-10-10 01:14:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9458,'4000','121665353087','2022-10-10 01:14:36',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9459,'1110','121665353680','2022-10-10 01:52:58',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(9460,'5500','121665353680','2022-10-10 01:52:58',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9461,'1000','121665353680','2022-10-10 01:52:58',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9462,'4000','121665353680','2022-10-10 01:52:58',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(9463,'1110','121665355984','2022-10-10 02:23:10',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9464,'1110','121665355984','2022-10-10 02:23:10',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9465,'5500','121665355984','2022-10-10 02:23:10',1946.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9466,'1000','121665355984','2022-10-10 02:23:10',2660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9467,'4000','121665355984','2022-10-10 02:23:10',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(9468,'4000','121665355984','2022-10-10 02:23:10',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9469,'1110','121665357971','2022-10-10 02:39:00',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(9470,'1110','121665357971','2022-10-10 02:39:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(9471,'5500','121665357971','2022-10-10 02:39:00',113.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9472,'1000','121665357971','2022-10-10 02:39:00',170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9473,'4000','121665357971','2022-10-10 02:39:00',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(9474,'4000','121665357971','2022-10-10 02:39:00',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(9475,'1110','121665358743','2022-10-10 02:47:26',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9476,'1110','121665358743','2022-10-10 02:47:26',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9477,'5500','121665358743','2022-10-10 02:47:26',542.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9478,'1000','121665358743','2022-10-10 02:47:26',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9479,'4000','121665358743','2022-10-10 02:47:26',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9480,'4000','121665358743','2022-10-10 02:47:26',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9481,'1110','121665361814','2022-10-10 04:35:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9482,'1110','121665361814','2022-10-10 04:35:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9483,'5500','121665361814','2022-10-10 04:35:22',294.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9484,'1000','121665361814','2022-10-10 04:35:22',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9485,'4000','121665361814','2022-10-10 04:35:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9486,'4000','121665361814','2022-10-10 04:35:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9487,'1110','121665404107','2022-10-10 15:16:25',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9488,'1110','121665404107','2022-10-10 15:16:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9489,'1110','121665404107','2022-10-10 15:16:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9490,'1110','121665404107','2022-10-10 15:16:25',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9491,'5500','121665404107','2022-10-10 15:16:25',554.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9492,'1000','121665404107','2022-10-10 15:16:25',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9493,'4000','121665404107','2022-10-10 15:16:25',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9494,'4000','121665404107','2022-10-10 15:16:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9495,'4000','121665404107','2022-10-10 15:16:25',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9496,'4000','121665404107','2022-10-10 15:16:25',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9497,'1110','121665404190','2022-10-10 16:36:58',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9498,'1110','121665404190','2022-10-10 16:36:58',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9499,'1110','121665404190','2022-10-10 16:36:58',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(9500,'5500','121665404190','2022-10-10 16:36:58',704.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9501,'1000','121665404190','2022-10-10 16:36:58',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9502,'4000','121665404190','2022-10-10 16:36:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9503,'4000','121665404190','2022-10-10 16:36:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9504,'4000','121665404190','2022-10-10 16:36:58',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(9505,'1110','121665416241','2022-10-10 18:38:25',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(9506,'1110','121665416241','2022-10-10 18:38:25',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9507,'5500','121665416241','2022-10-10 18:38:25',683.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9508,'1000','121665416241','2022-10-10 18:38:25',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9509,'4000','121665416241','2022-10-10 18:38:25',NULL,950.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(9510,'4000','121665416241','2022-10-10 18:38:25',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(9511,'1110','121665416409','2022-10-10 19:05:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9512,'5500','121665416409','2022-10-10 19:05:33',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9513,'1000','121665416409','2022-10-10 19:05:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9514,'4000','121665416409','2022-10-10 19:05:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9515,'1110','121665417937','2022-10-10 19:31:57',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(9516,'5500','121665417937','2022-10-10 19:31:57',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9517,'1000','121665417937','2022-10-10 19:31:57',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9518,'4000','121665417937','2022-10-10 19:31:57',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(9519,'1110','121665419522','2022-10-10 19:54:27',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(9520,'5500','121665419522','2022-10-10 19:54:27',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9521,'1000','121665419522','2022-10-10 19:54:27',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9522,'4000','121665419522','2022-10-10 19:54:27',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(9523,'1110','121665420959','2022-10-10 20:33:11',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9524,'5500','121665420959','2022-10-10 20:33:11',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9525,'1000','121665420959','2022-10-10 20:33:11',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9526,'4000','121665420959','2022-10-10 20:33:11',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9527,'1110','121665423239','2022-10-10 20:46:30',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9528,'1110','121665423239','2022-10-10 20:46:30',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9529,'1110','121665423239','2022-10-10 20:46:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9530,'5500','121665423239','2022-10-10 20:46:30',796.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9531,'1000','121665423239','2022-10-10 20:46:30',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9532,'4000','121665423239','2022-10-10 20:46:30',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9533,'4000','121665423239','2022-10-10 20:46:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9534,'4000','121665423239','2022-10-10 20:46:30',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9535,'1110','121665424114','2022-10-10 21:00:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9536,'1110','121665424114','2022-10-10 21:00:41',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9537,'1110','121665424114','2022-10-10 21:00:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9538,'5500','121665424114','2022-10-10 21:00:41',319.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9539,'1000','121665424114','2022-10-10 21:00:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9540,'4000','121665424114','2022-10-10 21:00:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9541,'4000','121665424114','2022-10-10 21:00:41',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9542,'4000','121665424114','2022-10-10 21:00:41',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9543,'1110','121665429706','2022-10-10 22:26:19',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(9544,'1110','121665429706','2022-10-10 22:26:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9545,'1110','121665429706','2022-10-10 22:26:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9546,'1110','121665429706','2022-10-10 22:26:19',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9547,'5500','121665429706','2022-10-10 22:26:19',891.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9548,'1000','121665429706','2022-10-10 22:26:19',1260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9549,'4000','121665429706','2022-10-10 22:26:19',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(9550,'4000','121665429706','2022-10-10 22:26:19',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9551,'4000','121665429706','2022-10-10 22:26:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9552,'4000','121665429706','2022-10-10 22:26:19',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9553,'1110','121665430026','2022-10-10 22:53:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9554,'5500','121665430026','2022-10-10 22:53:53',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9555,'1000','121665430026','2022-10-10 22:53:53',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9556,'4000','121665430026','2022-10-10 22:53:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9557,'1110','121665431750','2022-10-10 22:58:39',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(9558,'5500','121665431750','2022-10-10 22:58:39',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9559,'1000','121665431750','2022-10-10 22:58:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9560,'4000','121665431750','2022-10-10 22:58:39',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(9561,'1110','121665431923','2022-10-10 22:59:33',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800783','','No',NULL,NULL,''),(9562,'1110','121665431923','2022-10-10 22:59:33',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9563,'5500','121665431923','2022-10-10 22:59:33',1124.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9564,'1000','121665431923','2022-10-10 22:59:33',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9565,'4000','121665431923','2022-10-10 22:59:33',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800783','','No',NULL,NULL,''),(9566,'4000','121665431923','2022-10-10 22:59:33',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9567,'1110','121665431977','2022-10-10 22:59:44',NULL,1257.93,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(9568,'5500','121665431977','2022-10-10 22:59:44',1257.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9569,'1000','121665431977','2022-10-10 22:59:44',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9570,'4000','121665431977','2022-10-10 22:59:44',NULL,1700.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(9571,'1110','121665431988','2022-10-10 23:28:25',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9572,'1110','121665431988','2022-10-10 23:28:25',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9573,'5500','121665431988','2022-10-10 23:28:25',371.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9574,'1000','121665431988','2022-10-10 23:28:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9575,'4000','121665431988','2022-10-10 23:28:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9576,'4000','121665431988','2022-10-10 23:28:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9577,'1110','121665434316','2022-10-10 23:46:41',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9578,'5500','121665434316','2022-10-10 23:46:41',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9579,'1000','121665434316','2022-10-10 23:46:41',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9580,'4000','121665434316','2022-10-10 23:46:41',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9581,'1110','121665434897','2022-10-11 00:19:14',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9582,'1110','121665434897','2022-10-11 00:19:14',NULL,1044.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9583,'5500','121665434897','2022-10-11 00:19:14',1946.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9584,'1000','121665434897','2022-10-11 00:19:14',2880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9585,'4000','121665434897','2022-10-11 00:19:14',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9586,'4000','121665434897','2022-10-11 00:19:14',NULL,1380.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9587,'1110','121665436908','2022-10-11 00:55:41',NULL,774.75,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9588,'5500','121665436908','2022-10-11 00:55:41',774.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9589,'1000','121665436908','2022-10-11 00:55:41',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9590,'4000','121665436908','2022-10-11 00:55:41',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9591,'1110','121665438945','2022-10-11 01:02:57',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9592,'5500','121665438945','2022-10-11 01:02:57',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9593,'1000','121665438945','2022-10-11 01:02:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9594,'4000','121665438945','2022-10-11 01:02:57',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9595,'1110','121665439492','2022-10-11 01:08:04',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9596,'1110','121665439492','2022-10-11 01:08:04',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9597,'5500','121665439492','2022-10-11 01:08:04',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9598,'1000','121665439492','2022-10-11 01:08:04',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9599,'4000','121665439492','2022-10-11 01:08:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9600,'4000','121665439492','2022-10-11 01:08:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9601,'1110','121665439687','2022-10-11 01:44:04',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(9602,'1110','121665439687','2022-10-11 01:44:04',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(9603,'5500','121665439687','2022-10-11 01:44:04',104.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9604,'1000','121665439687','2022-10-11 01:44:04',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9605,'4000','121665439687','2022-10-11 01:44:04',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(9606,'4000','121665439687','2022-10-11 01:44:04',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(9607,'1110','121665444614','2022-10-11 02:30:24',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(9608,'5500','121665444614','2022-10-11 02:30:24',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9609,'1000','121665444614','2022-10-11 02:30:24',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9610,'4000','121665444614','2022-10-11 02:30:24',NULL,1500.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(9611,'1110','121665481989','2022-10-11 14:10:32',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9612,'1110','121665481989','2022-10-11 14:10:32',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9613,'1110','121665481989','2022-10-11 14:10:32',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9614,'1110','121665481989','2022-10-11 14:10:32',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9615,'1110','121665481989','2022-10-11 14:10:32',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(9616,'5500','121665481989','2022-10-11 14:10:32',939.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9617,'1000','121665481989','2022-10-11 14:10:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9618,'4000','121665481989','2022-10-11 14:10:32',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9619,'4000','121665481989','2022-10-11 14:10:32',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9620,'4000','121665481989','2022-10-11 14:10:32',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9621,'4000','121665481989','2022-10-11 14:10:32',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9622,'4000','121665481989','2022-10-11 14:10:32',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(9623,'1110','121665486638','2022-10-11 14:44:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(9624,'5500','121665486638','2022-10-11 14:44:15',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9625,'1000','121665486638','2022-10-11 14:44:15',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9626,'4000','121665486638','2022-10-11 14:44:15',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(9627,'1110','121665497593','2022-10-11 17:13:36',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(9628,'5500','121665497593','2022-10-11 17:13:36',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9629,'1000','121665497593','2022-10-11 17:13:36',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9630,'4000','121665497593','2022-10-11 17:13:36',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(9631,'1110','121665497891','2022-10-11 18:00:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9632,'1110','121665497891','2022-10-11 18:00:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9633,'5500','121665497891','2022-10-11 18:00:13',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9634,'1000','121665497891','2022-10-11 18:00:13',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9635,'4000','121665497891','2022-10-11 18:00:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9636,'4000','121665497891','2022-10-11 18:00:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9637,'1110','121665504004','2022-10-11 19:03:22',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(9638,'5500','121665504004','2022-10-11 19:03:22',653.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9639,'1000','121665504004','2022-10-11 19:03:22',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9640,'4000','121665504004','2022-10-11 19:03:22',NULL,900.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(9641,'1110','121665504278','2022-10-11 20:14:03',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9642,'5500','121665504278','2022-10-11 20:14:03',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9643,'1000','121665504278','2022-10-11 20:14:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9644,'4000','121665504278','2022-10-11 20:14:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9645,'1110','121665508452','2022-10-11 21:18:56',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(9646,'1110','121665508452','2022-10-11 21:18:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9647,'1110','121665508452','2022-10-11 21:18:56',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9648,'1110','121665508452','2022-10-11 21:18:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(9649,'5500','121665508452','2022-10-11 21:18:56',1721.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9650,'1000','121665508452','2022-10-11 21:18:56',2310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9651,'4000','121665508452','2022-10-11 21:18:56',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(9652,'4000','121665508452','2022-10-11 21:18:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9653,'4000','121665508452','2022-10-11 21:18:56',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9654,'4000','121665508452','2022-10-11 21:18:56',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(9655,'1110','121665512349','2022-10-11 21:31:22',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9656,'5500','121665512349','2022-10-11 21:31:22',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9657,'1000','121665512349','2022-10-11 21:31:22',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9658,'4000','121665512349','2022-10-11 21:31:22',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9659,'1110','121665513126','2022-10-11 22:13:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9660,'1110','121665513126','2022-10-11 22:13:19',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9661,'5500','121665513126','2022-10-11 22:13:19',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9662,'1000','121665513126','2022-10-11 22:13:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9663,'4000','121665513126','2022-10-11 22:13:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9664,'4000','121665513126','2022-10-11 22:13:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9665,'1110','121665515612','2022-10-11 22:14:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9666,'1110','121665515612','2022-10-11 22:14:41',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9667,'5500','121665515612','2022-10-11 22:14:41',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9668,'1000','121665515612','2022-10-11 22:14:41',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9669,'4000','121665515612','2022-10-11 22:14:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9670,'4000','121665515612','2022-10-11 22:14:41',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9671,'1110','121665515770','2022-10-11 22:24:05',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9672,'1110','121665515770','2022-10-11 22:24:05',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9673,'5500','121665515770','2022-10-11 22:24:05',557.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9674,'1000','121665515770','2022-10-11 22:24:05',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9675,'4000','121665515770','2022-10-11 22:24:05',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9676,'4000','121665515770','2022-10-11 22:24:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9677,'1110','121665516251','2022-10-11 22:30:01',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(9678,'1110','121665516251','2022-10-11 22:30:01',NULL,1638.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9679,'1110','121665516251','2022-10-11 22:30:01',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9680,'5500','121665516251','2022-10-11 22:30:01',2933.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9681,'1000','121665516251','2022-10-11 22:30:01',3950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9682,'4000','121665516251','2022-10-11 22:30:01',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(9683,'4000','121665516251','2022-10-11 22:30:01',NULL,2250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9684,'4000','121665516251','2022-10-11 22:30:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(9685,'1110','121665516725','2022-10-11 22:32:28',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9686,'5500','121665516725','2022-10-11 22:32:28',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9687,'1000','121665516725','2022-10-11 22:32:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9688,'4000','121665516725','2022-10-11 22:32:28',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(9691,'1000','121665516755','2022-10-11 23:39:02',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9693,'1110','121665516755','2022-10-11 23:39:02',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9694,'1110','121665516755','2022-10-11 23:44:27',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(9695,'5500','121665516755','2022-10-11 23:44:27',1575.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9696,'1000','121665516755','2022-10-11 23:39:02',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9697,'4000','121665516755','2022-10-11 23:39:02',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(9698,'4000','121665516755','2022-10-11 23:44:27',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(9699,'1110','121665521218','2022-10-11 23:47:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9700,'5500','121665521218','2022-10-11 23:47:32',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9701,'1000','121665521218','2022-10-11 23:47:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9702,'4000','121665521218','2022-10-11 23:47:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9703,'1110','121665521256','2022-10-12 00:58:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9704,'1110','121665521256','2022-10-12 00:58:01',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9705,'1110','121665521256','2022-10-12 00:58:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9706,'5500','121665521256','2022-10-12 00:58:01',390.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9707,'1000','121665521256','2022-10-12 00:58:01',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9708,'4000','121665521256','2022-10-12 00:58:01',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9709,'4000','121665521256','2022-10-12 00:58:01',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9710,'4000','121665521256','2022-10-12 00:58:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9711,'1110','121665525485','2022-10-12 01:35:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9712,'5500','121665525485','2022-10-12 01:35:31',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9713,'1000','121665525485','2022-10-12 01:35:31',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9714,'4000','121665525485','2022-10-12 01:35:31',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9715,'1110','121665527794','2022-10-12 01:45:08',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(9716,'5500','121665527794','2022-10-12 01:45:08',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9717,'1000','121665527794','2022-10-12 01:45:08',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9718,'4000','121665527794','2022-10-12 01:45:08',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(9719,'1110','121665528389','2022-10-12 03:27:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9720,'5500','121665528389','2022-10-12 03:27:05',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9721,'1000','121665528389','2022-10-12 03:27:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9722,'4000','121665528389','2022-10-12 03:27:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(9723,'1110','121665576100','2022-10-12 15:44:49',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9724,'5500','121665576100','2022-10-12 15:44:49',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9725,'1000','121665576100','2022-10-12 15:44:49',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9726,'4000','121665576100','2022-10-12 15:44:49',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9727,'1110','121665578771','2022-10-12 15:54:15',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9728,'5500','121665578771','2022-10-12 15:54:15',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9729,'1000','121665578771','2022-10-12 15:54:15',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9730,'4000','121665578771','2022-10-12 15:54:15',NULL,880.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9731,'1110','121665579309','2022-10-12 15:55:13',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9732,'5500','121665579309','2022-10-12 15:55:13',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9733,'1000','121665579309','2022-10-12 15:55:13',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9734,'4000','121665579309','2022-10-12 15:55:13',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9735,'1110','121665579357','2022-10-12 15:56:24',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9736,'5500','121665579357','2022-10-12 15:56:24',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9737,'1000','121665579357','2022-10-12 15:56:24',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9738,'4000','121665579357','2022-10-12 15:56:24',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9739,'1110','121665579655','2022-10-12 17:03:39',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9740,'5500','121665579655','2022-10-12 17:03:39',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9741,'1000','121665579655','2022-10-12 17:03:39',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9742,'4000','121665579655','2022-10-12 17:03:39',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(9743,'1110','121665592238','2022-10-12 19:59:12',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9744,'1110','121665592238','2022-10-12 19:59:12',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9745,'1110','121665592238','2022-10-12 19:59:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9746,'1110','121665592238','2022-10-12 19:59:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(9747,'5500','121665592238','2022-10-12 19:59:12',705.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9748,'1000','121665592238','2022-10-12 19:59:12',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9749,'4000','121665592238','2022-10-12 19:59:12',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9750,'4000','121665592238','2022-10-12 19:59:12',NULL,160.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9751,'4000','121665592238','2022-10-12 19:59:12',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9752,'4000','121665592238','2022-10-12 19:59:12',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(9753,'1110','121665594803','2022-10-12 21:33:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9754,'1110','121665594803','2022-10-12 21:33:47',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(9755,'5500','121665594803','2022-10-12 21:33:47',228.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9756,'1000','121665594803','2022-10-12 21:33:47',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9757,'4000','121665594803','2022-10-12 21:33:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9758,'4000','121665594803','2022-10-12 21:33:47',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(9759,'1110','121665599631','2022-10-12 22:07:45',NULL,1970.00,'','12','1','Inventory sold','1','','sales','089540448978','','No',NULL,NULL,''),(9760,'1110','121665599631','2022-10-12 22:07:45',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9761,'5500','121665599631','2022-10-12 22:07:45',2128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9762,'1000','121665599631','2022-10-12 22:07:45',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9763,'4000','121665599631','2022-10-12 22:07:45',NULL,2600.00,'','12','1','Good sold','1','','sales','089540448978','','No',NULL,NULL,''),(9764,'4000','121665599631','2022-10-12 22:07:45',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(9765,'1110','121665601707','2022-10-12 22:08:51',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9766,'5500','121665601707','2022-10-12 22:08:51',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9767,'1000','121665601707','2022-10-12 22:08:51',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9768,'4000','121665601707','2022-10-12 22:08:51',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9769,'1110','121665601821','2022-10-12 22:11:17',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9770,'1110','121665601821','2022-10-12 22:11:17',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9771,'1110','121665601821','2022-10-12 22:11:17',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(9772,'1110','121665601821','2022-10-12 22:11:17',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322693936','','No',NULL,NULL,''),(9773,'5500','121665601821','2022-10-12 22:11:17',1958.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9774,'1000','121665601821','2022-10-12 22:11:17',3210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9775,'4000','121665601821','2022-10-12 22:11:17',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9776,'4000','121665601821','2022-10-12 22:11:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9777,'4000','121665601821','2022-10-12 22:11:17',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(9778,'4000','121665601821','2022-10-12 22:11:17',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322693936','','No',NULL,NULL,''),(9779,'1110','121665602174','2022-10-12 22:20:24',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9780,'5500','121665602174','2022-10-12 22:20:24',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9781,'1000','121665602174','2022-10-12 22:20:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9782,'4000','121665602174','2022-10-12 22:20:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9783,'1110','121665602478','2022-10-12 22:50:35',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9784,'1110','121665602478','2022-10-12 22:50:35',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9785,'5500','121665602478','2022-10-12 22:50:35',375.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9786,'1000','121665602478','2022-10-12 22:50:35',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9787,'4000','121665602478','2022-10-12 22:50:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9788,'4000','121665602478','2022-10-12 22:50:35',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9789,'1110','121665604239','2022-10-12 23:11:12',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9790,'5500','121665604239','2022-10-12 23:11:12',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9791,'1000','121665604239','2022-10-12 23:11:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9792,'4000','121665604239','2022-10-12 23:11:12',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9793,'1110','121665605514','2022-10-12 23:11:57',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9794,'5500','121665605514','2022-10-12 23:11:57',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9795,'1000','121665605514','2022-10-12 23:11:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9796,'4000','121665605514','2022-10-12 23:11:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(9797,'1110','121665605647','2022-10-12 23:31:57',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9798,'1110','121665605647','2022-10-12 23:31:57',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9799,'5500','121665605647','2022-10-12 23:31:57',371.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9800,'1000','121665605647','2022-10-12 23:31:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9801,'4000','121665605647','2022-10-12 23:31:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9802,'4000','121665605647','2022-10-12 23:31:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9803,'1110','121665606724','2022-10-12 23:49:34',NULL,1257.93,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(9804,'5500','121665606724','2022-10-12 23:49:34',1257.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9805,'1000','121665606724','2022-10-12 23:49:34',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9806,'4000','121665606724','2022-10-12 23:49:34',NULL,1700.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(9807,'1110','121665607906','2022-10-12 23:53:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9808,'1110','121665607906','2022-10-12 23:53:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9809,'5500','121665607906','2022-10-12 23:53:44',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9810,'1000','121665607906','2022-10-12 23:53:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9811,'4000','121665607906','2022-10-12 23:53:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9812,'4000','121665607906','2022-10-12 23:53:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(9813,'1110','121665608034','2022-10-12 23:56:08',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9814,'5500','121665608034','2022-10-12 23:56:08',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9815,'1000','121665608034','2022-10-12 23:56:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9816,'4000','121665608034','2022-10-12 23:56:08',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9817,'1110','121665610129','2022-10-13 00:30:40',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9818,'5500','121665610129','2022-10-13 00:30:40',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9819,'1000','121665610129','2022-10-13 00:30:40',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9820,'4000','121665610129','2022-10-13 00:30:40',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9821,'1110','121665610244','2022-10-13 01:23:49',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9822,'5500','121665610244','2022-10-13 01:23:49',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9823,'1000','121665610244','2022-10-13 01:23:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9824,'4000','121665610244','2022-10-13 01:23:49',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9825,'1110','121665613433','2022-10-13 01:24:31',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9826,'1110','121665613433','2022-10-13 01:24:31',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9827,'1110','121665613433','2022-10-13 01:24:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(9828,'5500','121665613433','2022-10-13 01:24:31',572.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9829,'1000','121665613433','2022-10-13 01:24:31',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9830,'4000','121665613433','2022-10-13 01:24:31',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9831,'4000','121665613433','2022-10-13 01:24:31',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9832,'4000','121665613433','2022-10-13 01:24:31',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(9833,'1110','121665613477','2022-10-13 02:00:55',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9834,'5500','121665613477','2022-10-13 02:00:55',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9835,'1000','121665613477','2022-10-13 02:00:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9836,'4000','121665613477','2022-10-13 02:00:55',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9837,'1110','121665615777','2022-10-13 02:49:56',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9838,'5500','121665615777','2022-10-13 02:49:56',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9839,'1000','121665615777','2022-10-13 02:49:56',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9840,'4000','121665615777','2022-10-13 02:49:56',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9841,'1110','121665675310','2022-10-13 18:37:30',NULL,1740.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9842,'1110','121665675310','2022-10-13 18:37:30',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(9843,'5500','121665675310','2022-10-13 18:37:30',4904.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9844,'1000','121665675310','2022-10-13 18:37:30',6900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9845,'4000','121665675310','2022-10-13 18:37:30',NULL,2300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(9846,'4000','121665675310','2022-10-13 18:37:30',NULL,4600.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(9847,'1110','121665675961','2022-10-13 18:46:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(9848,'1110','121665675961','2022-10-13 18:46:24',NULL,2074.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9849,'5500','121665675961','2022-10-13 18:46:24',3199.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9850,'1000','121665675961','2022-10-13 18:46:24',4190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9851,'4000','121665675961','2022-10-13 18:46:24',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(9852,'4000','121665675961','2022-10-13 18:46:24',NULL,2640.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9853,'1110','121665676404','2022-10-13 21:15:53',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9854,'5500','121665676404','2022-10-13 21:15:53',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9855,'1000','121665676404','2022-10-13 21:15:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9856,'4000','121665676404','2022-10-13 21:15:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9857,'1110','121665686786','2022-10-13 21:48:09',NULL,2074.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9858,'1110','121665686786','2022-10-13 21:48:09',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(9859,'1110','121665686786','2022-10-13 21:48:09',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9860,'1110','121665686786','2022-10-13 21:48:09',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9861,'1110','121665686786','2022-10-13 21:48:09',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9862,'5500','121665686786','2022-10-13 21:48:09',3944.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9863,'1000','121665686786','2022-10-13 21:48:09',5210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9864,'4000','121665686786','2022-10-13 21:48:09',NULL,2640.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(9865,'4000','121665686786','2022-10-13 21:48:09',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(9866,'4000','121665686786','2022-10-13 21:48:09',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9867,'4000','121665686786','2022-10-13 21:48:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9868,'4000','121665686786','2022-10-13 21:48:09',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9869,'1110','121665686895','2022-10-13 22:11:22',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9870,'1110','121665686895','2022-10-13 22:11:22',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(9871,'5500','121665686895','2022-10-13 22:11:22',401.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9872,'1000','121665686895','2022-10-13 22:11:22',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9873,'4000','121665686895','2022-10-13 22:11:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9874,'4000','121665686895','2022-10-13 22:11:22',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(9875,'1110','121665689353','2022-10-13 22:30:03',NULL,790.00,'','12','1','Inventory sold','1','','sales','6002039005746','','No',NULL,NULL,''),(9876,'1110','121665689353','2022-10-13 22:30:03',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(9877,'1110','121665689353','2022-10-13 22:30:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9878,'1110','121665689353','2022-10-13 22:30:03',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9879,'5500','121665689353','2022-10-13 22:30:03',2074.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9880,'1000','121665689353','2022-10-13 22:30:03',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9881,'4000','121665689353','2022-10-13 22:30:03',NULL,1400.00,'','12','1','Good sold','1','','sales','6002039005746','','No',NULL,NULL,''),(9882,'4000','121665689353','2022-10-13 22:30:03',NULL,1550.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(9883,'4000','121665689353','2022-10-13 22:30:03',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9884,'4000','121665689353','2022-10-13 22:30:03',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(9885,'1110','121665690529','2022-10-13 23:09:25',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9886,'1110','121665690529','2022-10-13 23:09:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9887,'5500','121665690529','2022-10-13 23:09:25',490.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9888,'1000','121665690529','2022-10-13 23:09:25',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9889,'4000','121665690529','2022-10-13 23:09:25',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(9890,'4000','121665690529','2022-10-13 23:09:25',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(9891,'1110','121665691994','2022-10-13 23:23:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9892,'5500','121665691994','2022-10-13 23:23:39',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9893,'1000','121665691994','2022-10-13 23:23:39',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9894,'4000','121665691994','2022-10-13 23:23:39',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9895,'1110','121665692973','2022-10-13 23:37:50',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9896,'1110','121665692973','2022-10-13 23:37:50',NULL,216.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(9897,'1110','121665692973','2022-10-13 23:37:50',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(9898,'5500','121665692973','2022-10-13 23:37:50',673.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9899,'1000','121665692973','2022-10-13 23:37:50',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9900,'4000','121665692973','2022-10-13 23:37:50',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9901,'4000','121665692973','2022-10-13 23:37:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(9902,'4000','121665692973','2022-10-13 23:37:50',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(9903,'1110','121665694005','2022-10-14 00:45:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9904,'1110','121665694005','2022-10-14 00:45:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(9905,'1110','121665694005','2022-10-14 00:45:51',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9906,'5500','121665694005','2022-10-14 00:45:51',390.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9907,'1000','121665694005','2022-10-14 00:45:51',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9908,'4000','121665694005','2022-10-14 00:45:51',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(9909,'4000','121665694005','2022-10-14 00:45:51',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(9910,'4000','121665694005','2022-10-14 00:45:51',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(9911,'1110','121665697558','2022-10-14 01:18:26',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(9912,'1110','121665697558','2022-10-14 01:18:26',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9913,'1110','121665697558','2022-10-14 01:18:26',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(9914,'1110','121665697558','2022-10-14 01:18:26',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9915,'5500','121665697558','2022-10-14 01:18:26',1138.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9916,'1000','121665697558','2022-10-14 01:18:26',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9917,'4000','121665697558','2022-10-14 01:18:26',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(9918,'4000','121665697558','2022-10-14 01:18:26',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9919,'4000','121665697558','2022-10-14 01:18:26',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(9920,'4000','121665697558','2022-10-14 01:18:26',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9921,'1110','121665699679','2022-10-14 01:52:14',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9922,'1110','121665699679','2022-10-14 01:52:14',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9923,'5500','121665699679','2022-10-14 01:52:14',101.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9924,'1000','121665699679','2022-10-14 01:52:14',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9925,'4000','121665699679','2022-10-14 01:52:14',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9926,'4000','121665699679','2022-10-14 01:52:14',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(9927,'1110','121665759360','2022-10-14 17:56:20',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9928,'5500','121665759360','2022-10-14 17:56:20',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9929,'1000','121665759360','2022-10-14 17:56:20',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9930,'4000','121665759360','2022-10-14 17:56:20',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9931,'1110','121665763487','2022-10-14 19:04:56',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9932,'5500','121665763487','2022-10-14 19:04:56',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9933,'1000','121665763487','2022-10-14 19:04:56',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9934,'4000','121665763487','2022-10-14 19:04:56',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9935,'1110','121665773479','2022-10-14 21:51:37',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9936,'1110','121665773479','2022-10-14 21:51:37',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9937,'5500','121665773479','2022-10-14 21:51:37',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9938,'1000','121665773479','2022-10-14 21:51:37',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9939,'4000','121665773479','2022-10-14 21:51:37',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(9940,'4000','121665773479','2022-10-14 21:51:37',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(9941,'1110','121665773615','2022-10-14 21:55:49',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9942,'5500','121665773615','2022-10-14 21:55:49',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9943,'1000','121665773615','2022-10-14 21:55:49',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9944,'4000','121665773615','2022-10-14 21:55:49',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(9945,'1110','121665773884','2022-10-14 21:59:33',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(9946,'5500','121665773884','2022-10-14 21:59:33',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9947,'1000','121665773884','2022-10-14 21:59:33',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9948,'4000','121665773884','2022-10-14 21:59:33',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(9949,'1110','121665773976','2022-10-14 22:01:56',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9950,'5500','121665773976','2022-10-14 22:01:56',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9951,'1000','121665773976','2022-10-14 22:01:56',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9952,'4000','121665773976','2022-10-14 22:01:56',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(9953,'1110','121665774249','2022-10-14 22:12:47',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9954,'5500','121665774249','2022-10-14 22:12:47',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9955,'1000','121665774249','2022-10-14 22:12:47',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9956,'4000','121665774249','2022-10-14 22:12:47',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(9957,'1110','121665774771','2022-10-14 22:31:08',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9958,'5500','121665774771','2022-10-14 22:31:08',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9959,'1000','121665774771','2022-10-14 22:31:08',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9960,'4000','121665774771','2022-10-14 22:31:08',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(9961,'1110','121665775903','2022-10-14 23:08:12',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(9962,'5500','121665775903','2022-10-14 23:08:12',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9963,'1000','121665775903','2022-10-14 23:08:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9964,'4000','121665775903','2022-10-14 23:08:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(9965,'1110','121665778099','2022-10-14 23:15:15',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(9966,'1110','121665778099','2022-10-14 23:15:15',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9967,'1110','121665778099','2022-10-14 23:15:15',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9968,'1110','121665778099','2022-10-14 23:15:15',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(9969,'5500','121665778099','2022-10-14 23:15:15',609.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9970,'1000','121665778099','2022-10-14 23:15:15',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9971,'4000','121665778099','2022-10-14 23:15:15',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(9972,'4000','121665778099','2022-10-14 23:15:15',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(9973,'4000','121665778099','2022-10-14 23:15:15',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(9974,'4000','121665778099','2022-10-14 23:15:15',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(9975,'1110','121665778737','2022-10-14 23:19:26',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(9976,'1110','121665778737','2022-10-14 23:19:26',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9977,'1110','121665778737','2022-10-14 23:19:26',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9978,'5500','121665778737','2022-10-14 23:19:26',422.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9979,'1000','121665778737','2022-10-14 23:19:26',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9980,'4000','121665778737','2022-10-14 23:19:26',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(9981,'4000','121665778737','2022-10-14 23:19:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(9982,'4000','121665778737','2022-10-14 23:19:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(9983,'1110','121665778770','2022-10-14 23:24:48',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9984,'5500','121665778770','2022-10-14 23:24:48',464.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9985,'1000','121665778770','2022-10-14 23:24:48',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9986,'4000','121665778770','2022-10-14 23:24:48',NULL,660.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9987,'1110','121665779091','2022-10-14 23:28:12',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9988,'5500','121665779091','2022-10-14 23:28:12',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9989,'1000','121665779091','2022-10-14 23:28:12',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9990,'4000','121665779091','2022-10-14 23:28:12',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(9991,'1110','121665779295','2022-10-14 23:29:23',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9992,'5500','121665779295','2022-10-14 23:29:23',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9993,'1000','121665779295','2022-10-14 23:29:23',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9994,'4000','121665779295','2022-10-14 23:29:23',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(9995,'1110','121665780172','2022-10-14 23:48:29',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9996,'5500','121665780172','2022-10-14 23:48:29',619.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9997,'1000','121665780172','2022-10-14 23:48:29',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9998,'4000','121665780172','2022-10-14 23:48:29',NULL,880.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(9999,'1110','121665780515','2022-10-14 23:54:51',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(10000,'1110','121665780515','2022-10-14 23:54:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10001,'5500','121665780515','2022-10-14 23:54:51',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10002,'1000','121665780515','2022-10-14 23:54:51',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10003,'4000','121665780515','2022-10-14 23:54:51',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(10004,'4000','121665780515','2022-10-14 23:54:51',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10005,'1110','121665780895','2022-10-15 00:28:22',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10006,'1110','121665780895','2022-10-15 00:28:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(10007,'5500','121665780895','2022-10-15 00:28:22',321.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10008,'1000','121665780895','2022-10-15 00:28:22',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10009,'4000','121665780895','2022-10-15 00:28:22',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10010,'4000','121665780895','2022-10-15 00:28:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(10011,'1110','121665782908','2022-10-15 00:32:06',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(10012,'1110','121665782908','2022-10-15 00:32:06',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10013,'1110','121665782908','2022-10-15 00:32:06',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10014,'5500','121665782908','2022-10-15 00:32:06',529.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10015,'1000','121665782908','2022-10-15 00:32:06',780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10016,'4000','121665782908','2022-10-15 00:32:06',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(10017,'4000','121665782908','2022-10-15 00:32:06',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10018,'4000','121665782908','2022-10-15 00:32:06',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10019,'1110','121665783526','2022-10-15 00:43:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10020,'5500','121665783526','2022-10-15 00:43:12',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10021,'1000','121665783526','2022-10-15 00:43:12',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10022,'4000','121665783526','2022-10-15 00:43:12',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10023,'1110','121665783795','2022-10-15 01:05:12',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10024,'1110','121665783795','2022-10-15 01:05:12',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10025,'1110','121665783795','2022-10-15 01:05:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10026,'5500','121665783795','2022-10-15 01:05:12',725.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10027,'1000','121665783795','2022-10-15 01:05:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10028,'4000','121665783795','2022-10-15 01:05:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10029,'4000','121665783795','2022-10-15 01:05:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10030,'4000','121665783795','2022-10-15 01:05:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10031,'1110','121665785116','2022-10-15 01:13:22',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10032,'1110','121665785116','2022-10-15 01:13:22',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10033,'5500','121665785116','2022-10-15 01:13:22',364.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10034,'1000','121665785116','2022-10-15 01:13:22',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10035,'4000','121665785116','2022-10-15 01:13:22',NULL,230.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10036,'4000','121665785116','2022-10-15 01:13:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10037,'1110','121665785607','2022-10-15 01:17:39',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10038,'1110','121665785607','2022-10-15 01:17:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10039,'5500','121665785607','2022-10-15 01:17:39',460.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10040,'1000','121665785607','2022-10-15 01:17:39',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10041,'4000','121665785607','2022-10-15 01:17:39',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10042,'4000','121665785607','2022-10-15 01:17:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10043,'1110','121665786993','2022-10-15 01:36:42',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10044,'5500','121665786993','2022-10-15 01:36:42',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10045,'1000','121665786993','2022-10-15 01:36:42',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10046,'4000','121665786993','2022-10-15 01:36:42',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10047,'1110','121665788711','2022-10-15 02:06:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10048,'5500','121665788711','2022-10-15 02:06:54',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10049,'1000','121665788711','2022-10-15 02:06:54',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10050,'4000','121665788711','2022-10-15 02:06:54',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10051,'1110','121665791481','2022-10-15 02:52:26',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10052,'5500','121665791481','2022-10-15 02:52:26',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10053,'1000','121665791481','2022-10-15 02:52:26',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10054,'4000','121665791481','2022-10-15 02:52:26',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10055,'1110','121665791874','2022-10-15 03:25:40',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10056,'5500','121665791874','2022-10-15 03:25:40',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10057,'1000','121665791874','2022-10-15 03:25:40',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10058,'4000','121665791874','2022-10-15 03:25:40',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10059,'1110','121665793545','2022-10-15 03:49:01',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10060,'1110','121665793545','2022-10-15 03:49:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10061,'1110','121665793545','2022-10-15 03:49:01',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10062,'5500','121665793545','2022-10-15 03:49:01',715.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10063,'1000','121665793545','2022-10-15 03:49:01',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10064,'4000','121665793545','2022-10-15 03:49:01',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10065,'4000','121665793545','2022-10-15 03:49:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10066,'4000','121665793545','2022-10-15 03:49:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10067,'1110','121665795163','2022-10-15 04:42:15',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10068,'1110','121665795163','2022-10-15 04:42:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10069,'5500','121665795163','2022-10-15 04:42:15',96.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10070,'1000','121665795163','2022-10-15 04:42:15',170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10071,'4000','121665795163','2022-10-15 04:42:15',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10072,'4000','121665795163','2022-10-15 04:42:15',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10073,'1110','121665838309','2022-10-15 16:09:13',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10074,'5500','121665838309','2022-10-15 16:09:13',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10075,'1000','121665838309','2022-10-15 16:09:13',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10076,'4000','121665838309','2022-10-15 16:09:13',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10077,'1110','121665840435','2022-10-15 17:05:07',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10078,'1110','121665840435','2022-10-15 17:05:07',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10079,'1110','121665840435','2022-10-15 17:05:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10080,'5500','121665840435','2022-10-15 17:05:07',2235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10081,'1000','121665840435','2022-10-15 17:05:07',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10082,'4000','121665840435','2022-10-15 17:05:07',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10083,'4000','121665840435','2022-10-15 17:05:07',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10084,'4000','121665840435','2022-10-15 17:05:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10085,'1110','121665846206','2022-10-15 18:04:48',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10086,'1110','121665846206','2022-10-15 18:04:48',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10087,'1110','121665846206','2022-10-15 18:04:48',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(10088,'5500','121665846206','2022-10-15 18:04:48',677.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10089,'1000','121665846206','2022-10-15 18:04:48',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10090,'4000','121665846206','2022-10-15 18:04:48',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10091,'4000','121665846206','2022-10-15 18:04:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10092,'4000','121665846206','2022-10-15 18:04:48',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(10093,'1110','121665846506','2022-10-15 18:53:56',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10094,'1110','121665846506','2022-10-15 18:53:56',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10095,'5500','121665846506','2022-10-15 18:53:56',1643.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10096,'1000','121665846506','2022-10-15 18:53:56',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10097,'4000','121665846506','2022-10-15 18:53:56',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10098,'4000','121665846506','2022-10-15 18:53:56',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10099,'1110','121665849329','2022-10-15 19:27:16',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10100,'5500','121665849329','2022-10-15 19:27:16',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10101,'1000','121665849329','2022-10-15 19:27:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10102,'4000','121665849329','2022-10-15 19:27:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10103,'1110','121665852917','2022-10-15 20:28:27',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(10104,'1110','121665852917','2022-10-15 20:28:27',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10105,'5500','121665852917','2022-10-15 20:28:27',526.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10106,'1000','121665852917','2022-10-15 20:28:27',760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10107,'4000','121665852917','2022-10-15 20:28:27',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(10108,'4000','121665852917','2022-10-15 20:28:27',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10109,'1110','121665854922','2022-10-15 20:54:55',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10110,'1110','121665854922','2022-10-15 20:54:55',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10111,'1110','121665854922','2022-10-15 20:54:55',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(10112,'5500','121665854922','2022-10-15 20:54:55',674.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10113,'1000','121665854922','2022-10-15 20:54:55',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10114,'4000','121665854922','2022-10-15 20:54:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10115,'4000','121665854922','2022-10-15 20:54:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10116,'4000','121665854922','2022-10-15 20:54:55',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(10117,'1110','121665856499','2022-10-15 20:55:16',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(10118,'5500','121665856499','2022-10-15 20:55:16',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10119,'1000','121665856499','2022-10-15 20:55:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10120,'4000','121665856499','2022-10-15 20:55:16',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(10121,'1110','121665856631','2022-10-15 20:57:29',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10122,'5500','121665856631','2022-10-15 20:57:29',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10123,'1000','121665856631','2022-10-15 20:57:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10124,'4000','121665856631','2022-10-15 20:57:29',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10125,'1110','121665856666','2022-10-15 21:02:09',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10126,'1110','121665856666','2022-10-15 21:02:09',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(10127,'1110','121665856666','2022-10-15 21:02:09',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10128,'1110','121665856666','2022-10-15 21:02:09',NULL,168.00,'','12','1','Inventory sold','1','','sales','5449000061478','','No',NULL,NULL,''),(10129,'5500','121665856666','2022-10-15 21:02:09',1008.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10130,'1000','121665856666','2022-10-15 21:02:09',1510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10131,'4000','121665856666','2022-10-15 21:02:09',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10132,'4000','121665856666','2022-10-15 21:02:09',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(10133,'4000','121665856666','2022-10-15 21:02:09',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10134,'4000','121665856666','2022-10-15 21:02:09',NULL,360.00,'','12','1','Good sold','1','','sales','5449000061478','','No',NULL,NULL,''),(10135,'1110','121665856944','2022-10-15 21:22:05',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(10136,'1110','121665856944','2022-10-15 21:22:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10137,'5500','121665856944','2022-10-15 21:22:05',3324.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10138,'1000','121665856944','2022-10-15 21:22:05',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10139,'4000','121665856944','2022-10-15 21:22:05',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(10140,'4000','121665856944','2022-10-15 21:22:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10141,'1110','121665858217','2022-10-15 21:25:01',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(10142,'5500','121665858217','2022-10-15 21:25:01',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10143,'1000','121665858217','2022-10-15 21:25:01',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10144,'4000','121665858217','2022-10-15 21:25:01',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(10145,'1110','121665859445','2022-10-15 21:44:12',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10146,'5500','121665859445','2022-10-15 21:44:12',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10147,'1000','121665859445','2022-10-15 21:44:12',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10148,'4000','121665859445','2022-10-15 21:44:12',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10149,'1110','121665859459','2022-10-15 21:45:09',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10150,'1110','121665859459','2022-10-15 21:45:09',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10151,'5500','121665859459','2022-10-15 21:45:09',413.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10152,'1000','121665859459','2022-10-15 21:45:09',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10153,'4000','121665859459','2022-10-15 21:45:09',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10154,'4000','121665859459','2022-10-15 21:45:09',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10155,'1110','121665862208','2022-10-15 22:32:01',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10156,'5500','121665862208','2022-10-15 22:32:01',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10157,'1000','121665862208','2022-10-15 22:32:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10158,'4000','121665862208','2022-10-15 22:32:01',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10159,'1110','121665862422','2022-10-15 22:33:51',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10160,'5500','121665862422','2022-10-15 22:33:51',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10161,'1000','121665862422','2022-10-15 22:33:51',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10162,'4000','121665862422','2022-10-15 22:33:51',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10163,'1110','121665862488','2022-10-15 23:16:29',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(10164,'5500','121665862488','2022-10-15 23:16:29',543.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10165,'1000','121665862488','2022-10-15 23:16:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10166,'4000','121665862488','2022-10-15 23:16:29',NULL,750.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(10167,'1110','121665865028','2022-10-15 23:49:26',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(10168,'1110','121665865028','2022-10-15 23:49:26',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(10169,'1110','121665865028','2022-10-15 23:49:26',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10170,'5500','121665865028','2022-10-15 23:49:26',704.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10171,'1000','121665865028','2022-10-15 23:49:26',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10172,'4000','121665865028','2022-10-15 23:49:26',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(10173,'4000','121665865028','2022-10-15 23:49:26',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(10174,'4000','121665865028','2022-10-15 23:49:26',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10175,'1110','121665866996','2022-10-15 23:51:44',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(10176,'5500','121665866996','2022-10-15 23:51:44',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10177,'1000','121665866996','2022-10-15 23:51:44',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10178,'4000','121665866996','2022-10-15 23:51:44',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(10179,'1110','121665867163','2022-10-15 23:55:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10180,'5500','121665867163','2022-10-15 23:55:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10181,'1000','121665867163','2022-10-15 23:55:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10182,'4000','121665867163','2022-10-15 23:55:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10183,'1110','121665867308','2022-10-16 00:20:37',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10184,'1110','121665867308','2022-10-16 00:20:37',NULL,1044.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10185,'1110','121665867308','2022-10-16 00:20:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(10186,'1110','121665867308','2022-10-16 00:20:37',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10187,'5500','121665867308','2022-10-16 00:20:37',2320.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10188,'1000','121665867308','2022-10-16 00:20:37',3170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10189,'4000','121665867308','2022-10-16 00:20:37',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10190,'4000','121665867308','2022-10-16 00:20:37',NULL,1380.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10191,'4000','121665867308','2022-10-16 00:20:37',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(10192,'4000','121665867308','2022-10-16 00:20:37',NULL,160.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10193,'1110','121665868846','2022-10-16 00:21:18',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(10194,'1110','121665868846','2022-10-16 00:21:18',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10195,'1110','121665868846','2022-10-16 00:21:18',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10196,'1110','121665868846','2022-10-16 00:21:18',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(10197,'5500','121665868846','2022-10-16 00:21:18',1397.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10198,'1000','121665868846','2022-10-16 00:21:18',1870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10199,'4000','121665868846','2022-10-16 00:21:18',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(10200,'4000','121665868846','2022-10-16 00:21:18',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10201,'4000','121665868846','2022-10-16 00:21:18',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10202,'4000','121665868846','2022-10-16 00:21:18',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(10203,'1110','121665869069','2022-10-16 00:25:05',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10204,'1110','121665869069','2022-10-16 00:25:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10205,'1110','121665869069','2022-10-16 00:25:05',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10206,'5500','121665869069','2022-10-16 00:25:05',563.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10207,'1000','121665869069','2022-10-16 00:25:05',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10208,'4000','121665869069','2022-10-16 00:25:05',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10209,'4000','121665869069','2022-10-16 00:25:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10210,'4000','121665869069','2022-10-16 00:25:05',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10211,'1110','121665869270','2022-10-16 00:28:01',NULL,522.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10212,'5500','121665869270','2022-10-16 00:28:01',522.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10213,'1000','121665869270','2022-10-16 00:28:01',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10214,'4000','121665869270','2022-10-16 00:28:01',NULL,690.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10215,'1110','121665869286','2022-10-16 00:28:17',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10216,'5500','121665869286','2022-10-16 00:28:17',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10217,'1000','121665869286','2022-10-16 00:28:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10218,'4000','121665869286','2022-10-16 00:28:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10219,'1110','121665869464','2022-10-16 00:33:08',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10220,'1110','121665869464','2022-10-16 00:33:08',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10221,'5500','121665869464','2022-10-16 00:33:08',646.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10222,'1000','121665869464','2022-10-16 00:33:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10223,'4000','121665869464','2022-10-16 00:33:08',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10224,'4000','121665869464','2022-10-16 00:33:08',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10225,'1110','121665869627','2022-10-16 00:45:22',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(10226,'5500','121665869627','2022-10-16 00:45:22',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10227,'1000','121665869627','2022-10-16 00:45:22',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10228,'4000','121665869627','2022-10-16 00:45:22',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(10229,'1110','121665870326','2022-10-16 00:47:39',NULL,11370.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(10230,'5500','121665870326','2022-10-16 00:47:39',11370.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10231,'1000','121665870326','2022-10-16 00:47:39',15400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10232,'4000','121665870326','2022-10-16 00:47:39',NULL,15400.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(10233,'1110','121665870558','2022-10-16 01:09:58',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10234,'5500','121665870558','2022-10-16 01:09:58',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10235,'1000','121665870558','2022-10-16 01:09:58',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10236,'4000','121665870558','2022-10-16 01:09:58',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10237,'1110','121665871883','2022-10-16 01:20:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10238,'5500','121665871883','2022-10-16 01:20:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10239,'1000','121665871883','2022-10-16 01:20:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10240,'4000','121665871883','2022-10-16 01:20:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10241,'1110','121665872409','2022-10-16 01:22:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10242,'5500','121665872409','2022-10-16 01:22:41',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10243,'1000','121665872409','2022-10-16 01:22:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10244,'4000','121665872409','2022-10-16 01:22:41',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10245,'1110','121665872564','2022-10-16 02:09:44',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10246,'1110','121665872564','2022-10-16 02:09:44',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10247,'1110','121665872564','2022-10-16 02:09:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10248,'5500','121665872564','2022-10-16 02:09:44',2270.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10249,'1000','121665872564','2022-10-16 02:09:44',3070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10250,'4000','121665872564','2022-10-16 02:09:44',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10251,'4000','121665872564','2022-10-16 02:09:44',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10252,'4000','121665872564','2022-10-16 02:09:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10253,'1110','121665875548','2022-10-16 03:40:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10254,'1110','121665875548','2022-10-16 03:40:00',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10255,'5500','121665875548','2022-10-16 03:40:00',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10256,'1000','121665875548','2022-10-16 03:40:00',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10257,'4000','121665875548','2022-10-16 03:40:00',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10258,'4000','121665875548','2022-10-16 03:40:00',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10259,'1110','121665880807','2022-10-16 03:48:23',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(10260,'1110','121665880807','2022-10-16 03:48:23',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(10261,'1110','121665880807','2022-10-16 03:48:23',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10262,'1110','121665880807','2022-10-16 03:48:23',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(10263,'1110','121665880807','2022-10-16 03:48:23',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(10264,'5500','121665880807','2022-10-16 03:48:23',1558.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10265,'1000','121665880807','2022-10-16 03:48:23',2510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10266,'4000','121665880807','2022-10-16 03:48:23',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(10267,'4000','121665880807','2022-10-16 03:48:23',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(10268,'4000','121665880807','2022-10-16 03:48:23',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10269,'4000','121665880807','2022-10-16 03:48:23',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(10270,'4000','121665880807','2022-10-16 03:48:23',NULL,600.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(10271,'1110','121665881323','2022-10-16 04:01:04',NULL,178.32,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10272,'5500','121665881323','2022-10-16 04:01:04',178.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10273,'1000','121665881323','2022-10-16 04:01:04',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10274,'4000','121665881323','2022-10-16 04:01:04',NULL,400.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(10275,'1110','121665883805','2022-10-16 04:58:16',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(10276,'5500','121665883805','2022-10-16 04:58:16',787.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10277,'1000','121665883805','2022-10-16 04:58:16',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10278,'4000','121665883805','2022-10-16 04:58:16',NULL,1250.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(10279,'1110','121665923385','2022-10-16 15:30:07',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10280,'5500','121665923385','2022-10-16 15:30:07',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10281,'1000','121665923385','2022-10-16 15:30:07',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10282,'4000','121665923385','2022-10-16 15:30:07',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10283,'1110','121665923411','2022-10-16 16:24:30',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10284,'5500','121665923411','2022-10-16 16:24:30',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10285,'1000','121665923411','2022-10-16 16:24:30',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10286,'4000','121665923411','2022-10-16 16:24:30',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10287,'1110','121665926690','2022-10-16 16:25:08',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10288,'1110','121665926690','2022-10-16 16:25:08',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10289,'5500','121665926690','2022-10-16 16:25:08',152.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10290,'1000','121665926690','2022-10-16 16:25:08',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10291,'4000','121665926690','2022-10-16 16:25:08',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10292,'4000','121665926690','2022-10-16 16:25:08',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10293,'1110','121665930335','2022-10-16 17:32:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10294,'5500','121665930335','2022-10-16 17:32:34',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10295,'1000','121665930335','2022-10-16 17:32:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10296,'4000','121665930335','2022-10-16 17:32:34',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10297,'1110','121665930765','2022-10-16 17:36:58',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10298,'5500','121665930765','2022-10-16 17:36:58',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10299,'1000','121665930765','2022-10-16 17:36:58',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10300,'4000','121665930765','2022-10-16 17:36:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10301,'1110','121665931104','2022-10-16 18:36:44',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10302,'5500','121665931104','2022-10-16 18:36:44',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10303,'1000','121665931104','2022-10-16 18:36:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10304,'4000','121665931104','2022-10-16 18:36:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10305,'1110','121665934682','2022-10-16 20:25:25',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10306,'5500','121665934682','2022-10-16 20:25:25',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10307,'1000','121665934682','2022-10-16 20:25:25',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10308,'4000','121665934682','2022-10-16 20:25:25',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10309,'1110','121665941129','2022-10-16 20:58:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10310,'5500','121665941129','2022-10-16 20:58:39',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10311,'1000','121665941129','2022-10-16 20:58:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10312,'4000','121665941129','2022-10-16 20:58:39',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10313,'1110','121665943125','2022-10-16 21:58:09',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10314,'1110','121665943125','2022-10-16 21:58:09',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(10315,'5500','121665943125','2022-10-16 21:58:09',430.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10316,'1000','121665943125','2022-10-16 21:58:09',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10317,'4000','121665943125','2022-10-16 21:58:09',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10318,'4000','121665943125','2022-10-16 21:58:09',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(10319,'1110','121665946731','2022-10-16 22:04:22',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10320,'5500','121665946731','2022-10-16 22:04:22',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10321,'1000','121665946731','2022-10-16 22:04:22',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10322,'4000','121665946731','2022-10-16 22:04:22',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10323,'1110','121665947110','2022-10-16 22:06:42',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(10324,'5500','121665947110','2022-10-16 22:06:42',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10325,'1000','121665947110','2022-10-16 22:06:42',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10326,'4000','121665947110','2022-10-16 22:06:42',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(10327,'1110','121665947211','2022-10-16 22:54:17',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322690362','','No',NULL,NULL,''),(10328,'5500','121665947211','2022-10-16 22:54:17',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10329,'1000','121665947211','2022-10-16 22:54:17',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10330,'4000','121665947211','2022-10-16 22:54:17',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322690362','','No',NULL,NULL,''),(10331,'1110','121665950149','2022-10-16 23:05:55',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10332,'5500','121665950149','2022-10-16 23:05:55',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10333,'1000','121665950149','2022-10-16 23:05:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10334,'4000','121665950149','2022-10-16 23:05:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10335,'1110','121665950987','2022-10-16 23:19:41',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10336,'5500','121665950987','2022-10-16 23:19:41',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10337,'1000','121665950987','2022-10-16 23:19:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10338,'4000','121665950987','2022-10-16 23:19:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10339,'1110','121665951807','2022-10-16 23:23:31',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(10340,'5500','121665951807','2022-10-16 23:23:31',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10341,'1000','121665951807','2022-10-16 23:23:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10342,'4000','121665951807','2022-10-16 23:23:31',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(10343,'1110','121665951853','2022-10-16 23:28:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10344,'1110','121665951853','2022-10-16 23:28:56',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10345,'5500','121665951853','2022-10-16 23:28:56',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10346,'1000','121665951853','2022-10-16 23:28:56',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10347,'4000','121665951853','2022-10-16 23:28:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10348,'4000','121665951853','2022-10-16 23:28:56',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10349,'1110','121665952507','2022-10-16 23:43:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10350,'5500','121665952507','2022-10-16 23:43:54',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10351,'1000','121665952507','2022-10-16 23:43:54',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10352,'4000','121665952507','2022-10-16 23:43:54',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10353,'1110','121665953038','2022-10-16 23:51:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10354,'5500','121665953038','2022-10-16 23:51:40',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10355,'1000','121665953038','2022-10-16 23:51:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10356,'4000','121665953038','2022-10-16 23:51:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10357,'1110','121665953562','2022-10-17 00:14:01',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10358,'5500','121665953562','2022-10-17 00:14:01',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10359,'1000','121665953562','2022-10-17 00:14:01',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10360,'4000','121665953562','2022-10-17 00:14:01',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10361,'1110','121665955149','2022-10-17 00:25:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10362,'5500','121665955149','2022-10-17 00:25:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10363,'1000','121665955149','2022-10-17 00:25:22',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10364,'4000','121665955149','2022-10-17 00:25:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10365,'1110','121665955566','2022-10-17 00:43:21',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10366,'5500','121665955566','2022-10-17 00:43:21',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10367,'1000','121665955566','2022-10-17 00:43:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10368,'4000','121665955566','2022-10-17 00:43:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10369,'1110','121665956605','2022-10-17 00:46:00',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10370,'1110','121665956605','2022-10-17 00:46:00',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(10371,'5500','121665956605','2022-10-17 00:46:00',257.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10372,'1000','121665956605','2022-10-17 00:46:00',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10373,'4000','121665956605','2022-10-17 00:46:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10374,'4000','121665956605','2022-10-17 00:46:00',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(10375,'1110','121665956803','2022-10-17 00:54:53',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(10376,'1110','121665956803','2022-10-17 00:54:53',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(10377,'5500','121665956803','2022-10-17 00:54:53',1545.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10378,'1000','121665956803','2022-10-17 00:54:53',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10379,'4000','121665956803','2022-10-17 00:54:53',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(10380,'4000','121665956803','2022-10-17 00:54:53',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(10381,'1110','121665957493','2022-10-17 01:22:30',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10382,'5500','121665957493','2022-10-17 01:22:30',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10383,'1000','121665957493','2022-10-17 01:22:30',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10384,'4000','121665957493','2022-10-17 01:22:30',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10385,'1110','121665958953','2022-10-17 03:10:20',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10386,'5500','121665958953','2022-10-17 03:10:20',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10387,'1000','121665958953','2022-10-17 03:10:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10388,'4000','121665958953','2022-10-17 03:10:20',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10389,'1110','121666009626','2022-10-17 15:31:37',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10390,'1110','121666009626','2022-10-17 15:31:37',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(10391,'1110','121666009626','2022-10-17 15:31:37',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10392,'5500','121666009626','2022-10-17 15:31:37',237.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10393,'1000','121666009626','2022-10-17 15:31:37',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10394,'4000','121666009626','2022-10-17 15:31:37',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10395,'4000','121666009626','2022-10-17 15:31:37',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(10396,'4000','121666009626','2022-10-17 15:31:37',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10397,'1110','121666023175','2022-10-17 19:13:00',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(10398,'5500','121666023175','2022-10-17 19:13:00',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10399,'1000','121666023175','2022-10-17 19:13:00',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10400,'4000','121666023175','2022-10-17 19:13:00',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(10401,'1110','121666023184','2022-10-17 19:43:54',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10402,'5500','121666023184','2022-10-17 19:43:54',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10403,'1000','121666023184','2022-10-17 19:43:54',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10404,'4000','121666023184','2022-10-17 19:43:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10405,'1110','121666025038','2022-10-17 20:00:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10406,'1110','121666025038','2022-10-17 20:00:40',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10407,'1110','121666025038','2022-10-17 20:00:40',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(10408,'1110','121666025038','2022-10-17 20:00:40',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10409,'1110','121666025038','2022-10-17 20:00:40',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10410,'1110','121666025038','2022-10-17 20:00:40',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(10411,'5500','121666025038','2022-10-17 20:00:40',990.36,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10412,'1000','121666025038','2022-10-17 20:00:40',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10413,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10414,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10415,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(10416,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10417,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10418,'4000','121666025038','2022-10-17 20:00:40',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(10419,'1110','121666026043','2022-10-17 20:09:26',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10420,'5500','121666026043','2022-10-17 20:09:26',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10421,'1000','121666026043','2022-10-17 20:09:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10422,'4000','121666026043','2022-10-17 20:09:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10423,'1110','121666026569','2022-10-17 20:34:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10424,'1110','121666026569','2022-10-17 20:34:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10425,'5500','121666026569','2022-10-17 20:34:28',371.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10426,'1000','121666026569','2022-10-17 20:34:28',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10427,'4000','121666026569','2022-10-17 20:34:28',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10428,'4000','121666026569','2022-10-17 20:34:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10429,'1110','121666028076','2022-10-17 20:53:19',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10430,'5500','121666028076','2022-10-17 20:53:19',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10431,'1000','121666028076','2022-10-17 20:53:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10432,'4000','121666028076','2022-10-17 20:53:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10433,'1110','121666029226','2022-10-17 21:04:21',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10434,'1110','121666029226','2022-10-17 21:04:21',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(10435,'5500','121666029226','2022-10-17 21:04:21',648.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10436,'1000','121666029226','2022-10-17 21:04:21',910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10437,'4000','121666029226','2022-10-17 21:04:21',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10438,'4000','121666029226','2022-10-17 21:04:21',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(10439,'1110','121666029922','2022-10-17 21:21:48',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10440,'5500','121666029922','2022-10-17 21:21:48',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10441,'1000','121666029922','2022-10-17 21:21:48',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10442,'4000','121666029922','2022-10-17 21:21:48',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10443,'1110','121666030916','2022-10-17 21:26:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10444,'5500','121666030916','2022-10-17 21:26:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10445,'1000','121666030916','2022-10-17 21:26:28',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10446,'4000','121666030916','2022-10-17 21:26:28',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10447,'1110','121666031212','2022-10-17 21:37:52',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(10448,'1110','121666031212','2022-10-17 21:37:52',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(10449,'5500','121666031212','2022-10-17 21:37:52',3792.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10450,'1000','121666031212','2022-10-17 21:37:52',5600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10451,'4000','121666031212','2022-10-17 21:37:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(10452,'4000','121666031212','2022-10-17 21:37:52',NULL,4600.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(10453,'1110','121666031907','2022-10-17 21:38:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10454,'5500','121666031907','2022-10-17 21:38:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10455,'1000','121666031907','2022-10-17 21:38:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10456,'4000','121666031907','2022-10-17 21:38:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10457,'1110','121666032008','2022-10-17 21:48:09',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10458,'5500','121666032008','2022-10-17 21:48:09',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10459,'1000','121666032008','2022-10-17 21:48:09',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10460,'4000','121666032008','2022-10-17 21:48:09',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10461,'1110','121666032526','2022-10-17 21:49:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10462,'5500','121666032526','2022-10-17 21:49:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10463,'1000','121666032526','2022-10-17 21:49:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10464,'4000','121666032526','2022-10-17 21:49:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10465,'1110','121666032556','2022-10-17 21:55:09',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10466,'5500','121666032556','2022-10-17 21:55:09',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10467,'1000','121666032556','2022-10-17 21:55:09',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10468,'4000','121666032556','2022-10-17 21:55:09',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10469,'1110','121666033007','2022-10-17 21:56:57',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10470,'5500','121666033007','2022-10-17 21:56:57',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10471,'1000','121666033007','2022-10-17 21:56:57',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10472,'4000','121666033007','2022-10-17 21:56:57',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(10473,'1110','121666033021','2022-10-17 22:40:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10474,'5500','121666033021','2022-10-17 22:40:00',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10475,'1000','121666033021','2022-10-17 22:40:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10476,'4000','121666033021','2022-10-17 22:40:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10477,'1110','121666035604','2022-10-17 23:02:33',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10478,'1110','121666035604','2022-10-17 23:02:33',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10479,'5500','121666035604','2022-10-17 23:02:33',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10480,'1000','121666035604','2022-10-17 23:02:33',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10481,'4000','121666035604','2022-10-17 23:02:33',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10482,'4000','121666035604','2022-10-17 23:02:33',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10483,'1110','121666036960','2022-10-17 23:38:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10484,'5500','121666036960','2022-10-17 23:38:37',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10485,'1000','121666036960','2022-10-17 23:38:37',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10486,'4000','121666036960','2022-10-17 23:38:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10487,'1110','121666039122','2022-10-17 23:57:36',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(10488,'1110','121666039122','2022-10-17 23:57:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10489,'1110','121666039122','2022-10-17 23:57:36',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10490,'1110','121666039122','2022-10-17 23:57:36',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10491,'5500','121666039122','2022-10-17 23:57:36',447.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10492,'1000','121666039122','2022-10-17 23:57:36',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10493,'4000','121666039122','2022-10-17 23:57:36',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(10494,'4000','121666039122','2022-10-17 23:57:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10495,'4000','121666039122','2022-10-17 23:57:36',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10496,'4000','121666039122','2022-10-17 23:57:36',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10497,'1110','121666043012','2022-10-18 02:27:31',NULL,1203.60,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10498,'5500','121666043012','2022-10-18 02:27:31',1203.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10499,'1000','121666043012','2022-10-18 02:27:31',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10500,'4000','121666043012','2022-10-18 02:27:31',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10501,'1110','121666049256','2022-10-18 02:28:48',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10502,'5500','121666049256','2022-10-18 02:28:48',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10503,'1000','121666049256','2022-10-18 02:28:48',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10504,'4000','121666049256','2022-10-18 02:28:48',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10505,'1110','121666049415','2022-10-18 03:02:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10506,'1110','121666049415','2022-10-18 03:02:32',NULL,1053.15,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10507,'1110','121666049415','2022-10-18 03:02:32',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(10508,'5500','121666049415','2022-10-18 03:02:32',1297.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10509,'1000','121666049415','2022-10-18 03:02:32',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10510,'4000','121666049415','2022-10-18 03:02:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10511,'4000','121666049415','2022-10-18 03:02:32',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10512,'4000','121666049415','2022-10-18 03:02:32',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(10513,'1110','121666096938','2022-10-18 15:42:27',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10514,'5500','121666096938','2022-10-18 15:42:27',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10515,'1000','121666096938','2022-10-18 15:42:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10516,'4000','121666096938','2022-10-18 15:42:27',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10517,'1110','121666096983','2022-10-18 15:43:30',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10518,'5500','121666096983','2022-10-18 15:43:30',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10519,'1000','121666096983','2022-10-18 15:43:30',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10520,'4000','121666096983','2022-10-18 15:43:30',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10521,'1110','121666100522','2022-10-18 18:49:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10522,'5500','121666100522','2022-10-18 18:49:32',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10523,'1000','121666100522','2022-10-18 18:49:32',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10524,'4000','121666100522','2022-10-18 18:49:32',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10525,'1110','121666108228','2022-10-18 20:18:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10526,'5500','121666108228','2022-10-18 20:18:08',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10527,'1000','121666108228','2022-10-18 20:18:08',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10528,'4000','121666108228','2022-10-18 20:18:08',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10529,'1110','121666113556','2022-10-18 21:07:53',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10530,'5500','121666113556','2022-10-18 21:07:53',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10531,'1000','121666113556','2022-10-18 21:07:53',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10532,'4000','121666113556','2022-10-18 21:07:53',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10533,'1110','121666116620','2022-10-18 21:12:32',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(10534,'5500','121666116620','2022-10-18 21:12:32',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10535,'1000','121666116620','2022-10-18 21:12:32',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10536,'4000','121666116620','2022-10-18 21:12:32',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(10537,'1110','121666116758','2022-10-18 21:25:37',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(10538,'5500','121666116758','2022-10-18 21:25:37',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10539,'1000','121666116758','2022-10-18 21:25:37',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10540,'4000','121666116758','2022-10-18 21:25:37',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(10541,'1110','121666117543','2022-10-18 21:39:24',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10542,'5500','121666117543','2022-10-18 21:39:24',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10543,'1000','121666117543','2022-10-18 21:39:24',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10544,'4000','121666117543','2022-10-18 21:39:24',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10545,'1110','121666118551','2022-10-18 21:52:27',NULL,1552.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(10546,'1110','121666118551','2022-10-18 21:52:27',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10547,'1110','121666118551','2022-10-18 21:52:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10548,'1110','121666118551','2022-10-18 21:52:27',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10549,'5500','121666118551','2022-10-18 21:52:27',2063.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10550,'1000','121666118551','2022-10-18 21:52:27',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10551,'4000','121666118551','2022-10-18 21:52:27',NULL,2100.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(10552,'4000','121666118551','2022-10-18 21:52:27',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10553,'4000','121666118551','2022-10-18 21:52:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10554,'4000','121666118551','2022-10-18 21:52:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10555,'1110','121666119814','2022-10-18 22:04:17',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10556,'1110','121666119814','2022-10-18 22:04:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10557,'1110','121666119814','2022-10-18 22:04:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10558,'5500','121666119814','2022-10-18 22:04:17',1272.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10559,'1000','121666119814','2022-10-18 22:04:17',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10560,'4000','121666119814','2022-10-18 22:04:17',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10561,'4000','121666119814','2022-10-18 22:04:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10562,'4000','121666119814','2022-10-18 22:04:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10563,'1110','121666119971','2022-10-18 22:32:54',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10564,'1110','121666119971','2022-10-18 22:32:54',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10565,'5500','121666119971','2022-10-18 22:32:54',508.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10566,'1000','121666119971','2022-10-18 22:32:54',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10567,'4000','121666119971','2022-10-18 22:32:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10568,'4000','121666119971','2022-10-18 22:32:54',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10569,'1110','121666121835','2022-10-18 22:37:28',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10570,'5500','121666121835','2022-10-18 22:37:28',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10571,'1000','121666121835','2022-10-18 22:37:28',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10572,'4000','121666121835','2022-10-18 22:37:28',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10573,'1110','121666121853','2022-10-18 22:37:42',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10574,'5500','121666121853','2022-10-18 22:37:42',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10575,'1000','121666121853','2022-10-18 22:37:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10576,'4000','121666121853','2022-10-18 22:37:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10577,'1110','121666121929','2022-10-18 22:51:47',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10578,'1110','121666121929','2022-10-18 22:51:47',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10579,'5500','121666121929','2022-10-18 22:51:47',372.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10580,'1000','121666121929','2022-10-18 22:51:47',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10581,'4000','121666121929','2022-10-18 22:51:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10582,'4000','121666121929','2022-10-18 22:51:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10583,'1110','121666122852','2022-10-18 22:58:32',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(10584,'1110','121666122852','2022-10-18 22:58:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10585,'5500','121666122852','2022-10-18 22:58:32',581.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10586,'1000','121666122852','2022-10-18 22:58:32',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10587,'4000','121666122852','2022-10-18 22:58:32',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(10588,'4000','121666122852','2022-10-18 22:58:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10589,'1110','121666124705','2022-10-18 23:25:19',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10590,'5500','121666124705','2022-10-18 23:25:19',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10591,'1000','121666124705','2022-10-18 23:25:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10592,'4000','121666124705','2022-10-18 23:25:19',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10593,'1110','121666124726','2022-10-18 23:37:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10594,'5500','121666124726','2022-10-18 23:37:52',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10595,'1000','121666124726','2022-10-18 23:37:52',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10596,'4000','121666124726','2022-10-18 23:37:52',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10597,'1110','121666126221','2022-10-19 00:02:12',NULL,1360.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(10598,'1110','121666126221','2022-10-19 00:02:12',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10599,'5500','121666126221','2022-10-19 00:02:12',1687.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10600,'1000','121666126221','2022-10-19 00:02:12',2570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10601,'4000','121666126221','2022-10-19 00:02:12',NULL,2200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(10602,'4000','121666126221','2022-10-19 00:02:12',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10603,'1110','121666127460','2022-10-19 00:11:04',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(10604,'5500','121666127460','2022-10-19 00:11:04',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10605,'1000','121666127460','2022-10-19 00:11:04',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10606,'4000','121666127460','2022-10-19 00:11:04',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(10607,'1110','121666127516','2022-10-19 01:14:44',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10608,'1110','121666127516','2022-10-19 01:14:44',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(10609,'5500','121666127516','2022-10-19 01:14:44',498.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10610,'1000','121666127516','2022-10-19 01:14:44',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10611,'4000','121666127516','2022-10-19 01:14:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10612,'4000','121666127516','2022-10-19 01:14:44',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(10613,'1110','121666131355','2022-10-19 02:00:33',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10614,'1110','121666131355','2022-10-19 02:00:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10615,'1110','121666131355','2022-10-19 02:00:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10616,'5500','121666131355','2022-10-19 02:00:33',283.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10617,'1000','121666131355','2022-10-19 02:00:33',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10618,'4000','121666131355','2022-10-19 02:00:33',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10619,'4000','121666131355','2022-10-19 02:00:33',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10620,'4000','121666131355','2022-10-19 02:00:33',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10621,'1110','121666134038','2022-10-19 02:31:31',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10622,'1110','121666134038','2022-10-19 02:31:31',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10623,'5500','121666134038','2022-10-19 02:31:31',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10624,'1000','121666134038','2022-10-19 02:31:31',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10625,'4000','121666134038','2022-10-19 02:31:31',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10626,'4000','121666134038','2022-10-19 02:31:31',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10627,'1110','121666179536','2022-10-19 14:41:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10628,'5500','121666179536','2022-10-19 14:41:40',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10629,'1000','121666179536','2022-10-19 14:41:40',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10630,'4000','121666179536','2022-10-19 14:41:40',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10631,'1110','121666179713','2022-10-19 15:24:17',NULL,445.00,'','12','1','Inventory sold','1','','sales','8908006354207','','No',NULL,NULL,''),(10632,'1110','121666179713','2022-10-19 15:24:17',NULL,445.00,'','12','1','Inventory sold','1','','sales','8908006354207','','No',NULL,NULL,''),(10633,'5500','121666179713','2022-10-19 15:24:17',890.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10634,'1000','121666179713','2022-10-19 15:24:17',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10635,'4000','121666179713','2022-10-19 15:24:17',NULL,650.00,'','12','1','Good sold','1','','sales','8908006354207','','No',NULL,NULL,''),(10636,'4000','121666179713','2022-10-19 15:24:17',NULL,650.00,'','12','1','Good sold','1','','sales','8908006354207','','No',NULL,NULL,''),(10637,'1110','121666182364','2022-10-19 15:44:59',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(10638,'1110','121666182364','2022-10-19 15:44:59',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10639,'5500','121666182364','2022-10-19 15:44:59',1324.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10640,'1000','121666182364','2022-10-19 15:44:59',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10641,'4000','121666182364','2022-10-19 15:44:59',NULL,1700.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(10642,'4000','121666182364','2022-10-19 15:44:59',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10643,'1110','121666183991','2022-10-19 17:16:56',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10644,'5500','121666183991','2022-10-19 17:16:56',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10645,'1000','121666183991','2022-10-19 17:16:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10646,'4000','121666183991','2022-10-19 17:16:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10647,'1110','121666194033','2022-10-19 20:16:09',NULL,931.00,'','12','1','Inventory sold','1','','sales','4820000944626','','No',NULL,NULL,''),(10648,'1110','121666194033','2022-10-19 20:16:09',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(10649,'5500','121666194033','2022-10-19 20:16:09',2081.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10650,'1000','121666194033','2022-10-19 20:16:09',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10651,'4000','121666194033','2022-10-19 20:16:09',NULL,1700.00,'','12','1','Good sold','1','','sales','4820000944626','','No',NULL,NULL,''),(10652,'4000','121666194033','2022-10-19 20:16:09',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(10653,'1110','121666199933','2022-10-19 21:13:43',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(10654,'5500','121666199933','2022-10-19 21:13:43',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10655,'1000','121666199933','2022-10-19 21:13:43',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10656,'4000','121666199933','2022-10-19 21:13:43',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(10657,'1110','121666203869','2022-10-19 21:24:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10658,'1110','121666203869','2022-10-19 21:24:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10659,'5500','121666203869','2022-10-19 21:24:53',654.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10660,'1000','121666203869','2022-10-19 21:24:53',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10661,'4000','121666203869','2022-10-19 21:24:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10662,'4000','121666203869','2022-10-19 21:24:53',NULL,200.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10663,'1110','121666204618','2022-10-19 21:37:13',NULL,6800.00,'','12','1','Inventory sold','1','','sales','5010327302201','','No',NULL,NULL,''),(10664,'5500','121666204618','2022-10-19 21:37:13',6800.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10665,'1000','121666204618','2022-10-19 21:37:13',8500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10666,'4000','121666204618','2022-10-19 21:37:13',NULL,8500.00,'','12','1','Good sold','1','','sales','5010327302201','','No',NULL,NULL,''),(10667,'1110','121666205493','2022-10-19 21:52:40',NULL,1552.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(10668,'1110','121666205493','2022-10-19 21:52:40',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10669,'5500','121666205493','2022-10-19 21:52:40',1701.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10670,'1000','121666205493','2022-10-19 21:52:40',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10671,'4000','121666205493','2022-10-19 21:52:40',NULL,2100.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(10672,'4000','121666205493','2022-10-19 21:52:40',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10673,'1110','121666205565','2022-10-19 21:55:33',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10674,'5500','121666205565','2022-10-19 21:55:33',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10675,'1000','121666205565','2022-10-19 21:55:33',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10676,'4000','121666205565','2022-10-19 21:55:33',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(10677,'1110','121666205941','2022-10-19 21:59:10',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(10678,'5500','121666205941','2022-10-19 21:59:10',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10679,'1000','121666205941','2022-10-19 21:59:10',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10680,'4000','121666205941','2022-10-19 21:59:10',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(10681,'1110','121666205954','2022-10-19 22:03:07',NULL,1854.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(10682,'1110','121666205954','2022-10-19 22:03:07',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10683,'5500','121666205954','2022-10-19 22:03:07',2003.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10684,'1000','121666205954','2022-10-19 22:03:07',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10685,'4000','121666205954','2022-10-19 22:03:07',NULL,2600.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(10686,'4000','121666205954','2022-10-19 22:03:07',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10687,'1110','121666207803','2022-10-19 22:37:42',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(10688,'5500','121666207803','2022-10-19 22:37:42',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10689,'1000','121666207803','2022-10-19 22:37:42',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10690,'4000','121666207803','2022-10-19 22:37:42',NULL,1100.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(10691,'1110','121666208613','2022-10-19 22:43:55',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(10692,'1110','121666208613','2022-10-19 22:43:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10693,'5500','121666208613','2022-10-19 22:43:55',1175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10694,'1000','121666208613','2022-10-19 22:43:55',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10695,'4000','121666208613','2022-10-19 22:43:55',NULL,1550.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(10696,'4000','121666208613','2022-10-19 22:43:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(10697,'1110','121666208640','2022-10-19 22:46:52',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(10698,'1110','121666208640','2022-10-19 22:46:52',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(10699,'5500','121666208640','2022-10-19 22:46:52',758.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10700,'1000','121666208640','2022-10-19 22:46:52',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10701,'4000','121666208640','2022-10-19 22:46:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(10702,'4000','121666208640','2022-10-19 22:46:52',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(10703,'1110','121666208999','2022-10-19 22:50:11',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10704,'5500','121666208999','2022-10-19 22:50:11',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10705,'1000','121666208999','2022-10-19 22:50:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10706,'4000','121666208999','2022-10-19 22:50:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10707,'1110','121666209568','2022-10-19 22:59:49',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10708,'1110','121666209568','2022-10-19 22:59:49',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(10709,'5500','121666209568','2022-10-19 22:59:49',586.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10710,'1000','121666209568','2022-10-19 22:59:49',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10711,'4000','121666209568','2022-10-19 22:59:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10712,'4000','121666209568','2022-10-19 22:59:49',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(10713,'1110','121666209636','2022-10-19 23:00:57',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10714,'5500','121666209636','2022-10-19 23:00:57',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10715,'1000','121666209636','2022-10-19 23:00:57',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10716,'4000','121666209636','2022-10-19 23:00:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10717,'1110','121666209664','2022-10-19 23:01:12',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(10718,'5500','121666209664','2022-10-19 23:01:12',2200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10719,'1000','121666209664','2022-10-19 23:01:12',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10720,'4000','121666209664','2022-10-19 23:01:12',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(10721,'1110','121666209712','2022-10-19 23:02:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10722,'1110','121666209712','2022-10-19 23:02:22',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10723,'5500','121666209712','2022-10-19 23:02:22',384.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10724,'1000','121666209712','2022-10-19 23:02:22',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10725,'4000','121666209712','2022-10-19 23:02:22',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10726,'4000','121666209712','2022-10-19 23:02:22',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10727,'1110','121666209749','2022-10-19 23:09:55',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10728,'5500','121666209749','2022-10-19 23:09:55',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10729,'1000','121666209749','2022-10-19 23:09:55',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10730,'4000','121666209749','2022-10-19 23:09:55',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10731,'1110','121666210858','2022-10-19 23:21:14',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(10732,'5500','121666210858','2022-10-19 23:21:14',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10733,'1000','121666210858','2022-10-19 23:21:14',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10734,'4000','121666210858','2022-10-19 23:21:14',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(10735,'1110','121666211176','2022-10-19 23:26:30',NULL,588.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(10736,'5500','121666211176','2022-10-19 23:26:30',588.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10737,'1000','121666211176','2022-10-19 23:26:30',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10738,'4000','121666211176','2022-10-19 23:26:30',NULL,920.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(10739,'1110','121666211340','2022-10-19 23:29:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10740,'1110','121666211340','2022-10-19 23:29:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(10741,'1110','121666211340','2022-10-19 23:29:36',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10742,'5500','121666211340','2022-10-19 23:29:36',507.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10743,'1000','121666211340','2022-10-19 23:29:36',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10744,'4000','121666211340','2022-10-19 23:29:36',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10745,'4000','121666211340','2022-10-19 23:29:36',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(10746,'4000','121666211340','2022-10-19 23:29:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10747,'1110','121666212377','2022-10-20 00:06:41',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10748,'1110','121666212377','2022-10-20 00:06:41',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10749,'1110','121666212377','2022-10-20 00:06:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10750,'5500','121666212377','2022-10-20 00:06:41',709.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10751,'1000','121666212377','2022-10-20 00:06:41',970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10752,'4000','121666212377','2022-10-20 00:06:41',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10753,'4000','121666212377','2022-10-20 00:06:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10754,'4000','121666212377','2022-10-20 00:06:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10755,'1110','121666213648','2022-10-20 00:19:15',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(10756,'5500','121666213648','2022-10-20 00:19:15',1417.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10757,'1000','121666213648','2022-10-20 00:19:15',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10758,'4000','121666213648','2022-10-20 00:19:15',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(10759,'1110','121666214415','2022-10-20 00:27:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10760,'5500','121666214415','2022-10-20 00:27:32',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10761,'1000','121666214415','2022-10-20 00:27:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10762,'4000','121666214415','2022-10-20 00:27:32',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10763,'1110','121666215354','2022-10-20 00:36:09',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(10764,'5500','121666215354','2022-10-20 00:36:09',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10765,'1000','121666215354','2022-10-20 00:36:09',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10766,'4000','121666215354','2022-10-20 00:36:09',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(10767,'1110','121666215373','2022-10-20 00:49:13',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10768,'1110','121666215373','2022-10-20 00:49:13',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10769,'1110','121666215373','2022-10-20 00:49:13',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10770,'1110','121666215373','2022-10-20 00:49:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(10771,'5500','121666215373','2022-10-20 00:49:13',1330.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10772,'1000','121666215373','2022-10-20 00:49:13',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10773,'4000','121666215373','2022-10-20 00:49:13',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10774,'4000','121666215373','2022-10-20 00:49:13',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(10775,'4000','121666215373','2022-10-20 00:49:13',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10776,'4000','121666215373','2022-10-20 00:49:13',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(10777,'1110','121666216179','2022-10-20 00:53:05',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10778,'5500','121666216179','2022-10-20 00:53:05',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10779,'1000','121666216179','2022-10-20 00:53:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10780,'4000','121666216179','2022-10-20 00:53:05',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10781,'1110','121666216639','2022-10-20 00:57:59',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10782,'5500','121666216639','2022-10-20 00:57:59',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10783,'1000','121666216639','2022-10-20 00:57:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10784,'4000','121666216639','2022-10-20 00:57:59',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10785,'1110','121666225306','2022-10-20 03:21:59',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10786,'5500','121666225306','2022-10-20 03:21:59',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10787,'1000','121666225306','2022-10-20 03:21:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10788,'4000','121666225306','2022-10-20 03:21:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10789,'1110','121666268283','2022-10-20 15:18:15',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(10790,'5500','121666268283','2022-10-20 15:18:15',653.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10791,'1000','121666268283','2022-10-20 15:18:15',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10792,'4000','121666268283','2022-10-20 15:18:15',NULL,900.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(10793,'1110','121666268373','2022-10-20 15:20:01',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10794,'5500','121666268373','2022-10-20 15:20:01',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10795,'1000','121666268373','2022-10-20 15:20:01',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10796,'4000','121666268373','2022-10-20 15:20:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(10797,'1110','121666268414','2022-10-20 15:31:39',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10798,'5500','121666268414','2022-10-20 15:31:39',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10799,'1000','121666268414','2022-10-20 15:31:39',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10800,'4000','121666268414','2022-10-20 15:31:39',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(10801,'1110','121666269107','2022-10-20 15:32:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10802,'5500','121666269107','2022-10-20 15:32:24',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10803,'1000','121666269107','2022-10-20 15:32:24',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10804,'4000','121666269107','2022-10-20 15:32:24',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10805,'1110','121666269148','2022-10-20 16:14:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10806,'1110','121666269148','2022-10-20 16:14:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10807,'5500','121666269148','2022-10-20 16:14:25',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10808,'1000','121666269148','2022-10-20 16:14:25',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10809,'4000','121666269148','2022-10-20 16:14:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10810,'4000','121666269148','2022-10-20 16:14:25',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10811,'1110','121666271682','2022-10-20 16:15:59',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10812,'1110','121666271682','2022-10-20 16:15:59',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(10813,'5500','121666271682','2022-10-20 16:15:59',344.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10814,'1000','121666271682','2022-10-20 16:15:59',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10815,'4000','121666271682','2022-10-20 16:15:59',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10816,'4000','121666271682','2022-10-20 16:15:59',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(10817,'1110','121666271840','2022-10-20 16:18:07',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(10818,'5500','121666271840','2022-10-20 16:18:07',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10819,'1000','121666271840','2022-10-20 16:18:07',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10820,'4000','121666271840','2022-10-20 16:18:07',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(10821,'1110','121666272018','2022-10-20 16:30:28',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10822,'5500','121666272018','2022-10-20 16:30:28',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10823,'1000','121666272018','2022-10-20 16:30:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10824,'4000','121666272018','2022-10-20 16:30:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10825,'1110','121666272633','2022-10-20 17:01:36',NULL,1284.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(10826,'1110','121666272633','2022-10-20 17:01:36',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10827,'5500','121666272633','2022-10-20 17:01:36',1647.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10828,'1000','121666272633','2022-10-20 17:01:36',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10829,'4000','121666272633','2022-10-20 17:01:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(10830,'4000','121666272633','2022-10-20 17:01:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10831,'1110','121666274504','2022-10-20 17:33:43',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10832,'5500','121666274504','2022-10-20 17:33:43',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10833,'1000','121666274504','2022-10-20 17:33:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10834,'4000','121666274504','2022-10-20 17:33:43',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10835,'1110','121666276527','2022-10-20 18:04:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10836,'5500','121666276527','2022-10-20 18:04:32',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10837,'1000','121666276527','2022-10-20 18:04:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10838,'4000','121666276527','2022-10-20 18:04:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(10839,'1110','121666278739','2022-10-20 18:45:24',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10840,'1110','121666278739','2022-10-20 18:45:24',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(10841,'5500','121666278739','2022-10-20 18:45:24',594.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10842,'1000','121666278739','2022-10-20 18:45:24',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10843,'4000','121666278739','2022-10-20 18:45:24',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10844,'4000','121666278739','2022-10-20 18:45:24',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(10845,'1110','121666280784','2022-10-20 19:50:40',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(10846,'5500','121666280784','2022-10-20 19:50:40',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10847,'1000','121666280784','2022-10-20 19:50:40',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10848,'4000','121666280784','2022-10-20 19:50:40',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(10849,'1110','121666284644','2022-10-20 20:55:52',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10850,'5500','121666284644','2022-10-20 20:55:52',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10851,'1000','121666284644','2022-10-20 20:55:52',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10852,'4000','121666284644','2022-10-20 20:55:52',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10853,'1110','121666288649','2022-10-20 22:03:40',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10854,'5500','121666288649','2022-10-20 22:03:40',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10855,'1000','121666288649','2022-10-20 22:03:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10856,'4000','121666288649','2022-10-20 22:03:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10857,'1110','121666292649','2022-10-20 22:04:59',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(10858,'1110','121666292649','2022-10-20 22:04:59',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10859,'5500','121666292649','2022-10-20 22:04:59',300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10860,'1000','121666292649','2022-10-20 22:04:59',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10861,'4000','121666292649','2022-10-20 22:04:59',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(10862,'4000','121666292649','2022-10-20 22:04:59',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(10863,'1110','121666292750','2022-10-20 22:12:18',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10864,'5500','121666292750','2022-10-20 22:12:18',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10865,'1000','121666292750','2022-10-20 22:12:18',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10866,'4000','121666292750','2022-10-20 22:12:18',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(10867,'1110','121666293218','2022-10-20 22:15:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10868,'5500','121666293218','2022-10-20 22:15:47',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10869,'1000','121666293218','2022-10-20 22:15:47',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10870,'4000','121666293218','2022-10-20 22:15:47',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10871,'1110','121666294931','2022-10-20 22:42:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10872,'5500','121666294931','2022-10-20 22:42:40',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10873,'1000','121666294931','2022-10-20 22:42:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10874,'4000','121666294931','2022-10-20 22:42:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10875,'1110','121666294963','2022-10-20 22:43:32',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10876,'5500','121666294963','2022-10-20 22:43:32',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10877,'1000','121666294963','2022-10-20 22:43:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10878,'4000','121666294963','2022-10-20 22:43:32',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10879,'1110','121666295149','2022-10-20 22:46:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10880,'5500','121666295149','2022-10-20 22:46:00',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10881,'1000','121666295149','2022-10-20 22:46:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10882,'4000','121666295149','2022-10-20 22:46:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(10883,'1110','121666295164','2022-10-20 23:02:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10884,'1110','121666295164','2022-10-20 23:02:22',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(10885,'5500','121666295164','2022-10-20 23:02:22',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10886,'1000','121666295164','2022-10-20 23:02:22',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10887,'4000','121666295164','2022-10-20 23:02:22',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(10888,'4000','121666295164','2022-10-20 23:02:22',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(10889,'1110','121666296334','2022-10-21 00:05:15',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(10890,'1110','121666296334','2022-10-21 00:05:15',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506011709','','No',NULL,NULL,''),(10891,'5500','121666296334','2022-10-21 00:05:15',1579.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10892,'1000','121666296334','2022-10-21 00:05:15',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10893,'4000','121666296334','2022-10-21 00:05:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(10894,'4000','121666296334','2022-10-21 00:05:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506011709','','No',NULL,NULL,''),(10895,'1110','121666300050','2022-10-21 00:42:25',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10896,'5500','121666300050','2022-10-21 00:42:25',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10897,'1000','121666300050','2022-10-21 00:42:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10898,'4000','121666300050','2022-10-21 00:42:25',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10899,'1110','121666302149','2022-10-21 00:45:45',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(10900,'1110','121666302149','2022-10-21 00:45:45',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10901,'5500','121666302149','2022-10-21 00:45:45',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10902,'1000','121666302149','2022-10-21 00:45:45',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10903,'4000','121666302149','2022-10-21 00:45:45',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(10904,'4000','121666302149','2022-10-21 00:45:45',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10905,'1110','121666302380','2022-10-21 00:50:09',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10906,'5500','121666302380','2022-10-21 00:50:09',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10907,'1000','121666302380','2022-10-21 00:50:09',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10908,'4000','121666302380','2022-10-21 00:50:09',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10909,'1110','121666302614','2022-10-21 00:56:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10910,'5500','121666302614','2022-10-21 00:56:21',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10911,'1000','121666302614','2022-10-21 00:56:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10912,'4000','121666302614','2022-10-21 00:56:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(10913,'1110','121666303045','2022-10-21 01:00:16',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10914,'5500','121666303045','2022-10-21 01:00:16',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10915,'1000','121666303045','2022-10-21 01:00:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10916,'4000','121666303045','2022-10-21 01:00:16',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10917,'1110','121666303314','2022-10-21 01:07:06',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10918,'5500','121666303314','2022-10-21 01:07:06',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10919,'1000','121666303314','2022-10-21 01:07:06',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10920,'4000','121666303314','2022-10-21 01:07:06',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(10921,'1110','121666303662','2022-10-21 01:13:09',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10922,'1110','121666303662','2022-10-21 01:13:09',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10923,'5500','121666303662','2022-10-21 01:13:09',933.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10924,'1000','121666303662','2022-10-21 01:13:09',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10925,'4000','121666303662','2022-10-21 01:13:09',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10926,'4000','121666303662','2022-10-21 01:13:09',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(10927,'1110','121666303993','2022-10-21 01:37:36',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10928,'5500','121666303993','2022-10-21 01:37:36',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10929,'1000','121666303993','2022-10-21 01:37:36',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10930,'4000','121666303993','2022-10-21 01:37:36',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(10931,'1110','121666305552','2022-10-21 03:24:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10932,'5500','121666305552','2022-10-21 03:24:13',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10933,'1000','121666305552','2022-10-21 03:24:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10934,'4000','121666305552','2022-10-21 03:24:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10935,'1110','121666311861','2022-10-21 03:51:11',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10936,'1110','121666311861','2022-10-21 03:51:11',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10937,'5500','121666311861','2022-10-21 03:51:11',725.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10938,'1000','121666311861','2022-10-21 03:51:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10939,'4000','121666311861','2022-10-21 03:51:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10940,'4000','121666311861','2022-10-21 03:51:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10941,'1110','121666355088','2022-10-21 15:26:18',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10942,'1110','121666355088','2022-10-21 15:26:18',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(10943,'1110','121666355088','2022-10-21 15:26:18',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10944,'5500','121666355088','2022-10-21 15:26:18',1217.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10945,'1000','121666355088','2022-10-21 15:26:18',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10946,'4000','121666355088','2022-10-21 15:26:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10947,'4000','121666355088','2022-10-21 15:26:18',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(10948,'4000','121666355088','2022-10-21 15:26:18',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(10949,'1110','121666357192','2022-10-21 16:23:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10950,'5500','121666357192','2022-10-21 16:23:47',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10951,'1000','121666357192','2022-10-21 16:23:47',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10952,'4000','121666357192','2022-10-21 16:23:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10953,'1110','121666358705','2022-10-21 16:34:54',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10954,'1110','121666358705','2022-10-21 16:34:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10955,'5500','121666358705','2022-10-21 16:34:54',127.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10956,'1000','121666358705','2022-10-21 16:34:54',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10957,'4000','121666358705','2022-10-21 16:34:54',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(10958,'4000','121666358705','2022-10-21 16:34:54',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10959,'1110','121666359327','2022-10-21 17:10:33',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10960,'5500','121666359327','2022-10-21 17:10:33',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10961,'1000','121666359327','2022-10-21 17:10:33',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10962,'4000','121666359327','2022-10-21 17:10:33',NULL,660.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10963,'1110','121666361520','2022-10-21 17:12:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(10964,'5500','121666361520','2022-10-21 17:12:04',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10965,'1000','121666361520','2022-10-21 17:12:04',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10966,'4000','121666361520','2022-10-21 17:12:04',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(10967,'1110','121666361646','2022-10-21 17:45:42',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10968,'1110','121666361646','2022-10-21 17:45:42',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(10969,'5500','121666361646','2022-10-21 17:45:42',733.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10970,'1000','121666361646','2022-10-21 17:45:42',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10971,'4000','121666361646','2022-10-21 17:45:42',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10972,'4000','121666361646','2022-10-21 17:45:42',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(10973,'1110','121666363590','2022-10-21 17:53:25',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10974,'5500','121666363590','2022-10-21 17:53:25',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10975,'1000','121666363590','2022-10-21 17:53:25',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10976,'4000','121666363590','2022-10-21 17:53:25',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(10977,'1110','121666364488','2022-10-21 19:41:20',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10978,'5500','121666364488','2022-10-21 19:41:20',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10979,'1000','121666364488','2022-10-21 19:41:20',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10980,'4000','121666364488','2022-10-21 19:41:20',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(10981,'1110','121666370485','2022-10-21 21:22:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10982,'1110','121666370485','2022-10-21 21:22:37',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(10983,'1110','121666370485','2022-10-21 21:22:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10984,'5500','121666370485','2022-10-21 21:22:37',561.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10985,'1000','121666370485','2022-10-21 21:22:37',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10986,'4000','121666370485','2022-10-21 21:22:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10987,'4000','121666370485','2022-10-21 21:22:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(10988,'4000','121666370485','2022-10-21 21:22:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(10989,'1110','121666376563','2022-10-21 21:24:31',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10990,'1110','121666376563','2022-10-21 21:24:31',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10991,'1110','121666376563','2022-10-21 21:24:31',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(10992,'1110','121666376563','2022-10-21 21:24:31',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(10993,'1110','121666376563','2022-10-21 21:24:31',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(10994,'1110','121666376563','2022-10-21 21:24:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(10995,'5500','121666376563','2022-10-21 21:24:31',1499.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(10996,'1000','121666376563','2022-10-21 21:24:31',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(10997,'4000','121666376563','2022-10-21 21:24:31',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(10998,'4000','121666376563','2022-10-21 21:24:31',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(10999,'4000','121666376563','2022-10-21 21:24:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11000,'4000','121666376563','2022-10-21 21:24:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11001,'4000','121666376563','2022-10-21 21:24:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11002,'4000','121666376563','2022-10-21 21:24:31',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11003,'1110','121666376796','2022-10-21 21:29:56',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11004,'1110','121666376796','2022-10-21 21:29:56',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11005,'5500','121666376796','2022-10-21 21:29:56',1084.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11006,'1000','121666376796','2022-10-21 21:29:56',1540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11007,'4000','121666376796','2022-10-21 21:29:56',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11008,'4000','121666376796','2022-10-21 21:29:56',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11009,'1110','121666377035','2022-10-21 21:33:16',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11010,'5500','121666377035','2022-10-21 21:33:16',929.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11011,'1000','121666377035','2022-10-21 21:33:16',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11012,'4000','121666377035','2022-10-21 21:33:16',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11013,'1110','121666377463','2022-10-21 21:39:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11014,'5500','121666377463','2022-10-21 21:39:25',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11015,'1000','121666377463','2022-10-21 21:39:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11016,'4000','121666377463','2022-10-21 21:39:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11017,'1110','121666377575','2022-10-21 21:44:55',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11018,'1110','121666377575','2022-10-21 21:44:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11019,'5500','121666377575','2022-10-21 21:44:55',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11020,'1000','121666377575','2022-10-21 21:44:55',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11021,'4000','121666377575','2022-10-21 21:44:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11022,'4000','121666377575','2022-10-21 21:44:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11023,'1110','121666377899','2022-10-21 21:49:48',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(11024,'5500','121666377899','2022-10-21 21:49:48',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11025,'1000','121666377899','2022-10-21 21:49:48',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11026,'4000','121666377899','2022-10-21 21:49:48',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(11027,'1110','121666378468','2022-10-21 22:14:57',NULL,886.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(11028,'1110','121666378468','2022-10-21 22:14:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11029,'5500','121666378468','2022-10-21 22:14:57',923.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11030,'1000','121666378468','2022-10-21 22:14:57',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11031,'4000','121666378468','2022-10-21 22:14:57',NULL,1200.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(11032,'4000','121666378468','2022-10-21 22:14:57',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11033,'1110','121666379829','2022-10-21 22:23:19',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11034,'1110','121666379829','2022-10-21 22:23:19',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11035,'1110','121666379829','2022-10-21 22:23:19',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11036,'1110','121666379829','2022-10-21 22:23:19',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11037,'5500','121666379829','2022-10-21 22:23:19',1092.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11038,'1000','121666379829','2022-10-21 22:23:19',1580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11039,'4000','121666379829','2022-10-21 22:23:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11040,'4000','121666379829','2022-10-21 22:23:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11041,'4000','121666379829','2022-10-21 22:23:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11042,'4000','121666379829','2022-10-21 22:23:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11043,'1110','121666380226','2022-10-21 22:36:24',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(11044,'1110','121666380226','2022-10-21 22:36:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11045,'5500','121666380226','2022-10-21 22:36:24',2591.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11046,'1000','121666380226','2022-10-21 22:36:24',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11047,'4000','121666380226','2022-10-21 22:36:24',NULL,3600.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(11048,'4000','121666380226','2022-10-21 22:36:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11049,'1110','121666381537','2022-10-21 22:48:00',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11050,'1110','121666381537','2022-10-21 22:48:00',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11051,'5500','121666381537','2022-10-21 22:48:00',536.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11052,'1000','121666381537','2022-10-21 22:48:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11053,'4000','121666381537','2022-10-21 22:48:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11054,'4000','121666381537','2022-10-21 22:48:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11055,'1110','121666381684','2022-10-21 22:48:52',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11056,'1110','121666381684','2022-10-21 22:48:52',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11057,'5500','121666381684','2022-10-21 22:48:52',561.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11058,'1000','121666381684','2022-10-21 22:48:52',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11059,'4000','121666381684','2022-10-21 22:48:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11060,'4000','121666381684','2022-10-21 22:48:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11061,'1110','121666381854','2022-10-21 22:52:48',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(11062,'1110','121666381854','2022-10-21 22:52:48',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(11063,'1110','121666381854','2022-10-21 22:52:48',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(11064,'1110','121666381854','2022-10-21 22:52:48',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11065,'5500','121666381854','2022-10-21 22:52:48',2042.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11066,'1000','121666381854','2022-10-21 22:52:48',2670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11067,'4000','121666381854','2022-10-21 22:52:48',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(11068,'4000','121666381854','2022-10-21 22:52:48',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(11069,'4000','121666381854','2022-10-21 22:52:48',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(11070,'4000','121666381854','2022-10-21 22:52:48',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11071,'1110','121666382874','2022-10-21 23:08:09',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11072,'5500','121666382874','2022-10-21 23:08:09',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11073,'1000','121666382874','2022-10-21 23:08:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11074,'4000','121666382874','2022-10-21 23:08:09',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11075,'1110','121666383162','2022-10-21 23:14:11',NULL,700.00,'','12','1','Inventory sold','1','','sales','6001812011936','','No',NULL,NULL,''),(11076,'1110','121666383162','2022-10-21 23:14:11',NULL,3954.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(11077,'1110','121666383162','2022-10-21 23:14:11',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11078,'5500','121666383162','2022-10-21 23:14:11',4728.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11079,'1000','121666383162','2022-10-21 23:14:11',6600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11080,'4000','121666383162','2022-10-21 23:14:11',NULL,950.00,'','12','1','Good sold','1','','sales','6001812011936','','No',NULL,NULL,''),(11081,'4000','121666383162','2022-10-21 23:14:11',NULL,5500.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(11082,'4000','121666383162','2022-10-21 23:14:11',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11083,'1110','121666383317','2022-10-21 23:16:07',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(11084,'1110','121666383317','2022-10-21 23:16:07',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11085,'5500','121666383317','2022-10-21 23:16:07',890.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11086,'1000','121666383317','2022-10-21 23:16:07',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11087,'4000','121666383317','2022-10-21 23:16:07',NULL,1250.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(11088,'4000','121666383317','2022-10-21 23:16:07',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11089,'1110','121666383652','2022-10-21 23:22:01',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11090,'1110','121666383652','2022-10-21 23:22:01',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11091,'1110','121666383652','2022-10-21 23:22:01',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11092,'5500','121666383652','2022-10-21 23:22:01',1433.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11093,'1000','121666383652','2022-10-21 23:22:01',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11094,'4000','121666383652','2022-10-21 23:22:01',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11095,'4000','121666383652','2022-10-21 23:22:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11096,'4000','121666383652','2022-10-21 23:22:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11097,'1110','121666384455','2022-10-21 23:35:45',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11098,'5500','121666384455','2022-10-21 23:35:45',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11099,'1000','121666384455','2022-10-21 23:35:45',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11100,'4000','121666384455','2022-10-21 23:35:45',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11101,'1110','121666384915','2022-10-21 23:58:10',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11102,'1110','121666384915','2022-10-21 23:58:10',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11103,'5500','121666384915','2022-10-21 23:58:10',933.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11104,'1000','121666384915','2022-10-21 23:58:10',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11105,'4000','121666384915','2022-10-21 23:58:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11106,'4000','121666384915','2022-10-21 23:58:10',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11107,'1110','121666385994','2022-10-22 00:25:34',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11108,'5500','121666385994','2022-10-22 00:25:34',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11109,'1000','121666385994','2022-10-22 00:25:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11110,'4000','121666385994','2022-10-22 00:25:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11111,'1110','121666388625','2022-10-22 00:43:54',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(11112,'5500','121666388625','2022-10-22 00:43:54',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11113,'1000','121666388625','2022-10-22 00:43:54',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11114,'4000','121666388625','2022-10-22 00:43:54',NULL,400.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(11115,'1110','121666389663','2022-10-22 01:01:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11116,'1110','121666389663','2022-10-22 01:01:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11117,'1110','121666389663','2022-10-22 01:01:32',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11118,'1110','121666389663','2022-10-22 01:01:32',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11119,'5500','121666389663','2022-10-22 01:01:32',712.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11120,'1000','121666389663','2022-10-22 01:01:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11121,'4000','121666389663','2022-10-22 01:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11122,'4000','121666389663','2022-10-22 01:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11123,'4000','121666389663','2022-10-22 01:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11124,'4000','121666389663','2022-10-22 01:01:32',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11125,'1110','121666389888','2022-10-22 01:05:11',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11126,'5500','121666389888','2022-10-22 01:05:11',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11127,'1000','121666389888','2022-10-22 01:05:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11128,'4000','121666389888','2022-10-22 01:05:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11129,'1110','121666389915','2022-10-22 01:27:09',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11130,'5500','121666389915','2022-10-22 01:27:09',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11131,'1000','121666389915','2022-10-22 01:27:09',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11132,'4000','121666389915','2022-10-22 01:27:09',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11133,'1110','121666391803','2022-10-22 01:50:54',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11134,'5500','121666391803','2022-10-22 01:50:54',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11135,'1000','121666391803','2022-10-22 01:50:54',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11136,'4000','121666391803','2022-10-22 01:50:54',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11137,'1110','121666392724','2022-10-22 02:08:09',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(11138,'1110','121666392724','2022-10-22 02:08:09',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(11139,'5500','121666392724','2022-10-22 02:08:09',2828.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11140,'1000','121666392724','2022-10-22 02:08:09',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11141,'4000','121666392724','2022-10-22 02:08:09',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(11142,'4000','121666392724','2022-10-22 02:08:09',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(11143,'1110','121666393764','2022-10-22 02:26:51',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(11144,'5500','121666393764','2022-10-22 02:26:51',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11145,'1000','121666393764','2022-10-22 02:26:51',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11146,'4000','121666393764','2022-10-22 02:26:51',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(11147,'1110','121666395978','2022-10-22 02:47:52',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(11148,'1110','121666395978','2022-10-22 02:47:52',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11149,'5500','121666395978','2022-10-22 02:47:52',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11150,'1000','121666395978','2022-10-22 02:47:52',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11151,'4000','121666395978','2022-10-22 02:47:52',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(11152,'4000','121666395978','2022-10-22 02:47:52',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11153,'1110','121666442804','2022-10-22 15:47:43',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(11154,'1110','121666442804','2022-10-22 15:47:43',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(11155,'1110','121666442804','2022-10-22 15:47:43',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11156,'1110','121666442804','2022-10-22 15:47:43',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(11157,'5500','121666442804','2022-10-22 15:47:43',1322.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11158,'1000','121666442804','2022-10-22 15:47:43',1930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11159,'4000','121666442804','2022-10-22 15:47:43',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(11160,'4000','121666442804','2022-10-22 15:47:43',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(11161,'4000','121666442804','2022-10-22 15:47:43',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11162,'4000','121666442804','2022-10-22 15:47:43',NULL,750.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(11163,'1110','121666444789','2022-10-22 17:15:57',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(11164,'5500','121666444789','2022-10-22 17:15:57',2760.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11165,'1000','121666444789','2022-10-22 17:15:57',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11166,'4000','121666444789','2022-10-22 17:15:57',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(11167,'1110','121666448268','2022-10-22 17:18:08',NULL,642.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(11168,'5500','121666448268','2022-10-22 17:18:08',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11169,'1000','121666448268','2022-10-22 17:18:08',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11170,'4000','121666448268','2022-10-22 17:18:08',NULL,750.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(11171,'1110','121666452909','2022-10-22 18:35:24',NULL,1456.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11172,'5500','121666452909','2022-10-22 18:35:24',1456.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11173,'1000','121666452909','2022-10-22 18:35:24',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11174,'4000','121666452909','2022-10-22 18:35:24',NULL,2000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11175,'1110','121666452969','2022-10-22 18:55:12',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(11176,'1110','121666452969','2022-10-22 18:55:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11177,'5500','121666452969','2022-10-22 18:55:12',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11178,'1000','121666452969','2022-10-22 18:55:12',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11179,'4000','121666452969','2022-10-22 18:55:12',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(11180,'4000','121666452969','2022-10-22 18:55:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11181,'1110','121666454157','2022-10-22 20:14:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11182,'5500','121666454157','2022-10-22 20:14:32',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11183,'1000','121666454157','2022-10-22 20:14:32',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11184,'4000','121666454157','2022-10-22 20:14:32',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11185,'1110','121666458878','2022-10-22 20:47:55',NULL,1280.00,'','12','1','Inventory sold','1','','sales','7794450091598','','No',NULL,NULL,''),(11186,'5500','121666458878','2022-10-22 20:47:55',1280.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11187,'1000','121666458878','2022-10-22 20:47:55',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11188,'4000','121666458878','2022-10-22 20:47:55',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091598','','No',NULL,NULL,''),(11189,'1110','121666462416','2022-10-22 21:45:39',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11190,'5500','121666462416','2022-10-22 21:45:39',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11191,'1000','121666462416','2022-10-22 21:45:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11192,'4000','121666462416','2022-10-22 21:45:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11193,'1110','121666464344','2022-10-22 21:54:41',NULL,6800.00,'','12','1','Inventory sold','1','','sales','5010327302201','','No',NULL,NULL,''),(11194,'1110','121666464344','2022-10-22 21:54:41',NULL,836.00,'','12','1','Inventory sold','1','','sales','6161101561021','','No',NULL,NULL,''),(11195,'5500','121666464344','2022-10-22 21:54:41',7636.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11196,'1000','121666464344','2022-10-22 21:54:41',9900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11197,'4000','121666464344','2022-10-22 21:54:41',NULL,8500.00,'','12','1','Good sold','1','','sales','5010327302201','','No',NULL,NULL,''),(11198,'4000','121666464344','2022-10-22 21:54:41',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101561021','','No',NULL,NULL,''),(11199,'1110','121666464935','2022-10-22 22:00:00',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11200,'1110','121666464935','2022-10-22 22:00:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11201,'5500','121666464935','2022-10-22 22:00:00',401.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11202,'1000','121666464935','2022-10-22 22:00:00',610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11203,'4000','121666464935','2022-10-22 22:00:00',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11204,'4000','121666464935','2022-10-22 22:00:00',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11205,'1110','121666467142','2022-10-22 22:34:18',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11206,'1110','121666467142','2022-10-22 22:34:18',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11207,'5500','121666467142','2022-10-22 22:34:18',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11208,'1000','121666467142','2022-10-22 22:34:18',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11209,'4000','121666467142','2022-10-22 22:34:18',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11210,'4000','121666467142','2022-10-22 22:34:18',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11211,'1110','121666467405','2022-10-22 22:51:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11212,'5500','121666467405','2022-10-22 22:51:49',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11213,'1000','121666467405','2022-10-22 22:51:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11214,'4000','121666467405','2022-10-22 22:51:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11215,'1110','121666468348','2022-10-22 23:00:46',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11216,'5500','121666468348','2022-10-22 23:00:46',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11217,'1000','121666468348','2022-10-22 23:00:46',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11218,'4000','121666468348','2022-10-22 23:00:46',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11219,'1110','121666468905','2022-10-22 23:06:41',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(11220,'5500','121666468905','2022-10-22 23:06:41',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11221,'1000','121666468905','2022-10-22 23:06:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11222,'4000','121666468905','2022-10-22 23:06:41',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(11223,'1110','121666469290','2022-10-22 23:31:32',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11224,'5500','121666469290','2022-10-22 23:31:32',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11225,'1000','121666469290','2022-10-22 23:31:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11226,'4000','121666469290','2022-10-22 23:31:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11227,'1110','121666470758','2022-10-23 00:03:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11228,'5500','121666470758','2022-10-23 00:03:05',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11229,'1000','121666470758','2022-10-23 00:03:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11230,'4000','121666470758','2022-10-23 00:03:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11231,'1110','121666472620','2022-10-23 00:13:23',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(11232,'1110','121666472620','2022-10-23 00:13:23',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11233,'1110','121666472620','2022-10-23 00:13:23',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(11234,'5500','121666472620','2022-10-23 00:13:23',704.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11235,'1000','121666472620','2022-10-23 00:13:23',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11236,'4000','121666472620','2022-10-23 00:13:23',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(11237,'4000','121666472620','2022-10-23 00:13:23',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11238,'4000','121666472620','2022-10-23 00:13:23',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(11239,'1110','121666473233','2022-10-23 00:25:32',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11240,'5500','121666473233','2022-10-23 00:25:32',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11241,'1000','121666473233','2022-10-23 00:25:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11242,'4000','121666473233','2022-10-23 00:25:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11243,'1110','121666473937','2022-10-23 00:53:20',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11244,'5500','121666473937','2022-10-23 00:53:20',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11245,'1000','121666473937','2022-10-23 00:53:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11246,'4000','121666473937','2022-10-23 00:53:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11247,'1110','121666475876','2022-10-23 00:58:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11248,'5500','121666475876','2022-10-23 00:58:07',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11249,'1000','121666475876','2022-10-23 00:58:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11250,'4000','121666475876','2022-10-23 00:58:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11251,'1110','121666476199','2022-10-23 01:03:33',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11252,'5500','121666476199','2022-10-23 01:03:33',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11253,'1000','121666476199','2022-10-23 01:03:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11254,'4000','121666476199','2022-10-23 01:03:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11255,'1110','121666476219','2022-10-23 01:22:28',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(11256,'5500','121666476219','2022-10-23 01:22:28',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11257,'1000','121666476219','2022-10-23 01:22:28',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11258,'4000','121666476219','2022-10-23 01:22:28',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(11259,'1110','121666477433','2022-10-23 01:49:58',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11260,'1110','121666477433','2022-10-23 01:49:58',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11261,'5500','121666477433','2022-10-23 01:49:58',495.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11262,'1000','121666477433','2022-10-23 01:49:58',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11263,'4000','121666477433','2022-10-23 01:49:58',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11264,'4000','121666477433','2022-10-23 01:49:58',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11265,'1110','121666479002','2022-10-23 01:53:29',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11266,'5500','121666479002','2022-10-23 01:53:29',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11267,'1000','121666479002','2022-10-23 01:53:29',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11268,'4000','121666479002','2022-10-23 01:53:29',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11269,'1110','121666479217','2022-10-23 02:31:06',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11270,'5500','121666479217','2022-10-23 02:31:06',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11271,'1000','121666479217','2022-10-23 02:31:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11272,'4000','121666479217','2022-10-23 02:31:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11273,'1110','121666481477','2022-10-23 02:38:13',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(11274,'5500','121666481477','2022-10-23 02:38:13',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11275,'1000','121666481477','2022-10-23 02:38:13',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11276,'4000','121666481477','2022-10-23 02:38:13',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(11277,'1110','121666482345','2022-10-23 02:46:17',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11278,'5500','121666482345','2022-10-23 02:46:17',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11279,'1000','121666482345','2022-10-23 02:46:17',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11280,'4000','121666482345','2022-10-23 02:46:17',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11281,'1110','121666482391','2022-10-23 03:33:56',NULL,272.00,'','12','1','Inventory sold','1','','sales','5052197004281','','No',NULL,NULL,''),(11282,'5500','121666482391','2022-10-23 03:33:56',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11283,'1000','121666482391','2022-10-23 03:33:56',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11284,'4000','121666482391','2022-10-23 03:33:56',NULL,600.00,'','12','1','Good sold','1','','sales','5052197004281','','No',NULL,NULL,''),(11285,'1110','121666485307','2022-10-23 03:55:48',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(11286,'1110','121666485307','2022-10-23 03:55:48',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11287,'1110','121666485307','2022-10-23 03:55:48',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(11288,'5500','121666485307','2022-10-23 03:55:48',1025.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11289,'1000','121666485307','2022-10-23 03:55:48',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11290,'4000','121666485307','2022-10-23 03:55:48',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(11291,'4000','121666485307','2022-10-23 03:55:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11292,'4000','121666485307','2022-10-23 03:55:48',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(11293,'1110','121666486636','2022-10-23 04:04:56',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(11294,'1110','121666486636','2022-10-23 04:04:56',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11295,'1110','121666486636','2022-10-23 04:04:56',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11296,'1110','121666486636','2022-10-23 04:04:56',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11297,'5500','121666486636','2022-10-23 04:04:56',1526.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11298,'1000','121666486636','2022-10-23 04:04:56',2490.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11299,'4000','121666486636','2022-10-23 04:04:56',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(11300,'4000','121666486636','2022-10-23 04:04:56',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11301,'4000','121666486636','2022-10-23 04:04:56',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11302,'4000','121666486636','2022-10-23 04:04:56',NULL,660.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11303,'1110','121666539939','2022-10-23 18:45:56',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11304,'5500','121666539939','2022-10-23 18:45:56',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11305,'1000','121666539939','2022-10-23 18:45:56',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11306,'4000','121666539939','2022-10-23 18:45:56',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11307,'1110','121666539962','2022-10-23 19:16:13',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(11308,'1110','121666539962','2022-10-23 19:16:13',NULL,815.00,'','12','1','Inventory sold','1','','sales','6001812011912','','No',NULL,NULL,''),(11309,'5500','121666539962','2022-10-23 19:16:13',1544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11310,'1000','121666539962','2022-10-23 19:16:13',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11311,'4000','121666539962','2022-10-23 19:16:13',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(11312,'4000','121666539962','2022-10-23 19:16:13',NULL,1100.00,'','12','1','Good sold','1','','sales','6001812011912','','No',NULL,NULL,''),(11313,'1110','121666542006','2022-10-23 20:11:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11314,'5500','121666542006','2022-10-23 20:11:28',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11315,'1000','121666542006','2022-10-23 20:11:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11316,'4000','121666542006','2022-10-23 20:11:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11317,'1110','121666545092','2022-10-23 20:42:32',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11318,'5500','121666545092','2022-10-23 20:42:32',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11319,'1000','121666545092','2022-10-23 20:42:32',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11320,'4000','121666545092','2022-10-23 20:42:32',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11321,'1110','121666546963','2022-10-23 20:43:22',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11322,'5500','121666546963','2022-10-23 20:43:22',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11323,'1000','121666546963','2022-10-23 20:43:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11324,'4000','121666546963','2022-10-23 20:43:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11325,'1110','121666547006','2022-10-23 20:50:03',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(11326,'5500','121666547006','2022-10-23 20:50:03',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11327,'1000','121666547006','2022-10-23 20:50:03',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11328,'4000','121666547006','2022-10-23 20:50:03',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(11329,'1110','121666547454','2022-10-23 21:02:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11330,'1110','121666547454','2022-10-23 21:02:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11331,'5500','121666547454','2022-10-23 21:02:24',371.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11332,'1000','121666547454','2022-10-23 21:02:24',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11333,'4000','121666547454','2022-10-23 21:02:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11334,'4000','121666547454','2022-10-23 21:02:24',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(11335,'1110','121666548156','2022-10-23 21:05:51',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11336,'5500','121666548156','2022-10-23 21:05:51',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11337,'1000','121666548156','2022-10-23 21:05:51',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11338,'4000','121666548156','2022-10-23 21:05:51',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11339,'1110','121666548362','2022-10-23 21:53:37',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452371506','','No',NULL,NULL,''),(11340,'5500','121666548362','2022-10-23 21:53:37',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11341,'1000','121666548362','2022-10-23 21:53:37',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11342,'4000','121666548362','2022-10-23 21:53:37',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452371506','','No',NULL,NULL,''),(11343,'1110','121666551286','2022-10-23 21:56:22',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11344,'1110','121666551286','2022-10-23 21:56:22',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11345,'5500','121666551286','2022-10-23 21:56:22',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11346,'1000','121666551286','2022-10-23 21:56:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11347,'4000','121666551286','2022-10-23 21:56:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11348,'4000','121666551286','2022-10-23 21:56:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11349,'1110','121666551424','2022-10-23 22:13:26',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(11350,'5500','121666551424','2022-10-23 22:13:26',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11351,'1000','121666551424','2022-10-23 22:13:26',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11352,'4000','121666551424','2022-10-23 22:13:26',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(11353,'1110','121666552475','2022-10-23 22:21:23',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(11354,'5500','121666552475','2022-10-23 22:21:23',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11355,'1000','121666552475','2022-10-23 22:21:23',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11356,'4000','121666552475','2022-10-23 22:21:23',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(11357,'1110','121666552925','2022-10-23 22:22:09',NULL,363.00,'','12','1','Inventory sold','1','','sales','6161100420076','','No',NULL,NULL,''),(11358,'5500','121666552925','2022-10-23 22:22:09',363.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11359,'1000','121666552925','2022-10-23 22:22:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11360,'4000','121666552925','2022-10-23 22:22:09',NULL,1000.00,'','12','1','Good sold','1','','sales','6161100420076','','No',NULL,NULL,''),(11361,'1110','121666553437','2022-10-23 22:30:59',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(11362,'1110','121666553437','2022-10-23 22:30:59',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(11363,'5500','121666553437','2022-10-23 22:30:59',5061.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11364,'1000','121666553437','2022-10-23 22:30:59',7350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11365,'4000','121666553437','2022-10-23 22:30:59',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(11366,'4000','121666553437','2022-10-23 22:30:59',NULL,3350.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(11367,'1110','121666553654','2022-10-23 22:41:42',NULL,3954.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(11368,'5500','121666553654','2022-10-23 22:41:42',3954.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11369,'1000','121666553654','2022-10-23 22:41:42',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11370,'4000','121666553654','2022-10-23 22:41:42',NULL,5500.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(11371,'1110','121666554148','2022-10-23 22:48:27',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11372,'1110','121666554148','2022-10-23 22:48:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11373,'5500','121666554148','2022-10-23 22:48:27',462.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11374,'1000','121666554148','2022-10-23 22:48:27',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11375,'4000','121666554148','2022-10-23 22:48:27',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11376,'4000','121666554148','2022-10-23 22:48:27',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11377,'1110','121666554534','2022-10-23 22:52:43',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11378,'5500','121666554534','2022-10-23 22:52:43',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11379,'1000','121666554534','2022-10-23 22:52:43',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11380,'4000','121666554534','2022-10-23 22:52:43',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11381,'1110','121666554767','2022-10-23 23:19:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11382,'1110','121666554767','2022-10-23 23:19:53',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11383,'1110','121666554767','2022-10-23 23:19:53',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11384,'1110','121666554767','2022-10-23 23:19:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11385,'1110','121666554767','2022-10-23 23:19:53',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11386,'5500','121666554767','2022-10-23 23:19:53',689.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11387,'1000','121666554767','2022-10-23 23:19:53',1110.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11388,'4000','121666554767','2022-10-23 23:19:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11389,'4000','121666554767','2022-10-23 23:19:53',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11390,'4000','121666554767','2022-10-23 23:19:53',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11391,'4000','121666554767','2022-10-23 23:19:53',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11392,'4000','121666554767','2022-10-23 23:19:53',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11393,'1110','121666557638','2022-10-23 23:57:49',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(11394,'1110','121666557638','2022-10-23 23:57:49',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11395,'1110','121666557638','2022-10-23 23:57:49',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11396,'1110','121666557638','2022-10-23 23:57:49',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11397,'1110','121666557638','2022-10-23 23:57:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(11398,'5500','121666557638','2022-10-23 23:57:49',1252.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11399,'1000','121666557638','2022-10-23 23:57:49',1860.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11400,'4000','121666557638','2022-10-23 23:57:49',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(11401,'4000','121666557638','2022-10-23 23:57:49',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11402,'4000','121666557638','2022-10-23 23:57:49',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11403,'4000','121666557638','2022-10-23 23:57:49',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11404,'4000','121666557638','2022-10-23 23:57:49',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(11405,'1110','121666558734','2022-10-24 00:16:58',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11406,'5500','121666558734','2022-10-24 00:16:58',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11407,'1000','121666558734','2022-10-24 00:16:58',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11408,'4000','121666558734','2022-10-24 00:16:58',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11409,'1110','121666559822','2022-10-24 00:23:40',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11410,'5500','121666559822','2022-10-24 00:23:40',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11411,'1000','121666559822','2022-10-24 00:23:40',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11412,'4000','121666559822','2022-10-24 00:23:40',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11413,'1110','121666560353','2022-10-24 00:41:24',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(11414,'5500','121666560353','2022-10-24 00:41:24',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11415,'1000','121666560353','2022-10-24 00:41:24',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11416,'4000','121666560353','2022-10-24 00:41:24',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(11417,'1110','121666561315','2022-10-24 01:45:23',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(11418,'5500','121666561315','2022-10-24 01:45:23',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11419,'1000','121666561315','2022-10-24 01:45:23',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11420,'4000','121666561315','2022-10-24 01:45:23',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(11421,'1110','121666565190','2022-10-24 01:57:50',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11422,'5500','121666565190','2022-10-24 01:57:50',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11423,'1000','121666565190','2022-10-24 01:57:50',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11424,'4000','121666565190','2022-10-24 01:57:50',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11425,'1110','121666565908','2022-10-24 01:58:53',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(11426,'1110','121666565908','2022-10-24 01:58:53',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(11427,'5500','121666565908','2022-10-24 01:58:53',238.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11428,'1000','121666565908','2022-10-24 01:58:53',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11429,'4000','121666565908','2022-10-24 01:58:53',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(11430,'4000','121666565908','2022-10-24 01:58:53',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(11431,'1110','121666565937','2022-10-24 02:23:06',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11432,'5500','121666565937','2022-10-24 02:23:06',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11433,'1000','121666565937','2022-10-24 02:23:06',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11434,'4000','121666565937','2022-10-24 02:23:06',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11435,'1110','121666569269','2022-10-24 02:57:09',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(11436,'5500','121666569269','2022-10-24 02:57:09',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11437,'1000','121666569269','2022-10-24 02:57:09',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11438,'4000','121666569269','2022-10-24 02:57:09',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(11439,'1110','121666569573','2022-10-24 03:05:24',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11440,'5500','121666569573','2022-10-24 03:05:24',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11441,'1000','121666569573','2022-10-24 03:05:24',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11442,'4000','121666569573','2022-10-24 03:05:24',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(11443,'1110','121666628078','2022-10-24 19:14:44',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(11444,'5500','121666628078','2022-10-24 19:14:44',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11445,'1000','121666628078','2022-10-24 19:14:44',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11446,'4000','121666628078','2022-10-24 19:14:44',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(11447,'1110','121666628620','2022-10-24 19:23:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11448,'5500','121666628620','2022-10-24 19:23:49',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11449,'1000','121666628620','2022-10-24 19:23:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11450,'4000','121666628620','2022-10-24 19:23:49',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11451,'1110','121666636735','2022-10-24 21:39:20',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11452,'1110','121666636735','2022-10-24 21:39:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11453,'5500','121666636735','2022-10-24 21:39:20',508.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11454,'1000','121666636735','2022-10-24 21:39:20',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11455,'4000','121666636735','2022-10-24 21:39:20',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11456,'4000','121666636735','2022-10-24 21:39:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11457,'1110','121666636770','2022-10-24 22:38:35',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11458,'5500','121666636770','2022-10-24 22:38:35',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11459,'1000','121666636770','2022-10-24 22:38:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11460,'4000','121666636770','2022-10-24 22:38:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11461,'1110','121666640349','2022-10-24 23:32:01',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11462,'5500','121666640349','2022-10-24 23:32:01',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11463,'1000','121666640349','2022-10-24 23:32:01',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11464,'4000','121666640349','2022-10-24 23:32:01',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11465,'1110','121666643525','2022-10-25 00:13:36',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11466,'5500','121666643525','2022-10-25 00:13:36',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11467,'1000','121666643525','2022-10-25 00:13:36',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11468,'4000','121666643525','2022-10-25 00:13:36',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11469,'1110','121666646114','2022-10-25 00:56:35',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11470,'5500','121666646114','2022-10-25 00:56:35',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11471,'1000','121666646114','2022-10-25 00:56:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11472,'4000','121666646114','2022-10-25 00:56:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11473,'1110','121666648600','2022-10-25 01:13:12',NULL,2011.00,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(11474,'5500','121666648600','2022-10-25 01:13:12',2011.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11475,'1000','121666648600','2022-10-25 01:13:12',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11476,'4000','121666648600','2022-10-25 01:13:12',NULL,2800.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(11477,'1110','121666650024','2022-10-25 01:21:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11478,'1110','121666650024','2022-10-25 01:21:52',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11479,'1110','121666650024','2022-10-25 01:21:52',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11480,'5500','121666650024','2022-10-25 01:21:52',1860.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11481,'1000','121666650024','2022-10-25 01:21:52',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11482,'4000','121666650024','2022-10-25 01:21:52',NULL,1550.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11483,'4000','121666650024','2022-10-25 01:21:52',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11484,'4000','121666650024','2022-10-25 01:21:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11485,'1110','121666650215','2022-10-25 01:25:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11486,'1110','121666650215','2022-10-25 01:25:08',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11487,'5500','121666650215','2022-10-25 01:25:08',194.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11488,'1000','121666650215','2022-10-25 01:25:08',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11489,'4000','121666650215','2022-10-25 01:25:08',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11490,'4000','121666650215','2022-10-25 01:25:08',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11491,'1110','121666650311','2022-10-25 02:43:50',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11492,'5500','121666650311','2022-10-25 02:43:50',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11493,'1000','121666650311','2022-10-25 02:43:50',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11494,'4000','121666650311','2022-10-25 02:43:50',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11495,'1110','121666698208','2022-10-25 14:44:28',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11496,'1110','121666698208','2022-10-25 14:44:28',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11497,'1110','121666698208','2022-10-25 14:44:28',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11498,'5500','121666698208','2022-10-25 14:44:28',224.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11499,'1000','121666698208','2022-10-25 14:44:28',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11500,'4000','121666698208','2022-10-25 14:44:28',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11501,'4000','121666698208','2022-10-25 14:44:28',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11502,'4000','121666698208','2022-10-25 14:44:28',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11503,'1110','121666698275','2022-10-25 16:13:52',NULL,84.00,'','12','1','Inventory sold','1','','sales','5449000061478','','No',NULL,NULL,''),(11504,'5500','121666698275','2022-10-25 16:13:52',84.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11505,'1000','121666698275','2022-10-25 16:13:52',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11506,'4000','121666698275','2022-10-25 16:13:52',NULL,180.00,'','12','1','Good sold','1','','sales','5449000061478','','No',NULL,NULL,''),(11507,'1110','121666703833','2022-10-25 16:29:36',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11508,'5500','121666703833','2022-10-25 16:29:36',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11509,'1000','121666703833','2022-10-25 16:29:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11510,'4000','121666703833','2022-10-25 16:29:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11511,'1110','121666715891','2022-10-25 19:38:22',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11512,'5500','121666715891','2022-10-25 19:38:22',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11513,'1000','121666715891','2022-10-25 19:38:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11514,'4000','121666715891','2022-10-25 19:38:22',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11515,'1110','121666715915','2022-10-25 20:10:10',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11516,'5500','121666715915','2022-10-25 20:10:10',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11517,'1000','121666715915','2022-10-25 20:10:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11518,'4000','121666715915','2022-10-25 20:10:10',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11519,'1110','121666721062','2022-10-25 21:19:26',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(11520,'5500','121666721062','2022-10-25 21:19:26',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11521,'1000','121666721062','2022-10-25 21:19:26',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11522,'4000','121666721062','2022-10-25 21:19:26',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(11523,'1110','121666722078','2022-10-25 21:21:26',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(11524,'5500','121666722078','2022-10-25 21:21:26',502.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11525,'1000','121666722078','2022-10-25 21:21:26',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11526,'4000','121666722078','2022-10-25 21:21:26',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(11527,'1110','121666722091','2022-10-25 22:20:33',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11528,'1110','121666722091','2022-10-25 22:20:33',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11529,'5500','121666722091','2022-10-25 22:20:33',550.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11530,'1000','121666722091','2022-10-25 22:20:33',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11531,'4000','121666722091','2022-10-25 22:20:33',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(11532,'4000','121666722091','2022-10-25 22:20:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11533,'1110','121666725782','2022-10-25 22:29:50',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11534,'5500','121666725782','2022-10-25 22:29:50',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11535,'1000','121666725782','2022-10-25 22:29:50',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11536,'4000','121666725782','2022-10-25 22:29:50',NULL,1320.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11537,'1110','121666726294','2022-10-25 22:37:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11538,'5500','121666726294','2022-10-25 22:37:29',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11539,'1000','121666726294','2022-10-25 22:37:29',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11540,'4000','121666726294','2022-10-25 22:37:29',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11541,'1110','121666726652','2022-10-25 22:51:13',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11542,'1110','121666726652','2022-10-25 22:51:13',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(11543,'1110','121666726652','2022-10-25 22:51:13',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11544,'5500','121666726652','2022-10-25 22:51:13',1540.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11545,'1000','121666726652','2022-10-25 22:51:13',2160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11546,'4000','121666726652','2022-10-25 22:51:13',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11547,'4000','121666726652','2022-10-25 22:51:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(11548,'4000','121666726652','2022-10-25 22:51:13',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11549,'1110','121666727629','2022-10-25 23:21:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11550,'5500','121666727629','2022-10-25 23:21:31',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11551,'1000','121666727629','2022-10-25 23:21:31',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11552,'4000','121666727629','2022-10-25 23:21:31',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11553,'1110','121666729294','2022-10-25 23:38:00',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(11554,'5500','121666729294','2022-10-25 23:38:00',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11555,'1000','121666729294','2022-10-25 23:38:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11556,'4000','121666729294','2022-10-25 23:38:00',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(11557,'1110','121666730284','2022-10-25 23:38:44',NULL,160.00,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(11558,'5500','121666730284','2022-10-25 23:38:44',160.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11559,'1000','121666730284','2022-10-25 23:38:44',210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11560,'4000','121666730284','2022-10-25 23:38:44',NULL,210.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(11561,'1110','121666730328','2022-10-26 00:17:55',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11562,'1110','121666730328','2022-10-26 00:17:55',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11563,'5500','121666730328','2022-10-26 00:17:55',305.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11564,'1000','121666730328','2022-10-26 00:17:55',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11565,'4000','121666730328','2022-10-26 00:17:55',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11566,'4000','121666730328','2022-10-26 00:17:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11567,'1110','121666732712','2022-10-26 01:05:45',NULL,620.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(11568,'1110','121666732712','2022-10-26 01:05:45',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11569,'5500','121666732712','2022-10-26 01:05:45',703.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11570,'1000','121666732712','2022-10-26 01:05:45',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11571,'4000','121666732712','2022-10-26 01:05:45',NULL,800.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(11572,'4000','121666732712','2022-10-26 01:05:45',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11573,'1110','121666735549','2022-10-26 01:10:00',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(11574,'1110','121666735549','2022-10-26 01:10:00',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(11575,'1110','121666735549','2022-10-26 01:10:00',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11576,'1110','121666735549','2022-10-26 01:10:00',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(11577,'5500','121666735549','2022-10-26 01:10:00',2065.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11578,'1000','121666735549','2022-10-26 01:10:00',2880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11579,'4000','121666735549','2022-10-26 01:10:00',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(11580,'4000','121666735549','2022-10-26 01:10:00',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(11581,'4000','121666735549','2022-10-26 01:10:00',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(11582,'4000','121666735549','2022-10-26 01:10:00',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(11583,'1110','121666739044','2022-10-26 02:18:37',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11584,'5500','121666739044','2022-10-26 02:18:37',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11585,'1000','121666739044','2022-10-26 02:18:37',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11586,'4000','121666739044','2022-10-26 02:18:37',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11587,'1110','121666739921','2022-10-26 02:34:45',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11588,'1110','121666739921','2022-10-26 02:34:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11589,'5500','121666739921','2022-10-26 02:34:45',305.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11590,'1000','121666739921','2022-10-26 02:34:45',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11591,'4000','121666739921','2022-10-26 02:34:45',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11592,'4000','121666739921','2022-10-26 02:34:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11593,'1110','121666740932','2022-10-26 02:35:53',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11594,'1110','121666740932','2022-10-26 02:35:53',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11595,'5500','121666740932','2022-10-26 02:35:53',196.77,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11596,'1000','121666740932','2022-10-26 02:35:53',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11597,'4000','121666740932','2022-10-26 02:35:53',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11598,'4000','121666740932','2022-10-26 02:35:53',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11599,'1110','121666740958','2022-10-26 02:52:56',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(11600,'5500','121666740958','2022-10-26 02:52:56',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11601,'1000','121666740958','2022-10-26 02:52:56',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11602,'4000','121666740958','2022-10-26 02:52:56',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(11603,'1110','121666780260','2022-10-26 13:31:14',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11604,'5500','121666780260','2022-10-26 13:31:14',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11605,'1000','121666780260','2022-10-26 13:31:14',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11606,'4000','121666780260','2022-10-26 13:31:14',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11607,'1110','121666787819','2022-10-26 15:37:10',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11608,'5500','121666787819','2022-10-26 15:37:10',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11609,'1000','121666787819','2022-10-26 15:37:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11610,'4000','121666787819','2022-10-26 15:37:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11611,'1110','121666787834','2022-10-26 15:37:26',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11612,'5500','121666787834','2022-10-26 15:37:26',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11613,'1000','121666787834','2022-10-26 15:37:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11614,'4000','121666787834','2022-10-26 15:37:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11615,'1110','121666787855','2022-10-26 16:08:16',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11616,'5500','121666787855','2022-10-26 16:08:16',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11617,'1000','121666787855','2022-10-26 16:08:16',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11618,'4000','121666787855','2022-10-26 16:08:16',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11619,'1110','121666789712','2022-10-26 16:20:35',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11620,'1110','121666789712','2022-10-26 16:20:35',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(11621,'5500','121666789712','2022-10-26 16:20:35',242.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11622,'1000','121666789712','2022-10-26 16:20:35',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11623,'4000','121666789712','2022-10-26 16:20:35',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11624,'4000','121666789712','2022-10-26 16:20:35',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(11625,'1110','121666797409','2022-10-26 18:17:10',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(11626,'1110','121666797409','2022-10-26 18:17:10',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(11627,'5500','121666797409','2022-10-26 18:17:10',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11628,'1000','121666797409','2022-10-26 18:17:10',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11629,'4000','121666797409','2022-10-26 18:17:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(11630,'4000','121666797409','2022-10-26 18:17:10',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(11631,'1110','121666797588','2022-10-26 19:00:32',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11632,'5500','121666797588','2022-10-26 19:00:32',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11633,'1000','121666797588','2022-10-26 19:00:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11634,'4000','121666797588','2022-10-26 19:00:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(11635,'1110','121666800037','2022-10-26 20:45:22',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11636,'5500','121666800037','2022-10-26 20:45:22',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11637,'1000','121666800037','2022-10-26 20:45:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11638,'4000','121666800037','2022-10-26 20:45:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11639,'1110','121666806331','2022-10-26 20:54:04',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11640,'5500','121666806331','2022-10-26 20:54:04',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11641,'1000','121666806331','2022-10-26 20:54:04',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11642,'4000','121666806331','2022-10-26 20:54:04',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11643,'1110','121666806848','2022-10-26 21:19:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(11644,'5500','121666806848','2022-10-26 21:19:37',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11645,'1000','121666806848','2022-10-26 21:19:37',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11646,'4000','121666806848','2022-10-26 21:19:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(11647,'1110','121666808414','2022-10-26 21:36:42',NULL,1300.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(11648,'5500','121666808414','2022-10-26 21:36:42',1300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11649,'1000','121666808414','2022-10-26 21:36:42',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11650,'4000','121666808414','2022-10-26 21:36:42',NULL,1800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(11651,'1110','121666809495','2022-10-26 21:42:10',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11652,'1110','121666809495','2022-10-26 21:42:10',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(11653,'1110','121666809495','2022-10-26 21:42:10',NULL,13600.00,'','12','1','Inventory sold','1','','sales','5010327302201','','No',NULL,NULL,''),(11654,'5500','121666809495','2022-10-26 21:42:10',13907.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11655,'1000','121666809495','2022-10-26 21:42:10',17550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11656,'4000','121666809495','2022-10-26 21:42:10',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11657,'4000','121666809495','2022-10-26 21:42:10',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(11658,'4000','121666809495','2022-10-26 21:42:10',NULL,17000.00,'','12','1','Good sold','1','','sales','5010327302201','','No',NULL,NULL,''),(11659,'1110','121666809799','2022-10-26 22:32:08',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11660,'1110','121666809799','2022-10-26 22:32:08',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11661,'1110','121666809799','2022-10-26 22:32:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11662,'5500','121666809799','2022-10-26 22:32:08',1237.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11663,'1000','121666809799','2022-10-26 22:32:08',1990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11664,'4000','121666809799','2022-10-26 22:32:08',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(11665,'4000','121666809799','2022-10-26 22:32:08',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11666,'4000','121666809799','2022-10-26 22:32:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11667,'1110','121666814054','2022-10-27 00:03:57',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(11668,'1110','121666814054','2022-10-27 00:03:57',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(11669,'1110','121666814054','2022-10-27 00:03:57',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11670,'1110','121666814054','2022-10-27 00:03:57',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11671,'1110','121666814054','2022-10-27 00:03:57',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(11672,'1110','121666814054','2022-10-27 00:03:57',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(11673,'5500','121666814054','2022-10-27 00:03:57',5941.31,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11674,'1000','121666814054','2022-10-27 00:03:57',8930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11675,'4000','121666814054','2022-10-27 00:03:57',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(11676,'4000','121666814054','2022-10-27 00:03:57',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(11677,'4000','121666814054','2022-10-27 00:03:57',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11678,'4000','121666814054','2022-10-27 00:03:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11679,'4000','121666814054','2022-10-27 00:03:57',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(11680,'4000','121666814054','2022-10-27 00:03:57',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(11681,'1110','121666818261','2022-10-27 00:08:05',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(11682,'5500','121666818261','2022-10-27 00:08:05',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11683,'1000','121666818261','2022-10-27 00:08:05',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11684,'4000','121666818261','2022-10-27 00:08:05',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(11685,'1110','121666818498','2022-10-27 00:12:35',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11686,'5500','121666818498','2022-10-27 00:12:35',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11687,'1000','121666818498','2022-10-27 00:12:35',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11688,'4000','121666818498','2022-10-27 00:12:35',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11689,'1110','121666820432','2022-10-27 00:40:51',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11690,'1110','121666820432','2022-10-27 00:40:51',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11691,'5500','121666820432','2022-10-27 00:40:51',87.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11692,'1000','121666820432','2022-10-27 00:40:51',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11693,'4000','121666820432','2022-10-27 00:40:51',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(11694,'4000','121666820432','2022-10-27 00:40:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(11695,'1110','121666820456','2022-10-27 00:42:50',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(11696,'5500','121666820456','2022-10-27 00:42:50',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11697,'1000','121666820456','2022-10-27 00:42:50',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11698,'4000','121666820456','2022-10-27 00:42:50',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(11699,'1110','121666820623','2022-10-27 00:45:20',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11700,'1110','121666820623','2022-10-27 00:45:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11701,'5500','121666820623','2022-10-27 00:45:20',184.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11702,'1000','121666820623','2022-10-27 00:45:20',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11703,'4000','121666820623','2022-10-27 00:45:20',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11704,'4000','121666820623','2022-10-27 00:45:20',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11705,'1110','121666820723','2022-10-27 01:01:21',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11706,'5500','121666820723','2022-10-27 01:01:21',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11707,'1000','121666820723','2022-10-27 01:01:21',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11708,'4000','121666820723','2022-10-27 01:01:21',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11709,'1110','121666821736','2022-10-27 01:07:07',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11710,'5500','121666821736','2022-10-27 01:07:07',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11711,'1000','121666821736','2022-10-27 01:07:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11712,'4000','121666821736','2022-10-27 01:07:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11713,'1110','121666822131','2022-10-27 01:09:00',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11714,'5500','121666822131','2022-10-27 01:09:00',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11715,'1000','121666822131','2022-10-27 01:09:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11716,'4000','121666822131','2022-10-27 01:09:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11717,'1110','121666822144','2022-10-27 01:13:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11718,'5500','121666822144','2022-10-27 01:13:46',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11719,'1000','121666822144','2022-10-27 01:13:46',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11720,'4000','121666822144','2022-10-27 01:13:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11721,'1110','121666823737','2022-10-27 01:45:28',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11722,'5500','121666823737','2022-10-27 01:45:28',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11723,'1000','121666823737','2022-10-27 01:45:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11724,'4000','121666823737','2022-10-27 01:45:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11725,'1110','121666824337','2022-10-27 01:45:45',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11726,'5500','121666824337','2022-10-27 01:45:45',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11727,'1000','121666824337','2022-10-27 01:45:45',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11728,'4000','121666824337','2022-10-27 01:45:45',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11729,'1110','121666824764','2022-10-27 01:52:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11730,'5500','121666824764','2022-10-27 01:52:53',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11731,'1000','121666824764','2022-10-27 01:52:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11732,'4000','121666824764','2022-10-27 01:52:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11733,'1110','121666824778','2022-10-27 02:16:12',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(11734,'5500','121666824778','2022-10-27 02:16:12',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11735,'1000','121666824778','2022-10-27 02:16:12',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11736,'4000','121666824778','2022-10-27 02:16:12',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(11737,'1110','121666826195','2022-10-27 03:14:07',NULL,134.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(11738,'1110','121666826195','2022-10-27 03:14:07',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11739,'5500','121666826195','2022-10-27 03:14:07',208.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11740,'1000','121666826195','2022-10-27 03:14:07',310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11741,'4000','121666826195','2022-10-27 03:14:07',NULL,160.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(11742,'4000','121666826195','2022-10-27 03:14:07',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11743,'1110','121666872838','2022-10-27 15:14:28',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(11744,'1110','121666872838','2022-10-27 15:14:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11745,'5500','121666872838','2022-10-27 15:14:28',149.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11746,'1000','121666872838','2022-10-27 15:14:28',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11747,'4000','121666872838','2022-10-27 15:14:28',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(11748,'4000','121666872838','2022-10-27 15:14:28',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11749,'1110','121666874690','2022-10-27 17:04:21',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11750,'5500','121666874690','2022-10-27 17:04:21',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11751,'1000','121666874690','2022-10-27 17:04:21',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11752,'4000','121666874690','2022-10-27 17:04:21',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11753,'1110','121666879494','2022-10-27 17:06:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(11754,'1110','121666879494','2022-10-27 17:06:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11755,'5500','121666879494','2022-10-27 17:06:53',203.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11756,'1000','121666879494','2022-10-27 17:06:53',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11757,'4000','121666879494','2022-10-27 17:06:53',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(11758,'4000','121666879494','2022-10-27 17:06:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11759,'1110','121666879617','2022-10-27 17:38:58',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(11760,'1110','121666879617','2022-10-27 17:38:58',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(11761,'5500','121666879617','2022-10-27 17:38:58',1520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11762,'1000','121666879617','2022-10-27 17:38:58',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11763,'4000','121666879617','2022-10-27 17:38:58',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(11764,'4000','121666879617','2022-10-27 17:38:58',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(11765,'1110','121666884425','2022-10-27 18:27:21',NULL,1209.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11766,'5500','121666884425','2022-10-27 18:27:21',1209.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11767,'1000','121666884425','2022-10-27 18:27:21',1540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11768,'4000','121666884425','2022-10-27 18:27:21',NULL,1540.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11769,'1110','121666885418','2022-10-27 18:43:52',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11770,'5500','121666885418','2022-10-27 18:43:52',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11771,'1000','121666885418','2022-10-27 18:43:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11772,'4000','121666885418','2022-10-27 18:43:52',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11773,'1110','121666886757','2022-10-27 20:49:09',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11774,'1110','121666886757','2022-10-27 20:49:09',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11775,'5500','121666886757','2022-10-27 20:49:09',332.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11776,'1000','121666886757','2022-10-27 20:49:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11777,'4000','121666886757','2022-10-27 20:49:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11778,'4000','121666886757','2022-10-27 20:49:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11779,'1110','121666893027','2022-10-27 21:26:03',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11780,'5500','121666893027','2022-10-27 21:26:03',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11781,'1000','121666893027','2022-10-27 21:26:03',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11782,'4000','121666893027','2022-10-27 21:26:03',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11783,'1110','121666895170','2022-10-27 22:51:52',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(11784,'1110','121666895170','2022-10-27 22:51:52',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11785,'5500','121666895170','2022-10-27 22:51:52',1125.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11786,'1000','121666895170','2022-10-27 22:51:52',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11787,'4000','121666895170','2022-10-27 22:51:52',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(11788,'4000','121666895170','2022-10-27 22:51:52',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11789,'1110','121666900429','2022-10-27 23:54:01',NULL,882.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(11790,'5500','121666900429','2022-10-27 23:54:01',882.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11791,'1000','121666900429','2022-10-27 23:54:01',1380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11792,'4000','121666900429','2022-10-27 23:54:01',NULL,1380.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(11793,'1110','121666964674','2022-10-28 16:44:56',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(11794,'5500','121666964674','2022-10-28 16:44:56',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11795,'1000','121666964674','2022-10-28 16:44:56',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11796,'4000','121666964674','2022-10-28 16:44:56',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(11797,'1110','121666964716','2022-10-28 18:28:03',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11798,'5500','121666964716','2022-10-28 18:28:03',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11799,'1000','121666964716','2022-10-28 18:28:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11800,'4000','121666964716','2022-10-28 18:28:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11801,'1110','121666971363','2022-10-28 18:55:32',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11802,'5500','121666971363','2022-10-28 18:55:32',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11803,'1000','121666971363','2022-10-28 18:55:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11804,'4000','121666971363','2022-10-28 18:55:32',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(11805,'1110','121666975985','2022-10-28 19:54:49',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11806,'1110','121666975985','2022-10-28 19:54:49',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(11807,'5500','121666975985','2022-10-28 19:54:49',432.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11808,'1000','121666975985','2022-10-28 19:54:49',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11809,'4000','121666975985','2022-10-28 19:54:49',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11810,'4000','121666975985','2022-10-28 19:54:49',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(11811,'1110','121666976096','2022-10-28 19:56:36',NULL,776.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11812,'1110','121666976096','2022-10-28 19:56:36',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11813,'5500','121666976096','2022-10-28 19:56:36',817.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11814,'1000','121666976096','2022-10-28 19:56:36',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11815,'4000','121666976096','2022-10-28 19:56:36',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11816,'4000','121666976096','2022-10-28 19:56:36',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11817,'1110','121666980090','2022-10-28 21:02:28',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11818,'1110','121666980090','2022-10-28 21:02:28',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11819,'1110','121666980090','2022-10-28 21:02:28',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11820,'1110','121666980090','2022-10-28 21:02:28',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(11821,'1110','121666980090','2022-10-28 21:02:28',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(11822,'5500','121666980090','2022-10-28 21:02:28',1500.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11823,'1000','121666980090','2022-10-28 21:02:28',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11824,'4000','121666980090','2022-10-28 21:02:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11825,'4000','121666980090','2022-10-28 21:02:28',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11826,'4000','121666980090','2022-10-28 21:02:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11827,'4000','121666980090','2022-10-28 21:02:28',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(11828,'4000','121666980090','2022-10-28 21:02:28',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(11829,'1110','121666980153','2022-10-28 21:06:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11830,'5500','121666980153','2022-10-28 21:06:53',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11831,'1000','121666980153','2022-10-28 21:06:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11832,'4000','121666980153','2022-10-28 21:06:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11833,'1110','121666980417','2022-10-28 22:16:17',NULL,7071.00,'','12','1','Inventory sold','1','','sales','5000281028620','','No',NULL,NULL,''),(11834,'5500','121666980417','2022-10-28 22:16:17',7071.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11835,'1000','121666980417','2022-10-28 22:16:17',9500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11836,'4000','121666980417','2022-10-28 22:16:17',NULL,9500.00,'','12','1','Good sold','1','','sales','5000281028620','','No',NULL,NULL,''),(11837,'1110','121666984692','2022-10-28 23:20:05',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(11838,'1110','121666984692','2022-10-28 23:20:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11839,'5500','121666984692','2022-10-28 23:20:05',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11840,'1000','121666984692','2022-10-28 23:20:05',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11841,'4000','121666984692','2022-10-28 23:20:05',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(11842,'4000','121666984692','2022-10-28 23:20:05',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(11843,'1110','121666988413','2022-10-28 23:24:40',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11844,'5500','121666988413','2022-10-28 23:24:40',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11845,'1000','121666988413','2022-10-28 23:24:40',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11846,'4000','121666988413','2022-10-28 23:24:40',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11847,'1110','121666988734','2022-10-28 23:44:49',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(11848,'5500','121666988734','2022-10-28 23:44:49',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11849,'1000','121666988734','2022-10-28 23:44:49',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11850,'4000','121666988734','2022-10-28 23:44:49',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(11851,'1110','121666989895','2022-10-28 23:48:04',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11852,'5500','121666989895','2022-10-28 23:48:04',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11853,'1000','121666989895','2022-10-28 23:48:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11854,'4000','121666989895','2022-10-28 23:48:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11855,'1110','121666990136','2022-10-28 23:52:05',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(11856,'1110','121666990136','2022-10-28 23:52:05',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11857,'1110','121666990136','2022-10-28 23:52:05',NULL,1392.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11858,'1110','121666990136','2022-10-28 23:52:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11859,'1110','121666990136','2022-10-28 23:52:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11860,'1110','121666990136','2022-10-28 23:52:05',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(11861,'5500','121666990136','2022-10-28 23:52:05',6301.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11862,'1000','121666990136','2022-10-28 23:52:05',9750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11863,'4000','121666990136','2022-10-28 23:52:05',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(11864,'4000','121666990136','2022-10-28 23:52:05',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11865,'4000','121666990136','2022-10-28 23:52:05',NULL,2000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11866,'4000','121666990136','2022-10-28 23:52:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11867,'4000','121666990136','2022-10-28 23:52:05',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11868,'4000','121666990136','2022-10-28 23:52:05',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(11869,'1110','121666990873','2022-10-29 00:11:23',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11870,'5500','121666990873','2022-10-29 00:11:23',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11871,'1000','121666990873','2022-10-29 00:11:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11872,'4000','121666990873','2022-10-29 00:11:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(11873,'1110','121666994365','2022-10-29 01:02:50',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(11874,'1110','121666994365','2022-10-29 01:02:50',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11875,'1110','121666994365','2022-10-29 01:02:50',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11876,'1110','121666994365','2022-10-29 01:02:50',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11877,'5500','121666994365','2022-10-29 01:02:50',1849.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11878,'1000','121666994365','2022-10-29 01:02:50',2940.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11879,'4000','121666994365','2022-10-29 01:02:50',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(11880,'4000','121666994365','2022-10-29 01:02:50',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(11881,'4000','121666994365','2022-10-29 01:02:50',NULL,440.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(11882,'4000','121666994365','2022-10-29 01:02:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11883,'1110','121666994814','2022-10-29 01:07:27',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(11884,'5500','121666994814','2022-10-29 01:07:27',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11885,'1000','121666994814','2022-10-29 01:07:27',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11886,'4000','121666994814','2022-10-29 01:07:27',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(11887,'1110','121666994859','2022-10-29 01:08:02',NULL,2100.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(11888,'5500','121666994859','2022-10-29 01:08:02',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11889,'1000','121666994859','2022-10-29 01:08:02',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11890,'4000','121666994859','2022-10-29 01:08:02',NULL,3200.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(11891,'1110','121666995194','2022-10-29 01:13:22',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(11892,'5500','121666995194','2022-10-29 01:13:22',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11893,'1000','121666995194','2022-10-29 01:13:22',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11894,'4000','121666995194','2022-10-29 01:13:22',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(11895,'1110','121666995206','2022-10-29 01:36:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11896,'1110','121666995206','2022-10-29 01:36:01',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11897,'1110','121666995206','2022-10-29 01:36:01',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11898,'5500','121666995206','2022-10-29 01:36:01',336.69,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11899,'1000','121666995206','2022-10-29 01:36:01',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11900,'4000','121666995206','2022-10-29 01:36:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11901,'4000','121666995206','2022-10-29 01:36:01',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11902,'4000','121666995206','2022-10-29 01:36:01',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11903,'1110','121666996609','2022-10-29 02:03:58',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11904,'1110','121666996609','2022-10-29 02:03:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11905,'1110','121666996609','2022-10-29 02:03:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11906,'5500','121666996609','2022-10-29 02:03:58',302.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11907,'1000','121666996609','2022-10-29 02:03:58',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11908,'4000','121666996609','2022-10-29 02:03:58',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(11909,'4000','121666996609','2022-10-29 02:03:58',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11910,'4000','121666996609','2022-10-29 02:03:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11911,'1110','121667052257','2022-10-29 17:59:21',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11912,'5500','121667052257','2022-10-29 17:59:21',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11913,'1000','121667052257','2022-10-29 17:59:21',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11914,'4000','121667052257','2022-10-29 17:59:21',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(11915,'1110','121667055566','2022-10-29 18:17:55',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11916,'1110','121667055566','2022-10-29 18:17:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11917,'5500','121667055566','2022-10-29 18:17:55',1139.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11918,'1000','121667055566','2022-10-29 18:17:55',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11919,'4000','121667055566','2022-10-29 18:17:55',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11920,'4000','121667055566','2022-10-29 18:17:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(11921,'1110','121667056787','2022-10-29 18:44:26',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11922,'1110','121667056787','2022-10-29 18:44:26',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11923,'5500','121667056787','2022-10-29 18:44:26',872.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11924,'1000','121667056787','2022-10-29 18:44:26',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11925,'4000','121667056787','2022-10-29 18:44:26',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(11926,'4000','121667056787','2022-10-29 18:44:26',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11927,'1110','121667058292','2022-10-29 18:59:20',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(11928,'1110','121667058292','2022-10-29 18:59:20',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11929,'5500','121667058292','2022-10-29 18:59:20',280.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11930,'1000','121667058292','2022-10-29 18:59:20',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11931,'4000','121667058292','2022-10-29 18:59:20',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(11932,'4000','121667058292','2022-10-29 18:59:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(11933,'1110','121667059290','2022-10-29 19:39:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11934,'5500','121667059290','2022-10-29 19:39:00',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11935,'1000','121667059290','2022-10-29 19:39:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11936,'4000','121667059290','2022-10-29 19:39:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(11937,'1110','121667061543','2022-10-29 20:11:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11938,'5500','121667061543','2022-10-29 20:11:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11939,'1000','121667061543','2022-10-29 20:11:58',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11940,'4000','121667061543','2022-10-29 20:11:58',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11941,'1110','121667063533','2022-10-29 20:15:23',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11942,'1110','121667063533','2022-10-29 20:15:23',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11943,'5500','121667063533','2022-10-29 20:15:23',429.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11944,'1000','121667063533','2022-10-29 20:15:23',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11945,'4000','121667063533','2022-10-29 20:15:23',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(11946,'4000','121667063533','2022-10-29 20:15:23',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11947,'1110','121667063727','2022-10-29 20:22:16',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11948,'1110','121667063727','2022-10-29 20:22:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11949,'5500','121667063727','2022-10-29 20:22:16',754.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11950,'1000','121667063727','2022-10-29 20:22:16',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11951,'4000','121667063727','2022-10-29 20:22:16',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(11952,'4000','121667063727','2022-10-29 20:22:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(11953,'1110','121667064169','2022-10-29 20:28:11',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(11954,'1110','121667064169','2022-10-29 20:28:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11955,'1110','121667064169','2022-10-29 20:28:11',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(11956,'1110','121667064169','2022-10-29 20:28:11',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(11957,'5500','121667064169','2022-10-29 20:28:11',1024.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11958,'1000','121667064169','2022-10-29 20:28:11',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11959,'4000','121667064169','2022-10-29 20:28:11',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(11960,'4000','121667064169','2022-10-29 20:28:11',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11961,'4000','121667064169','2022-10-29 20:28:11',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(11962,'4000','121667064169','2022-10-29 20:28:11',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(11963,'1110','121667064501','2022-10-29 20:40:53',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11964,'1110','121667064501','2022-10-29 20:40:53',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(11965,'5500','121667064501','2022-10-29 20:40:53',109.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11966,'1000','121667064501','2022-10-29 20:40:53',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11967,'4000','121667064501','2022-10-29 20:40:53',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(11968,'4000','121667064501','2022-10-29 20:40:53',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(11969,'1110','121667066436','2022-10-29 21:00:43',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(11970,'5500','121667066436','2022-10-29 21:00:43',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11971,'1000','121667066436','2022-10-29 21:00:43',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11972,'4000','121667066436','2022-10-29 21:00:43',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(11973,'1110','121667066717','2022-10-29 21:48:27',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11974,'5500','121667066717','2022-10-29 21:48:27',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11975,'1000','121667066717','2022-10-29 21:48:27',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11976,'4000','121667066717','2022-10-29 21:48:27',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11977,'1110','121667069773','2022-10-29 22:57:55',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11978,'1110','121667069773','2022-10-29 22:57:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(11979,'1110','121667069773','2022-10-29 22:57:55',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11980,'1110','121667069773','2022-10-29 22:57:55',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11981,'1110','121667069773','2022-10-29 22:57:55',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11982,'5500','121667069773','2022-10-29 22:57:55',1639.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11983,'1000','121667069773','2022-10-29 22:57:55',2330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11984,'4000','121667069773','2022-10-29 22:57:55',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(11985,'4000','121667069773','2022-10-29 22:57:55',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(11986,'4000','121667069773','2022-10-29 22:57:55',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11987,'4000','121667069773','2022-10-29 22:57:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(11988,'4000','121667069773','2022-10-29 22:57:55',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11989,'1110','121667073478','2022-10-29 23:02:15',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11990,'1110','121667073478','2022-10-29 23:02:15',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11991,'5500','121667073478','2022-10-29 23:02:15',554.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11992,'1000','121667073478','2022-10-29 23:02:15',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11993,'4000','121667073478','2022-10-29 23:02:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(11994,'4000','121667073478','2022-10-29 23:02:15',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(11995,'1110','121667073739','2022-10-29 23:02:58',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(11996,'5500','121667073739','2022-10-29 23:02:58',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(11997,'1000','121667073739','2022-10-29 23:02:58',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11998,'4000','121667073739','2022-10-29 23:02:58',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(11999,'1110','121667073919','2022-10-29 23:05:28',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12000,'5500','121667073919','2022-10-29 23:05:28',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12001,'1000','121667073919','2022-10-29 23:05:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12002,'4000','121667073919','2022-10-29 23:05:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12003,'1110','121667074719','2022-10-29 23:19:27',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(12004,'1110','121667074719','2022-10-29 23:19:27',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12005,'5500','121667074719','2022-10-29 23:19:27',1045.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12006,'1000','121667074719','2022-10-29 23:19:27',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12007,'4000','121667074719','2022-10-29 23:19:27',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(12008,'4000','121667074719','2022-10-29 23:19:27',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12009,'1110','121667074787','2022-10-29 23:21:42',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12010,'1110','121667074787','2022-10-29 23:21:42',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12011,'1110','121667074787','2022-10-29 23:21:42',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(12012,'1110','121667074787','2022-10-29 23:21:42',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12013,'5500','121667074787','2022-10-29 23:21:42',1085.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12014,'1000','121667074787','2022-10-29 23:21:42',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12015,'4000','121667074787','2022-10-29 23:21:42',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12016,'4000','121667074787','2022-10-29 23:21:42',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12017,'4000','121667074787','2022-10-29 23:21:42',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(12018,'4000','121667074787','2022-10-29 23:21:42',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12019,'1110','121667074914','2022-10-29 23:22:07',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(12020,'5500','121667074914','2022-10-29 23:22:07',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12021,'1000','121667074914','2022-10-29 23:22:07',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12022,'4000','121667074914','2022-10-29 23:22:07',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(12023,'1110','121667074930','2022-10-29 23:22:37',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(12024,'5500','121667074930','2022-10-29 23:22:37',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12025,'1000','121667074930','2022-10-29 23:22:37',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12026,'4000','121667074930','2022-10-29 23:22:37',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(12027,'1110','121667074960','2022-10-29 23:23:26',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(12028,'5500','121667074960','2022-10-29 23:23:26',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12029,'1000','121667074960','2022-10-29 23:23:26',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12030,'4000','121667074960','2022-10-29 23:23:26',NULL,1800.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(12031,'1110','121667075050','2022-10-29 23:30:49',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12032,'5500','121667075050','2022-10-29 23:30:49',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12033,'1000','121667075050','2022-10-29 23:30:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12034,'4000','121667075050','2022-10-29 23:30:49',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12035,'1110','121667075467','2022-10-29 23:32:47',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12036,'1110','121667075467','2022-10-29 23:32:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(12037,'1110','121667075467','2022-10-29 23:32:47',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12038,'5500','121667075467','2022-10-29 23:32:47',587.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12039,'1000','121667075467','2022-10-29 23:32:47',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12040,'4000','121667075467','2022-10-29 23:32:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12041,'4000','121667075467','2022-10-29 23:32:47',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(12042,'4000','121667075467','2022-10-29 23:32:47',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12043,'1110','121667075614','2022-10-29 23:35:28',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12044,'1110','121667075614','2022-10-29 23:35:28',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12045,'5500','121667075614','2022-10-29 23:35:28',2673.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12046,'1000','121667075614','2022-10-29 23:35:28',3650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12047,'4000','121667075614','2022-10-29 23:35:28',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12048,'4000','121667075614','2022-10-29 23:35:28',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12049,'1110','121667075807','2022-10-30 00:24:21',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12050,'5500','121667075807','2022-10-30 00:24:21',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12051,'1000','121667075807','2022-10-30 00:24:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12052,'4000','121667075807','2022-10-30 00:24:21',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12053,'1110','121667078813','2022-10-30 00:42:19',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(12054,'5500','121667078813','2022-10-30 00:42:19',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12055,'1000','121667078813','2022-10-30 00:42:19',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12056,'4000','121667078813','2022-10-30 00:42:19',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(12057,'1110','121667079879','2022-10-30 00:53:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12058,'5500','121667079879','2022-10-30 00:53:27',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12059,'1000','121667079879','2022-10-30 00:53:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12060,'4000','121667079879','2022-10-30 00:53:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12061,'1110','121667080577','2022-10-30 01:08:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12062,'5500','121667080577','2022-10-30 01:08:28',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12063,'1000','121667080577','2022-10-30 01:08:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12064,'4000','121667080577','2022-10-30 01:08:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12065,'1110','121667082455','2022-10-30 01:27:46',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12066,'5500','121667082455','2022-10-30 01:27:46',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12067,'1000','121667082455','2022-10-30 01:27:46',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12068,'4000','121667082455','2022-10-30 01:27:46',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12069,'1110','121667082474','2022-10-30 01:30:02',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12070,'5500','121667082474','2022-10-30 01:30:02',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12071,'1000','121667082474','2022-10-30 01:30:02',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12072,'4000','121667082474','2022-10-30 01:30:02',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12073,'1110','121667082617','2022-10-30 01:31:59',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12074,'1110','121667082617','2022-10-30 01:31:59',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12075,'5500','121667082617','2022-10-30 01:31:59',818.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12076,'1000','121667082617','2022-10-30 01:31:59',1130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12077,'4000','121667082617','2022-10-30 01:31:59',NULL,880.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12078,'4000','121667082617','2022-10-30 01:31:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12079,'1110','121667083657','2022-10-30 01:48:15',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12080,'1110','121667083657','2022-10-30 01:48:15',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12081,'5500','121667083657','2022-10-30 01:48:15',1113.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12082,'1000','121667083657','2022-10-30 01:48:15',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12083,'4000','121667083657','2022-10-30 01:48:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12084,'4000','121667083657','2022-10-30 01:48:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12085,'1110','121667083782','2022-10-30 01:52:40',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(12086,'1110','121667083782','2022-10-30 01:52:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(12087,'1110','121667083782','2022-10-30 01:52:40',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12088,'1110','121667083782','2022-10-30 01:52:40',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12089,'1110','121667083782','2022-10-30 01:52:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12090,'5500','121667083782','2022-10-30 01:52:40',1714.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12091,'1000','121667083782','2022-10-30 01:52:40',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12092,'4000','121667083782','2022-10-30 01:52:40',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(12093,'4000','121667083782','2022-10-30 01:52:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(12094,'4000','121667083782','2022-10-30 01:52:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12095,'4000','121667083782','2022-10-30 01:52:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12096,'4000','121667083782','2022-10-30 01:52:40',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12097,'1110','121667084259','2022-10-30 01:57:48',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12098,'5500','121667084259','2022-10-30 01:57:48',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12099,'1000','121667084259','2022-10-30 01:57:48',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12100,'4000','121667084259','2022-10-30 01:57:48',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12101,'1110','121667084272','2022-10-30 02:15:40',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12102,'1110','121667084272','2022-10-30 02:15:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12103,'5500','121667084272','2022-10-30 02:15:40',553.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12104,'1000','121667084272','2022-10-30 02:15:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12105,'4000','121667084272','2022-10-30 02:15:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12106,'4000','121667084272','2022-10-30 02:15:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12107,'1110','121667085352','2022-10-30 02:43:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(12108,'5500','121667085352','2022-10-30 02:43:31',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12109,'1000','121667085352','2022-10-30 02:43:31',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12110,'4000','121667085352','2022-10-30 02:43:31',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(12111,'1110','121667087017','2022-10-30 02:43:55',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12112,'5500','121667087017','2022-10-30 02:43:55',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12113,'1000','121667087017','2022-10-30 02:43:55',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12114,'4000','121667087017','2022-10-30 02:43:55',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12115,'1110','121667087124','2022-10-30 02:46:10',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12116,'1110','121667087124','2022-10-30 02:46:10',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12117,'5500','121667087124','2022-10-30 02:46:10',801.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12118,'1000','121667087124','2022-10-30 02:46:10',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12119,'4000','121667087124','2022-10-30 02:46:10',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12120,'4000','121667087124','2022-10-30 02:46:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12121,'1110','121667087316','2022-10-30 03:22:46',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12122,'5500','121667087316','2022-10-30 03:22:46',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12123,'1000','121667087316','2022-10-30 03:22:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12124,'4000','121667087316','2022-10-30 03:22:46',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12125,'1110','121667089382','2022-10-30 03:58:05',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(12126,'5500','121667089382','2022-10-30 03:58:05',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12127,'1000','121667089382','2022-10-30 03:58:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12128,'4000','121667089382','2022-10-30 03:58:05',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(12129,'1110','121667091489','2022-10-30 04:05:33',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12130,'5500','121667091489','2022-10-30 04:05:33',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12131,'1000','121667091489','2022-10-30 04:05:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12132,'4000','121667091489','2022-10-30 04:05:33',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12133,'1110','121667092053','2022-10-30 04:35:42',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12134,'1110','121667092053','2022-10-30 04:35:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12135,'5500','121667092053','2022-10-30 04:35:42',952.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12136,'1000','121667092053','2022-10-30 04:35:42',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12137,'4000','121667092053','2022-10-30 04:35:42',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12138,'4000','121667092053','2022-10-30 04:35:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12139,'1110','121667093863','2022-10-30 05:26:01',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12140,'1110','121667093863','2022-10-30 05:26:01',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(12141,'1110','121667093863','2022-10-30 05:26:01',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12142,'5500','121667093863','2022-10-30 05:26:01',1038.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12143,'1000','121667093863','2022-10-30 05:26:01',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12144,'4000','121667093863','2022-10-30 05:26:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12145,'4000','121667093863','2022-10-30 05:26:01',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(12146,'4000','121667093863','2022-10-30 05:26:01',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12147,'1110','121667142676','2022-10-30 18:11:24',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12148,'5500','121667142676','2022-10-30 18:11:24',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12149,'1000','121667142676','2022-10-30 18:11:24',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12150,'4000','121667142676','2022-10-30 18:11:24',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12151,'1110','121667142688','2022-10-30 18:21:47',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12152,'5500','121667142688','2022-10-30 18:21:47',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12153,'1000','121667142688','2022-10-30 18:21:47',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12154,'4000','121667142688','2022-10-30 18:21:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12155,'1110','121667143310','2022-10-30 19:27:34',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12156,'5500','121667143310','2022-10-30 19:27:34',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12157,'1000','121667143310','2022-10-30 19:27:34',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12158,'4000','121667143310','2022-10-30 19:27:34',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12159,'1110','121667147258','2022-10-30 20:19:09',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12160,'1110','121667147258','2022-10-30 20:19:09',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12161,'5500','121667147258','2022-10-30 20:19:09',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12162,'1000','121667147258','2022-10-30 20:19:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12163,'4000','121667147258','2022-10-30 20:19:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12164,'4000','121667147258','2022-10-30 20:19:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12165,'1110','121667150512','2022-10-30 20:30:37',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12166,'5500','121667150512','2022-10-30 20:30:37',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12167,'1000','121667150512','2022-10-30 20:30:37',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12168,'4000','121667150512','2022-10-30 20:30:37',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12169,'1110','121667151126','2022-10-30 20:49:34',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12170,'5500','121667151126','2022-10-30 20:49:34',2520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12171,'1000','121667151126','2022-10-30 20:49:34',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12172,'4000','121667151126','2022-10-30 20:49:34',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12173,'1110','121667153757','2022-10-30 21:16:24',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12174,'1110','121667153757','2022-10-30 21:16:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12175,'1110','121667153757','2022-10-30 21:16:24',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12176,'5500','121667153757','2022-10-30 21:16:24',429.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12177,'1000','121667153757','2022-10-30 21:16:24',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12178,'4000','121667153757','2022-10-30 21:16:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12179,'4000','121667153757','2022-10-30 21:16:24',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12180,'4000','121667153757','2022-10-30 21:16:24',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12181,'1110','121667153788','2022-10-30 21:51:27',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12182,'5500','121667153788','2022-10-30 21:51:27',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12183,'1000','121667153788','2022-10-30 21:51:27',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12184,'4000','121667153788','2022-10-30 21:51:27',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12185,'1110','121667155916','2022-10-30 21:54:51',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12186,'5500','121667155916','2022-10-30 21:54:51',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12187,'1000','121667155916','2022-10-30 21:54:51',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12188,'4000','121667155916','2022-10-30 21:54:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12189,'1110','121667156134','2022-10-30 22:08:11',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12190,'1110','121667156134','2022-10-30 22:08:11',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12191,'1110','121667156134','2022-10-30 22:08:11',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12192,'5500','121667156134','2022-10-30 22:08:11',727.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12193,'1000','121667156134','2022-10-30 22:08:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12194,'4000','121667156134','2022-10-30 22:08:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12195,'4000','121667156134','2022-10-30 22:08:11',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12196,'4000','121667156134','2022-10-30 22:08:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12197,'1110','121667156896','2022-10-30 22:12:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12198,'5500','121667156896','2022-10-30 22:12:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12199,'1000','121667156896','2022-10-30 22:12:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12200,'4000','121667156896','2022-10-30 22:12:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12201,'1110','121667157555','2022-10-30 22:20:31',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12202,'5500','121667157555','2022-10-30 22:20:31',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12203,'1000','121667157555','2022-10-30 22:20:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12204,'4000','121667157555','2022-10-30 22:20:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12205,'1110','121667157684','2022-10-30 22:21:55',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(12206,'5500','121667157684','2022-10-30 22:21:55',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12207,'1000','121667157684','2022-10-30 22:21:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12208,'4000','121667157684','2022-10-30 22:21:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(12209,'1110','121667157719','2022-10-30 22:38:01',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(12210,'1110','121667157719','2022-10-30 22:38:01',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12211,'1110','121667157719','2022-10-30 22:38:01',NULL,134.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12212,'5500','121667157719','2022-10-30 22:38:01',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12213,'1000','121667157719','2022-10-30 22:38:01',2160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12214,'4000','121667157719','2022-10-30 22:38:01',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(12215,'4000','121667157719','2022-10-30 22:38:01',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12216,'4000','121667157719','2022-10-30 22:38:01',NULL,160.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12217,'1110','121667158685','2022-10-30 22:46:04',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12218,'1110','121667158685','2022-10-30 22:46:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12219,'5500','121667158685','2022-10-30 22:46:04',388.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12220,'1000','121667158685','2022-10-30 22:46:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12221,'4000','121667158685','2022-10-30 22:46:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12222,'4000','121667158685','2022-10-30 22:46:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12223,'1110','121667159168','2022-10-30 23:20:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(12224,'5500','121667159168','2022-10-30 23:20:00',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12225,'1000','121667159168','2022-10-30 23:20:00',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12226,'4000','121667159168','2022-10-30 23:20:00',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(12227,'1110','121667161237','2022-10-30 23:33:20',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12228,'5500','121667161237','2022-10-30 23:33:20',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12229,'1000','121667161237','2022-10-30 23:33:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12230,'4000','121667161237','2022-10-30 23:33:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12235,'1000','121667162004','2022-10-30 23:59:31',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12239,'1110','121667162004','2022-10-30 23:59:31',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(12240,'1110','121667162004','2022-10-31 00:12:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(12241,'5500','121667162004','2022-10-31 00:12:19',1373.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12242,'1000','121667162004','2022-10-30 23:59:31',1880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12243,'4000','121667162004','2022-10-30 23:59:31',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(12244,'4000','121667162004','2022-10-31 00:12:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(12245,'1110','121667164720','2022-10-31 00:24:38',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(12246,'1110','121667164720','2022-10-31 00:24:38',NULL,134.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12247,'1110','121667164720','2022-10-31 00:24:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12248,'5500','121667164720','2022-10-31 00:24:38',858.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12249,'1000','121667164720','2022-10-31 00:24:38',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12250,'4000','121667164720','2022-10-31 00:24:38',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(12251,'4000','121667164720','2022-10-31 00:24:38',NULL,160.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12252,'4000','121667164720','2022-10-31 00:24:38',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12255,'1000','121667165088','2022-10-31 00:26:07',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12257,'1110','121667165088','2022-10-31 00:26:07',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(12258,'5500','121667165088','2022-10-31 01:14:23',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12259,'1000','121667165088','2022-10-31 00:26:07',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12260,'4000','121667165088','2022-10-31 00:26:07',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(12261,'1110','121667230691','2022-10-31 18:39:28',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12262,'1110','121667230691','2022-10-31 18:39:28',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(12263,'5500','121667230691','2022-10-31 18:39:28',674.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12264,'1000','121667230691','2022-10-31 18:39:28',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12265,'4000','121667230691','2022-10-31 18:39:28',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12266,'4000','121667230691','2022-10-31 18:39:28',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(12267,'1110','121667230773','2022-10-31 18:44:58',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(12268,'5500','121667230773','2022-10-31 18:44:58',1072.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12269,'1000','121667230773','2022-10-31 18:44:58',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12270,'4000','121667230773','2022-10-31 18:44:58',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(12271,'1110','121667231149','2022-10-31 19:28:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(12272,'5500','121667231149','2022-10-31 19:28:47',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12273,'1000','121667231149','2022-10-31 19:28:47',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12274,'4000','121667231149','2022-10-31 19:28:47',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(12275,'1110','121667233733','2022-10-31 19:29:58',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(12276,'5500','121667233733','2022-10-31 19:29:58',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12277,'1000','121667233733','2022-10-31 19:29:58',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12278,'4000','121667233733','2022-10-31 19:29:58',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(12279,'1110','121667233873','2022-10-31 19:31:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12280,'5500','121667233873','2022-10-31 19:31:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12281,'1000','121667233873','2022-10-31 19:31:22',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12282,'4000','121667233873','2022-10-31 19:31:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12283,'1110','121667233886','2022-10-31 19:59:42',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12284,'1110','121667233886','2022-10-31 19:59:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12285,'1110','121667233886','2022-10-31 19:59:42',NULL,136.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(12286,'5500','121667233886','2022-10-31 19:59:42',365.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12287,'1000','121667233886','2022-10-31 19:59:42',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12288,'4000','121667233886','2022-10-31 19:59:42',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12289,'4000','121667233886','2022-10-31 19:59:42',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12290,'4000','121667233886','2022-10-31 19:59:42',NULL,200.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(12291,'1110','121667243140','2022-10-31 22:05:50',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12292,'5500','121667243140','2022-10-31 22:05:50',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12293,'1000','121667243140','2022-10-31 22:05:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12294,'4000','121667243140','2022-10-31 22:05:50',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12295,'1110','121667243159','2022-10-31 22:15:15',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12296,'1110','121667243159','2022-10-31 22:15:15',NULL,187.72,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(12297,'1110','121667243159','2022-10-31 22:15:15',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(12298,'1110','121667243159','2022-10-31 22:15:15',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(12299,'1110','121667243159','2022-10-31 22:15:15',NULL,152.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12300,'1110','121667243159','2022-10-31 22:15:15',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(12301,'1110','121667243159','2022-10-31 22:15:15',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(12302,'5500','121667243159','2022-10-31 22:15:15',3804.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12303,'1000','121667243159','2022-10-31 22:15:15',5740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12304,'4000','121667243159','2022-10-31 22:15:15',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12305,'4000','121667243159','2022-10-31 22:15:15',NULL,240.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(12306,'4000','121667243159','2022-10-31 22:15:15',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(12307,'4000','121667243159','2022-10-31 22:15:15',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(12308,'4000','121667243159','2022-10-31 22:15:15',NULL,400.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12309,'4000','121667243159','2022-10-31 22:15:15',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(12310,'4000','121667243159','2022-10-31 22:15:15',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(12311,'1110','121667243816','2022-10-31 22:18:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12312,'5500','121667243816','2022-10-31 22:18:00',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12313,'1000','121667243816','2022-10-31 22:18:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12314,'4000','121667243816','2022-10-31 22:18:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12315,'1110','121667243901','2022-10-31 22:26:27',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(12316,'5500','121667243901','2022-10-31 22:26:27',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12317,'1000','121667243901','2022-10-31 22:26:27',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12318,'4000','121667243901','2022-10-31 22:26:27',NULL,2300.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(12319,'1110','121667244600','2022-10-31 22:30:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12320,'1110','121667244600','2022-10-31 22:30:51',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12321,'5500','121667244600','2022-10-31 22:30:51',434.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12322,'1000','121667244600','2022-10-31 22:30:51',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12323,'4000','121667244600','2022-10-31 22:30:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12324,'4000','121667244600','2022-10-31 22:30:51',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12325,'1110','121667244682','2022-10-31 22:47:42',NULL,1764.00,'','12','1','Inventory sold','1','','sales','5010327000039','','No',NULL,NULL,''),(12326,'5500','121667244682','2022-10-31 22:47:42',1764.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12327,'1000','121667244682','2022-10-31 22:47:42',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12328,'4000','121667244682','2022-10-31 22:47:42',NULL,2500.00,'','12','1','Good sold','1','','sales','5010327000039','','No',NULL,NULL,''),(12329,'1110','121667245964','2022-10-31 23:56:00',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12330,'5500','121667245964','2022-10-31 23:56:00',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12331,'1000','121667245964','2022-10-31 23:56:00',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12332,'4000','121667245964','2022-10-31 23:56:00',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12333,'1110','121667249765','2022-10-31 23:56:53',NULL,1570.00,'','12','1','Inventory sold','1','','sales','5010677038874','','No',NULL,NULL,''),(12334,'5500','121667249765','2022-10-31 23:56:53',1570.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12335,'1000','121667249765','2022-10-31 23:56:53',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12336,'4000','121667249765','2022-10-31 23:56:53',NULL,2200.00,'','12','1','Good sold','1','','sales','5010677038874','','No',NULL,NULL,''),(12337,'1110','121667249857','2022-11-01 00:03:05',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(12338,'1110','121667249857','2022-11-01 00:03:05',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12339,'1110','121667249857','2022-11-01 00:03:05',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12340,'5500','121667249857','2022-11-01 00:03:05',3475.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12341,'1000','121667249857','2022-11-01 00:03:05',4850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12342,'4000','121667249857','2022-11-01 00:03:05',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(12343,'4000','121667249857','2022-11-01 00:03:05',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12344,'4000','121667249857','2022-11-01 00:03:05',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12345,'1110','121667265911','2022-11-01 04:25:46',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(12346,'1110','121667265911','2022-11-01 04:25:46',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12347,'1110','121667265911','2022-11-01 04:25:46',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12348,'5500','121667265911','2022-11-01 04:25:46',2802.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12349,'1000','121667265911','2022-11-01 04:25:46',4350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12350,'4000','121667265911','2022-11-01 04:25:46',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(12351,'4000','121667265911','2022-11-01 04:25:46',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12352,'4000','121667265911','2022-11-01 04:25:46',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12353,'1110','121667266093','2022-11-01 04:28:25',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12354,'5500','121667266093','2022-11-01 04:28:25',951.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12355,'1000','121667266093','2022-11-01 04:28:25',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12356,'4000','121667266093','2022-11-01 04:28:25',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12357,'1110','121667312131','2022-11-01 17:28:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12358,'1110','121667312131','2022-11-01 17:28:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12359,'1110','121667312131','2022-11-01 17:28:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12360,'1110','121667312131','2022-11-01 17:28:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12361,'5500','121667312131','2022-11-01 17:28:02',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12362,'1000','121667312131','2022-11-01 17:28:02',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12363,'4000','121667312131','2022-11-01 17:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12364,'4000','121667312131','2022-11-01 17:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12365,'4000','121667312131','2022-11-01 17:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12366,'4000','121667312131','2022-11-01 17:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12367,'1110','121667312888','2022-11-01 18:29:23',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12368,'5500','121667312888','2022-11-01 18:29:23',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12369,'1000','121667312888','2022-11-01 18:29:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12370,'4000','121667312888','2022-11-01 18:29:23',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12371,'1110','121667316601','2022-11-01 18:33:06',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12372,'5500','121667316601','2022-11-01 18:33:06',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12373,'1000','121667316601','2022-11-01 18:33:06',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12374,'4000','121667316601','2022-11-01 18:33:06',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12375,'1110','121667317772','2022-11-01 18:49:46',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(12376,'5500','121667317772','2022-11-01 18:49:46',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12377,'1000','121667317772','2022-11-01 18:49:46',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12378,'4000','121667317772','2022-11-01 18:49:46',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(12379,'1110','121667317792','2022-11-01 19:08:28',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12380,'5500','121667317792','2022-11-01 19:08:28',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12381,'1000','121667317792','2022-11-01 19:08:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12382,'4000','121667317792','2022-11-01 19:08:28',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12383,'1110','121667320705','2022-11-01 19:38:57',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12384,'5500','121667320705','2022-11-01 19:38:57',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12385,'1000','121667320705','2022-11-01 19:38:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12386,'4000','121667320705','2022-11-01 19:38:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12387,'1110','121667320781','2022-11-01 19:43:45',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(12388,'1110','121667320781','2022-11-01 19:43:45',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12389,'5500','121667320781','2022-11-01 19:43:45',727.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12390,'1000','121667320781','2022-11-01 19:43:45',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12391,'4000','121667320781','2022-11-01 19:43:45',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(12392,'4000','121667320781','2022-11-01 19:43:45',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12393,'1110','121667321123','2022-11-01 19:50:15',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12394,'1110','121667321123','2022-11-01 19:50:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(12395,'5500','121667321123','2022-11-01 19:50:15',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12396,'1000','121667321123','2022-11-01 19:50:15',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12397,'4000','121667321123','2022-11-01 19:50:15',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12398,'4000','121667321123','2022-11-01 19:50:15',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(12399,'1110','121667326124','2022-11-01 22:06:54',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12400,'5500','121667326124','2022-11-01 22:06:54',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12401,'1000','121667326124','2022-11-01 22:06:54',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12402,'4000','121667326124','2022-11-01 22:06:54',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12403,'1110','121667330301','2022-11-01 22:18:53',NULL,1635.37,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12404,'1110','121667330301','2022-11-01 22:18:53',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12405,'5500','121667330301','2022-11-01 22:18:53',1941.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12406,'1000','121667330301','2022-11-01 22:18:53',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12407,'4000','121667330301','2022-11-01 22:18:53',NULL,2250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12408,'4000','121667330301','2022-11-01 22:18:53',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12409,'1110','121667330338','2022-11-01 22:34:21',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(12410,'1110','121667330338','2022-11-01 22:34:21',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12411,'5500','121667330338','2022-11-01 22:34:21',1338.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12412,'1000','121667330338','2022-11-01 22:34:21',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12413,'4000','121667330338','2022-11-01 22:34:21',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(12414,'4000','121667330338','2022-11-01 22:34:21',NULL,1300.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12415,'1110','121667331328','2022-11-01 22:50:57',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12416,'5500','121667331328','2022-11-01 22:50:57',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12417,'1000','121667331328','2022-11-01 22:50:57',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12418,'4000','121667331328','2022-11-01 22:50:57',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12419,'1110','121667332321','2022-11-01 23:00:00',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12420,'5500','121667332321','2022-11-01 23:00:00',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12421,'1000','121667332321','2022-11-01 23:00:00',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12422,'4000','121667332321','2022-11-01 23:00:00',NULL,1300.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12423,'1110','121667332911','2022-11-01 23:17:55',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12424,'5500','121667332911','2022-11-01 23:17:55',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12425,'1000','121667332911','2022-11-01 23:17:55',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12426,'4000','121667332911','2022-11-01 23:17:55',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12427,'1110','121667333881','2022-11-01 23:39:51',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12428,'5500','121667333881','2022-11-01 23:39:51',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12429,'1000','121667333881','2022-11-01 23:39:51',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12430,'4000','121667333881','2022-11-01 23:39:51',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(12431,'1110','121667335240','2022-11-01 23:48:39',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12432,'5500','121667335240','2022-11-01 23:48:39',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12433,'1000','121667335240','2022-11-01 23:48:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12434,'4000','121667335240','2022-11-01 23:48:39',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12435,'1110','121667335809','2022-11-02 00:15:51',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12436,'1110','121667335809','2022-11-02 00:15:51',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12437,'1110','121667335809','2022-11-02 00:15:51',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12438,'5500','121667335809','2022-11-02 00:15:51',1361.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12439,'1000','121667335809','2022-11-02 00:15:51',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12440,'4000','121667335809','2022-11-02 00:15:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12441,'4000','121667335809','2022-11-02 00:15:51',NULL,660.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12442,'4000','121667335809','2022-11-02 00:15:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12443,'1110','121667337499','2022-11-02 00:18:32',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12444,'5500','121667337499','2022-11-02 00:18:32',804.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12445,'1000','121667337499','2022-11-02 00:18:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12446,'4000','121667337499','2022-11-02 00:18:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12447,'1110','121667337516','2022-11-02 00:21:19',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(12448,'1110','121667337516','2022-11-02 00:21:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(12449,'5500','121667337516','2022-11-02 00:21:19',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12450,'1000','121667337516','2022-11-02 00:21:19',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12451,'4000','121667337516','2022-11-02 00:21:19',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(12452,'4000','121667337516','2022-11-02 00:21:19',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(12453,'1110','121667337894','2022-11-02 00:26:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12454,'5500','121667337894','2022-11-02 00:26:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12455,'1000','121667337894','2022-11-02 00:26:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12456,'4000','121667337894','2022-11-02 00:26:13',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12457,'1110','121667337982','2022-11-02 00:32:36',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(12458,'5500','121667337982','2022-11-02 00:32:36',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12459,'1000','121667337982','2022-11-02 00:32:36',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12460,'4000','121667337982','2022-11-02 00:32:36',NULL,2300.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(12461,'1110','121667338380','2022-11-02 01:15:13',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12462,'1110','121667338380','2022-11-02 01:15:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12463,'5500','121667338380','2022-11-02 01:15:13',305.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12464,'1000','121667338380','2022-11-02 01:15:13',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12465,'4000','121667338380','2022-11-02 01:15:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12466,'4000','121667338380','2022-11-02 01:15:13',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12467,'1110','121667340918','2022-11-02 01:53:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12468,'5500','121667340918','2022-11-02 01:53:41',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12469,'1000','121667340918','2022-11-02 01:53:41',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12470,'4000','121667340918','2022-11-02 01:53:41',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12471,'1110','121667343230','2022-11-02 01:55:05',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12472,'5500','121667343230','2022-11-02 01:55:05',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12473,'1000','121667343230','2022-11-02 01:55:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12474,'4000','121667343230','2022-11-02 01:55:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12475,'1110','121667343528','2022-11-02 02:17:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12476,'1110','121667343528','2022-11-02 02:17:59',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12477,'5500','121667343528','2022-11-02 02:17:59',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12478,'1000','121667343528','2022-11-02 02:17:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12479,'4000','121667343528','2022-11-02 02:17:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12480,'4000','121667343528','2022-11-02 02:17:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12481,'1110','121667344684','2022-11-02 02:23:05',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12482,'1110','121667344684','2022-11-02 02:23:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(12483,'5500','121667344684','2022-11-02 02:23:05',142.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12484,'1000','121667344684','2022-11-02 02:23:05',280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12485,'4000','121667344684','2022-11-02 02:23:05',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12486,'4000','121667344684','2022-11-02 02:23:05',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(12487,'1110','121667345833','2022-11-02 02:38:08',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12488,'1110','121667345833','2022-11-02 02:38:08',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12489,'1110','121667345833','2022-11-02 02:38:08',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12490,'5500','121667345833','2022-11-02 02:38:08',503.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12491,'1000','121667345833','2022-11-02 02:38:08',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12492,'4000','121667345833','2022-11-02 02:38:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12493,'4000','121667345833','2022-11-02 02:38:08',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12494,'4000','121667345833','2022-11-02 02:38:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(12495,'1110','121667345942','2022-11-02 02:50:57',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(12496,'1110','121667345942','2022-11-02 02:50:57',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12497,'1110','121667345942','2022-11-02 02:50:57',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12498,'5500','121667345942','2022-11-02 02:50:57',1466.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12499,'1000','121667345942','2022-11-02 02:50:57',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12500,'4000','121667345942','2022-11-02 02:50:57',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(12501,'4000','121667345942','2022-11-02 02:50:57',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12502,'4000','121667345942','2022-11-02 02:50:57',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12503,'1110','121667346683','2022-11-02 03:29:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12504,'5500','121667346683','2022-11-02 03:29:51',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12505,'1000','121667346683','2022-11-02 03:29:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12506,'4000','121667346683','2022-11-02 03:29:51',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12507,'1110','121667348996','2022-11-02 04:14:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12508,'5500','121667348996','2022-11-02 04:14:24',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12509,'1000','121667348996','2022-11-02 04:14:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12510,'4000','121667348996','2022-11-02 04:14:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12511,'1110','121667400184','2022-11-02 17:43:56',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12512,'1110','121667400184','2022-11-02 17:43:56',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(12513,'1110','121667400184','2022-11-02 17:43:56',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12514,'1110','121667400184','2022-11-02 17:43:56',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(12515,'5500','121667400184','2022-11-02 17:43:56',971.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12516,'1000','121667400184','2022-11-02 17:43:56',1380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12517,'4000','121667400184','2022-11-02 17:43:56',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(12518,'4000','121667400184','2022-11-02 17:43:56',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(12519,'4000','121667400184','2022-11-02 17:43:56',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12520,'4000','121667400184','2022-11-02 17:43:56',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(12521,'1110','121667400314','2022-11-02 19:53:59',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12522,'5500','121667400314','2022-11-02 19:53:59',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12523,'1000','121667400314','2022-11-02 19:53:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12524,'4000','121667400314','2022-11-02 19:53:59',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12525,'1110','121667408232','2022-11-02 20:55:26',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12526,'5500','121667408232','2022-11-02 20:55:26',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12527,'1000','121667408232','2022-11-02 20:55:26',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12528,'4000','121667408232','2022-11-02 20:55:26',NULL,220.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12529,'1110','121667411731','2022-11-02 21:03:10',NULL,2520.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12530,'1110','121667411731','2022-11-02 21:03:10',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(12531,'1110','121667411731','2022-11-02 21:03:10',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(12532,'5500','121667411731','2022-11-02 21:03:10',2756.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12533,'1000','121667411731','2022-11-02 21:03:10',3740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12534,'4000','121667411731','2022-11-02 21:03:10',NULL,3400.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(12535,'4000','121667411731','2022-11-02 21:03:10',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(12536,'4000','121667411731','2022-11-02 21:03:10',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(12537,'1110','121667412201','2022-11-02 21:23:00',NULL,1764.00,'','12','1','Inventory sold','1','','sales','5010327000039','','No',NULL,NULL,''),(12538,'1110','121667412201','2022-11-02 21:23:00',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12539,'5500','121667412201','2022-11-02 21:23:00',1875.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12540,'1000','121667412201','2022-11-02 21:23:00',2710.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12541,'4000','121667412201','2022-11-02 21:23:00',NULL,2500.00,'','12','1','Good sold','1','','sales','5010327000039','','No',NULL,NULL,''),(12542,'4000','121667412201','2022-11-02 21:23:00',NULL,210.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12543,'1110','121667414845','2022-11-02 22:45:28',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12544,'5500','121667414845','2022-11-02 22:45:28',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12545,'1000','121667414845','2022-11-02 22:45:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12546,'4000','121667414845','2022-11-02 22:45:28',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12547,'1110','121667418333','2022-11-02 22:55:43',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(12548,'5500','121667418333','2022-11-02 22:55:43',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12549,'1000','121667418333','2022-11-02 22:55:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12550,'4000','121667418333','2022-11-02 22:55:43',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(12551,'1110','121667419082','2022-11-02 23:16:28',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12552,'1110','121667419082','2022-11-02 23:16:28',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12553,'5500','121667419082','2022-11-02 23:16:28',776.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12554,'1000','121667419082','2022-11-02 23:16:28',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12555,'4000','121667419082','2022-11-02 23:16:28',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12556,'4000','121667419082','2022-11-02 23:16:28',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12557,'1110','121667420246','2022-11-02 23:51:56',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12558,'1110','121667420246','2022-11-02 23:51:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(12559,'1110','121667420246','2022-11-02 23:51:56',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(12560,'5500','121667420246','2022-11-02 23:51:56',1283.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12561,'1000','121667420246','2022-11-02 23:51:56',2030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12562,'4000','121667420246','2022-11-02 23:51:56',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12563,'4000','121667420246','2022-11-02 23:51:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(12564,'4000','121667420246','2022-11-02 23:51:56',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(12565,'1110','121667422500','2022-11-02 23:58:17',NULL,5200.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(12566,'1110','121667422500','2022-11-02 23:58:17',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12567,'1110','121667422500','2022-11-02 23:58:17',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12568,'1110','121667422500','2022-11-02 23:58:17',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12569,'1110','121667422500','2022-11-02 23:58:17',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12570,'5500','121667422500','2022-11-02 23:58:17',6062.54,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12571,'1000','121667422500','2022-11-02 23:58:17',9480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12572,'4000','121667422500','2022-11-02 23:58:17',NULL,8000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(12573,'4000','121667422500','2022-11-02 23:58:17',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12574,'4000','121667422500','2022-11-02 23:58:17',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12575,'4000','121667422500','2022-11-02 23:58:17',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12576,'4000','121667422500','2022-11-02 23:58:17',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12577,'1110','121667422706','2022-11-03 00:00:06',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(12578,'1110','121667422706','2022-11-03 00:00:06',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12579,'1110','121667422706','2022-11-03 00:00:06',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12580,'5500','121667422706','2022-11-03 00:00:06',635.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12581,'1000','121667422706','2022-11-03 00:00:06',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12582,'4000','121667422706','2022-11-03 00:00:06',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(12583,'4000','121667422706','2022-11-03 00:00:06',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12584,'4000','121667422706','2022-11-03 00:00:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12585,'1110','121667422810','2022-11-03 00:20:54',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12586,'5500','121667422810','2022-11-03 00:20:54',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12587,'1000','121667422810','2022-11-03 00:20:54',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12588,'4000','121667422810','2022-11-03 00:20:54',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12589,'1110','121667425238','2022-11-03 00:40:54',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12590,'5500','121667425238','2022-11-03 00:40:54',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12591,'1000','121667425238','2022-11-03 00:40:54',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12592,'4000','121667425238','2022-11-03 00:40:54',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12593,'1110','121667425266','2022-11-03 01:25:48',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12594,'5500','121667425266','2022-11-03 01:25:48',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12595,'1000','121667425266','2022-11-03 01:25:48',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12596,'4000','121667425266','2022-11-03 01:25:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12597,'1110','121667427955','2022-11-03 01:32:03',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12598,'1110','121667427955','2022-11-03 01:32:03',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12599,'5500','121667427955','2022-11-03 01:32:03',1173.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12600,'1000','121667427955','2022-11-03 01:32:03',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12601,'4000','121667427955','2022-11-03 01:32:03',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12602,'4000','121667427955','2022-11-03 01:32:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12603,'1110','121667488780','2022-11-03 18:19:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12604,'5500','121667488780','2022-11-03 18:19:47',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12605,'1000','121667488780','2022-11-03 18:19:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12606,'4000','121667488780','2022-11-03 18:19:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12607,'1110','121667492538','2022-11-03 19:22:50',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(12608,'1110','121667492538','2022-11-03 19:22:50',NULL,1730.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(12609,'1110','121667492538','2022-11-03 19:22:50',NULL,1256.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12610,'5500','121667492538','2022-11-03 19:22:50',4130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12611,'1000','121667492538','2022-11-03 19:22:50',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12612,'4000','121667492538','2022-11-03 19:22:50',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(12613,'4000','121667492538','2022-11-03 19:22:50',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(12614,'4000','121667492538','2022-11-03 19:22:50',NULL,2600.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(12615,'1110','121667497022','2022-11-03 20:38:01',NULL,631.00,'','12','1','Inventory sold','1','','sales','8908006354993','','No',NULL,NULL,''),(12616,'1110','121667497022','2022-11-03 20:38:01',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12617,'5500','121667497022','2022-11-03 20:38:01',789.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12618,'1000','121667497022','2022-11-03 20:38:01',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12619,'4000','121667497022','2022-11-03 20:38:01',NULL,900.00,'','12','1','Good sold','1','','sales','8908006354993','','No',NULL,NULL,''),(12620,'4000','121667497022','2022-11-03 20:38:01',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12623,'1000','121667497723','2022-11-03 20:58:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12625,'1110','121667497723','2022-11-03 20:58:55',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12626,'5500','121667497723','2022-11-03 21:55:46',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12627,'1000','121667497723','2022-11-03 20:58:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12628,'4000','121667497723','2022-11-03 20:58:55',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12629,'1110','121667502774','2022-11-03 22:34:19',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12630,'5500','121667502774','2022-11-03 22:34:19',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12631,'1000','121667502774','2022-11-03 22:34:19',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12632,'4000','121667502774','2022-11-03 22:34:19',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12633,'1110','121667505474','2022-11-03 22:58:55',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12634,'5500','121667505474','2022-11-03 22:58:55',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12635,'1000','121667505474','2022-11-03 22:58:55',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12636,'4000','121667505474','2022-11-03 22:58:55',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12639,'1000','121667508206','2022-11-03 23:43:43',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12641,'1110','121667508227','2022-11-03 23:44:01',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12642,'5500','121667508227','2022-11-03 23:44:01',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12643,'1000','121667508227','2022-11-03 23:44:01',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12644,'4000','121667508227','2022-11-03 23:44:01',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12645,'1110','121667508245','2022-11-04 00:00:18',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12646,'5500','121667508245','2022-11-04 00:00:18',308.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12647,'1000','121667508245','2022-11-04 00:00:18',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12648,'4000','121667508245','2022-11-04 00:00:18',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12649,'1110','121667508206','2022-11-03 23:43:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12650,'1110','121667508206','2022-11-04 01:10:24',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12651,'1110','121667508206','2022-11-04 01:10:24',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(12652,'1110','121667508206','2022-11-04 01:10:24',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12653,'5500','121667508206','2022-11-04 01:10:24',491.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12654,'1000','121667508206','2022-11-03 23:43:43',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12655,'4000','121667508206','2022-11-03 23:43:43',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12656,'4000','121667508206','2022-11-04 01:10:24',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(12657,'4000','121667508206','2022-11-04 01:10:24',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(12658,'4000','121667508206','2022-11-04 01:10:24',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12659,'1110','121667515496','2022-11-04 01:46:14',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12660,'1110','121667515496','2022-11-04 01:46:14',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12661,'5500','121667515496','2022-11-04 01:46:14',575.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12662,'1000','121667515496','2022-11-04 01:46:14',940.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12663,'4000','121667515496','2022-11-04 01:46:14',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(12664,'4000','121667515496','2022-11-04 01:46:14',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12665,'1110','121667515583','2022-11-04 02:56:14',NULL,2433.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(12666,'1110','121667515583','2022-11-04 02:56:14',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12667,'5500','121667515583','2022-11-04 02:56:14',2591.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12668,'1000','121667515583','2022-11-04 02:56:14',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12669,'4000','121667515583','2022-11-04 02:56:14',NULL,3600.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(12670,'4000','121667515583','2022-11-04 02:56:14',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12671,'1110','121667519813','2022-11-04 03:01:16',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(12672,'1110','121667519813','2022-11-04 03:01:16',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12673,'1110','121667519813','2022-11-04 03:01:16',NULL,1500.00,'','12','1','Inventory sold','1','','sales','852848252017','','No',NULL,NULL,''),(12674,'5500','121667519813','2022-11-04 03:01:16',4258.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12675,'1000','121667519813','2022-11-04 03:01:16',8050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12676,'4000','121667519813','2022-11-04 03:01:16',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(12677,'4000','121667519813','2022-11-04 03:01:16',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(12678,'4000','121667519813','2022-11-04 03:01:16',NULL,3800.00,'','12','1','Good sold','1','','sales','852848252017','','No',NULL,NULL,''),(12679,'1110','121667576849','2022-11-04 20:00:04',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12680,'5500','121667576849','2022-11-04 20:00:04',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12681,'1000','121667576849','2022-11-04 20:00:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12682,'4000','121667576849','2022-11-04 20:00:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12683,'1110','121667583312','2022-11-04 20:35:28',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12684,'5500','121667583312','2022-11-04 20:35:28',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12685,'1000','121667583312','2022-11-04 20:35:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12686,'4000','121667583312','2022-11-04 20:35:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12687,'1110','121667583332','2022-11-04 20:44:58',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(12688,'1110','121667583332','2022-11-04 20:44:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(12689,'5500','121667583332','2022-11-04 20:44:58',87.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12690,'1000','121667583332','2022-11-04 20:44:58',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12691,'4000','121667583332','2022-11-04 20:44:58',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(12692,'4000','121667583332','2022-11-04 20:44:58',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(12693,'1110','121667583907','2022-11-04 21:24:51',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12694,'5500','121667583907','2022-11-04 21:24:51',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12695,'1000','121667583907','2022-11-04 21:24:51',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12696,'4000','121667583907','2022-11-04 21:24:51',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12697,'1110','121667586404','2022-11-04 21:30:34',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12698,'5500','121667586404','2022-11-04 21:30:34',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12699,'1000','121667586404','2022-11-04 21:30:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12700,'4000','121667586404','2022-11-04 21:30:34',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12701,'1110','121667586646','2022-11-04 21:44:14',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12702,'5500','121667586646','2022-11-04 21:44:14',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12703,'1000','121667586646','2022-11-04 21:44:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12704,'4000','121667586646','2022-11-04 21:44:14',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12705,'1110','121667587458','2022-11-04 21:57:45',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(12706,'1110','121667587458','2022-11-04 21:57:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(12707,'5500','121667587458','2022-11-04 21:57:45',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12708,'1000','121667587458','2022-11-04 21:57:45',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12709,'4000','121667587458','2022-11-04 21:57:45',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(12710,'4000','121667587458','2022-11-04 21:57:45',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(12711,'1110','121667588269','2022-11-04 22:11:37',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12712,'5500','121667588269','2022-11-04 22:11:37',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12713,'1000','121667588269','2022-11-04 22:11:37',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12714,'4000','121667588269','2022-11-04 22:11:37',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(12715,'1110','121667589175','2022-11-04 22:24:04',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12716,'5500','121667589175','2022-11-04 22:24:04',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12717,'1000','121667589175','2022-11-04 22:24:04',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12718,'4000','121667589175','2022-11-04 22:24:04',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12719,'1110','121667589969','2022-11-04 22:30:40',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(12720,'1110','121667589969','2022-11-04 22:30:40',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12721,'5500','121667589969','2022-11-04 22:30:40',3756.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12722,'1000','121667589969','2022-11-04 22:30:40',5800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12723,'4000','121667589969','2022-11-04 22:30:40',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(12724,'4000','121667589969','2022-11-04 22:30:40',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(12725,'1110','121667590247','2022-11-04 22:35:41',NULL,1638.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12726,'5500','121667590247','2022-11-04 22:35:41',1638.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12727,'1000','121667590247','2022-11-04 22:35:41',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12728,'4000','121667590247','2022-11-04 22:35:41',NULL,2250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12729,'1110','121667590547','2022-11-04 22:50:29',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(12730,'5500','121667590547','2022-11-04 22:50:29',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12731,'1000','121667590547','2022-11-04 22:50:29',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12732,'4000','121667590547','2022-11-04 22:50:29',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(12733,'1110','121667592639','2022-11-04 23:10:50',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12734,'5500','121667592639','2022-11-04 23:10:50',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12735,'1000','121667592639','2022-11-04 23:10:50',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12736,'4000','121667592639','2022-11-04 23:10:50',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12737,'1110','121667592695','2022-11-04 23:22:12',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12738,'5500','121667592695','2022-11-04 23:22:12',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12739,'1000','121667592695','2022-11-04 23:22:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12740,'4000','121667592695','2022-11-04 23:22:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12741,'1110','121667593357','2022-11-04 23:27:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12742,'5500','121667593357','2022-11-04 23:27:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12743,'1000','121667593357','2022-11-04 23:27:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12744,'4000','121667593357','2022-11-04 23:27:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12745,'1110','121667593672','2022-11-04 23:35:51',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(12746,'1110','121667593672','2022-11-04 23:35:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12747,'1110','121667593672','2022-11-04 23:35:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12748,'5500','121667593672','2022-11-04 23:35:51',3706.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12749,'1000','121667593672','2022-11-04 23:35:51',5700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12750,'4000','121667593672','2022-11-04 23:35:51',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(12751,'4000','121667593672','2022-11-04 23:35:51',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12752,'4000','121667593672','2022-11-04 23:35:51',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12753,'1110','121667594220','2022-11-05 00:09:56',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(12754,'5500','121667594220','2022-11-05 00:09:56',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12755,'1000','121667594220','2022-11-05 00:09:56',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12756,'4000','121667594220','2022-11-05 00:09:56',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(12757,'1110','121667596836','2022-11-05 00:21:40',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12758,'1110','121667596836','2022-11-05 00:21:40',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12759,'5500','121667596836','2022-11-05 00:21:40',1293.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12760,'1000','121667596836','2022-11-05 00:21:40',1880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12761,'4000','121667596836','2022-11-05 00:21:40',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12762,'4000','121667596836','2022-11-05 00:21:40',NULL,880.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12763,'1110','121667596969','2022-11-05 00:27:03',NULL,1280.00,'','12','1','Inventory sold','1','','sales','7794450091598','','No',NULL,NULL,''),(12764,'5500','121667596969','2022-11-05 00:27:03',1280.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12765,'1000','121667596969','2022-11-05 00:27:03',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12766,'4000','121667596969','2022-11-05 00:27:03',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091598','','No',NULL,NULL,''),(12767,'1110','121667597247','2022-11-05 00:33:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12768,'1110','121667597247','2022-11-05 00:33:39',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12769,'1110','121667597247','2022-11-05 00:33:39',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12770,'5500','121667597247','2022-11-05 00:33:39',1102.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12771,'1000','121667597247','2022-11-05 00:33:39',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12772,'4000','121667597247','2022-11-05 00:33:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(12773,'4000','121667597247','2022-11-05 00:33:39',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12774,'4000','121667597247','2022-11-05 00:33:39',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(12775,'1110','121667597689','2022-11-05 00:39:39',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(12776,'5500','121667597689','2022-11-05 00:39:39',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12777,'1000','121667597689','2022-11-05 00:39:39',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12778,'4000','121667597689','2022-11-05 00:39:39',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(12779,'1110','121667598054','2022-11-05 00:41:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12780,'5500','121667598054','2022-11-05 00:41:53',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12781,'1000','121667598054','2022-11-05 00:41:53',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12782,'4000','121667598054','2022-11-05 00:41:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12783,'1110','121667598117','2022-11-05 00:44:26',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12784,'5500','121667598117','2022-11-05 00:44:26',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12785,'1000','121667598117','2022-11-05 00:44:26',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12786,'4000','121667598117','2022-11-05 00:44:26',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12787,'1110','121667598314','2022-11-05 01:21:23',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12788,'5500','121667598314','2022-11-05 01:21:23',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12789,'1000','121667598314','2022-11-05 01:21:23',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12790,'4000','121667598314','2022-11-05 01:21:23',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12791,'1110','121667600487','2022-11-05 02:24:37',NULL,745.80,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12792,'1110','121667600487','2022-11-05 02:24:37',NULL,1566.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12793,'1110','121667600487','2022-11-05 02:24:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12794,'1110','121667600487','2022-11-05 02:24:37',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(12795,'1110','121667600487','2022-11-05 02:24:37',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12796,'1110','121667600487','2022-11-05 02:24:37',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(12797,'1110','121667600487','2022-11-05 02:24:37',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12798,'5500','121667600487','2022-11-05 02:24:37',6335.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12799,'1000','121667600487','2022-11-05 02:24:37',9780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12800,'4000','121667600487','2022-11-05 02:24:37',NULL,1500.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12801,'4000','121667600487','2022-11-05 02:24:37',NULL,2250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12802,'4000','121667600487','2022-11-05 02:24:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12803,'4000','121667600487','2022-11-05 02:24:37',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(12804,'4000','121667600487','2022-11-05 02:24:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(12805,'4000','121667600487','2022-11-05 02:24:37',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(12806,'4000','121667600487','2022-11-05 02:24:37',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12807,'1110','121667604618','2022-11-05 02:30:27',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12808,'5500','121667604618','2022-11-05 02:30:27',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12809,'1000','121667604618','2022-11-05 02:30:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12810,'4000','121667604618','2022-11-05 02:30:27',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12811,'1110','121667604633','2022-11-05 02:39:47',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12812,'5500','121667604633','2022-11-05 02:39:47',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12813,'1000','121667604633','2022-11-05 02:39:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12814,'4000','121667604633','2022-11-05 02:39:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12815,'1110','121667606000','2022-11-05 02:53:43',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12816,'5500','121667606000','2022-11-05 02:53:43',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12817,'1000','121667606000','2022-11-05 02:53:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12818,'4000','121667606000','2022-11-05 02:53:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(12819,'1110','121667661837','2022-11-05 18:24:07',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(12820,'5500','121667661837','2022-11-05 18:24:07',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12821,'1000','121667661837','2022-11-05 18:24:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12822,'4000','121667661837','2022-11-05 18:24:07',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(12823,'1110','121667661855','2022-11-05 18:54:36',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(12824,'5500','121667661855','2022-11-05 18:54:36',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12825,'1000','121667661855','2022-11-05 18:54:36',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12826,'4000','121667661855','2022-11-05 18:54:36',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(12827,'1110','121667663699','2022-11-05 19:05:04',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(12828,'5500','121667663699','2022-11-05 19:05:04',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12829,'1000','121667663699','2022-11-05 19:05:04',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12830,'4000','121667663699','2022-11-05 19:05:04',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(12831,'1110','121667668862','2022-11-05 20:35:40',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12832,'5500','121667668862','2022-11-05 20:35:40',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12833,'1000','121667668862','2022-11-05 20:35:40',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12834,'4000','121667668862','2022-11-05 20:35:40',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(12835,'1110','121667673689','2022-11-05 21:42:05',NULL,1740.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12836,'1110','121667673689','2022-11-05 21:42:05',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12837,'5500','121667673689','2022-11-05 21:42:05',2191.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12838,'1000','121667673689','2022-11-05 21:42:05',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12839,'4000','121667673689','2022-11-05 21:42:05',NULL,2500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12840,'4000','121667673689','2022-11-05 21:42:05',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12841,'1110','121667673737','2022-11-05 21:47:02',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12842,'1110','121667673737','2022-11-05 21:47:02',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12843,'5500','121667673737','2022-11-05 21:47:02',575.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12844,'1000','121667673737','2022-11-05 21:47:02',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12845,'4000','121667673737','2022-11-05 21:47:02',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(12846,'4000','121667673737','2022-11-05 21:47:02',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12847,'1110','121667674562','2022-11-05 21:56:15',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12848,'5500','121667674562','2022-11-05 21:56:15',1090.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12849,'1000','121667674562','2022-11-05 21:56:15',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12850,'4000','121667674562','2022-11-05 21:56:15',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12851,'1110','121667680506','2022-11-05 23:36:59',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12852,'1110','121667680506','2022-11-05 23:36:59',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12853,'1110','121667680506','2022-11-05 23:36:59',NULL,2548.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12854,'5500','121667680506','2022-11-05 23:36:59',3970.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12855,'1000','121667680506','2022-11-05 23:36:59',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12856,'4000','121667680506','2022-11-05 23:36:59',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(12857,'4000','121667680506','2022-11-05 23:36:59',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(12858,'4000','121667680506','2022-11-05 23:36:59',NULL,3500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(12859,'1110','121667680637','2022-11-05 23:38:55',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(12860,'1110','121667680637','2022-11-05 23:38:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(12861,'5500','121667680637','2022-11-05 23:38:55',1667.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12862,'1000','121667680637','2022-11-05 23:38:55',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12863,'4000','121667680637','2022-11-05 23:38:55',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(12864,'4000','121667680637','2022-11-05 23:38:55',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(12865,'1110','121667681253','2022-11-05 23:48:03',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12866,'1110','121667681253','2022-11-05 23:48:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12867,'5500','121667681253','2022-11-05 23:48:03',842.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12868,'1000','121667681253','2022-11-05 23:48:03',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12869,'4000','121667681253','2022-11-05 23:48:03',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12870,'4000','121667681253','2022-11-05 23:48:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12871,'1110','121667681449','2022-11-05 23:51:00',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12872,'5500','121667681449','2022-11-05 23:51:00',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12873,'1000','121667681449','2022-11-05 23:51:00',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12874,'4000','121667681449','2022-11-05 23:51:00',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(12875,'1110','121667681626','2022-11-05 23:54:02',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12876,'5500','121667681626','2022-11-05 23:54:02',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12877,'1000','121667681626','2022-11-05 23:54:02',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12878,'4000','121667681626','2022-11-05 23:54:02',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12879,'1110','121667681648','2022-11-06 00:07:20',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(12880,'5500','121667681648','2022-11-06 00:07:20',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12881,'1000','121667681648','2022-11-06 00:07:20',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12882,'4000','121667681648','2022-11-06 00:07:20',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(12883,'1110','121667683016','2022-11-06 00:23:14',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(12884,'1110','121667683016','2022-11-06 00:23:14',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(12885,'5500','121667683016','2022-11-06 00:23:14',615.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12886,'1000','121667683016','2022-11-06 00:23:14',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12887,'4000','121667683016','2022-11-06 00:23:14',NULL,500.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(12888,'4000','121667683016','2022-11-06 00:23:14',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(12889,'1110','121667683461','2022-11-06 00:24:42',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12890,'5500','121667683461','2022-11-06 00:24:42',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12891,'1000','121667683461','2022-11-06 00:24:42',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12892,'4000','121667683461','2022-11-06 00:24:42',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12893,'1110','121667683571','2022-11-06 00:27:14',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12894,'1110','121667683571','2022-11-06 00:27:14',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12895,'1110','121667683571','2022-11-06 00:27:14',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12896,'5500','121667683571','2022-11-06 00:27:14',2225.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12897,'1000','121667683571','2022-11-06 00:27:14',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12898,'4000','121667683571','2022-11-06 00:27:14',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12899,'4000','121667683571','2022-11-06 00:27:14',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(12900,'4000','121667683571','2022-11-06 00:27:14',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12901,'1110','121667684053','2022-11-06 00:35:45',NULL,668.00,'','12','1','Inventory sold','1','','sales','6001495080007','','No',NULL,NULL,''),(12902,'5500','121667684053','2022-11-06 00:35:45',668.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12903,'1000','121667684053','2022-11-06 00:35:45',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12904,'4000','121667684053','2022-11-06 00:35:45',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495080007','','No',NULL,NULL,''),(12905,'1110','121667685846','2022-11-06 01:04:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12906,'5500','121667685846','2022-11-06 01:04:17',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12907,'1000','121667685846','2022-11-06 01:04:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12908,'4000','121667685846','2022-11-06 01:04:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12909,'1110','121667686721','2022-11-06 01:19:16',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12910,'1110','121667686721','2022-11-06 01:19:16',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12911,'1110','121667686721','2022-11-06 01:19:16',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12912,'5500','121667686721','2022-11-06 01:19:16',1454.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12913,'1000','121667686721','2022-11-06 01:19:16',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12914,'4000','121667686721','2022-11-06 01:19:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(12915,'4000','121667686721','2022-11-06 01:19:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12916,'4000','121667686721','2022-11-06 01:19:16',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12917,'1110','121667686792','2022-11-06 01:20:18',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12918,'5500','121667686792','2022-11-06 01:20:18',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12919,'1000','121667686792','2022-11-06 01:20:18',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12920,'4000','121667686792','2022-11-06 01:20:18',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12921,'1110','121667686828','2022-11-06 01:30:56',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12922,'1110','121667686828','2022-11-06 01:30:56',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(12923,'5500','121667686828','2022-11-06 01:30:56',185.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12924,'1000','121667686828','2022-11-06 01:30:56',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12925,'4000','121667686828','2022-11-06 01:30:56',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12926,'4000','121667686828','2022-11-06 01:30:56',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(12927,'1110','121667687609','2022-11-06 01:33:43',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12928,'5500','121667687609','2022-11-06 01:33:43',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12929,'1000','121667687609','2022-11-06 01:33:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12930,'4000','121667687609','2022-11-06 01:33:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12931,'1110','121667687740','2022-11-06 01:36:04',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12932,'1110','121667687740','2022-11-06 01:36:04',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(12933,'5500','121667687740','2022-11-06 01:36:04',1552.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12934,'1000','121667687740','2022-11-06 01:36:04',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12935,'4000','121667687740','2022-11-06 01:36:04',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12936,'4000','121667687740','2022-11-06 01:36:04',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(12937,'1110','121667687787','2022-11-06 01:39:55',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12938,'1110','121667687787','2022-11-06 01:39:55',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12939,'5500','121667687787','2022-11-06 01:39:55',105.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12940,'1000','121667687787','2022-11-06 01:39:55',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12941,'4000','121667687787','2022-11-06 01:39:55',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(12942,'4000','121667687787','2022-11-06 01:39:55',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(12943,'1110','121667688001','2022-11-06 01:44:30',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(12944,'1110','121667688001','2022-11-06 01:44:30',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12945,'5500','121667688001','2022-11-06 01:44:30',517.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12946,'1000','121667688001','2022-11-06 01:44:30',890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12947,'4000','121667688001','2022-11-06 01:44:30',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(12948,'4000','121667688001','2022-11-06 01:44:30',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12949,'1110','121667689294','2022-11-06 02:01:45',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(12950,'5500','121667689294','2022-11-06 02:01:45',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12951,'1000','121667689294','2022-11-06 02:01:45',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12952,'4000','121667689294','2022-11-06 02:01:45',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(12953,'1110','121667689310','2022-11-06 02:24:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12954,'5500','121667689310','2022-11-06 02:24:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12955,'1000','121667689310','2022-11-06 02:24:58',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12956,'4000','121667689310','2022-11-06 02:24:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12957,'1110','121667690702','2022-11-06 02:55:58',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12958,'1110','121667690702','2022-11-06 02:55:58',NULL,2650.00,'','12','1','Inventory sold','1','','sales','6002323400530','','No',NULL,NULL,''),(12959,'5500','121667690702','2022-11-06 02:55:58',3454.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12960,'1000','121667690702','2022-11-06 02:55:58',5000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12961,'4000','121667690702','2022-11-06 02:55:58',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(12962,'4000','121667690702','2022-11-06 02:55:58',NULL,4000.00,'','12','1','Good sold','1','','sales','6002323400530','','No',NULL,NULL,''),(12963,'1110','121667693663','2022-11-06 03:15:13',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12964,'1110','121667693663','2022-11-06 03:15:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12965,'1110','121667693663','2022-11-06 03:15:13',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(12966,'5500','121667693663','2022-11-06 03:15:13',532.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12967,'1000','121667693663','2022-11-06 03:15:13',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12968,'4000','121667693663','2022-11-06 03:15:13',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(12969,'4000','121667693663','2022-11-06 03:15:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(12970,'4000','121667693663','2022-11-06 03:15:13',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(12971,'1110','121667694939','2022-11-06 04:01:40',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(12972,'1110','121667694939','2022-11-06 04:01:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12973,'1110','121667694939','2022-11-06 04:01:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(12974,'1110','121667694939','2022-11-06 04:01:40',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12975,'5500','121667694939','2022-11-06 04:01:40',1420.27,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12976,'1000','121667694939','2022-11-06 04:01:40',2230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12977,'4000','121667694939','2022-11-06 04:01:40',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(12978,'4000','121667694939','2022-11-06 04:01:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(12979,'4000','121667694939','2022-11-06 04:01:40',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(12980,'4000','121667694939','2022-11-06 04:01:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(12981,'1110','121667696712','2022-11-06 04:05:41',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(12982,'1110','121667696712','2022-11-06 04:05:41',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(12983,'5500','121667696712','2022-11-06 04:05:41',704.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12984,'1000','121667696712','2022-11-06 04:05:41',1380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12985,'4000','121667696712','2022-11-06 04:05:41',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(12986,'4000','121667696712','2022-11-06 04:05:41',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(12987,'1110','121667737903','2022-11-06 15:32:02',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(12988,'5500','121667737903','2022-11-06 15:32:02',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12989,'1000','121667737903','2022-11-06 15:32:02',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12990,'4000','121667737903','2022-11-06 15:32:02',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(12991,'1110','121667738001','2022-11-06 15:38:22',NULL,92.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(12992,'1110','121667738001','2022-11-06 15:38:22',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12993,'5500','121667738001','2022-11-06 15:38:22',663.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12994,'1000','121667738001','2022-11-06 15:38:22',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(12995,'4000','121667738001','2022-11-06 15:38:22',NULL,300.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(12996,'4000','121667738001','2022-11-06 15:38:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(12997,'1110','121667740976','2022-11-06 16:23:07',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(12998,'5500','121667740976','2022-11-06 16:23:07',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(12999,'1000','121667740976','2022-11-06 16:23:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13000,'4000','121667740976','2022-11-06 16:23:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13001,'1110','121667748194','2022-11-06 18:23:36',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13002,'1110','121667748194','2022-11-06 18:23:36',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(13003,'5500','121667748194','2022-11-06 18:23:36',245.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13004,'1000','121667748194','2022-11-06 18:23:36',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13005,'4000','121667748194','2022-11-06 18:23:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13006,'4000','121667748194','2022-11-06 18:23:36',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(13007,'1110','121667748395','2022-11-06 18:36:03',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322690362','','No',NULL,NULL,''),(13008,'5500','121667748395','2022-11-06 18:36:03',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13009,'1000','121667748395','2022-11-06 18:36:03',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13010,'4000','121667748395','2022-11-06 18:36:03',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322690362','','No',NULL,NULL,''),(13011,'1110','121667748969','2022-11-06 18:38:30',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13012,'5500','121667748969','2022-11-06 18:38:30',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13013,'1000','121667748969','2022-11-06 18:38:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13014,'4000','121667748969','2022-11-06 18:38:30',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13015,'1110','121667758384','2022-11-06 21:13:14',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(13016,'5500','121667758384','2022-11-06 21:13:14',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13017,'1000','121667758384','2022-11-06 21:13:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13018,'4000','121667758384','2022-11-06 21:13:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(13019,'1110','121667759127','2022-11-06 21:25:44',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(13020,'1110','121667759127','2022-11-06 21:25:44',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13021,'5500','121667759127','2022-11-06 21:25:44',1230.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13022,'1000','121667759127','2022-11-06 21:25:44',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13023,'4000','121667759127','2022-11-06 21:25:44',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(13024,'4000','121667759127','2022-11-06 21:25:44',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13025,'1110','121667763842','2022-11-06 22:44:16',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(13026,'5500','121667763842','2022-11-06 22:44:16',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13027,'1000','121667763842','2022-11-06 22:44:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13028,'4000','121667763842','2022-11-06 22:44:16',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(13029,'1110','121667764803','2022-11-06 23:00:41',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13030,'1110','121667764803','2022-11-06 23:00:41',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13031,'5500','121667764803','2022-11-06 23:00:41',776.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13032,'1000','121667764803','2022-11-06 23:00:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13033,'4000','121667764803','2022-11-06 23:00:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13034,'4000','121667764803','2022-11-06 23:00:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13035,'1110','121667764844','2022-11-06 23:00:56',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13036,'5500','121667764844','2022-11-06 23:00:56',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13037,'1000','121667764844','2022-11-06 23:00:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13038,'4000','121667764844','2022-11-06 23:00:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13039,'1110','121667764859','2022-11-07 01:23:07',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(13040,'1110','121667764859','2022-11-07 01:23:07',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13041,'1110','121667764859','2022-11-07 01:23:07',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(13042,'5500','121667764859','2022-11-07 01:23:07',936.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13043,'1000','121667764859','2022-11-07 01:23:07',1340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13044,'4000','121667764859','2022-11-07 01:23:07',NULL,1100.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(13045,'4000','121667764859','2022-11-07 01:23:07',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13046,'4000','121667764859','2022-11-07 01:23:07',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(13047,'1110','121667776146','2022-11-07 02:11:08',NULL,5900.00,'','12','1','Inventory sold','1','','sales','082184087008','','No',NULL,NULL,''),(13048,'1110','121667776146','2022-11-07 02:11:08',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13049,'1110','121667776146','2022-11-07 02:11:08',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13050,'5500','121667776146','2022-11-07 02:11:08',6121.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13051,'1000','121667776146','2022-11-07 02:11:08',8380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13052,'4000','121667776146','2022-11-07 02:11:08',NULL,8000.00,'','12','1','Good sold','1','','sales','082184087008','','No',NULL,NULL,''),(13053,'4000','121667776146','2022-11-07 02:11:08',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13054,'4000','121667776146','2022-11-07 02:11:08',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13055,'1110','121667776288','2022-11-07 03:00:08',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(13056,'1110','121667776288','2022-11-07 03:00:08',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13057,'1110','121667776288','2022-11-07 03:00:08',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(13058,'1110','121667776288','2022-11-07 03:00:08',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(13059,'1110','121667776288','2022-11-07 03:00:08',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13060,'5500','121667776288','2022-11-07 03:00:08',5557.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13061,'1000','121667776288','2022-11-07 03:00:08',8500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13062,'4000','121667776288','2022-11-07 03:00:08',NULL,1500.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(13063,'4000','121667776288','2022-11-07 03:00:08',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13064,'4000','121667776288','2022-11-07 03:00:08',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(13065,'4000','121667776288','2022-11-07 03:00:08',NULL,6000.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(13066,'4000','121667776288','2022-11-07 03:00:08',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13067,'1110','121667847488','2022-11-07 22:01:13',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(13068,'1110','121667847488','2022-11-07 22:01:13',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(13069,'1110','121667847488','2022-11-07 22:01:13',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13070,'1110','121667847488','2022-11-07 22:01:13',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13071,'5500','121667847488','2022-11-07 22:01:13',888.76,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13072,'1000','121667847488','2022-11-07 22:01:13',1370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13073,'4000','121667847488','2022-11-07 22:01:13',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(13074,'4000','121667847488','2022-11-07 22:01:13',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(13075,'4000','121667847488','2022-11-07 22:01:13',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13076,'4000','121667847488','2022-11-07 22:01:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13077,'1110','121667848907','2022-11-07 22:22:22',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13078,'1110','121667848907','2022-11-07 22:22:22',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13079,'1110','121667848907','2022-11-07 22:22:22',NULL,128.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(13080,'5500','121667848907','2022-11-07 22:22:22',319.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13081,'1000','121667848907','2022-11-07 22:22:22',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13082,'4000','121667848907','2022-11-07 22:22:22',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13083,'4000','121667848907','2022-11-07 22:22:22',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13084,'4000','121667848907','2022-11-07 22:22:22',NULL,240.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(13085,'1110','121667848991','2022-11-07 22:25:13',NULL,1764.00,'','12','1','Inventory sold','1','','sales','5010327000039','','No',NULL,NULL,''),(13086,'1110','121667848991','2022-11-07 22:25:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(13087,'1110','121667848991','2022-11-07 22:25:13',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13088,'5500','121667848991','2022-11-07 22:25:13',1855.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13089,'1000','121667848991','2022-11-07 22:25:13',2680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13090,'4000','121667848991','2022-11-07 22:25:13',NULL,2500.00,'','12','1','Good sold','1','','sales','5010327000039','','No',NULL,NULL,''),(13091,'4000','121667848991','2022-11-07 22:25:13',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(13092,'4000','121667848991','2022-11-07 22:25:13',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13093,'1110','121667850149','2022-11-07 22:42:47',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13094,'5500','121667850149','2022-11-07 22:42:47',992.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13095,'1000','121667850149','2022-11-07 22:42:47',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13096,'4000','121667850149','2022-11-07 22:42:47',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13097,'1110','121667850183','2022-11-07 22:43:42',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13098,'5500','121667850183','2022-11-07 22:43:42',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13099,'1000','121667850183','2022-11-07 22:43:42',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13100,'4000','121667850183','2022-11-07 22:43:42',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13101,'1110','121667850227','2022-11-07 23:02:34',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(13102,'1110','121667850227','2022-11-07 23:02:34',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13103,'5500','121667850227','2022-11-07 23:02:34',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13104,'1000','121667850227','2022-11-07 23:02:34',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13105,'4000','121667850227','2022-11-07 23:02:34',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(13106,'4000','121667850227','2022-11-07 23:02:34',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13107,'1110','121667853021','2022-11-07 23:34:25',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(13108,'1110','121667853021','2022-11-07 23:34:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13109,'1110','121667853021','2022-11-07 23:34:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13110,'5500','121667853021','2022-11-07 23:34:25',1818.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13111,'1000','121667853021','2022-11-07 23:34:25',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13112,'4000','121667853021','2022-11-07 23:34:25',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(13113,'4000','121667853021','2022-11-07 23:34:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13114,'4000','121667853021','2022-11-07 23:34:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13115,'1110','121667854436','2022-11-07 23:54:13',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13116,'5500','121667854436','2022-11-07 23:54:13',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13117,'1000','121667854436','2022-11-07 23:54:13',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13118,'4000','121667854436','2022-11-07 23:54:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13119,'1110','121667854468','2022-11-07 23:55:49',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(13120,'1110','121667854468','2022-11-07 23:55:49',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(13121,'5500','121667854468','2022-11-07 23:55:49',615.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13122,'1000','121667854468','2022-11-07 23:55:49',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13123,'4000','121667854468','2022-11-07 23:55:49',NULL,500.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(13124,'4000','121667854468','2022-11-07 23:55:49',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(13125,'1110','121667854555','2022-11-07 23:56:48',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13126,'5500','121667854555','2022-11-07 23:56:48',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13127,'1000','121667854555','2022-11-07 23:56:48',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13128,'4000','121667854555','2022-11-07 23:56:48',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13129,'1110','121667855131','2022-11-08 00:06:39',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13130,'1110','121667855131','2022-11-08 00:06:39',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13131,'1110','121667855131','2022-11-08 00:06:39',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(13132,'5500','121667855131','2022-11-08 00:06:39',965.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13133,'1000','121667855131','2022-11-08 00:06:39',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13134,'4000','121667855131','2022-11-08 00:06:39',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13135,'4000','121667855131','2022-11-08 00:06:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13136,'4000','121667855131','2022-11-08 00:06:39',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(13137,'1110','121667855214','2022-11-08 00:07:56',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13138,'5500','121667855214','2022-11-08 00:07:56',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13139,'1000','121667855214','2022-11-08 00:07:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13140,'4000','121667855214','2022-11-08 00:07:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13141,'1110','121667856619','2022-11-08 00:31:22',NULL,931.00,'','12','1','Inventory sold','1','','sales','4820000944627','','No',NULL,NULL,''),(13142,'1110','121667856619','2022-11-08 00:31:22',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13143,'1110','121667856619','2022-11-08 00:31:22',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13144,'1110','121667856619','2022-11-08 00:31:22',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13145,'1110','121667856619','2022-11-08 00:31:22',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(13146,'5500','121667856619','2022-11-08 00:31:22',1803.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13147,'1000','121667856619','2022-11-08 00:31:22',2880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13148,'4000','121667856619','2022-11-08 00:31:22',NULL,1700.00,'','12','1','Good sold','1','','sales','4820000944627','','No',NULL,NULL,''),(13149,'4000','121667856619','2022-11-08 00:31:22',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13150,'4000','121667856619','2022-11-08 00:31:22',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13151,'4000','121667856619','2022-11-08 00:31:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13152,'4000','121667856619','2022-11-08 00:31:22',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(13153,'1110','121667856688','2022-11-08 00:59:57',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13154,'5500','121667856688','2022-11-08 00:59:57',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13155,'1000','121667856688','2022-11-08 00:59:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13156,'4000','121667856688','2022-11-08 00:59:57',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13157,'1110','121667861377','2022-11-08 01:50:07',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13158,'5500','121667861377','2022-11-08 01:50:07',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13159,'1000','121667861377','2022-11-08 01:50:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13160,'4000','121667861377','2022-11-08 01:50:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13161,'1110','121667862402','2022-11-08 02:07:40',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13162,'1110','121667862402','2022-11-08 02:07:40',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13163,'1110','121667862402','2022-11-08 02:07:40',NULL,1500.00,'','12','1','Inventory sold','1','','sales','852848252000','','No',NULL,NULL,''),(13164,'5500','121667862402','2022-11-08 02:07:40',2838.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13165,'1000','121667862402','2022-11-08 02:07:40',5550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13166,'4000','121667862402','2022-11-08 02:07:40',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13167,'4000','121667862402','2022-11-08 02:07:40',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13168,'4000','121667862402','2022-11-08 02:07:40',NULL,3800.00,'','12','1','Good sold','1','','sales','852848252000','','No',NULL,NULL,''),(13169,'1110','121667865567','2022-11-08 03:05:43',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(13170,'1110','121667865567','2022-11-08 03:05:43',NULL,522.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13171,'5500','121667865567','2022-11-08 03:05:43',3972.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13172,'1000','121667865567','2022-11-08 03:05:43',6050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13173,'4000','121667865567','2022-11-08 03:05:43',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(13174,'4000','121667865567','2022-11-08 03:05:43',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13175,'1110','121667867818','2022-11-08 03:37:30',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13176,'1110','121667867818','2022-11-08 03:37:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13177,'5500','121667867818','2022-11-08 03:37:30',572.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13178,'1000','121667867818','2022-11-08 03:37:30',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13179,'4000','121667867818','2022-11-08 03:37:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13180,'4000','121667867818','2022-11-08 03:37:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13181,'1110','121667868552','2022-11-08 03:49:27',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13182,'5500','121667868552','2022-11-08 03:49:27',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13183,'1000','121667868552','2022-11-08 03:49:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13184,'4000','121667868552','2022-11-08 03:49:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13185,'1110','121667910448','2022-11-08 16:06:25',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13186,'5500','121667910448','2022-11-08 16:06:25',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13187,'1000','121667910448','2022-11-08 16:06:25',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13188,'4000','121667910448','2022-11-08 16:06:25',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13189,'1110','121667912790','2022-11-08 16:08:56',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13190,'5500','121667912790','2022-11-08 16:08:56',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13191,'1000','121667912790','2022-11-08 16:08:56',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13192,'4000','121667912790','2022-11-08 16:08:56',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13193,'1110','121667913535','2022-11-08 16:37:52',NULL,287.25,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13194,'1110','121667913535','2022-11-08 16:37:52',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13195,'5500','121667913535','2022-11-08 16:37:52',420.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13196,'1000','121667913535','2022-11-08 16:37:52',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13197,'4000','121667913535','2022-11-08 16:37:52',NULL,360.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13198,'4000','121667913535','2022-11-08 16:37:52',NULL,300.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13199,'1110','121667914680','2022-11-08 16:42:03',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13200,'5500','121667914680','2022-11-08 16:42:03',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13201,'1000','121667914680','2022-11-08 16:42:03',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13202,'4000','121667914680','2022-11-08 16:42:03',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13203,'1110','121667925074','2022-11-08 21:10:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13204,'1110','121667925074','2022-11-08 21:10:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13205,'5500','121667925074','2022-11-08 21:10:01',342.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13206,'1000','121667925074','2022-11-08 21:10:01',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13207,'4000','121667925074','2022-11-08 21:10:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13208,'4000','121667925074','2022-11-08 21:10:01',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13209,'1110','121667931008','2022-11-08 21:40:53',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13210,'5500','121667931008','2022-11-08 21:40:53',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13211,'1000','121667931008','2022-11-08 21:40:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13212,'4000','121667931008','2022-11-08 21:40:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13213,'1110','121667933162','2022-11-08 21:48:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13214,'1110','121667933162','2022-11-08 21:48:16',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(13215,'1110','121667933162','2022-11-08 21:48:16',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13216,'1110','121667933162','2022-11-08 21:48:16',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13217,'1110','121667933162','2022-11-08 21:48:16',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13218,'5500','121667933162','2022-11-08 21:48:16',958.14,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13219,'1000','121667933162','2022-11-08 21:48:16',1590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13220,'4000','121667933162','2022-11-08 21:48:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13221,'4000','121667933162','2022-11-08 21:48:16',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(13222,'4000','121667933162','2022-11-08 21:48:16',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13223,'4000','121667933162','2022-11-08 21:48:16',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13224,'4000','121667933162','2022-11-08 21:48:16',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13225,'1110','121667933324','2022-11-08 21:49:00',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13226,'5500','121667933324','2022-11-08 21:49:00',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13227,'1000','121667933324','2022-11-08 21:49:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13228,'4000','121667933324','2022-11-08 21:49:00',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13229,'1110','121667934016','2022-11-08 22:00:38',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13230,'5500','121667934016','2022-11-08 22:00:38',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13231,'1000','121667934016','2022-11-08 22:00:38',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13232,'4000','121667934016','2022-11-08 22:00:38',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13233,'1110','121667939068','2022-11-08 23:24:56',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13234,'5500','121667939068','2022-11-08 23:24:56',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13235,'1000','121667939068','2022-11-08 23:24:56',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13236,'4000','121667939068','2022-11-08 23:24:56',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13237,'1110','121667942188','2022-11-09 00:34:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13238,'1110','121667942188','2022-11-09 00:34:39',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13239,'5500','121667942188','2022-11-09 00:34:39',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13240,'1000','121667942188','2022-11-09 00:34:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13241,'4000','121667942188','2022-11-09 00:34:39',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13242,'4000','121667942188','2022-11-09 00:34:39',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13243,'1110','121667946585','2022-11-09 01:29:57',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13244,'5500','121667946585','2022-11-09 01:29:57',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13245,'1000','121667946585','2022-11-09 01:29:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13246,'4000','121667946585','2022-11-09 01:29:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13247,'1110','121667946610','2022-11-09 02:09:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13248,'1110','121667946610','2022-11-09 02:09:55',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13249,'5500','121667946610','2022-11-09 02:09:55',1376.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13250,'1000','121667946610','2022-11-09 02:09:55',1770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13251,'4000','121667946610','2022-11-09 02:09:55',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13252,'4000','121667946610','2022-11-09 02:09:55',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13253,'1110','121667951608','2022-11-09 02:53:58',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13254,'1110','121667951608','2022-11-09 02:53:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13255,'1110','121667951608','2022-11-09 02:53:58',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13256,'5500','121667951608','2022-11-09 02:53:58',687.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13257,'1000','121667951608','2022-11-09 02:53:58',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13258,'4000','121667951608','2022-11-09 02:53:58',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13259,'4000','121667951608','2022-11-09 02:53:58',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13260,'4000','121667951608','2022-11-09 02:53:58',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13261,'1110','121667951791','2022-11-09 02:56:56',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13262,'5500','121667951791','2022-11-09 02:56:56',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13263,'1000','121667951791','2022-11-09 02:56:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13264,'4000','121667951791','2022-11-09 02:56:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13265,'1110','121667953193','2022-11-09 03:20:21',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13266,'1110','121667953193','2022-11-09 03:20:21',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13267,'5500','121667953193','2022-11-09 03:20:21',750.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13268,'1000','121667953193','2022-11-09 03:20:21',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13269,'4000','121667953193','2022-11-09 03:20:21',NULL,750.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13270,'4000','121667953193','2022-11-09 03:20:21',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13271,'1110','121667953429','2022-11-09 03:23:56',NULL,2700.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(13272,'5500','121667953429','2022-11-09 03:23:56',2700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13273,'1000','121667953429','2022-11-09 03:23:56',3600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13274,'4000','121667953429','2022-11-09 03:23:56',NULL,3600.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(13275,'1110','121667954287','2022-11-09 03:38:18',NULL,7840.00,'','12','1','Inventory sold','1','','sales','5099873038758','','No',NULL,NULL,''),(13276,'5500','121667954287','2022-11-09 03:38:18',7840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13277,'1000','121667954287','2022-11-09 03:38:18',17000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13278,'4000','121667954287','2022-11-09 03:38:18',NULL,17000.00,'','12','1','Good sold','1','','sales','5099873038758','','No',NULL,NULL,''),(13279,'1110','121667954486','2022-11-09 03:41:36',NULL,6313.00,'','12','1','Inventory sold','1','','sales','5000281003641','','No',NULL,NULL,''),(13280,'5500','121667954486','2022-11-09 03:41:36',6313.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13281,'1000','121667954486','2022-11-09 03:41:36',8500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13282,'4000','121667954486','2022-11-09 03:41:36',NULL,8500.00,'','12','1','Good sold','1','','sales','5000281003641','','No',NULL,NULL,''),(13283,'1110','121667955523','2022-11-09 04:00:27',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(13284,'5500','121667955523','2022-11-09 04:00:27',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13285,'1000','121667955523','2022-11-09 04:00:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13286,'4000','121667955523','2022-11-09 04:00:27',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(13287,'1110','121667955631','2022-11-09 04:00:57',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13288,'5500','121667955631','2022-11-09 04:00:57',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13289,'1000','121667955631','2022-11-09 04:00:57',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13290,'4000','121667955631','2022-11-09 04:00:57',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13291,'1110','121667955853','2022-11-09 04:04:25',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(13292,'5500','121667955853','2022-11-09 04:04:25',2760.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13293,'1000','121667955853','2022-11-09 04:04:25',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13294,'4000','121667955853','2022-11-09 04:04:25',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(13295,'1110','121667955960','2022-11-09 04:06:08',NULL,3381.00,'','12','1','Inventory sold','1','','sales','5000291021925','','No',NULL,NULL,''),(13296,'5500','121667955960','2022-11-09 04:06:08',3381.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13297,'1000','121667955960','2022-11-09 04:06:08',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13298,'4000','121667955960','2022-11-09 04:06:08',NULL,4500.00,'','12','1','Good sold','1','','sales','5000291021925','','No',NULL,NULL,''),(13299,'1110','121667956128','2022-11-09 04:09:07',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13300,'5500','121667956128','2022-11-09 04:09:07',2250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13301,'1000','121667956128','2022-11-09 04:09:07',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13302,'4000','121667956128','2022-11-09 04:09:07',NULL,3000.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13303,'1110','121667956366','2022-11-09 04:12:56',NULL,1148.00,'','12','1','Inventory sold','1','','sales','4820000947305','','No',NULL,NULL,''),(13304,'5500','121667956366','2022-11-09 04:12:56',1148.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13305,'1000','121667956366','2022-11-09 04:12:56',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13306,'4000','121667956366','2022-11-09 04:12:56',NULL,1900.00,'','12','1','Good sold','1','','sales','4820000947305','','No',NULL,NULL,''),(13307,'1110','121667956990','2022-11-09 04:24:21',NULL,3300.00,'','12','1','Inventory sold','1','','sales','087000006935','','No',NULL,NULL,''),(13308,'5500','121667956990','2022-11-09 04:24:21',3300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13309,'1000','121667956990','2022-11-09 04:24:21',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13310,'4000','121667956990','2022-11-09 04:24:21',NULL,4500.00,'','12','1','Good sold','1','','sales','087000006935','','No',NULL,NULL,''),(13311,'1110','121667993093','2022-11-09 15:22:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(13312,'5500','121667993093','2022-11-09 15:22:33',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13313,'1000','121667993093','2022-11-09 15:22:33',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13314,'4000','121667993093','2022-11-09 15:22:33',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(13315,'1110','121667999300','2022-11-09 16:08:40',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13316,'1110','121667999300','2022-11-09 16:08:40',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(13317,'5500','121667999300','2022-11-09 16:08:40',2409.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13318,'1000','121667999300','2022-11-09 16:08:40',3740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13319,'4000','121667999300','2022-11-09 16:08:40',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13320,'4000','121667999300','2022-11-09 16:08:40',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(13321,'1110','121668001002','2022-11-09 16:36:56',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(13322,'1110','121668001002','2022-11-09 16:36:56',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13323,'5500','121668001002','2022-11-09 16:36:56',429.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13324,'1000','121668001002','2022-11-09 16:36:56',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13325,'4000','121668001002','2022-11-09 16:36:56',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(13326,'4000','121668001002','2022-11-09 16:36:56',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13327,'1110','121668005327','2022-11-09 17:49:30',NULL,1570.00,'','12','1','Inventory sold','1','','sales','5010677038874','','No',NULL,NULL,''),(13328,'1110','121668005327','2022-11-09 17:49:30',NULL,7800.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(13329,'1110','121668005327','2022-11-09 17:49:30',NULL,6920.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(13330,'5500','121668005327','2022-11-09 17:49:30',16290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13331,'1000','121668005327','2022-11-09 17:49:30',22200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13332,'4000','121668005327','2022-11-09 17:49:30',NULL,2200.00,'','12','1','Good sold','1','','sales','5010677038874','','No',NULL,NULL,''),(13333,'4000','121668005327','2022-11-09 17:49:30',NULL,10800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(13334,'4000','121668005327','2022-11-09 17:49:30',NULL,9200.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(13335,'1110','121668006917','2022-11-09 18:15:31',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(13336,'5500','121668006917','2022-11-09 18:15:31',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13337,'1000','121668006917','2022-11-09 18:15:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13338,'4000','121668006917','2022-11-09 18:15:31',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(13339,'1110','121668007067','2022-11-09 18:18:10',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13340,'5500','121668007067','2022-11-09 18:18:10',459.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13341,'1000','121668007067','2022-11-09 18:18:10',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13342,'4000','121668007067','2022-11-09 18:18:10',NULL,750.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(13343,'1110','121668007580','2022-11-09 18:26:25',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(13344,'5500','121668007580','2022-11-09 18:26:25',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13345,'1000','121668007580','2022-11-09 18:26:25',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13346,'4000','121668007580','2022-11-09 18:26:25',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(13347,'1110','121668008678','2022-11-09 18:44:50',NULL,115.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(13348,'5500','121668008678','2022-11-09 18:44:50',115.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13349,'1000','121668008678','2022-11-09 18:44:50',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13350,'4000','121668008678','2022-11-09 18:44:50',NULL,300.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(13351,'1110','121668008720','2022-11-09 18:45:31',NULL,178.32,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13352,'5500','121668008720','2022-11-09 18:45:31',178.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13353,'1000','121668008720','2022-11-09 18:45:31',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13354,'4000','121668008720','2022-11-09 18:45:31',NULL,400.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13355,'1110','121668008806','2022-11-09 18:46:54',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(13356,'5500','121668008806','2022-11-09 18:46:54',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13357,'1000','121668008806','2022-11-09 18:46:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13358,'4000','121668008806','2022-11-09 18:46:54',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(13359,'1110','121668008817','2022-11-09 18:47:43',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(13360,'5500','121668008817','2022-11-09 18:47:43',410.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13361,'1000','121668008817','2022-11-09 18:47:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13362,'4000','121668008817','2022-11-09 18:47:43',NULL,500.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(13363,'1110','121668008984','2022-11-09 18:49:58',NULL,272.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(13364,'5500','121668008984','2022-11-09 18:49:58',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13365,'1000','121668008984','2022-11-09 18:49:58',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13366,'4000','121668008984','2022-11-09 18:49:58',NULL,400.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(13367,'1110','121668009002','2022-11-09 18:50:27',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(13368,'5500','121668009002','2022-11-09 18:50:27',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13369,'1000','121668009002','2022-11-09 18:50:27',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13370,'4000','121668009002','2022-11-09 18:50:27',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(13371,'1110','121668009029','2022-11-09 18:50:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(13372,'5500','121668009029','2022-11-09 18:50:49',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13373,'1000','121668009029','2022-11-09 18:50:49',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13374,'4000','121668009029','2022-11-09 18:50:49',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(13375,'1110','121668009054','2022-11-09 18:51:04',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(13376,'5500','121668009054','2022-11-09 18:51:04',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13377,'1000','121668009054','2022-11-09 18:51:04',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13378,'4000','121668009054','2022-11-09 18:51:04',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(13379,'1110','121668009321','2022-11-09 18:55:38',NULL,640.00,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(13380,'5500','121668009321','2022-11-09 18:55:38',640.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13381,'1000','121668009321','2022-11-09 18:55:38',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13382,'4000','121668009321','2022-11-09 18:55:38',NULL,960.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(13383,'1110','121668009743','2022-11-09 19:02:32',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(13384,'5500','121668009743','2022-11-09 19:02:32',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13385,'1000','121668009743','2022-11-09 19:02:32',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13386,'4000','121668009743','2022-11-09 19:02:32',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(13387,'1110','121668009756','2022-11-09 19:03:30',NULL,3393.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(13388,'5500','121668009756','2022-11-09 19:03:30',3393.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13389,'1000','121668009756','2022-11-09 19:03:30',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13390,'4000','121668009756','2022-11-09 19:03:30',NULL,3850.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(13391,'1110','121668009815','2022-11-09 19:07:19',NULL,1150.00,'','12','1','Inventory sold','1','','sales','4058387002267','','No',NULL,NULL,''),(13392,'5500','121668009815','2022-11-09 19:07:19',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13393,'1000','121668009815','2022-11-09 19:07:19',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13394,'4000','121668009815','2022-11-09 19:07:19',NULL,1500.00,'','12','1','Good sold','1','','sales','4058387002267','','No',NULL,NULL,''),(13395,'1110','121668010042','2022-11-09 19:08:11',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13396,'5500','121668010042','2022-11-09 19:08:11',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13397,'1000','121668010042','2022-11-09 19:08:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13398,'4000','121668010042','2022-11-09 19:08:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13399,'1110','121668010716','2022-11-09 19:57:22',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13400,'5500','121668010716','2022-11-09 19:57:22',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13401,'1000','121668010716','2022-11-09 19:57:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13402,'4000','121668010716','2022-11-09 19:57:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13403,'1110','121668013045','2022-11-09 19:58:43',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13404,'5500','121668013045','2022-11-09 19:58:43',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13405,'1000','121668013045','2022-11-09 19:58:43',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13406,'4000','121668013045','2022-11-09 19:58:43',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(13407,'1110','121668016362','2022-11-09 20:53:31',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13408,'5500','121668016362','2022-11-09 20:53:31',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13409,'1000','121668016362','2022-11-09 20:53:31',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13410,'4000','121668016362','2022-11-09 20:53:31',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13411,'1110','121668018428','2022-11-09 21:30:29',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13412,'1110','121668018428','2022-11-09 21:30:29',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13413,'5500','121668018428','2022-11-09 21:30:29',828.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13414,'1000','121668018428','2022-11-09 21:30:29',1190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13415,'4000','121668018428','2022-11-09 21:30:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13416,'4000','121668018428','2022-11-09 21:30:29',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13417,'1110','121668018637','2022-11-09 21:32:11',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13418,'1110','121668018637','2022-11-09 21:32:11',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13419,'5500','121668018637','2022-11-09 21:32:11',726.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13420,'1000','121668018637','2022-11-09 21:32:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13421,'4000','121668018637','2022-11-09 21:32:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13422,'4000','121668018637','2022-11-09 21:32:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13423,'1110','121668018736','2022-11-09 22:17:39',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13424,'1110','121668018736','2022-11-09 22:17:39',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13425,'5500','121668018736','2022-11-09 22:17:39',535.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13426,'1000','121668018736','2022-11-09 22:17:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13427,'4000','121668018736','2022-11-09 22:17:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13428,'4000','121668018736','2022-11-09 22:17:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13429,'1110','121668021464','2022-11-09 23:39:06',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13430,'1110','121668021464','2022-11-09 23:39:06',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13431,'5500','121668021464','2022-11-09 23:39:06',341.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13432,'1000','121668021464','2022-11-09 23:39:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13433,'4000','121668021464','2022-11-09 23:39:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13434,'4000','121668021464','2022-11-09 23:39:06',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13435,'1110','121668026351','2022-11-10 00:15:31',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13436,'1110','121668026351','2022-11-10 00:15:31',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13437,'1110','121668026351','2022-11-10 00:15:31',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(13438,'1110','121668026351','2022-11-10 00:15:31',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13439,'5500','121668026351','2022-11-10 00:15:31',1636.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13440,'1000','121668026351','2022-11-10 00:15:31',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13441,'4000','121668026351','2022-11-10 00:15:31',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13442,'4000','121668026351','2022-11-10 00:15:31',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13443,'4000','121668026351','2022-11-10 00:15:31',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(13444,'4000','121668026351','2022-11-10 00:15:31',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13445,'1110','121668028537','2022-11-10 00:16:13',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13446,'5500','121668028537','2022-11-10 00:16:13',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13447,'1000','121668028537','2022-11-10 00:16:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13448,'4000','121668028537','2022-11-10 00:16:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13449,'1110','121668028578','2022-11-10 00:50:25',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13450,'1110','121668028578','2022-11-10 00:50:25',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(13451,'5500','121668028578','2022-11-10 00:50:25',336.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13452,'1000','121668028578','2022-11-10 00:50:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13453,'4000','121668028578','2022-11-10 00:50:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13454,'4000','121668028578','2022-11-10 00:50:25',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(13455,'1110','121668030631','2022-11-10 00:54:50',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13456,'5500','121668030631','2022-11-10 00:54:50',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13457,'1000','121668030631','2022-11-10 00:54:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13458,'4000','121668030631','2022-11-10 00:54:50',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13459,'1110','121668030899','2022-11-10 01:15:47',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(13460,'1110','121668030899','2022-11-10 01:15:47',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13461,'1110','121668030899','2022-11-10 01:15:47',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13462,'5500','121668030899','2022-11-10 01:15:47',2247.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13463,'1000','121668030899','2022-11-10 01:15:47',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13464,'4000','121668030899','2022-11-10 01:15:47',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(13465,'4000','121668030899','2022-11-10 01:15:47',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13466,'4000','121668030899','2022-11-10 01:15:47',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13467,'1110','121668032158','2022-11-10 01:30:11',NULL,1280.00,'','12','1','Inventory sold','1','','sales','7794450091598','','No',NULL,NULL,''),(13468,'5500','121668032158','2022-11-10 01:30:11',1280.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13469,'1000','121668032158','2022-11-10 01:30:11',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13470,'4000','121668032158','2022-11-10 01:30:11',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091598','','No',NULL,NULL,''),(13471,'1110','121668033101','2022-11-10 01:45:59',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13472,'5500','121668033101','2022-11-10 01:45:59',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13473,'1000','121668033101','2022-11-10 01:45:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13474,'4000','121668033101','2022-11-10 01:45:59',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13475,'1110','121668033964','2022-11-10 02:33:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13476,'5500','121668033964','2022-11-10 02:33:33',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13477,'1000','121668033964','2022-11-10 02:33:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13478,'4000','121668033964','2022-11-10 02:33:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13479,'1110','121668036824','2022-11-10 03:04:37',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13480,'1110','121668036824','2022-11-10 03:04:37',NULL,210.00,'','12','1','Inventory sold','1','','sales','6161101561020','','No',NULL,NULL,''),(13481,'5500','121668036824','2022-11-10 03:04:37',728.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13482,'1000','121668036824','2022-11-10 03:04:37',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13483,'4000','121668036824','2022-11-10 03:04:37',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13484,'4000','121668036824','2022-11-10 03:04:37',NULL,400.00,'','12','1','Good sold','1','','sales','6161101561020','','No',NULL,NULL,''),(13485,'1110','121668038812','2022-11-10 03:20:12',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(13486,'1110','121668038812','2022-11-10 03:20:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(13487,'1110','121668038812','2022-11-10 03:20:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(13488,'5500','121668038812','2022-11-10 03:20:12',1646.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13489,'1000','121668038812','2022-11-10 03:20:12',2160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13490,'4000','121668038812','2022-11-10 03:20:12',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(13491,'4000','121668038812','2022-11-10 03:20:12',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(13492,'4000','121668038812','2022-11-10 03:20:12',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(13493,'1110','121668039785','2022-11-10 03:26:19',NULL,1262.00,'','12','1','Inventory sold','1','','sales','8908006354993','','No',NULL,NULL,''),(13494,'1110','121668039785','2022-11-10 03:26:19',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13495,'5500','121668039785','2022-11-10 03:26:19',1365.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13496,'1000','121668039785','2022-11-10 03:26:19',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13497,'4000','121668039785','2022-11-10 03:26:19',NULL,1800.00,'','12','1','Good sold','1','','sales','8908006354993','','No',NULL,NULL,''),(13498,'4000','121668039785','2022-11-10 03:26:19',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13499,'1110','121668039997','2022-11-10 03:51:00',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13500,'1110','121668039997','2022-11-10 03:51:00',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13501,'5500','121668039997','2022-11-10 03:51:00',680.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13502,'1000','121668039997','2022-11-10 03:51:00',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13503,'4000','121668039997','2022-11-10 03:51:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13504,'4000','121668039997','2022-11-10 03:51:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13505,'1110','121668077882','2022-11-10 14:19:01',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13506,'5500','121668077882','2022-11-10 14:19:01',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13507,'1000','121668077882','2022-11-10 14:19:01',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13508,'4000','121668077882','2022-11-10 14:19:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13509,'1110','121668079153','2022-11-10 14:22:12',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13510,'5500','121668079153','2022-11-10 14:22:12',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13511,'1000','121668079153','2022-11-10 14:22:12',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13512,'4000','121668079153','2022-11-10 14:22:12',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13513,'1110','121668088064','2022-11-10 16:48:04',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13514,'5500','121668088064','2022-11-10 16:48:04',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13515,'1000','121668088064','2022-11-10 16:48:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13516,'4000','121668088064','2022-11-10 16:48:04',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13517,'1110','121668088089','2022-11-10 17:18:20',NULL,1209.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13518,'5500','121668088089','2022-11-10 17:18:20',1209.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13519,'1000','121668088089','2022-11-10 17:18:20',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13520,'4000','121668088089','2022-11-10 17:18:20',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13521,'1110','121668089906','2022-11-10 18:01:22',NULL,383.00,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13522,'5500','121668089906','2022-11-10 18:01:22',383.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13523,'1000','121668089906','2022-11-10 18:01:22',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13524,'4000','121668089906','2022-11-10 18:01:22',NULL,480.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13525,'1110','121668092496','2022-11-10 18:17:19',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13526,'5500','121668092496','2022-11-10 18:17:19',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13527,'1000','121668092496','2022-11-10 18:17:19',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13528,'4000','121668092496','2022-11-10 18:17:19',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13529,'1110','121668093445','2022-11-10 18:46:08',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(13530,'5500','121668093445','2022-11-10 18:46:08',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13531,'1000','121668093445','2022-11-10 18:46:08',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13532,'4000','121668093445','2022-11-10 18:46:08',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(13533,'1110','121668095184','2022-11-10 19:34:27',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13534,'5500','121668095184','2022-11-10 19:34:27',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13535,'1000','121668095184','2022-11-10 19:34:27',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13536,'4000','121668095184','2022-11-10 19:34:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13537,'1110','121668101234','2022-11-10 20:27:35',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13538,'5500','121668101234','2022-11-10 20:27:35',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13539,'1000','121668101234','2022-11-10 20:27:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13540,'4000','121668101234','2022-11-10 20:27:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13541,'1110','121668101263','2022-11-10 20:43:13',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13542,'5500','121668101263','2022-11-10 20:43:13',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13543,'1000','121668101263','2022-11-10 20:43:13',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13544,'4000','121668101263','2022-11-10 20:43:13',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13545,'1110','121668102219','2022-11-10 20:51:13',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(13546,'1110','121668102219','2022-11-10 20:51:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13547,'1110','121668102219','2022-11-10 20:51:13',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13548,'5500','121668102219','2022-11-10 20:51:13',1302.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13549,'1000','121668102219','2022-11-10 20:51:13',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13550,'4000','121668102219','2022-11-10 20:51:13',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(13551,'4000','121668102219','2022-11-10 20:51:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13552,'4000','121668102219','2022-11-10 20:51:13',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13553,'1110','121668111728','2022-11-10 23:23:29',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13554,'1110','121668111728','2022-11-10 23:23:29',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(13555,'1110','121668111728','2022-11-10 23:23:29',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13556,'1110','121668111728','2022-11-10 23:23:29',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13557,'5500','121668111728','2022-11-10 23:23:29',1249.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13558,'1000','121668111728','2022-11-10 23:23:29',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13559,'4000','121668111728','2022-11-10 23:23:29',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(13560,'4000','121668111728','2022-11-10 23:23:29',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(13561,'4000','121668111728','2022-11-10 23:23:29',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13562,'4000','121668111728','2022-11-10 23:23:29',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13563,'1110','121668111817','2022-11-10 23:29:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13564,'1110','121668111817','2022-11-10 23:29:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13565,'1110','121668111817','2022-11-10 23:29:02',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13566,'5500','121668111817','2022-11-10 23:29:02',403.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13567,'1000','121668111817','2022-11-10 23:29:02',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13568,'4000','121668111817','2022-11-10 23:29:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13569,'4000','121668111817','2022-11-10 23:29:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13570,'4000','121668111817','2022-11-10 23:29:02',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13571,'1110','121668112147','2022-11-10 23:34:52',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(13572,'5500','121668112147','2022-11-10 23:34:52',1840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13573,'1000','121668112147','2022-11-10 23:34:52',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13574,'4000','121668112147','2022-11-10 23:34:52',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(13575,'1110','121668112499','2022-11-11 00:15:38',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13576,'5500','121668112499','2022-11-11 00:15:38',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13577,'1000','121668112499','2022-11-11 00:15:38',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13578,'4000','121668112499','2022-11-11 00:15:38',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13579,'1110','121668115819','2022-11-11 00:32:02',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13580,'5500','121668115819','2022-11-11 00:32:02',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13581,'1000','121668115819','2022-11-11 00:32:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13582,'4000','121668115819','2022-11-11 00:32:02',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13583,'1110','121668115927','2022-11-11 00:38:05',NULL,1044.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13584,'5500','121668115927','2022-11-11 00:38:05',1044.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13585,'1000','121668115927','2022-11-11 00:38:05',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13586,'4000','121668115927','2022-11-11 00:38:05',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13587,'1110','121668116290','2022-11-11 00:48:04',NULL,522.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13588,'5500','121668116290','2022-11-11 00:48:04',522.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13589,'1000','121668116290','2022-11-11 00:48:04',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13590,'4000','121668116290','2022-11-11 00:48:04',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13591,'1110','121668117466','2022-11-11 01:06:59',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13592,'5500','121668117466','2022-11-11 01:06:59',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13593,'1000','121668117466','2022-11-11 01:06:59',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13594,'4000','121668117466','2022-11-11 01:06:59',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13595,'1110','121668118028','2022-11-11 01:13:07',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13596,'5500','121668118028','2022-11-11 01:13:07',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13597,'1000','121668118028','2022-11-11 01:13:07',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13598,'4000','121668118028','2022-11-11 01:13:07',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13599,'1110','121668118392','2022-11-11 01:36:55',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(13600,'1110','121668118392','2022-11-11 01:36:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(13601,'5500','121668118392','2022-11-11 01:36:55',363.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13602,'1000','121668118392','2022-11-11 01:36:55',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13603,'4000','121668118392','2022-11-11 01:36:55',NULL,500.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(13604,'4000','121668118392','2022-11-11 01:36:55',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(13605,'1110','121668119876','2022-11-11 01:41:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(13606,'1110','121668119876','2022-11-11 01:41:01',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(13607,'5500','121668119876','2022-11-11 01:41:01',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13608,'1000','121668119876','2022-11-11 01:41:01',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13609,'4000','121668119876','2022-11-11 01:41:01',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(13610,'4000','121668119876','2022-11-11 01:41:01',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(13611,'1110','121668120213','2022-11-11 02:24:08',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13612,'5500','121668120213','2022-11-11 02:24:08',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13613,'1000','121668120213','2022-11-11 02:24:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13614,'4000','121668120213','2022-11-11 02:24:08',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(13615,'1110','121668122654','2022-11-11 02:50:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13616,'5500','121668122654','2022-11-11 02:50:54',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13617,'1000','121668122654','2022-11-11 02:50:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13618,'4000','121668122654','2022-11-11 02:50:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13619,'1110','121668124269','2022-11-11 02:51:55',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13620,'5500','121668124269','2022-11-11 02:51:55',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13621,'1000','121668124269','2022-11-11 02:51:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13622,'4000','121668124269','2022-11-11 02:51:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13623,'1110','121668124324','2022-11-11 02:53:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13624,'1110','121668124324','2022-11-11 02:53:00',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13625,'5500','121668124324','2022-11-11 02:53:00',116.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13626,'1000','121668124324','2022-11-11 02:53:00',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13627,'4000','121668124324','2022-11-11 02:53:00',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13628,'4000','121668124324','2022-11-11 02:53:00',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13629,'1110','121668124386','2022-11-11 02:53:50',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(13630,'5500','121668124386','2022-11-11 02:53:50',23.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13631,'1000','121668124386','2022-11-11 02:53:50',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13632,'4000','121668124386','2022-11-11 02:53:50',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(13633,'1110','121668124445','2022-11-11 02:57:51',NULL,46.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(13634,'5500','121668124445','2022-11-11 02:57:51',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13635,'1000','121668124445','2022-11-11 02:57:51',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13636,'4000','121668124445','2022-11-11 02:57:51',NULL,120.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(13637,'1110','121668124677','2022-11-11 03:09:27',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13638,'5500','121668124677','2022-11-11 03:09:27',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13639,'1000','121668124677','2022-11-11 03:09:27',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13640,'4000','121668124677','2022-11-11 03:09:27',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13641,'1110','121668125373','2022-11-11 03:13:30',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13642,'1110','121668125373','2022-11-11 03:13:30',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(13643,'1110','121668125373','2022-11-11 03:13:30',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(13644,'5500','121668125373','2022-11-11 03:13:30',1223.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13645,'1000','121668125373','2022-11-11 03:13:30',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13646,'4000','121668125373','2022-11-11 03:13:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13647,'4000','121668125373','2022-11-11 03:13:30',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(13648,'4000','121668125373','2022-11-11 03:13:30',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(13649,'1110','121668126468','2022-11-11 03:28:02',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13650,'5500','121668126468','2022-11-11 03:28:02',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13651,'1000','121668126468','2022-11-11 03:28:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13652,'4000','121668126468','2022-11-11 03:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13653,'1110','121668183394','2022-11-11 19:16:41',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(13654,'5500','121668183394','2022-11-11 19:16:41',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13655,'1000','121668183394','2022-11-11 19:16:41',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13656,'4000','121668183394','2022-11-11 19:16:41',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(13657,'1110','121668183722','2022-11-11 19:39:14',NULL,1055.00,'','12','1','Inventory sold','1','','sales','9300727019967','','No',NULL,NULL,''),(13658,'5500','121668183722','2022-11-11 19:39:14',1055.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13659,'1000','121668183722','2022-11-11 19:39:14',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13660,'4000','121668183722','2022-11-11 19:39:14',NULL,1800.00,'','12','1','Good sold','1','','sales','9300727019967','','No',NULL,NULL,''),(13661,'1110','121668184786','2022-11-11 19:51:58',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(13662,'1110','121668184786','2022-11-11 19:51:58',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(13663,'1110','121668184786','2022-11-11 19:51:58',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(13664,'5500','121668184786','2022-11-11 19:51:58',595.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13665,'1000','121668184786','2022-11-11 19:51:58',2520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13666,'4000','121668184786','2022-11-11 19:51:58',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(13667,'4000','121668184786','2022-11-11 19:51:58',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(13668,'4000','121668184786','2022-11-11 19:51:58',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(13669,'1110','121668187153','2022-11-11 20:19:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(13670,'1110','121668187153','2022-11-11 20:19:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13671,'5500','121668187153','2022-11-11 20:19:55',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13672,'1000','121668187153','2022-11-11 20:19:55',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13673,'4000','121668187153','2022-11-11 20:19:55',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(13674,'4000','121668187153','2022-11-11 20:19:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13675,'1110','121668189279','2022-11-11 20:55:32',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13676,'5500','121668189279','2022-11-11 20:55:32',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13677,'1000','121668189279','2022-11-11 20:55:32',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13678,'4000','121668189279','2022-11-11 20:55:32',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13679,'1110','121668189677','2022-11-11 21:01:45',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13680,'1110','121668189677','2022-11-11 21:01:45',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(13681,'5500','121668189677','2022-11-11 21:01:45',316.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13682,'1000','121668189677','2022-11-11 21:01:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13683,'4000','121668189677','2022-11-11 21:01:45',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(13684,'4000','121668189677','2022-11-11 21:01:45',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(13685,'1110','121668189709','2022-11-11 21:02:25',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13686,'5500','121668189709','2022-11-11 21:02:25',95.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13687,'1000','121668189709','2022-11-11 21:02:25',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13688,'4000','121668189709','2022-11-11 21:02:25',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(13689,'1110','121668190663','2022-11-11 21:18:11',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13690,'5500','121668190663','2022-11-11 21:18:11',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13691,'1000','121668190663','2022-11-11 21:18:11',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13692,'4000','121668190663','2022-11-11 21:18:11',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13693,'1110','121668191150','2022-11-11 21:41:15',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13694,'5500','121668191150','2022-11-11 21:41:15',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13695,'1000','121668191150','2022-11-11 21:41:15',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13696,'4000','121668191150','2022-11-11 21:41:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13697,'1110','121668192093','2022-11-11 21:41:59',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13698,'5500','121668192093','2022-11-11 21:41:59',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13699,'1000','121668192093','2022-11-11 21:41:59',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13700,'4000','121668192093','2022-11-11 21:41:59',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13701,'1110','121668192310','2022-11-11 21:45:20',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13702,'5500','121668192310','2022-11-11 21:45:20',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13703,'1000','121668192310','2022-11-11 21:45:20',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13704,'4000','121668192310','2022-11-11 21:45:20',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13705,'1110','121668192394','2022-11-11 21:48:12',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13706,'1110','121668192394','2022-11-11 21:48:12',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13707,'1110','121668192394','2022-11-11 21:48:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13708,'5500','121668192394','2022-11-11 21:48:12',497.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13709,'1000','121668192394','2022-11-11 21:48:12',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13710,'4000','121668192394','2022-11-11 21:48:12',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13711,'4000','121668192394','2022-11-11 21:48:12',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13712,'4000','121668192394','2022-11-11 21:48:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13713,'1110','121668192741','2022-11-11 21:52:40',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13714,'5500','121668192741','2022-11-11 21:52:40',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13715,'1000','121668192741','2022-11-11 21:52:40',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13716,'4000','121668192741','2022-11-11 21:52:40',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13717,'1110','121668193308','2022-11-11 22:02:17',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13718,'1110','121668193308','2022-11-11 22:02:17',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13719,'5500','121668193308','2022-11-11 22:02:17',926.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13720,'1000','121668193308','2022-11-11 22:02:17',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13721,'4000','121668193308','2022-11-11 22:02:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13722,'4000','121668193308','2022-11-11 22:02:17',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13723,'1110','121668193342','2022-11-11 22:14:31',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13724,'5500','121668193342','2022-11-11 22:14:31',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13725,'1000','121668193342','2022-11-11 22:14:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13726,'4000','121668193342','2022-11-11 22:14:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13727,'1110','121668194075','2022-11-11 22:20:52',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(13728,'5500','121668194075','2022-11-11 22:20:52',23.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13729,'1000','121668194075','2022-11-11 22:20:52',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13730,'4000','121668194075','2022-11-11 22:20:52',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(13731,'1110','121668194459','2022-11-11 22:28:13',NULL,1576.00,'','12','1','Inventory sold','1','','sales','7312040017010','','No',NULL,NULL,''),(13732,'1110','121668194459','2022-11-11 22:28:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13733,'5500','121668194459','2022-11-11 22:28:13',1650.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13734,'1000','121668194459','2022-11-11 22:28:13',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13735,'4000','121668194459','2022-11-11 22:28:13',NULL,2200.00,'','12','1','Good sold','1','','sales','7312040017010','','No',NULL,NULL,''),(13736,'4000','121668194459','2022-11-11 22:28:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13737,'1110','121668194963','2022-11-11 23:01:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13738,'1110','121668194963','2022-11-11 23:01:29',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13739,'1110','121668194963','2022-11-11 23:01:29',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13740,'5500','121668194963','2022-11-11 23:01:29',561.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13741,'1000','121668194963','2022-11-11 23:01:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13742,'4000','121668194963','2022-11-11 23:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13743,'4000','121668194963','2022-11-11 23:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(13744,'4000','121668194963','2022-11-11 23:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(13745,'1110','121668196904','2022-11-11 23:06:21',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13746,'5500','121668196904','2022-11-11 23:06:21',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13747,'1000','121668196904','2022-11-11 23:06:21',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13748,'4000','121668196904','2022-11-11 23:06:21',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(13749,'1110','121668197186','2022-11-11 23:21:27',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(13750,'1110','121668197186','2022-11-11 23:21:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(13751,'1110','121668197186','2022-11-11 23:21:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(13752,'1110','121668197186','2022-11-11 23:21:27',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13753,'1110','121668197186','2022-11-11 23:21:27',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13754,'5500','121668197186','2022-11-11 23:21:27',9638.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13755,'1000','121668197186','2022-11-11 23:21:27',13220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13756,'4000','121668197186','2022-11-11 23:21:27',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(13757,'4000','121668197186','2022-11-11 23:21:27',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(13758,'4000','121668197186','2022-11-11 23:21:27',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(13759,'4000','121668197186','2022-11-11 23:21:27',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13760,'4000','121668197186','2022-11-11 23:21:27',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(13761,'1110','121668198157','2022-11-11 23:23:45',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(13762,'5500','121668198157','2022-11-11 23:23:45',315.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13763,'1000','121668198157','2022-11-11 23:23:45',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13764,'4000','121668198157','2022-11-11 23:23:45',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(13765,'1110','121668198229','2022-11-11 23:42:57',NULL,2011.00,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(13766,'1110','121668198229','2022-11-11 23:42:57',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13767,'1110','121668198229','2022-11-11 23:42:57',NULL,1570.00,'','12','1','Inventory sold','1','','sales','5010677038874','','No',NULL,NULL,''),(13768,'5500','121668198229','2022-11-11 23:42:57',3728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13769,'1000','121668198229','2022-11-11 23:42:57',5330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13770,'4000','121668198229','2022-11-11 23:42:57',NULL,2800.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(13771,'4000','121668198229','2022-11-11 23:42:57',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13772,'4000','121668198229','2022-11-11 23:42:57',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677038874','','No',NULL,NULL,''),(13773,'1110','121668200859','2022-11-12 00:07:54',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13774,'5500','121668200859','2022-11-12 00:07:54',910.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13775,'1000','121668200859','2022-11-12 00:07:54',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13776,'4000','121668200859','2022-11-12 00:07:54',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13777,'1110','121668200879','2022-11-12 00:09:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(13778,'5500','121668200879','2022-11-12 00:09:20',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13779,'1000','121668200879','2022-11-12 00:09:20',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13780,'4000','121668200879','2022-11-12 00:09:20',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(13781,'1110','121668200964','2022-11-12 00:19:40',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13782,'5500','121668200964','2022-11-12 00:19:40',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13783,'1000','121668200964','2022-11-12 00:19:40',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13784,'4000','121668200964','2022-11-12 00:19:40',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13785,'1110','121668202676','2022-11-12 00:38:11',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13786,'5500','121668202676','2022-11-12 00:38:11',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13787,'1000','121668202676','2022-11-12 00:38:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13788,'4000','121668202676','2022-11-12 00:38:11',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13789,'1110','121668203214','2022-11-12 00:48:32',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(13790,'1110','121668203214','2022-11-12 00:48:32',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13791,'5500','121668203214','2022-11-12 00:48:32',897.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13792,'1000','121668203214','2022-11-12 00:48:32',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13793,'4000','121668203214','2022-11-12 00:48:32',NULL,1400.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(13794,'4000','121668203214','2022-11-12 00:48:32',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(13795,'1110','121668203902','2022-11-12 00:58:37',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13796,'5500','121668203902','2022-11-12 00:58:37',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13797,'1000','121668203902','2022-11-12 00:58:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13798,'4000','121668203902','2022-11-12 00:58:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13799,'1110','121668203921','2022-11-12 01:08:34',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13800,'5500','121668203921','2022-11-12 01:08:34',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13801,'1000','121668203921','2022-11-12 01:08:34',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13802,'4000','121668203921','2022-11-12 01:08:34',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(13803,'1110','121668204522','2022-11-12 01:10:07',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13804,'5500','121668204522','2022-11-12 01:10:07',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13805,'1000','121668204522','2022-11-12 01:10:07',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13806,'4000','121668204522','2022-11-12 01:10:07',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13807,'1110','121668204641','2022-11-12 01:13:06',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(13808,'1110','121668204641','2022-11-12 01:13:06',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13809,'5500','121668204641','2022-11-12 01:13:06',321.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13810,'1000','121668204641','2022-11-12 01:13:06',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13811,'4000','121668204641','2022-11-12 01:13:06',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(13812,'4000','121668204641','2022-11-12 01:13:06',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13813,'1110','121668205319','2022-11-12 01:22:10',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(13814,'5500','121668205319','2022-11-12 01:22:10',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13815,'1000','121668205319','2022-11-12 01:22:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13816,'4000','121668205319','2022-11-12 01:22:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(13817,'1110','121668205564','2022-11-12 01:26:39',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13818,'5500','121668205564','2022-11-12 01:26:39',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13819,'1000','121668205564','2022-11-12 01:26:39',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13820,'4000','121668205564','2022-11-12 01:26:39',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13821,'1110','121668205606','2022-11-12 02:22:26',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13822,'5500','121668205606','2022-11-12 02:22:26',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13823,'1000','121668205606','2022-11-12 02:22:26',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13824,'4000','121668205606','2022-11-12 02:22:26',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(13825,'1110','121668208953','2022-11-12 03:21:23',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13826,'5500','121668208953','2022-11-12 03:21:23',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13827,'1000','121668208953','2022-11-12 03:21:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13828,'4000','121668208953','2022-11-12 03:21:23',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13829,'1110','121668260387','2022-11-12 16:41:01',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(13830,'1110','121668260387','2022-11-12 16:41:01',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13831,'5500','121668260387','2022-11-12 16:41:01',484.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13832,'1000','121668260387','2022-11-12 16:41:01',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13833,'4000','121668260387','2022-11-12 16:41:01',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(13834,'4000','121668260387','2022-11-12 16:41:01',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13835,'1110','121668260470','2022-11-12 16:41:49',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13836,'1110','121668260470','2022-11-12 16:41:49',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13837,'5500','121668260470','2022-11-12 16:41:49',319.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13838,'1000','121668260470','2022-11-12 16:41:49',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13839,'4000','121668260470','2022-11-12 16:41:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13840,'4000','121668260470','2022-11-12 16:41:49',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13841,'1110','121668266922','2022-11-12 18:53:18',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(13842,'5500','121668266922','2022-11-12 18:53:18',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13843,'1000','121668266922','2022-11-12 18:53:18',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13844,'4000','121668266922','2022-11-12 18:53:18',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(13845,'1110','121668268403','2022-11-12 19:33:55',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13846,'5500','121668268403','2022-11-12 19:33:55',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13847,'1000','121668268403','2022-11-12 19:33:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13848,'4000','121668268403','2022-11-12 19:33:55',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(13849,'1110','121668270843','2022-11-12 20:32:41',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13850,'5500','121668270843','2022-11-12 20:32:41',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13851,'1000','121668270843','2022-11-12 20:32:41',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13852,'4000','121668270843','2022-11-12 20:32:41',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(13853,'1110','121668274938','2022-11-12 20:43:40',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(13854,'1110','121668274938','2022-11-12 20:43:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(13855,'5500','121668274938','2022-11-12 20:43:40',354.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13856,'1000','121668274938','2022-11-12 20:43:40',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13857,'4000','121668274938','2022-11-12 20:43:40',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(13858,'4000','121668274938','2022-11-12 20:43:40',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(13859,'1110','121668275671','2022-11-12 21:07:36',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(13860,'1110','121668275671','2022-11-12 21:07:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(13861,'5500','121668275671','2022-11-12 21:07:36',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13862,'1000','121668275671','2022-11-12 21:07:36',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13863,'4000','121668275671','2022-11-12 21:07:36',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(13864,'4000','121668275671','2022-11-12 21:07:36',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(13865,'1110','121668276521','2022-11-12 21:59:02',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(13866,'1110','121668276521','2022-11-12 21:59:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(13867,'5500','121668276521','2022-11-12 21:59:02',354.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13868,'1000','121668276521','2022-11-12 21:59:02',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13869,'4000','121668276521','2022-11-12 21:59:02',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(13870,'4000','121668276521','2022-11-12 21:59:02',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(13871,'1110','121668281287','2022-11-12 22:28:24',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(13872,'5500','121668281287','2022-11-12 22:28:24',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13873,'1000','121668281287','2022-11-12 22:28:24',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13874,'4000','121668281287','2022-11-12 22:28:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(13875,'1110','121668281500','2022-11-12 22:31:59',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(13876,'5500','121668281500','2022-11-12 22:31:59',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13877,'1000','121668281500','2022-11-12 22:31:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13878,'4000','121668281500','2022-11-12 22:31:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(13879,'1110','121668283789','2022-11-12 23:10:05',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13880,'5500','121668283789','2022-11-12 23:10:05',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13881,'1000','121668283789','2022-11-12 23:10:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13882,'4000','121668283789','2022-11-12 23:10:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(13883,'1110','121668283810','2022-11-12 23:38:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13884,'5500','121668283810','2022-11-12 23:38:13',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13885,'1000','121668283810','2022-11-12 23:38:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13886,'4000','121668283810','2022-11-12 23:38:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13887,'1110','121668285500','2022-11-12 23:38:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13888,'5500','121668285500','2022-11-12 23:38:39',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13889,'1000','121668285500','2022-11-12 23:38:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13890,'4000','121668285500','2022-11-12 23:38:39',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13891,'1110','121668285522','2022-11-12 23:42:27',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13892,'1110','121668285522','2022-11-12 23:42:27',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13893,'5500','121668285522','2022-11-12 23:42:27',471.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13894,'1000','121668285522','2022-11-12 23:42:27',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13895,'4000','121668285522','2022-11-12 23:42:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13896,'4000','121668285522','2022-11-12 23:42:27',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13897,'1110','121668285752','2022-11-13 00:01:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13898,'1110','121668285752','2022-11-13 00:01:22',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13899,'5500','121668285752','2022-11-13 00:01:22',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13900,'1000','121668285752','2022-11-13 00:01:22',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13901,'4000','121668285752','2022-11-13 00:01:22',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13902,'4000','121668285752','2022-11-13 00:01:22',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(13903,'1110','121668286887','2022-11-13 00:15:20',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13904,'5500','121668286887','2022-11-13 00:15:20',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13905,'1000','121668286887','2022-11-13 00:15:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13906,'4000','121668286887','2022-11-13 00:15:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(13907,'1110','121668287724','2022-11-13 00:16:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13908,'1110','121668287724','2022-11-13 00:16:06',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13909,'5500','121668287724','2022-11-13 00:16:06',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13910,'1000','121668287724','2022-11-13 00:16:06',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13911,'4000','121668287724','2022-11-13 00:16:06',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13912,'4000','121668287724','2022-11-13 00:16:06',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(13913,'1110','121668287773','2022-11-13 00:35:53',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13914,'5500','121668287773','2022-11-13 00:35:53',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13915,'1000','121668287773','2022-11-13 00:35:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13916,'4000','121668287773','2022-11-13 00:35:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13917,'1110','121668288957','2022-11-13 00:49:33',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13918,'1110','121668288957','2022-11-13 00:49:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13919,'1110','121668288957','2022-11-13 00:49:33',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13920,'5500','121668288957','2022-11-13 00:49:33',2462.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13921,'1000','121668288957','2022-11-13 00:49:33',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13922,'4000','121668288957','2022-11-13 00:49:33',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13923,'4000','121668288957','2022-11-13 00:49:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13924,'4000','121668288957','2022-11-13 00:49:33',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(13925,'1110','121668290399','2022-11-13 01:00:09',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13926,'5500','121668290399','2022-11-13 01:00:09',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13927,'1000','121668290399','2022-11-13 01:00:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13928,'4000','121668290399','2022-11-13 01:00:09',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13929,'1110','121668290468','2022-11-13 01:01:18',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13930,'5500','121668290468','2022-11-13 01:01:18',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13931,'1000','121668290468','2022-11-13 01:01:18',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13932,'4000','121668290468','2022-11-13 01:01:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13933,'1110','121668290482','2022-11-13 01:03:36',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(13934,'1110','121668290482','2022-11-13 01:03:36',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13935,'1110','121668290482','2022-11-13 01:03:36',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(13936,'5500','121668290482','2022-11-13 01:03:36',676.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13937,'1000','121668290482','2022-11-13 01:03:36',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13938,'4000','121668290482','2022-11-13 01:03:36',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(13939,'4000','121668290482','2022-11-13 01:03:36',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(13940,'4000','121668290482','2022-11-13 01:03:36',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(13941,'1110','121668290739','2022-11-13 01:05:51',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(13942,'5500','121668290739','2022-11-13 01:05:51',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13943,'1000','121668290739','2022-11-13 01:05:51',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13944,'4000','121668290739','2022-11-13 01:05:51',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(13945,'1110','121668290756','2022-11-13 01:07:36',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13946,'1110','121668290756','2022-11-13 01:07:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13947,'1110','121668290756','2022-11-13 01:07:36',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(13948,'5500','121668290756','2022-11-13 01:07:36',928.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13949,'1000','121668290756','2022-11-13 01:07:36',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13950,'4000','121668290756','2022-11-13 01:07:36',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(13951,'4000','121668290756','2022-11-13 01:07:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13952,'4000','121668290756','2022-11-13 01:07:36',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(13953,'1110','121668290860','2022-11-13 01:13:09',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13954,'1110','121668290860','2022-11-13 01:13:09',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13955,'5500','121668290860','2022-11-13 01:13:09',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13956,'1000','121668290860','2022-11-13 01:13:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13957,'4000','121668290860','2022-11-13 01:13:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(13958,'4000','121668290860','2022-11-13 01:13:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(13959,'1110','121668291866','2022-11-13 01:30:14',NULL,11988.00,'','12','1','Inventory sold','1','','sales','5000281032733','','No',NULL,NULL,''),(13960,'1110','121668291866','2022-11-13 01:30:14',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13961,'1110','121668291866','2022-11-13 01:30:14',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13962,'1110','121668291866','2022-11-13 01:30:14',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13963,'1110','121668291866','2022-11-13 01:30:14',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(13964,'1110','121668291866','2022-11-13 01:30:14',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13965,'5500','121668291866','2022-11-13 01:30:14',14131.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13966,'1000','121668291866','2022-11-13 01:30:14',19300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13967,'4000','121668291866','2022-11-13 01:30:14',NULL,16200.00,'','12','1','Good sold','1','','sales','5000281032733','','No',NULL,NULL,''),(13968,'4000','121668291866','2022-11-13 01:30:14',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13969,'4000','121668291866','2022-11-13 01:30:14',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13970,'4000','121668291866','2022-11-13 01:30:14',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13971,'4000','121668291866','2022-11-13 01:30:14',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(13972,'4000','121668291866','2022-11-13 01:30:14',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13973,'1110','121668292224','2022-11-13 01:39:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(13974,'1110','121668292224','2022-11-13 01:39:52',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13975,'1110','121668292224','2022-11-13 01:39:52',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13976,'1110','121668292224','2022-11-13 01:39:52',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13977,'5500','121668292224','2022-11-13 01:39:52',894.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13978,'1000','121668292224','2022-11-13 01:39:52',1330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13979,'4000','121668292224','2022-11-13 01:39:52',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(13980,'4000','121668292224','2022-11-13 01:39:52',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(13981,'4000','121668292224','2022-11-13 01:39:52',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13982,'4000','121668292224','2022-11-13 01:39:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(13983,'1110','121668292797','2022-11-13 01:41:15',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(13984,'1110','121668292797','2022-11-13 01:41:15',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13985,'5500','121668292797','2022-11-13 01:41:15',1146.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13986,'1000','121668292797','2022-11-13 01:41:15',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13987,'4000','121668292797','2022-11-13 01:41:15',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(13988,'4000','121668292797','2022-11-13 01:41:15',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13989,'1110','121668292879','2022-11-13 01:48:02',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13990,'5500','121668292879','2022-11-13 01:48:02',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13991,'1000','121668292879','2022-11-13 01:48:02',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13992,'4000','121668292879','2022-11-13 01:48:02',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(13993,'1110','121668293288','2022-11-13 01:54:41',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13994,'1110','121668293288','2022-11-13 01:54:41',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13995,'5500','121668293288','2022-11-13 01:54:41',766.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(13996,'1000','121668293288','2022-11-13 01:54:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13997,'4000','121668293288','2022-11-13 01:54:41',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(13998,'4000','121668293288','2022-11-13 01:54:41',NULL,500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(13999,'1110','121668294269','2022-11-13 02:05:05',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14000,'1110','121668294269','2022-11-13 02:05:05',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14001,'5500','121668294269','2022-11-13 02:05:05',724.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14002,'1000','121668294269','2022-11-13 02:05:05',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14003,'4000','121668294269','2022-11-13 02:05:05',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14004,'4000','121668294269','2022-11-13 02:05:05',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14005,'1110','121668294314','2022-11-13 02:11:50',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(14006,'5500','121668294314','2022-11-13 02:11:50',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14007,'1000','121668294314','2022-11-13 02:11:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14008,'4000','121668294314','2022-11-13 02:11:50',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(14009,'1110','121668294856','2022-11-13 02:14:27',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14010,'5500','121668294856','2022-11-13 02:14:27',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14011,'1000','121668294856','2022-11-13 02:14:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14012,'4000','121668294856','2022-11-13 02:14:27',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14013,'1110','121668295400','2022-11-13 02:24:31',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14014,'5500','121668295400','2022-11-13 02:24:31',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14015,'1000','121668295400','2022-11-13 02:24:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14016,'4000','121668295400','2022-11-13 02:24:31',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14017,'1110','121668295641','2022-11-13 02:27:44',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14018,'1110','121668295641','2022-11-13 02:27:44',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14019,'5500','121668295641','2022-11-13 02:27:44',408.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14020,'1000','121668295641','2022-11-13 02:27:44',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14021,'4000','121668295641','2022-11-13 02:27:44',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14022,'4000','121668295641','2022-11-13 02:27:44',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14023,'1110','121668296020','2022-11-13 02:34:38',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14024,'1110','121668296020','2022-11-13 02:34:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14025,'5500','121668296020','2022-11-13 02:34:38',934.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14026,'1000','121668296020','2022-11-13 02:34:38',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14027,'4000','121668296020','2022-11-13 02:34:38',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14028,'4000','121668296020','2022-11-13 02:34:38',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14029,'1110','121668296082','2022-11-13 02:40:00',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14030,'5500','121668296082','2022-11-13 02:40:00',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14031,'1000','121668296082','2022-11-13 02:40:00',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14032,'4000','121668296082','2022-11-13 02:40:00',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14033,'1110','121668296870','2022-11-13 02:48:37',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14034,'1110','121668296870','2022-11-13 02:48:37',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14035,'1110','121668296870','2022-11-13 02:48:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14036,'5500','121668296870','2022-11-13 02:48:37',1055.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14037,'1000','121668296870','2022-11-13 02:48:37',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14038,'4000','121668296870','2022-11-13 02:48:37',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14039,'4000','121668296870','2022-11-13 02:48:37',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14040,'4000','121668296870','2022-11-13 02:48:37',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14041,'1110','121668296922','2022-11-13 03:04:09',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14042,'5500','121668296922','2022-11-13 03:04:09',251.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14043,'1000','121668296922','2022-11-13 03:04:09',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14044,'4000','121668296922','2022-11-13 03:04:09',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14045,'1110','121668297857','2022-11-13 03:15:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14046,'5500','121668297857','2022-11-13 03:15:31',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14047,'1000','121668297857','2022-11-13 03:15:31',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14048,'4000','121668297857','2022-11-13 03:15:31',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14049,'1110','121668298537','2022-11-13 03:29:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14050,'1110','121668298537','2022-11-13 03:29:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14051,'1110','121668298537','2022-11-13 03:29:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14052,'5500','121668298537','2022-11-13 03:29:31',1252.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14053,'1000','121668298537','2022-11-13 03:29:31',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14054,'4000','121668298537','2022-11-13 03:29:31',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14055,'4000','121668298537','2022-11-13 03:29:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14056,'4000','121668298537','2022-11-13 03:29:31',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14057,'1110','121668299374','2022-11-13 03:30:46',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14058,'5500','121668299374','2022-11-13 03:30:46',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14059,'1000','121668299374','2022-11-13 03:30:46',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14060,'4000','121668299374','2022-11-13 03:30:46',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14061,'1110','121668299450','2022-11-13 03:32:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14062,'5500','121668299450','2022-11-13 03:32:13',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14063,'1000','121668299450','2022-11-13 03:32:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14064,'4000','121668299450','2022-11-13 03:32:13',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14065,'1110','121668299811','2022-11-13 03:41:57',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14066,'1110','121668299811','2022-11-13 03:41:57',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14067,'1110','121668299811','2022-11-13 03:41:57',NULL,95.75,'','12','1','Inventory sold','1','','sales','6161101602525','','No',NULL,NULL,''),(14068,'5500','121668299811','2022-11-13 03:41:57',1587.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14069,'1000','121668299811','2022-11-13 03:41:57',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14070,'4000','121668299811','2022-11-13 03:41:57',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14071,'4000','121668299811','2022-11-13 03:41:57',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14072,'4000','121668299811','2022-11-13 03:41:57',NULL,120.00,'','12','1','Good sold','1','','sales','6161101602525','','No',NULL,NULL,''),(14073,'1110','121668300124','2022-11-13 03:51:03',NULL,3996.00,'','12','1','Inventory sold','1','','sales','5000281032733','','No',NULL,NULL,''),(14074,'1110','121668300124','2022-11-13 03:51:03',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14075,'1110','121668300124','2022-11-13 03:51:03',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14076,'1110','121668300124','2022-11-13 03:51:03',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14077,'1110','121668300124','2022-11-13 03:51:03',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14078,'1110','121668300124','2022-11-13 03:51:03',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14079,'5500','121668300124','2022-11-13 03:51:03',5374.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14080,'1000','121668300124','2022-11-13 03:51:03',7350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14081,'4000','121668300124','2022-11-13 03:51:03',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281032733','','No',NULL,NULL,''),(14082,'4000','121668300124','2022-11-13 03:51:03',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14083,'4000','121668300124','2022-11-13 03:51:03',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14084,'4000','121668300124','2022-11-13 03:51:03',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14085,'4000','121668300124','2022-11-13 03:51:03',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14086,'4000','121668300124','2022-11-13 03:51:03',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14087,'1110','121668300669','2022-11-13 03:52:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14088,'5500','121668300669','2022-11-13 03:52:27',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14089,'1000','121668300669','2022-11-13 03:52:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14090,'4000','121668300669','2022-11-13 03:52:27',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14091,'1110','121668300751','2022-11-13 03:55:03',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(14092,'1110','121668300751','2022-11-13 03:55:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14093,'1110','121668300751','2022-11-13 03:55:03',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14094,'1110','121668300751','2022-11-13 03:55:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14095,'1110','121668300751','2022-11-13 03:55:03',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14096,'5500','121668300751','2022-11-13 03:55:03',518.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14097,'1000','121668300751','2022-11-13 03:55:03',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14098,'4000','121668300751','2022-11-13 03:55:03',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(14099,'4000','121668300751','2022-11-13 03:55:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14100,'4000','121668300751','2022-11-13 03:55:03',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14101,'4000','121668300751','2022-11-13 03:55:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14102,'4000','121668300751','2022-11-13 03:55:03',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14103,'1110','121668300912','2022-11-13 03:58:40',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14104,'5500','121668300912','2022-11-13 03:58:40',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14105,'1000','121668300912','2022-11-13 03:58:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14106,'4000','121668300912','2022-11-13 03:58:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14107,'1110','121668301126','2022-11-13 04:09:04',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14108,'5500','121668301126','2022-11-13 04:09:04',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14109,'1000','121668301126','2022-11-13 04:09:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14110,'4000','121668301126','2022-11-13 04:09:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14111,'1110','121668301750','2022-11-13 04:20:19',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14112,'5500','121668301750','2022-11-13 04:20:19',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14113,'1000','121668301750','2022-11-13 04:20:19',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14114,'4000','121668301750','2022-11-13 04:20:19',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14115,'1110','121668302423','2022-11-13 05:21:27',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14116,'5500','121668302423','2022-11-13 05:21:27',1138.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14117,'1000','121668302423','2022-11-13 05:21:27',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14118,'4000','121668302423','2022-11-13 05:21:27',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14119,'1110','121668306135','2022-11-13 05:33:14',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14120,'1110','121668306135','2022-11-13 05:33:14',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14121,'1110','121668306135','2022-11-13 05:33:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14122,'1110','121668306135','2022-11-13 05:33:14',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(14123,'1110','121668306135','2022-11-13 05:33:14',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14124,'1110','121668306135','2022-11-13 05:33:14',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14125,'1110','121668306135','2022-11-13 05:33:14',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14126,'1110','121668306135','2022-11-13 05:33:14',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14127,'1110','121668306135','2022-11-13 05:33:14',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14128,'1110','121668306135','2022-11-13 05:33:14',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(14129,'1110','121668306135','2022-11-13 05:33:14',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322690362','','No',NULL,NULL,''),(14130,'5500','121668306135','2022-11-13 05:33:14',6150.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14131,'1000','121668306135','2022-11-13 05:33:14',9170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14132,'4000','121668306135','2022-11-13 05:33:14',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14133,'4000','121668306135','2022-11-13 05:33:14',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14134,'4000','121668306135','2022-11-13 05:33:14',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14135,'4000','121668306135','2022-11-13 05:33:14',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(14136,'4000','121668306135','2022-11-13 05:33:14',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14137,'4000','121668306135','2022-11-13 05:33:14',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14138,'4000','121668306135','2022-11-13 05:33:14',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14139,'4000','121668306135','2022-11-13 05:33:14',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14140,'4000','121668306135','2022-11-13 05:33:14',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14141,'4000','121668306135','2022-11-13 05:33:14',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(14142,'4000','121668306135','2022-11-13 05:33:14',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322690362','','No',NULL,NULL,''),(14143,'1110','121668337300','2022-11-13 14:47:12',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14144,'5500','121668337300','2022-11-13 14:47:12',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14145,'1000','121668337300','2022-11-13 14:47:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14146,'4000','121668337300','2022-11-13 14:47:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14147,'1110','121668349983','2022-11-13 17:33:25',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14148,'1110','121668349983','2022-11-13 17:33:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(14149,'5500','121668349983','2022-11-13 17:33:25',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14150,'1000','121668349983','2022-11-13 17:33:25',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14151,'4000','121668349983','2022-11-13 17:33:25',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14152,'4000','121668349983','2022-11-13 17:33:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(14153,'1110','121668350055','2022-11-13 17:34:42',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14154,'5500','121668350055','2022-11-13 17:34:42',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14155,'1000','121668350055','2022-11-13 17:34:42',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14156,'4000','121668350055','2022-11-13 17:34:42',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14157,'1110','121668352991','2022-11-13 18:24:20',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14158,'1110','121668352991','2022-11-13 18:24:20',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(14159,'5500','121668352991','2022-11-13 18:24:20',245.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14160,'1000','121668352991','2022-11-13 18:24:20',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14161,'4000','121668352991','2022-11-13 18:24:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14162,'4000','121668352991','2022-11-13 18:24:20',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(14163,'1110','121668353164','2022-11-13 20:49:52',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(14164,'5500','121668353164','2022-11-13 20:49:52',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14165,'1000','121668353164','2022-11-13 20:49:52',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14166,'4000','121668353164','2022-11-13 20:49:52',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(14167,'1110','121668363236','2022-11-13 21:19:26',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(14168,'1110','121668363236','2022-11-13 21:19:26',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(14169,'5500','121668363236','2022-11-13 21:19:26',1127.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14170,'1000','121668363236','2022-11-13 21:19:26',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14171,'4000','121668363236','2022-11-13 21:19:26',NULL,1500.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(14172,'4000','121668363236','2022-11-13 21:19:26',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(14173,'1110','121668363581','2022-11-13 22:16:51',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14174,'5500','121668363581','2022-11-13 22:16:51',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14175,'1000','121668363581','2022-11-13 22:16:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14176,'4000','121668363581','2022-11-13 22:16:51',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(14177,'1110','121668367024','2022-11-13 22:25:11',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14178,'1110','121668367024','2022-11-13 22:25:11',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(14179,'5500','121668367024','2022-11-13 22:25:11',1237.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14180,'1000','121668367024','2022-11-13 22:25:11',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14181,'4000','121668367024','2022-11-13 22:25:11',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14182,'4000','121668367024','2022-11-13 22:25:11',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(14183,'1110','121668367565','2022-11-13 23:01:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14184,'5500','121668367565','2022-11-13 23:01:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14185,'1000','121668367565','2022-11-13 23:01:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14186,'4000','121668367565','2022-11-13 23:01:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14187,'1110','121668369909','2022-11-13 23:17:02',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14188,'1110','121668369909','2022-11-13 23:17:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14189,'1110','121668369909','2022-11-13 23:17:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14190,'5500','121668369909','2022-11-13 23:17:02',536.54,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14191,'1000','121668369909','2022-11-13 23:17:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14192,'4000','121668369909','2022-11-13 23:17:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14193,'4000','121668369909','2022-11-13 23:17:02',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14194,'4000','121668369909','2022-11-13 23:17:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14195,'1110','121668370632','2022-11-14 00:45:11',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(14196,'5500','121668370632','2022-11-14 00:45:11',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14197,'1000','121668370632','2022-11-14 00:45:11',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14198,'4000','121668370632','2022-11-14 00:45:11',NULL,500.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(14199,'1110','121668375916','2022-11-14 01:40:25',NULL,836.00,'','12','1','Inventory sold','1','','sales','6161101561021','','No',NULL,NULL,''),(14200,'1110','121668375916','2022-11-14 01:40:25',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(14201,'5500','121668375916','2022-11-14 01:40:25',3436.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14202,'1000','121668375916','2022-11-14 01:40:25',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14203,'4000','121668375916','2022-11-14 01:40:25',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101561021','','No',NULL,NULL,''),(14204,'4000','121668375916','2022-11-14 01:40:25',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(14205,'1110','121668379389','2022-11-14 01:58:36',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(14206,'1110','121668379389','2022-11-14 01:58:36',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14207,'5500','121668379389','2022-11-14 01:58:36',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14208,'1000','121668379389','2022-11-14 01:58:36',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14209,'4000','121668379389','2022-11-14 01:58:36',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(14210,'4000','121668379389','2022-11-14 01:58:36',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14211,'1110','121668380331','2022-11-14 02:21:32',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(14212,'5500','121668380331','2022-11-14 02:21:32',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14213,'1000','121668380331','2022-11-14 02:21:32',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14214,'4000','121668380331','2022-11-14 02:21:32',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(14215,'1110','121668381699','2022-11-14 04:20:50',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14216,'1110','121668381699','2022-11-14 04:20:50',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(14217,'1110','121668381699','2022-11-14 04:20:50',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14218,'1110','121668381699','2022-11-14 04:20:50',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14219,'5500','121668381699','2022-11-14 04:20:50',1964.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14220,'1000','121668381699','2022-11-14 04:20:50',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14221,'4000','121668381699','2022-11-14 04:20:50',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14222,'4000','121668381699','2022-11-14 04:20:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(14223,'4000','121668381699','2022-11-14 04:20:50',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14224,'4000','121668381699','2022-11-14 04:20:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14225,'1110','121668417202','2022-11-14 12:14:08',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14226,'5500','121668417202','2022-11-14 12:14:08',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14227,'1000','121668417202','2022-11-14 12:14:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14228,'4000','121668417202','2022-11-14 12:14:08',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14229,'1110','121668426716','2022-11-14 14:52:16',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14230,'5500','121668426716','2022-11-14 14:52:16',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14231,'1000','121668426716','2022-11-14 14:52:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14232,'4000','121668426716','2022-11-14 14:52:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14233,'1110','121668426747','2022-11-14 16:19:21',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(14234,'5500','121668426747','2022-11-14 16:19:21',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14235,'1000','121668426747','2022-11-14 16:19:21',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14236,'4000','121668426747','2022-11-14 16:19:21',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(14237,'1110','121668432033','2022-11-14 18:18:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14238,'5500','121668432033','2022-11-14 18:18:44',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14239,'1000','121668432033','2022-11-14 18:18:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14240,'4000','121668432033','2022-11-14 18:18:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14241,'1110','121668439151','2022-11-14 18:29:15',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289020800','','No',NULL,NULL,''),(14242,'5500','121668439151','2022-11-14 18:29:15',1840.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14243,'1000','121668439151','2022-11-14 18:29:15',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14244,'4000','121668439151','2022-11-14 18:29:15',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020800','','No',NULL,NULL,''),(14245,'1110','121668439759','2022-11-14 18:31:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14246,'5500','121668439759','2022-11-14 18:31:57',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14247,'1000','121668439759','2022-11-14 18:31:57',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14248,'4000','121668439759','2022-11-14 18:31:57',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14249,'1110','121668440639','2022-11-14 18:44:16',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14250,'5500','121668440639','2022-11-14 18:44:16',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14251,'1000','121668440639','2022-11-14 18:44:16',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14252,'4000','121668440639','2022-11-14 18:44:16',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14253,'1110','121668441598','2022-11-14 19:17:53',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(14254,'5500','121668441598','2022-11-14 19:17:53',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14255,'1000','121668441598','2022-11-14 19:17:53',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14256,'4000','121668441598','2022-11-14 19:17:53',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(14257,'1110','121668442728','2022-11-14 19:35:49',NULL,931.00,'','12','1','Inventory sold','1','','sales','4820000946902','','No',NULL,NULL,''),(14258,'5500','121668442728','2022-11-14 19:35:49',931.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14259,'1000','121668442728','2022-11-14 19:35:49',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14260,'4000','121668442728','2022-11-14 19:35:49',NULL,1700.00,'','12','1','Good sold','1','','sales','4820000946902','','No',NULL,NULL,''),(14261,'1110','121668448908','2022-11-14 21:02:03',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(14262,'5500','121668448908','2022-11-14 21:02:03',1072.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14263,'1000','121668448908','2022-11-14 21:02:03',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14264,'4000','121668448908','2022-11-14 21:02:03',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(14265,'1110','121668448928','2022-11-14 21:04:35',NULL,886.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(14266,'5500','121668448928','2022-11-14 21:04:35',886.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14267,'1000','121668448928','2022-11-14 21:04:35',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14268,'4000','121668448928','2022-11-14 21:04:35',NULL,1500.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(14269,'1110','121668449118','2022-11-14 21:05:30',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(14270,'5500','121668449118','2022-11-14 21:05:30',1130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14271,'1000','121668449118','2022-11-14 21:05:30',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14272,'4000','121668449118','2022-11-14 21:05:30',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(14273,'1110','121668449133','2022-11-14 21:17:22',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(14274,'5500','121668449133','2022-11-14 21:17:22',555.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14275,'1000','121668449133','2022-11-14 21:17:22',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14276,'4000','121668449133','2022-11-14 21:17:22',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(14277,'1110','121668449898','2022-11-14 21:33:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14278,'5500','121668449898','2022-11-14 21:33:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14279,'1000','121668449898','2022-11-14 21:33:58',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14280,'4000','121668449898','2022-11-14 21:33:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14281,'1110','121668451426','2022-11-14 21:44:08',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14282,'1110','121668451426','2022-11-14 21:44:08',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14283,'5500','121668451426','2022-11-14 21:44:08',1076.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14284,'1000','121668451426','2022-11-14 21:44:08',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14285,'4000','121668451426','2022-11-14 21:44:08',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14286,'4000','121668451426','2022-11-14 21:44:08',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14287,'1110','121668451452','2022-11-14 22:05:23',NULL,1820.00,'','12','1','Inventory sold','1','','sales','7640175740047','','No',NULL,NULL,''),(14288,'5500','121668451452','2022-11-14 22:05:23',1820.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14289,'1000','121668451452','2022-11-14 22:05:23',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14290,'4000','121668451452','2022-11-14 22:05:23',NULL,2700.00,'','12','1','Good sold','1','','sales','7640175740047','','No',NULL,NULL,''),(14291,'1110','121668452855','2022-11-14 22:36:26',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14292,'1110','121668452855','2022-11-14 22:36:26',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14293,'1110','121668452855','2022-11-14 22:36:26',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14294,'5500','121668452855','2022-11-14 22:36:26',700.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14295,'1000','121668452855','2022-11-14 22:36:26',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14296,'4000','121668452855','2022-11-14 22:36:26',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14297,'4000','121668452855','2022-11-14 22:36:26',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14298,'4000','121668452855','2022-11-14 22:36:26',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14299,'1110','121668454594','2022-11-14 22:38:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14300,'5500','121668454594','2022-11-14 22:38:28',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14301,'1000','121668454594','2022-11-14 22:38:28',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14302,'4000','121668454594','2022-11-14 22:38:28',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14303,'1110','121668456371','2022-11-14 23:06:49',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14304,'5500','121668456371','2022-11-14 23:06:49',1090.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14305,'1000','121668456371','2022-11-14 23:06:49',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14306,'4000','121668456371','2022-11-14 23:06:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14307,'1110','121668456478','2022-11-14 23:10:12',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(14308,'1110','121668456478','2022-11-14 23:10:12',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14309,'1110','121668456478','2022-11-14 23:10:12',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14310,'5500','121668456478','2022-11-14 23:10:12',1490.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14311,'1000','121668456478','2022-11-14 23:10:12',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14312,'4000','121668456478','2022-11-14 23:10:12',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(14313,'4000','121668456478','2022-11-14 23:10:12',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14314,'4000','121668456478','2022-11-14 23:10:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14315,'1110','121668456645','2022-11-15 01:04:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14316,'5500','121668456645','2022-11-15 01:04:34',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14317,'1000','121668456645','2022-11-15 01:04:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14318,'4000','121668456645','2022-11-15 01:04:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14319,'1110','121668463480','2022-11-15 01:34:53',NULL,2277.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14320,'1110','121668463480','2022-11-15 01:34:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14321,'1110','121668463480','2022-11-15 01:34:53',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14322,'5500','121668463480','2022-11-15 01:34:53',2479.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14323,'1000','121668463480','2022-11-15 01:34:53',3380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14324,'4000','121668463480','2022-11-15 01:34:53',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14325,'4000','121668463480','2022-11-15 01:34:53',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14326,'4000','121668463480','2022-11-15 01:34:53',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14327,'1110','121668482916','2022-11-15 07:09:03',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(14328,'5500','121668482916','2022-11-15 07:09:03',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14329,'1000','121668482916','2022-11-15 07:09:03',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14330,'4000','121668482916','2022-11-15 07:09:03',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(14331,'1110','121668513732','2022-11-15 15:04:18',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(14332,'5500','121668513732','2022-11-15 15:04:18',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14333,'1000','121668513732','2022-11-15 15:04:18',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14334,'4000','121668513732','2022-11-15 15:04:18',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(14335,'1110','121668513966','2022-11-15 15:06:19',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14336,'5500','121668513966','2022-11-15 15:06:19',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14337,'1000','121668513966','2022-11-15 15:06:19',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14338,'4000','121668513966','2022-11-15 15:06:19',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14339,'1110','121668520807','2022-11-15 17:07:20',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14340,'1110','121668520807','2022-11-15 17:07:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14341,'5500','121668520807','2022-11-15 17:07:20',538.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14342,'1000','121668520807','2022-11-15 17:07:20',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14343,'4000','121668520807','2022-11-15 17:07:20',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14344,'4000','121668520807','2022-11-15 17:07:20',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14345,'1110','121668524486','2022-11-15 18:22:38',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14346,'5500','121668524486','2022-11-15 18:22:38',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14347,'1000','121668524486','2022-11-15 18:22:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14348,'4000','121668524486','2022-11-15 18:22:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14349,'1110','121668525764','2022-11-15 19:15:35',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14350,'5500','121668525764','2022-11-15 19:15:35',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14351,'1000','121668525764','2022-11-15 19:15:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14352,'4000','121668525764','2022-11-15 19:15:35',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14353,'1110','121668528940','2022-11-15 19:17:51',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14354,'5500','121668528940','2022-11-15 19:17:51',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14355,'1000','121668528940','2022-11-15 19:17:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14356,'4000','121668528940','2022-11-15 19:17:51',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(14357,'1110','121668535486','2022-11-15 21:05:11',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14358,'5500','121668535486','2022-11-15 21:05:11',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14359,'1000','121668535486','2022-11-15 21:05:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14360,'4000','121668535486','2022-11-15 21:05:11',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14361,'1110','121668535516','2022-11-15 21:34:25',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(14362,'5500','121668535516','2022-11-15 21:34:25',354.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14363,'1000','121668535516','2022-11-15 21:34:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14364,'4000','121668535516','2022-11-15 21:34:25',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(14365,'1110','121668537270','2022-11-15 21:38:53',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14366,'1110','121668537270','2022-11-15 21:38:53',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101605199','','No',NULL,NULL,''),(14367,'5500','121668537270','2022-11-15 21:38:53',397.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14368,'1000','121668537270','2022-11-15 21:38:53',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14369,'4000','121668537270','2022-11-15 21:38:53',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14370,'4000','121668537270','2022-11-15 21:38:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101605199','','No',NULL,NULL,''),(14371,'1110','121668537539','2022-11-15 22:05:57',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14372,'5500','121668537539','2022-11-15 22:05:57',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14373,'1000','121668537539','2022-11-15 22:05:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14374,'4000','121668537539','2022-11-15 22:05:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14375,'1110','121668539162','2022-11-15 22:34:50',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14376,'5500','121668539162','2022-11-15 22:34:50',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14377,'1000','121668539162','2022-11-15 22:34:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14378,'4000','121668539162','2022-11-15 22:34:50',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14379,'1110','121668543524','2022-11-15 23:19:45',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14380,'1110','121668543524','2022-11-15 23:19:45',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14381,'1110','121668543524','2022-11-15 23:19:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14382,'1110','121668543524','2022-11-15 23:19:45',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14383,'5500','121668543524','2022-11-15 23:19:45',911.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14384,'1000','121668543524','2022-11-15 23:19:45',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14385,'4000','121668543524','2022-11-15 23:19:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14386,'4000','121668543524','2022-11-15 23:19:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14387,'4000','121668543524','2022-11-15 23:19:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14388,'4000','121668543524','2022-11-15 23:19:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14389,'1110','121668543591','2022-11-15 23:22:18',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14390,'1110','121668543591','2022-11-15 23:22:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(14391,'5500','121668543591','2022-11-15 23:22:18',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14392,'1000','121668543591','2022-11-15 23:22:18',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14393,'4000','121668543591','2022-11-15 23:22:18',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14394,'4000','121668543591','2022-11-15 23:22:18',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(14395,'1110','121668543750','2022-11-15 23:33:14',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(14396,'1110','121668543750','2022-11-15 23:33:14',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14397,'5500','121668543750','2022-11-15 23:33:14',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14398,'1000','121668543750','2022-11-15 23:33:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14399,'4000','121668543750','2022-11-15 23:33:14',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(14400,'4000','121668543750','2022-11-15 23:33:14',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14401,'1110','121668544400','2022-11-15 23:35:41',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14402,'1110','121668544400','2022-11-15 23:35:41',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14403,'5500','121668544400','2022-11-15 23:35:41',555.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14404,'1000','121668544400','2022-11-15 23:35:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14405,'4000','121668544400','2022-11-15 23:35:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14406,'4000','121668544400','2022-11-15 23:35:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14407,'1110','121668544544','2022-11-15 23:36:24',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14408,'1110','121668544544','2022-11-15 23:36:24',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14409,'5500','121668544544','2022-11-15 23:36:24',305.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14410,'1000','121668544544','2022-11-15 23:36:24',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14411,'4000','121668544544','2022-11-15 23:36:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14412,'4000','121668544544','2022-11-15 23:36:24',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14413,'1110','121668544588','2022-11-15 23:37:45',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14414,'1110','121668544588','2022-11-15 23:37:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14415,'1110','121668544588','2022-11-15 23:37:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14416,'5500','121668544588','2022-11-15 23:37:45',738.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14417,'1000','121668544588','2022-11-15 23:37:45',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14418,'4000','121668544588','2022-11-15 23:37:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(14419,'4000','121668544588','2022-11-15 23:37:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14420,'4000','121668544588','2022-11-15 23:37:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14421,'1110','121668546449','2022-11-16 00:07:44',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14422,'5500','121668546449','2022-11-16 00:07:44',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14423,'1000','121668546449','2022-11-16 00:07:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14424,'4000','121668546449','2022-11-16 00:07:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14425,'1110','121668550389','2022-11-16 01:17:39',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(14426,'1110','121668550389','2022-11-16 01:17:39',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14427,'1110','121668550389','2022-11-16 01:17:39',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(14428,'1110','121668550389','2022-11-16 01:17:39',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14429,'5500','121668550389','2022-11-16 01:17:39',3497.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14430,'1000','121668550389','2022-11-16 01:17:39',5370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14431,'4000','121668550389','2022-11-16 01:17:39',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(14432,'4000','121668550389','2022-11-16 01:17:39',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14433,'4000','121668550389','2022-11-16 01:17:39',NULL,950.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(14434,'4000','121668550389','2022-11-16 01:17:39',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14435,'1110','121668550918','2022-11-16 01:27:23',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14436,'5500','121668550918','2022-11-16 01:27:23',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14437,'1000','121668550918','2022-11-16 01:27:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14438,'4000','121668550918','2022-11-16 01:27:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14439,'1110','121668551248','2022-11-16 02:25:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14440,'5500','121668551248','2022-11-16 02:25:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14441,'1000','121668551248','2022-11-16 02:25:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14442,'4000','121668551248','2022-11-16 02:25:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14443,'1110','121668554752','2022-11-16 03:27:22',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14444,'5500','121668554752','2022-11-16 03:27:22',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14445,'1000','121668554752','2022-11-16 03:27:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14446,'4000','121668554752','2022-11-16 03:27:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14447,'1110','121668575069','2022-11-16 08:45:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14448,'5500','121668575069','2022-11-16 08:45:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14449,'1000','121668575069','2022-11-16 08:45:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14450,'4000','121668575069','2022-11-16 08:45:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14451,'1110','121668592434','2022-11-16 12:54:40',NULL,3300.00,'','12','1','Inventory sold','1','','sales','5099873011737','','No',NULL,NULL,''),(14452,'5500','121668592434','2022-11-16 12:54:40',3300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14453,'1000','121668592434','2022-11-16 12:54:40',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14454,'4000','121668592434','2022-11-16 12:54:40',NULL,4500.00,'','12','1','Good sold','1','','sales','5099873011737','','No',NULL,NULL,''),(14455,'1110','121668595200','2022-11-16 13:40:12',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14456,'5500','121668595200','2022-11-16 13:40:12',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14457,'1000','121668595200','2022-11-16 13:40:12',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14458,'4000','121668595200','2022-11-16 13:40:12',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14459,'1110','121668595260','2022-11-16 13:43:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(14460,'5500','121668595260','2022-11-16 13:43:54',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14461,'1000','121668595260','2022-11-16 13:43:54',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14462,'4000','121668595260','2022-11-16 13:43:54',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(14463,'1110','121668595440','2022-11-16 13:46:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14464,'5500','121668595440','2022-11-16 13:46:21',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14465,'1000','121668595440','2022-11-16 13:46:21',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14466,'4000','121668595440','2022-11-16 13:46:21',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14467,'1110','121668595588','2022-11-16 14:06:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(14468,'5500','121668595588','2022-11-16 14:06:27',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14469,'1000','121668595588','2022-11-16 14:06:27',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14470,'4000','121668595588','2022-11-16 14:06:27',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(14471,'1110','121668596794','2022-11-16 15:05:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(14472,'5500','121668596794','2022-11-16 15:05:56',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14473,'1000','121668596794','2022-11-16 15:05:56',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14474,'4000','121668596794','2022-11-16 15:05:56',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(14475,'1110','121668611917','2022-11-16 18:19:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14476,'5500','121668611917','2022-11-16 18:19:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14477,'1000','121668611917','2022-11-16 18:19:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14478,'4000','121668611917','2022-11-16 18:19:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14479,'1110','121668611951','2022-11-16 18:21:01',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14480,'5500','121668611951','2022-11-16 18:21:01',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14481,'1000','121668611951','2022-11-16 18:21:01',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14482,'4000','121668611951','2022-11-16 18:21:01',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14483,'1110','121668612067','2022-11-16 18:45:57',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14484,'5500','121668612067','2022-11-16 18:45:57',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14485,'1000','121668612067','2022-11-16 18:45:57',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14486,'4000','121668612067','2022-11-16 18:45:57',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14487,'1110','121668613562','2022-11-16 18:47:55',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(14488,'5500','121668613562','2022-11-16 18:47:55',1.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14489,'1000','121668613562','2022-11-16 18:47:55',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14490,'4000','121668613562','2022-11-16 18:47:55',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(14491,'1110','121668614342','2022-11-16 18:59:17',NULL,251.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(14492,'5500','121668614342','2022-11-16 18:59:17',251.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14493,'1000','121668614342','2022-11-16 18:59:17',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14494,'4000','121668614342','2022-11-16 18:59:17',NULL,650.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(14495,'1110','121668614362','2022-11-16 20:00:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14496,'1110','121668614362','2022-11-16 20:00:32',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(14497,'1110','121668614362','2022-11-16 20:00:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14498,'5500','121668614362','2022-11-16 20:00:32',575.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14499,'1000','121668614362','2022-11-16 20:00:32',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14500,'4000','121668614362','2022-11-16 20:00:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14501,'4000','121668614362','2022-11-16 20:00:32',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(14502,'4000','121668614362','2022-11-16 20:00:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14503,'1110','121668618187','2022-11-16 20:13:56',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14504,'5500','121668618187','2022-11-16 20:13:56',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14505,'1000','121668618187','2022-11-16 20:13:56',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14506,'4000','121668618187','2022-11-16 20:13:56',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(14507,'1110','121668618886','2022-11-16 20:16:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14508,'5500','121668618886','2022-11-16 20:16:28',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14509,'1000','121668618886','2022-11-16 20:16:28',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14510,'4000','121668618886','2022-11-16 20:16:28',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14511,'1110','121668618998','2022-11-16 21:54:50',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(14512,'1110','121668618998','2022-11-16 21:54:50',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14513,'5500','121668618998','2022-11-16 21:54:50',893.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14514,'1000','121668618998','2022-11-16 21:54:50',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14515,'4000','121668618998','2022-11-16 21:54:50',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(14516,'4000','121668618998','2022-11-16 21:54:50',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14517,'1110','121668624913','2022-11-16 23:11:55',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(14518,'5500','121668624913','2022-11-16 23:11:55',543.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14519,'1000','121668624913','2022-11-16 23:11:55',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14520,'4000','121668624913','2022-11-16 23:11:55',NULL,950.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(14521,'1110','121668629767','2022-11-16 23:16:17',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(14522,'5500','121668629767','2022-11-16 23:16:17',1.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14523,'1000','121668629767','2022-11-16 23:16:17',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14524,'4000','121668629767','2022-11-16 23:16:17',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(14525,'1110','121668631351','2022-11-16 23:43:21',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14526,'1110','121668631351','2022-11-16 23:43:21',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(14527,'1110','121668631351','2022-11-16 23:43:21',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14528,'1110','121668631351','2022-11-16 23:43:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14529,'5500','121668631351','2022-11-16 23:43:21',1531.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14530,'1000','121668631351','2022-11-16 23:43:21',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14531,'4000','121668631351','2022-11-16 23:43:21',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14532,'4000','121668631351','2022-11-16 23:43:21',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(14533,'4000','121668631351','2022-11-16 23:43:21',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14534,'4000','121668631351','2022-11-16 23:43:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14535,'1110','121668631545','2022-11-16 23:49:35',NULL,450.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14536,'5500','121668631545','2022-11-16 23:49:35',450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14537,'1000','121668631545','2022-11-16 23:49:35',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14538,'4000','121668631545','2022-11-16 23:49:35',NULL,600.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(14539,'1110','121668631785','2022-11-17 00:05:09',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(14540,'1110','121668631785','2022-11-17 00:05:09',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14541,'5500','121668631785','2022-11-17 00:05:09',793.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14542,'1000','121668631785','2022-11-17 00:05:09',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14543,'4000','121668631785','2022-11-17 00:05:09',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(14544,'4000','121668631785','2022-11-17 00:05:09',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(14545,'1110','121668632995','2022-11-17 00:11:06',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(14546,'1110','121668632995','2022-11-17 00:11:06',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(14547,'5500','121668632995','2022-11-17 00:11:06',2181.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14548,'1000','121668632995','2022-11-17 00:11:06',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14549,'4000','121668632995','2022-11-17 00:11:06',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(14550,'4000','121668632995','2022-11-17 00:11:06',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(14551,'1110','121668633364','2022-11-17 00:38:33',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14552,'5500','121668633364','2022-11-17 00:38:33',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14553,'1000','121668633364','2022-11-17 00:38:33',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14554,'4000','121668633364','2022-11-17 00:38:33',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14555,'1110','121668634725','2022-11-17 00:40:45',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14556,'5500','121668634725','2022-11-17 00:40:45',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14557,'1000','121668634725','2022-11-17 00:40:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14558,'4000','121668634725','2022-11-17 00:40:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(14559,'1110','121668634849','2022-11-17 02:18:02',NULL,1854.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(14560,'5500','121668634849','2022-11-17 02:18:02',1854.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14561,'1000','121668634849','2022-11-17 02:18:02',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14562,'4000','121668634849','2022-11-17 02:18:02',NULL,2600.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(14563,'1110','121668640694','2022-11-17 02:20:12',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14564,'1110','121668640694','2022-11-17 02:20:12',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(14565,'5500','121668640694','2022-11-17 02:20:12',945.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14566,'1000','121668640694','2022-11-17 02:20:12',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14567,'4000','121668640694','2022-11-17 02:20:12',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14568,'4000','121668640694','2022-11-17 02:20:12',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(14569,'1110','121668640939','2022-11-17 02:36:29',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14570,'5500','121668640939','2022-11-17 02:36:29',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14571,'1000','121668640939','2022-11-17 02:36:29',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14572,'4000','121668640939','2022-11-17 02:36:29',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14573,'1110','121668641794','2022-11-17 02:38:47',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(14574,'5500','121668641794','2022-11-17 02:38:47',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14575,'1000','121668641794','2022-11-17 02:38:47',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14576,'4000','121668641794','2022-11-17 02:38:47',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(14577,'1110','121668664493','2022-11-17 08:55:06',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14578,'5500','121668664493','2022-11-17 08:55:06',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14579,'1000','121668664493','2022-11-17 08:55:06',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14580,'4000','121668664493','2022-11-17 08:55:06',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14581,'1110','121668678844','2022-11-17 12:54:19',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14582,'5500','121668678844','2022-11-17 12:54:19',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14583,'1000','121668678844','2022-11-17 12:54:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14584,'4000','121668678844','2022-11-17 12:54:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14585,'1110','121668678865','2022-11-17 13:10:41',NULL,92.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(14586,'5500','121668678865','2022-11-17 13:10:41',92.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14587,'1000','121668678865','2022-11-17 13:10:41',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14588,'4000','121668678865','2022-11-17 13:10:41',NULL,300.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(14589,'1110','121668692620','2022-11-17 16:50:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(14590,'5500','121668692620','2022-11-17 16:50:17',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14591,'1000','121668692620','2022-11-17 16:50:17',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14592,'4000','121668692620','2022-11-17 16:50:17',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(14593,'1110','121668693023','2022-11-17 17:15:27',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14594,'5500','121668693023','2022-11-17 17:15:27',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14595,'1000','121668693023','2022-11-17 17:15:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14596,'4000','121668693023','2022-11-17 17:15:27',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14597,'1110','121668694543','2022-11-17 17:16:47',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14598,'5500','121668694543','2022-11-17 17:16:47',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14599,'1000','121668694543','2022-11-17 17:16:47',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14600,'4000','121668694543','2022-11-17 17:16:47',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14601,'1110','121668694611','2022-11-17 17:18:35',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(14602,'5500','121668694611','2022-11-17 17:18:35',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14603,'1000','121668694611','2022-11-17 17:18:35',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14604,'4000','121668694611','2022-11-17 17:18:35',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(14605,'1110','121668694719','2022-11-17 17:55:44',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14606,'5500','121668694719','2022-11-17 17:55:44',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14607,'1000','121668694719','2022-11-17 17:55:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14608,'4000','121668694719','2022-11-17 17:55:44',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14609,'1110','121668706209','2022-11-17 20:39:04',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(14610,'1110','121668706209','2022-11-17 20:39:04',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14611,'5500','121668706209','2022-11-17 20:39:04',848.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14612,'1000','121668706209','2022-11-17 20:39:04',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14613,'4000','121668706209','2022-11-17 20:39:04',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(14614,'4000','121668706209','2022-11-17 20:39:04',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14615,'1110','121668712545','2022-11-17 22:15:59',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14616,'5500','121668712545','2022-11-17 22:15:59',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14617,'1000','121668712545','2022-11-17 22:15:59',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14618,'4000','121668712545','2022-11-17 22:15:59',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14619,'1110','121668712723','2022-11-17 22:18:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14620,'5500','121668712723','2022-11-17 22:18:51',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14621,'1000','121668712723','2022-11-17 22:18:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14622,'4000','121668712723','2022-11-17 22:18:51',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14623,'1110','121668713767','2022-11-17 22:36:19',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(14624,'5500','121668713767','2022-11-17 22:36:19',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14625,'1000','121668713767','2022-11-17 22:36:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14626,'4000','121668713767','2022-11-17 22:36:19',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(14627,'1110','121668713784','2022-11-17 22:37:31',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(14628,'1110','121668713784','2022-11-17 22:37:31',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14629,'5500','121668713784','2022-11-17 22:37:31',288.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14630,'1000','121668713784','2022-11-17 22:37:31',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14631,'4000','121668713784','2022-11-17 22:37:31',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(14632,'4000','121668713784','2022-11-17 22:37:31',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14633,'1110','121668714511','2022-11-17 22:55:28',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14634,'5500','121668714511','2022-11-17 22:55:28',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14635,'1000','121668714511','2022-11-17 22:55:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14636,'4000','121668714511','2022-11-17 22:55:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14637,'1110','121668715067','2022-11-17 22:58:03',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14638,'5500','121668715067','2022-11-17 22:58:03',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14639,'1000','121668715067','2022-11-17 22:58:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14640,'4000','121668715067','2022-11-17 22:58:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14641,'1110','121668717361','2022-11-17 23:36:14',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(14642,'5500','121668717361','2022-11-17 23:36:14',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14643,'1000','121668717361','2022-11-17 23:36:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14644,'4000','121668717361','2022-11-17 23:36:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(14645,'1110','121668717378','2022-11-17 23:43:40',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14646,'5500','121668717378','2022-11-17 23:43:40',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14647,'1000','121668717378','2022-11-17 23:43:40',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14648,'4000','121668717378','2022-11-17 23:43:40',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14649,'1110','121668717824','2022-11-18 00:02:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14650,'5500','121668717824','2022-11-18 00:02:09',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14651,'1000','121668717824','2022-11-18 00:02:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14652,'4000','121668717824','2022-11-18 00:02:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14653,'1110','121668718933','2022-11-18 00:52:39',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(14654,'1110','121668718933','2022-11-18 00:52:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14655,'5500','121668718933','2022-11-18 00:52:39',763.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14656,'1000','121668718933','2022-11-18 00:52:39',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14657,'4000','121668718933','2022-11-18 00:52:39',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(14658,'4000','121668718933','2022-11-18 00:52:39',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14659,'1110','121668723680','2022-11-18 01:21:43',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14660,'5500','121668723680','2022-11-18 01:21:43',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14661,'1000','121668723680','2022-11-18 01:21:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14662,'4000','121668723680','2022-11-18 01:21:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14663,'1110','121668723748','2022-11-18 04:12:29',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(14664,'1110','121668723748','2022-11-18 04:12:29',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14665,'5500','121668723748','2022-11-18 04:12:29',618.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14666,'1000','121668723748','2022-11-18 04:12:29',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14667,'4000','121668723748','2022-11-18 04:12:29',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(14668,'4000','121668723748','2022-11-18 04:12:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14669,'1110','121668735100','2022-11-18 04:31:49',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(14670,'5500','121668735100','2022-11-18 04:31:49',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14671,'1000','121668735100','2022-11-18 04:31:49',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14672,'4000','121668735100','2022-11-18 04:31:49',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(14673,'1110','121668735114','2022-11-18 05:22:02',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14674,'1110','121668735114','2022-11-18 05:22:02',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(14675,'5500','121668735114','2022-11-18 05:22:02',618.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14676,'1000','121668735114','2022-11-18 05:22:02',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14677,'4000','121668735114','2022-11-18 05:22:02',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(14678,'4000','121668735114','2022-11-18 05:22:02',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(14679,'1110','121668738129','2022-11-18 05:22:50',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(14680,'5500','121668738129','2022-11-18 05:22:50',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14681,'1000','121668738129','2022-11-18 05:22:50',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14682,'4000','121668738129','2022-11-18 05:22:50',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(14683,'1110','121668738174','2022-11-18 05:23:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14684,'1110','121668738174','2022-11-18 05:23:27',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14685,'5500','121668738174','2022-11-18 05:23:27',443.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14686,'1000','121668738174','2022-11-18 05:23:27',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14687,'4000','121668738174','2022-11-18 05:23:27',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14688,'4000','121668738174','2022-11-18 05:23:27',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14689,'1110','121668753439','2022-11-18 09:38:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14690,'1110','121668753439','2022-11-18 09:38:42',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14691,'5500','121668753439','2022-11-18 09:38:42',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14692,'1000','121668753439','2022-11-18 09:38:42',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14693,'4000','121668753439','2022-11-18 09:38:42',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14694,'4000','121668753439','2022-11-18 09:38:42',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(14695,'1110','121668754389','2022-11-18 09:53:27',NULL,704.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(14696,'5500','121668754389','2022-11-18 09:53:27',704.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14697,'1000','121668754389','2022-11-18 09:53:27',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14698,'4000','121668754389','2022-11-18 09:53:27',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(14699,'1110','121668754413','2022-11-18 11:10:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(14700,'5500','121668754413','2022-11-18 11:10:38',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14701,'1000','121668754413','2022-11-18 11:10:38',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14702,'4000','121668754413','2022-11-18 11:10:38',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(14703,'1110','121668759044','2022-11-18 11:53:12',NULL,222.90,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14704,'5500','121668759044','2022-11-18 11:53:12',222.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14705,'1000','121668759044','2022-11-18 11:53:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14706,'4000','121668759044','2022-11-18 11:53:12',NULL,500.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14707,'1110','121668771359','2022-11-18 14:36:23',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14708,'5500','121668771359','2022-11-18 14:36:23',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14709,'1000','121668771359','2022-11-18 14:36:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14710,'4000','121668771359','2022-11-18 14:36:23',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14711,'1110','121668771388','2022-11-18 15:09:40',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14712,'5500','121668771388','2022-11-18 15:09:40',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14713,'1000','121668771388','2022-11-18 15:09:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14714,'4000','121668771388','2022-11-18 15:09:40',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14715,'1110','121668773388','2022-11-18 15:14:23',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(14716,'5500','121668773388','2022-11-18 15:14:23',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14717,'1000','121668773388','2022-11-18 15:14:23',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14718,'4000','121668773388','2022-11-18 15:14:23',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(14719,'1110','121668773668','2022-11-18 15:15:43',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(14720,'1110','121668773668','2022-11-18 15:15:43',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14721,'5500','121668773668','2022-11-18 15:15:43',550.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14722,'1000','121668773668','2022-11-18 15:15:43',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14723,'4000','121668773668','2022-11-18 15:15:43',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(14724,'4000','121668773668','2022-11-18 15:15:43',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(14725,'1110','121668783071','2022-11-18 17:52:06',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14726,'5500','121668783071','2022-11-18 17:52:06',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14727,'1000','121668783071','2022-11-18 17:52:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14728,'4000','121668783071','2022-11-18 17:52:06',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14729,'1110','121668783130','2022-11-18 18:49:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14730,'5500','121668783130','2022-11-18 18:49:54',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14731,'1000','121668783130','2022-11-18 18:49:54',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14732,'4000','121668783130','2022-11-18 18:49:54',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14733,'1110','121668786667','2022-11-18 19:49:31',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14734,'5500','121668786667','2022-11-18 19:49:31',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14735,'1000','121668786667','2022-11-18 19:49:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14736,'4000','121668786667','2022-11-18 19:49:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(14737,'1110','121668791208','2022-11-18 21:25:04',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14738,'1110','121668791208','2022-11-18 21:25:04',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14739,'1110','121668791208','2022-11-18 21:25:04',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14740,'5500','121668791208','2022-11-18 21:25:04',1524.55,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14741,'1000','121668791208','2022-11-18 21:25:04',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14742,'4000','121668791208','2022-11-18 21:25:04',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14743,'4000','121668791208','2022-11-18 21:25:04',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14744,'4000','121668791208','2022-11-18 21:25:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14745,'1110','121668796009','2022-11-18 21:37:42',NULL,653.00,'','12','1','Inventory sold','1','','sales','6161101604994','','No',NULL,NULL,''),(14746,'5500','121668796009','2022-11-18 21:37:42',653.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14747,'1000','121668796009','2022-11-18 21:37:42',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14748,'4000','121668796009','2022-11-18 21:37:42',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604994','','No',NULL,NULL,''),(14749,'1110','121668796670','2022-11-18 21:42:00',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14750,'1110','121668796670','2022-11-18 21:42:00',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14751,'5500','121668796670','2022-11-18 21:42:00',1275.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14752,'1000','121668796670','2022-11-18 21:42:00',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14753,'4000','121668796670','2022-11-18 21:42:00',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14754,'4000','121668796670','2022-11-18 21:42:00',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(14755,'1110','121668797079','2022-11-18 22:23:20',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14756,'5500','121668797079','2022-11-18 22:23:20',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14757,'1000','121668797079','2022-11-18 22:23:20',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14758,'4000','121668797079','2022-11-18 22:23:20',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14759,'1110','121668799407','2022-11-18 22:43:02',NULL,1588.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(14760,'5500','121668799407','2022-11-18 22:43:02',1588.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14761,'1000','121668799407','2022-11-18 22:43:02',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14762,'4000','121668799407','2022-11-18 22:43:02',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(14763,'1110','121668805449','2022-11-19 00:04:37',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14764,'1110','121668805449','2022-11-19 00:04:37',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14765,'1110','121668805449','2022-11-19 00:04:37',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14766,'1110','121668805449','2022-11-19 00:04:37',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14767,'5500','121668805449','2022-11-19 00:04:37',1625.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14768,'1000','121668805449','2022-11-19 00:04:37',2540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14769,'4000','121668805449','2022-11-19 00:04:37',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14770,'4000','121668805449','2022-11-19 00:04:37',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(14771,'4000','121668805449','2022-11-19 00:04:37',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(14772,'4000','121668805449','2022-11-19 00:04:37',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14773,'1110','121668805523','2022-11-19 00:32:25',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14774,'5500','121668805523','2022-11-19 00:32:25',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14775,'1000','121668805523','2022-11-19 00:32:25',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14776,'4000','121668805523','2022-11-19 00:32:25',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14777,'1110','121668807162','2022-11-19 00:42:07',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(14778,'5500','121668807162','2022-11-19 00:42:07',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14779,'1000','121668807162','2022-11-19 00:42:07',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14780,'4000','121668807162','2022-11-19 00:42:07',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(14781,'1110','121668807735','2022-11-19 01:25:40',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14782,'5500','121668807735','2022-11-19 01:25:40',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14783,'1000','121668807735','2022-11-19 01:25:40',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14784,'4000','121668807735','2022-11-19 01:25:40',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14785,'1110','121668810345','2022-11-19 02:36:01',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14786,'5500','121668810345','2022-11-19 02:36:01',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14787,'1000','121668810345','2022-11-19 02:36:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14788,'4000','121668810345','2022-11-19 02:36:01',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14789,'1110','121668814566','2022-11-19 03:28:53',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14790,'5500','121668814566','2022-11-19 03:28:53',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14791,'1000','121668814566','2022-11-19 03:28:53',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14792,'4000','121668814566','2022-11-19 03:28:53',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14793,'1110','121668825370','2022-11-19 05:37:31',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14794,'1110','121668825370','2022-11-19 05:37:31',NULL,2474.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14795,'1110','121668825370','2022-11-19 05:37:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14796,'1110','121668825370','2022-11-19 05:37:31',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14797,'1110','121668825370','2022-11-19 05:37:31',NULL,251.50,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14798,'5500','121668825370','2022-11-19 05:37:31',3916.29,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14799,'1000','121668825370','2022-11-19 05:37:31',5200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14800,'4000','121668825370','2022-11-19 05:37:31',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14801,'4000','121668825370','2022-11-19 05:37:31',NULL,3250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14802,'4000','121668825370','2022-11-19 05:37:31',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14803,'4000','121668825370','2022-11-19 05:37:31',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(14804,'4000','121668825370','2022-11-19 05:37:31',NULL,270.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(14805,'1110','121668825455','2022-11-19 05:45:42',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14806,'1110','121668825455','2022-11-19 05:45:42',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14807,'5500','121668825455','2022-11-19 05:45:42',1100.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14808,'1000','121668825455','2022-11-19 05:45:42',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14809,'4000','121668825455','2022-11-19 05:45:42',NULL,1250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14810,'4000','121668825455','2022-11-19 05:45:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14811,'1110','121668833890','2022-11-19 07:58:25',NULL,372.90,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14812,'5500','121668833890','2022-11-19 07:58:25',372.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14813,'1000','121668833890','2022-11-19 07:58:25',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14814,'4000','121668833890','2022-11-19 07:58:25',NULL,750.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14815,'1110','121668833932','2022-11-19 07:59:59',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14816,'1110','121668833932','2022-11-19 07:59:59',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14817,'5500','121668833932','2022-11-19 07:59:59',533.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14818,'1000','121668833932','2022-11-19 07:59:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14819,'4000','121668833932','2022-11-19 07:59:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14820,'4000','121668833932','2022-11-19 07:59:59',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14821,'1110','121668835991','2022-11-19 08:38:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14822,'1110','121668835991','2022-11-19 08:38:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14823,'5500','121668835991','2022-11-19 08:38:24',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14824,'1000','121668835991','2022-11-19 08:38:24',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14825,'4000','121668835991','2022-11-19 08:38:24',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14826,'4000','121668835991','2022-11-19 08:38:24',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14827,'1110','121668847995','2022-11-19 11:57:23',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14828,'1110','121668847995','2022-11-19 11:57:23',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14829,'1110','121668847995','2022-11-19 11:57:23',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14830,'1110','121668847995','2022-11-19 11:57:23',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14831,'5500','121668847995','2022-11-19 11:57:23',1601.39,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14832,'1000','121668847995','2022-11-19 11:57:23',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14833,'4000','121668847995','2022-11-19 11:57:23',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14834,'4000','121668847995','2022-11-19 11:57:23',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14835,'4000','121668847995','2022-11-19 11:57:23',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14836,'4000','121668847995','2022-11-19 11:57:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14837,'1110','121668848249','2022-11-19 12:52:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14838,'5500','121668848249','2022-11-19 12:52:20',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14839,'1000','121668848249','2022-11-19 12:52:20',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14840,'4000','121668848249','2022-11-19 12:52:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14841,'1110','121668851565','2022-11-19 14:11:01',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14842,'5500','121668851565','2022-11-19 14:11:01',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14843,'1000','121668851565','2022-11-19 14:11:01',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14844,'4000','121668851565','2022-11-19 14:11:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(14845,'1110','121668861366','2022-11-19 15:36:21',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14846,'5500','121668861366','2022-11-19 15:36:21',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14847,'1000','121668861366','2022-11-19 15:36:21',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14848,'4000','121668861366','2022-11-19 15:36:21',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14849,'1110','121668861386','2022-11-19 15:46:08',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14850,'5500','121668861386','2022-11-19 15:46:08',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14851,'1000','121668861386','2022-11-19 15:46:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14852,'4000','121668861386','2022-11-19 15:46:08',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14853,'1110','121668861972','2022-11-19 16:38:23',NULL,3300.00,'','12','1','Inventory sold','1','','sales','5099873011737','','No',NULL,NULL,''),(14854,'1110','121668861972','2022-11-19 16:38:23',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(14855,'1110','121668861972','2022-11-19 16:38:23',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(14856,'5500','121668861972','2022-11-19 16:38:23',3460.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14857,'1000','121668861972','2022-11-19 16:38:23',4740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14858,'4000','121668861972','2022-11-19 16:38:23',NULL,4500.00,'','12','1','Good sold','1','','sales','5099873011737','','No',NULL,NULL,''),(14859,'4000','121668861972','2022-11-19 16:38:23',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(14860,'4000','121668861972','2022-11-19 16:38:23',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(14861,'1110','121668865115','2022-11-19 17:24:50',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14862,'5500','121668865115','2022-11-19 17:24:50',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14863,'1000','121668865115','2022-11-19 17:24:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14864,'4000','121668865115','2022-11-19 17:24:50',NULL,270.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(14865,'1110','121668867895','2022-11-19 17:31:45',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(14866,'5500','121668867895','2022-11-19 17:31:45',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14867,'1000','121668867895','2022-11-19 17:31:45',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14868,'4000','121668867895','2022-11-19 17:31:45',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(14869,'1110','121668868311','2022-11-19 17:33:32',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(14870,'5500','121668868311','2022-11-19 17:33:32',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14871,'1000','121668868311','2022-11-19 17:33:32',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14872,'4000','121668868311','2022-11-19 17:33:32',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(14873,'1110','121668869347','2022-11-19 17:49:47',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14874,'1110','121668869347','2022-11-19 17:49:47',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14875,'5500','121668869347','2022-11-19 17:49:47',1073.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14876,'1000','121668869347','2022-11-19 17:49:47',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14877,'4000','121668869347','2022-11-19 17:49:47',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14878,'4000','121668869347','2022-11-19 17:49:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(14879,'1110','121668869815','2022-11-19 17:57:07',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14880,'5500','121668869815','2022-11-19 17:57:07',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14881,'1000','121668869815','2022-11-19 17:57:07',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14882,'4000','121668869815','2022-11-19 17:57:07',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14883,'1110','121668869833','2022-11-19 18:07:53',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(14884,'1110','121668869833','2022-11-19 18:07:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14885,'5500','121668869833','2022-11-19 18:07:53',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14886,'1000','121668869833','2022-11-19 18:07:53',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14887,'4000','121668869833','2022-11-19 18:07:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(14888,'4000','121668869833','2022-11-19 18:07:53',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14889,'1110','121668870481','2022-11-19 18:26:33',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14890,'1110','121668870481','2022-11-19 18:26:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14891,'1110','121668870481','2022-11-19 18:26:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(14892,'1110','121668870481','2022-11-19 18:26:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(14893,'1110','121668870481','2022-11-19 18:26:33',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(14894,'1110','121668870481','2022-11-19 18:26:33',NULL,970.00,'','12','1','Inventory sold','1','','sales','8906120780179','','No',NULL,NULL,''),(14895,'5500','121668870481','2022-11-19 18:26:33',1691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14896,'1000','121668870481','2022-11-19 18:26:33',2630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14897,'4000','121668870481','2022-11-19 18:26:33',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(14898,'4000','121668870481','2022-11-19 18:26:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14899,'4000','121668870481','2022-11-19 18:26:33',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(14900,'4000','121668870481','2022-11-19 18:26:33',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(14901,'4000','121668870481','2022-11-19 18:26:33',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(14902,'4000','121668870481','2022-11-19 18:26:33',NULL,1600.00,'','12','1','Good sold','1','','sales','8906120780179','','No',NULL,NULL,''),(14903,'1110','121668872221','2022-11-19 18:37:13',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(14904,'5500','121668872221','2022-11-19 18:37:13',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14905,'1000','121668872221','2022-11-19 18:37:13',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14906,'4000','121668872221','2022-11-19 18:37:13',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(14907,'1110','121668874031','2022-11-19 19:12:12',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(14908,'1110','121668874031','2022-11-19 19:12:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14909,'5500','121668874031','2022-11-19 19:12:12',763.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14910,'1000','121668874031','2022-11-19 19:12:12',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14911,'4000','121668874031','2022-11-19 19:12:12',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(14912,'4000','121668874031','2022-11-19 19:12:12',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14913,'1110','121668874738','2022-11-19 19:21:12',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(14914,'1110','121668874738','2022-11-19 19:21:12',NULL,612.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14915,'5500','121668874738','2022-11-19 19:21:12',2528.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14916,'1000','121668874738','2022-11-19 19:21:12',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14917,'4000','121668874738','2022-11-19 19:21:12',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(14918,'4000','121668874738','2022-11-19 19:21:12',NULL,1000.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(14919,'1110','121668874912','2022-11-19 19:34:36',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14920,'5500','121668874912','2022-11-19 19:34:36',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14921,'1000','121668874912','2022-11-19 19:34:36',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14922,'4000','121668874912','2022-11-19 19:34:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14923,'1110','121668875692','2022-11-19 19:35:46',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14924,'5500','121668875692','2022-11-19 19:35:46',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14925,'1000','121668875692','2022-11-19 19:35:46',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14926,'4000','121668875692','2022-11-19 19:35:46',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(14927,'1110','121668876523','2022-11-19 19:49:07',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14928,'5500','121668876523','2022-11-19 19:49:07',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14929,'1000','121668876523','2022-11-19 19:49:07',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14930,'4000','121668876523','2022-11-19 19:49:07',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14931,'1110','121668876554','2022-11-19 21:45:41',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(14932,'1110','121668876554','2022-11-19 21:45:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14933,'1110','121668876554','2022-11-19 21:45:41',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(14934,'1110','121668876554','2022-11-19 21:45:41',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(14935,'1110','121668876554','2022-11-19 21:45:41',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(14936,'5500','121668876554','2022-11-19 21:45:41',397.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14937,'1000','121668876554','2022-11-19 21:45:41',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14938,'4000','121668876554','2022-11-19 21:45:41',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(14939,'4000','121668876554','2022-11-19 21:45:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(14940,'4000','121668876554','2022-11-19 21:45:41',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(14941,'4000','121668876554','2022-11-19 21:45:41',NULL,250.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(14942,'4000','121668876554','2022-11-19 21:45:41',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(14943,'1110','121668886660','2022-11-19 22:38:49',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14944,'1110','121668886660','2022-11-19 22:38:49',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14945,'1110','121668886660','2022-11-19 22:38:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(14946,'5500','121668886660','2022-11-19 22:38:49',379.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14947,'1000','121668886660','2022-11-19 22:38:49',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14948,'4000','121668886660','2022-11-19 22:38:49',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14949,'4000','121668886660','2022-11-19 22:38:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(14950,'4000','121668886660','2022-11-19 22:38:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(14951,'1110','121668886744','2022-11-19 22:50:01',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(14952,'1110','121668886744','2022-11-19 22:50:01',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14953,'5500','121668886744','2022-11-19 22:50:01',915.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14954,'1000','121668886744','2022-11-19 22:50:01',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14955,'4000','121668886744','2022-11-19 22:50:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(14956,'4000','121668886744','2022-11-19 22:50:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(14957,'1110','121668887409','2022-11-19 22:52:41',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(14958,'5500','121668887409','2022-11-19 22:52:41',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14959,'1000','121668887409','2022-11-19 22:52:41',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14960,'4000','121668887409','2022-11-19 22:52:41',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(14961,'1110','121668887583','2022-11-19 23:10:15',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(14962,'1110','121668887583','2022-11-19 23:10:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(14963,'1110','121668887583','2022-11-19 23:10:15',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14964,'5500','121668887583','2022-11-19 23:10:15',2197.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14965,'1000','121668887583','2022-11-19 23:10:15',3020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14966,'4000','121668887583','2022-11-19 23:10:15',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(14967,'4000','121668887583','2022-11-19 23:10:15',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(14968,'4000','121668887583','2022-11-19 23:10:15',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(14969,'1110','121668888622','2022-11-19 23:11:03',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(14970,'5500','121668888622','2022-11-19 23:11:03',1130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14971,'1000','121668888622','2022-11-19 23:11:03',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14972,'4000','121668888622','2022-11-19 23:11:03',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(14973,'1110','121668888904','2022-11-19 23:15:19',NULL,1612.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(14974,'5500','121668888904','2022-11-19 23:15:19',1612.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14975,'1000','121668888904','2022-11-19 23:15:19',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14976,'4000','121668888904','2022-11-19 23:15:19',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(14977,'1110','121668889843','2022-11-19 23:30:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14978,'5500','121668889843','2022-11-19 23:30:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14979,'1000','121668889843','2022-11-19 23:30:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14980,'4000','121668889843','2022-11-19 23:30:53',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(14981,'1110','121668889859','2022-11-19 23:55:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14982,'5500','121668889859','2022-11-19 23:55:58',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14983,'1000','121668889859','2022-11-19 23:55:58',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14984,'4000','121668889859','2022-11-19 23:55:58',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(14985,'1110','121668893031','2022-11-20 00:36:38',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(14986,'5500','121668893031','2022-11-20 00:36:38',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14987,'1000','121668893031','2022-11-20 00:36:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14988,'4000','121668893031','2022-11-20 00:36:38',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(14989,'1110','121668893802','2022-11-20 00:38:11',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14990,'5500','121668893802','2022-11-20 00:38:11',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14991,'1000','121668893802','2022-11-20 00:38:11',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14992,'4000','121668893802','2022-11-20 00:38:11',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(14993,'1110','121668893902','2022-11-20 00:40:36',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(14994,'5500','121668893902','2022-11-20 00:40:36',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14995,'1000','121668893902','2022-11-20 00:40:36',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(14996,'4000','121668893902','2022-11-20 00:40:36',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(14997,'1110','121668895047','2022-11-20 00:57:41',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(14998,'5500','121668895047','2022-11-20 00:57:41',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(14999,'1000','121668895047','2022-11-20 00:57:41',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15000,'4000','121668895047','2022-11-20 00:57:41',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(15001,'1110','121668895466','2022-11-20 01:52:38',NULL,5685.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15002,'1110','121668895466','2022-11-20 01:52:38',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15003,'1110','121668895466','2022-11-20 01:52:38',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15004,'5500','121668895466','2022-11-20 01:52:38',5889.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15005,'1000','121668895466','2022-11-20 01:52:38',8020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15006,'4000','121668895466','2022-11-20 01:52:38',NULL,7700.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15007,'4000','121668895466','2022-11-20 01:52:38',NULL,160.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15008,'4000','121668895466','2022-11-20 01:52:38',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15009,'1110','121668898671','2022-11-20 02:02:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15010,'5500','121668898671','2022-11-20 02:02:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15011,'1000','121668898671','2022-11-20 02:02:58',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15012,'4000','121668898671','2022-11-20 02:02:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15013,'1110','121668898991','2022-11-20 02:24:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15014,'1110','121668898991','2022-11-20 02:24:10',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15015,'5500','121668898991','2022-11-20 02:24:10',1306.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15016,'1000','121668898991','2022-11-20 02:24:10',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15017,'4000','121668898991','2022-11-20 02:24:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15018,'4000','121668898991','2022-11-20 02:24:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15019,'1110','121668900254','2022-11-20 02:34:39',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(15020,'1110','121668900254','2022-11-20 02:34:39',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(15021,'1110','121668900254','2022-11-20 02:34:39',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15022,'1110','121668900254','2022-11-20 02:34:39',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15023,'5500','121668900254','2022-11-20 02:34:39',2593.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15024,'1000','121668900254','2022-11-20 02:34:39',3650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15025,'4000','121668900254','2022-11-20 02:34:39',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(15026,'4000','121668900254','2022-11-20 02:34:39',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(15027,'4000','121668900254','2022-11-20 02:34:39',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15028,'4000','121668900254','2022-11-20 02:34:39',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15029,'1110','121668900888','2022-11-20 02:44:21',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15030,'5500','121668900888','2022-11-20 02:44:21',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15031,'1000','121668900888','2022-11-20 02:44:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15032,'4000','121668900888','2022-11-20 02:44:21',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15033,'1110','121668901508','2022-11-20 03:51:01',NULL,1000.00,'','12','1','Inventory sold','1','','sales','6973322690362','','No',NULL,NULL,''),(15034,'1110','121668901508','2022-11-20 03:51:01',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(15035,'5500','121668901508','2022-11-20 03:51:01',1059.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15036,'1000','121668901508','2022-11-20 03:51:01',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15037,'4000','121668901508','2022-11-20 03:51:01',NULL,1750.00,'','12','1','Good sold','1','','sales','6973322690362','','No',NULL,NULL,''),(15038,'4000','121668901508','2022-11-20 03:51:01',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(15039,'1110','121668905496','2022-11-20 03:54:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15040,'5500','121668905496','2022-11-20 03:54:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15041,'1000','121668905496','2022-11-20 03:54:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15042,'4000','121668905496','2022-11-20 03:54:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15043,'1110','121668905650','2022-11-20 05:12:38',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15044,'5500','121668905650','2022-11-20 05:12:38',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15045,'1000','121668905650','2022-11-20 05:12:38',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15046,'4000','121668905650','2022-11-20 05:12:38',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15047,'1110','121668926837','2022-11-20 12:10:00',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15048,'1110','121668926837','2022-11-20 12:10:00',NULL,119.33,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(15049,'5500','121668926837','2022-11-20 12:10:00',503.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15050,'1000','121668926837','2022-11-20 12:10:00',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15051,'4000','121668926837','2022-11-20 12:10:00',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15052,'4000','121668926837','2022-11-20 12:10:00',NULL,200.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(15053,'1110','121668935418','2022-11-20 12:16:58',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(15054,'1110','121668935418','2022-11-20 12:16:58',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15055,'1110','121668935418','2022-11-20 12:16:58',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15056,'5500','121668935418','2022-11-20 12:16:58',2407.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15057,'1000','121668935418','2022-11-20 12:16:58',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15058,'4000','121668935418','2022-11-20 12:16:58',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(15059,'4000','121668935418','2022-11-20 12:16:58',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15060,'4000','121668935418','2022-11-20 12:16:58',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15061,'1110','121668936272','2022-11-20 12:26:31',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15062,'1110','121668936272','2022-11-20 12:26:31',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(15063,'1110','121668936272','2022-11-20 12:26:31',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15064,'1110','121668936272','2022-11-20 12:26:31',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15065,'5500','121668936272','2022-11-20 12:26:31',2514.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15066,'1000','121668936272','2022-11-20 12:26:31',3460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15067,'4000','121668936272','2022-11-20 12:26:31',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15068,'4000','121668936272','2022-11-20 12:26:31',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(15069,'4000','121668936272','2022-11-20 12:26:31',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15070,'4000','121668936272','2022-11-20 12:26:31',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15071,'1110','121668936845','2022-11-20 12:43:13',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387001451','','No',NULL,NULL,''),(15072,'5500','121668936845','2022-11-20 12:43:13',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15073,'1000','121668936845','2022-11-20 12:43:13',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15074,'4000','121668936845','2022-11-20 12:43:13',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387001451','','No',NULL,NULL,''),(15075,'1110','121668937397','2022-11-20 12:44:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(15076,'5500','121668937397','2022-11-20 12:44:40',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15077,'1000','121668937397','2022-11-20 12:44:40',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15078,'4000','121668937397','2022-11-20 12:44:40',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(15079,'1110','121668940362','2022-11-20 13:33:07',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15080,'5500','121668940362','2022-11-20 13:33:07',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15081,'1000','121668940362','2022-11-20 13:33:07',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15082,'4000','121668940362','2022-11-20 13:33:07',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15083,'1110','121668940659','2022-11-20 13:42:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15084,'5500','121668940659','2022-11-20 13:42:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15085,'1000','121668940659','2022-11-20 13:42:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15086,'4000','121668940659','2022-11-20 13:42:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15087,'1110','121668940980','2022-11-20 15:25:52',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(15088,'5500','121668940980','2022-11-20 15:25:52',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15089,'1000','121668940980','2022-11-20 15:25:52',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15090,'4000','121668940980','2022-11-20 15:25:52',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(15091,'1110','121668947158','2022-11-20 15:50:33',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15092,'1110','121668947158','2022-11-20 15:50:33',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15093,'1110','121668947158','2022-11-20 15:50:33',NULL,1587.60,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15094,'1110','121668947158','2022-11-20 15:50:33',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15095,'1110','121668947158','2022-11-20 15:50:33',NULL,1458.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(15096,'1110','121668947158','2022-11-20 15:50:33',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(15097,'1110','121668947158','2022-11-20 15:50:33',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(15098,'5500','121668947158','2022-11-20 15:50:33',7221.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15099,'1000','121668947158','2022-11-20 15:50:33',11100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15100,'4000','121668947158','2022-11-20 15:50:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15101,'4000','121668947158','2022-11-20 15:50:33',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15102,'4000','121668947158','2022-11-20 15:50:33',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15103,'4000','121668947158','2022-11-20 15:50:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15104,'4000','121668947158','2022-11-20 15:50:33',NULL,2700.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(15105,'4000','121668947158','2022-11-20 15:50:33',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(15106,'4000','121668947158','2022-11-20 15:50:33',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(15107,'1110','121668948656','2022-11-20 16:35:28',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(15108,'1110','121668948656','2022-11-20 16:35:28',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(15109,'5500','121668948656','2022-11-20 16:35:28',411.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15110,'1000','121668948656','2022-11-20 16:35:28',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15111,'4000','121668948656','2022-11-20 16:35:28',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(15112,'4000','121668948656','2022-11-20 16:35:28',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(15113,'1110','121668954505','2022-11-20 17:31:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15114,'5500','121668954505','2022-11-20 17:31:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15115,'1000','121668954505','2022-11-20 17:31:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15116,'4000','121668954505','2022-11-20 17:31:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15117,'1110','121668954800','2022-11-20 17:50:00',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15118,'5500','121668954800','2022-11-20 17:50:00',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15119,'1000','121668954800','2022-11-20 17:50:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15120,'4000','121668954800','2022-11-20 17:50:00',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15121,'1110','121668958787','2022-11-20 18:40:07',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(15122,'1110','121668958787','2022-11-20 18:40:07',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15123,'5500','121668958787','2022-11-20 18:40:07',221.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15124,'1000','121668958787','2022-11-20 18:40:07',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15125,'4000','121668958787','2022-11-20 18:40:07',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(15126,'4000','121668958787','2022-11-20 18:40:07',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15127,'1110','121668958811','2022-11-20 18:45:20',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(15128,'1110','121668958811','2022-11-20 18:45:20',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15129,'5500','121668958811','2022-11-20 18:45:20',217.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15130,'1000','121668958811','2022-11-20 18:45:20',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15131,'4000','121668958811','2022-11-20 18:45:20',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(15132,'4000','121668958811','2022-11-20 18:45:20',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15133,'1110','121668959150','2022-11-20 18:50:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15134,'5500','121668959150','2022-11-20 18:50:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15135,'1000','121668959150','2022-11-20 18:50:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15136,'4000','121668959150','2022-11-20 18:50:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15137,'1110','121668959459','2022-11-20 19:00:54',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15138,'1110','121668959459','2022-11-20 19:00:54',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15139,'5500','121668959459','2022-11-20 19:00:54',1744.05,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15140,'1000','121668959459','2022-11-20 19:00:54',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15141,'4000','121668959459','2022-11-20 19:00:54',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15142,'4000','121668959459','2022-11-20 19:00:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15143,'1110','121668960059','2022-11-20 19:30:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15144,'5500','121668960059','2022-11-20 19:30:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15145,'1000','121668960059','2022-11-20 19:30:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15146,'4000','121668960059','2022-11-20 19:30:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15147,'1110','121668963224','2022-11-20 20:32:10',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15148,'1110','121668963224','2022-11-20 20:32:10',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(15149,'5500','121668963224','2022-11-20 20:32:10',1198.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15150,'1000','121668963224','2022-11-20 20:32:10',1580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15151,'4000','121668963224','2022-11-20 20:32:10',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15152,'4000','121668963224','2022-11-20 20:32:10',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(15153,'1110','121668965587','2022-11-20 20:33:23',NULL,1139.00,'','12','1','Inventory sold','1','','sales','6001452260909','','No',NULL,NULL,''),(15154,'5500','121668965587','2022-11-20 20:33:23',1139.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15155,'1000','121668965587','2022-11-20 20:33:23',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15156,'4000','121668965587','2022-11-20 20:33:23',NULL,1700.00,'','12','1','Good sold','1','','sales','6001452260909','','No',NULL,NULL,''),(15157,'1110','121668966000','2022-11-20 21:15:00',NULL,1552.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(15158,'5500','121668966000','2022-11-20 21:15:00',1552.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15159,'1000','121668966000','2022-11-20 21:15:00',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15160,'4000','121668966000','2022-11-20 21:15:00',NULL,2100.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(15161,'1110','121668968106','2022-11-20 21:24:39',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15162,'1110','121668968106','2022-11-20 21:24:39',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(15163,'1110','121668968106','2022-11-20 21:24:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15164,'1110','121668968106','2022-11-20 21:24:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15165,'5500','121668968106','2022-11-20 21:24:39',710.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15166,'1000','121668968106','2022-11-20 21:24:39',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15167,'4000','121668968106','2022-11-20 21:24:39',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15168,'4000','121668968106','2022-11-20 21:24:39',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(15169,'4000','121668968106','2022-11-20 21:24:39',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15170,'4000','121668968106','2022-11-20 21:24:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15171,'1110','121668970356','2022-11-20 21:59:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15172,'5500','121668970356','2022-11-20 21:59:37',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15173,'1000','121668970356','2022-11-20 21:59:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15174,'4000','121668970356','2022-11-20 21:59:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15175,'1110','121668970782','2022-11-20 22:00:08',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15176,'5500','121668970782','2022-11-20 22:00:08',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15177,'1000','121668970782','2022-11-20 22:00:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15178,'4000','121668970782','2022-11-20 22:00:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15179,'1110','121668970813','2022-11-20 22:32:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15180,'1110','121668970813','2022-11-20 22:32:25',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(15181,'5500','121668970813','2022-11-20 22:32:25',251.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15182,'1000','121668970813','2022-11-20 22:32:25',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15183,'4000','121668970813','2022-11-20 22:32:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15184,'4000','121668970813','2022-11-20 22:32:25',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(15185,'1110','121668972753','2022-11-20 22:45:42',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15186,'1110','121668972753','2022-11-20 22:45:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15187,'5500','121668972753','2022-11-20 22:45:42',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15188,'1000','121668972753','2022-11-20 22:45:42',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15189,'4000','121668972753','2022-11-20 22:45:42',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15190,'4000','121668972753','2022-11-20 22:45:42',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15191,'1110','121668973883','2022-11-20 23:14:37',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15192,'5500','121668973883','2022-11-20 23:14:37',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15193,'1000','121668973883','2022-11-20 23:14:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15194,'4000','121668973883','2022-11-20 23:14:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15195,'1110','121668979294','2022-11-21 00:21:52',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(15196,'5500','121668979294','2022-11-21 00:21:52',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15197,'1000','121668979294','2022-11-21 00:21:52',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15198,'4000','121668979294','2022-11-21 00:21:52',NULL,440.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(15199,'1110','121668980007','2022-11-21 00:33:39',NULL,450.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(15200,'5500','121668980007','2022-11-21 00:33:39',450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15201,'1000','121668980007','2022-11-21 00:33:39',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15202,'4000','121668980007','2022-11-21 00:33:39',NULL,600.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(15203,'1110','121668980031','2022-11-21 00:36:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15204,'5500','121668980031','2022-11-21 00:36:40',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15205,'1000','121668980031','2022-11-21 00:36:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15206,'4000','121668980031','2022-11-21 00:36:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15207,'1110','121668980205','2022-11-21 01:44:12',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(15208,'5500','121668980205','2022-11-21 01:44:12',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15209,'1000','121668980205','2022-11-21 01:44:12',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15210,'4000','121668980205','2022-11-21 01:44:12',NULL,220.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(15211,'1110','121668984259','2022-11-21 02:40:45',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15212,'1110','121668984259','2022-11-21 02:40:45',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15213,'5500','121668984259','2022-11-21 02:40:45',842.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15214,'1000','121668984259','2022-11-21 02:40:45',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15215,'4000','121668984259','2022-11-21 02:40:45',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15216,'4000','121668984259','2022-11-21 02:40:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15217,'1110','121668996857','2022-11-21 05:15:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15218,'1110','121668996857','2022-11-21 05:15:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15219,'5500','121668996857','2022-11-21 05:15:43',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15220,'1000','121668996857','2022-11-21 05:15:43',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15221,'4000','121668996857','2022-11-21 05:15:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15222,'4000','121668996857','2022-11-21 05:15:43',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15223,'1110','121668996953','2022-11-21 05:59:56',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15224,'1110','121668996953','2022-11-21 05:59:56',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15225,'1110','121668996953','2022-11-21 05:59:56',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(15226,'1110','121668996953','2022-11-21 05:59:56',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15227,'5500','121668996953','2022-11-21 05:59:56',1211.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15228,'1000','121668996953','2022-11-21 05:59:56',1960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15229,'4000','121668996953','2022-11-21 05:59:56',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15230,'4000','121668996953','2022-11-21 05:59:56',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15231,'4000','121668996953','2022-11-21 05:59:56',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''); INSERT INTO `debitcredit` VALUES (15232,'4000','121668996953','2022-11-21 05:59:56',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15233,'1110','121669000079','2022-11-21 06:20:26',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15234,'5500','121669000079','2022-11-21 06:20:26',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15235,'1000','121669000079','2022-11-21 06:20:26',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15236,'4000','121669000079','2022-11-21 06:20:26',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15237,'1110','121669000833','2022-11-21 06:36:23',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15238,'1110','121669000833','2022-11-21 06:36:23',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15239,'5500','121669000833','2022-11-21 06:36:23',868.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15240,'1000','121669000833','2022-11-21 06:36:23',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15241,'4000','121669000833','2022-11-21 06:36:23',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15242,'4000','121669000833','2022-11-21 06:36:23',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15243,'1110','121669010321','2022-11-21 10:00:27',NULL,650.00,'','12','1','Inventory sold','1','','sales','4820229031984','','No',NULL,NULL,''),(15244,'5500','121669010321','2022-11-21 10:00:27',650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15245,'1000','121669010321','2022-11-21 10:00:27',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15246,'4000','121669010321','2022-11-21 10:00:27',NULL,900.00,'','12','1','Good sold','1','','sales','4820229031984','','No',NULL,NULL,''),(15247,'1110','121669051865','2022-11-21 20:46:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(15248,'5500','121669051865','2022-11-21 20:46:15',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15249,'1000','121669051865','2022-11-21 20:46:15',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15250,'4000','121669051865','2022-11-21 20:46:15',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(15251,'1110','121669058310','2022-11-21 23:05:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15252,'5500','121669058310','2022-11-21 23:05:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15253,'1000','121669058310','2022-11-21 23:05:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15254,'4000','121669058310','2022-11-21 23:05:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15255,'1110','121669061133','2022-11-21 23:29:11',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15256,'5500','121669061133','2022-11-21 23:29:11',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15257,'1000','121669061133','2022-11-21 23:29:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15258,'4000','121669061133','2022-11-21 23:29:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15259,'1110','121669062558','2022-11-21 23:56:18',NULL,543.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(15260,'1110','121669062558','2022-11-21 23:56:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15261,'5500','121669062558','2022-11-21 23:56:18',596.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15262,'1000','121669062558','2022-11-21 23:56:18',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15263,'4000','121669062558','2022-11-21 23:56:18',NULL,950.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(15264,'4000','121669062558','2022-11-21 23:56:18',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15265,'1110','121669066056','2022-11-22 00:28:07',NULL,1809.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(15266,'5500','121669066056','2022-11-22 00:28:07',1809.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15267,'1000','121669066056','2022-11-22 00:28:07',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15268,'4000','121669066056','2022-11-22 00:28:07',NULL,2700.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(15269,'1110','121669068190','2022-11-22 01:25:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15270,'5500','121669068190','2022-11-22 01:25:55',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15271,'1000','121669068190','2022-11-22 01:25:55',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15272,'4000','121669068190','2022-11-22 01:25:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15273,'1110','121669140370','2022-11-22 22:54:20',NULL,1588.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(15274,'5500','121669140370','2022-11-22 22:54:20',1588.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15275,'1000','121669140370','2022-11-22 22:54:20',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15276,'4000','121669140370','2022-11-22 22:54:20',NULL,3000.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(15277,'1110','121669146869','2022-11-22 22:56:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15278,'5500','121669146869','2022-11-22 22:56:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15279,'1000','121669146869','2022-11-22 22:56:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15280,'4000','121669146869','2022-11-22 22:56:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15281,'1110','121669147089','2022-11-22 23:04:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15282,'1110','121669147089','2022-11-22 23:04:49',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15283,'5500','121669147089','2022-11-22 23:04:49',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15284,'1000','121669147089','2022-11-22 23:04:49',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15285,'4000','121669147089','2022-11-22 23:04:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15286,'4000','121669147089','2022-11-22 23:04:49',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15287,'1110','121669147499','2022-11-23 00:01:15',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15288,'1110','121669147499','2022-11-23 00:01:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15289,'1110','121669147499','2022-11-23 00:01:15',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15290,'5500','121669147499','2022-11-23 00:01:15',283.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15291,'1000','121669147499','2022-11-23 00:01:15',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15292,'4000','121669147499','2022-11-23 00:01:15',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15293,'4000','121669147499','2022-11-23 00:01:15',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15294,'4000','121669147499','2022-11-23 00:01:15',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15295,'1110','121669150894','2022-11-23 00:02:49',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(15296,'5500','121669150894','2022-11-23 00:02:49',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15297,'1000','121669150894','2022-11-23 00:02:49',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15298,'4000','121669150894','2022-11-23 00:02:49',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(15299,'1110','121669153002','2022-11-23 00:37:11',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15300,'5500','121669153002','2022-11-23 00:37:11',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15301,'1000','121669153002','2022-11-23 00:37:11',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15302,'4000','121669153002','2022-11-23 00:37:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15303,'1110','121669153037','2022-11-23 00:54:10',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15304,'1110','121669153037','2022-11-23 00:54:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15305,'1110','121669153037','2022-11-23 00:54:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(15306,'5500','121669153037','2022-11-23 00:54:10',458.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15307,'1000','121669153037','2022-11-23 00:54:10',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15308,'4000','121669153037','2022-11-23 00:54:10',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15309,'4000','121669153037','2022-11-23 00:54:10',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15310,'4000','121669153037','2022-11-23 00:54:10',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(15311,'1110','121669154176','2022-11-23 00:56:35',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15312,'5500','121669154176','2022-11-23 00:56:35',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15313,'1000','121669154176','2022-11-23 00:56:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15314,'4000','121669154176','2022-11-23 00:56:35',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15315,'1110','121669154200','2022-11-23 01:10:09',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15316,'1110','121669154200','2022-11-23 01:10:09',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(15317,'1110','121669154200','2022-11-23 01:10:09',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15318,'5500','121669154200','2022-11-23 01:10:09',486.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15319,'1000','121669154200','2022-11-23 01:10:09',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15320,'4000','121669154200','2022-11-23 01:10:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15321,'4000','121669154200','2022-11-23 01:10:09',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(15322,'4000','121669154200','2022-11-23 01:10:09',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15323,'1110','121669228285','2022-11-23 21:31:35',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(15324,'5500','121669228285','2022-11-23 21:31:35',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15325,'1000','121669228285','2022-11-23 21:31:35',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15326,'4000','121669228285','2022-11-23 21:31:35',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(15327,'1110','121669228303','2022-11-23 22:26:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(15328,'5500','121669228303','2022-11-23 22:26:16',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15329,'1000','121669228303','2022-11-23 22:26:16',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15330,'4000','121669228303','2022-11-23 22:26:16',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(15331,'1110','121669231717','2022-11-23 22:51:32',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(15332,'1110','121669231717','2022-11-23 22:51:32',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(15333,'1110','121669231717','2022-11-23 22:51:32',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15334,'5500','121669231717','2022-11-23 22:51:32',1822.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15335,'1000','121669231717','2022-11-23 22:51:32',3130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15336,'4000','121669231717','2022-11-23 22:51:32',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(15337,'4000','121669231717','2022-11-23 22:51:32',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(15338,'4000','121669231717','2022-11-23 22:51:32',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15339,'1110','121669233308','2022-11-24 00:02:33',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(15340,'5500','121669233308','2022-11-24 00:02:33',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15341,'1000','121669233308','2022-11-24 00:02:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15342,'4000','121669233308','2022-11-24 00:02:33',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(15343,'1110','121669237514','2022-11-24 00:10:48',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(15344,'5500','121669237514','2022-11-24 00:10:48',3250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15345,'1000','121669237514','2022-11-24 00:10:48',4350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15346,'4000','121669237514','2022-11-24 00:10:48',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(15347,'1110','121669238022','2022-11-24 00:23:57',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(15348,'5500','121669238022','2022-11-24 00:23:57',177.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15349,'1000','121669238022','2022-11-24 00:23:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15350,'4000','121669238022','2022-11-24 00:23:57',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(15351,'1110','121669315954','2022-11-24 21:53:19',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15352,'5500','121669315954','2022-11-24 21:53:19',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15353,'1000','121669315954','2022-11-24 21:53:19',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15354,'4000','121669315954','2022-11-24 21:53:19',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(15355,'1110','121669316007','2022-11-24 23:08:47',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15356,'1110','121669316007','2022-11-24 23:08:47',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15357,'5500','121669316007','2022-11-24 23:08:47',1113.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15358,'1000','121669316007','2022-11-24 23:08:47',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15359,'4000','121669316007','2022-11-24 23:08:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15360,'4000','121669316007','2022-11-24 23:08:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15361,'1110','121669320605','2022-11-24 23:14:25',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(15362,'5500','121669320605','2022-11-24 23:14:25',1916.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15363,'1000','121669320605','2022-11-24 23:14:25',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15364,'4000','121669320605','2022-11-24 23:14:25',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(15365,'1110','121669321184','2022-11-24 23:20:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15366,'1110','121669321184','2022-11-24 23:20:29',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15367,'1110','121669321184','2022-11-24 23:20:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(15368,'5500','121669321184','2022-11-24 23:20:29',408.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15369,'1000','121669321184','2022-11-24 23:20:29',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15370,'4000','121669321184','2022-11-24 23:20:29',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15371,'4000','121669321184','2022-11-24 23:20:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15372,'4000','121669321184','2022-11-24 23:20:29',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(15373,'1110','121669322965','2022-11-25 00:51:20',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(15374,'1110','121669322965','2022-11-25 00:51:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15375,'1110','121669322965','2022-11-25 00:51:20',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(15376,'5500','121669322965','2022-11-25 00:51:20',862.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15377,'1000','121669322965','2022-11-25 00:51:20',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15378,'4000','121669322965','2022-11-25 00:51:20',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(15379,'4000','121669322965','2022-11-25 00:51:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15380,'4000','121669322965','2022-11-25 00:51:20',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(15381,'1110','121669326729','2022-11-25 00:52:33',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15382,'1110','121669326729','2022-11-25 00:52:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(15383,'5500','121669326729','2022-11-25 00:52:33',827.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15384,'1000','121669326729','2022-11-25 00:52:33',1430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15385,'4000','121669326729','2022-11-25 00:52:33',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15386,'4000','121669326729','2022-11-25 00:52:33',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(15387,'1110','121669329175','2022-11-25 01:33:14',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15388,'5500','121669329175','2022-11-25 01:33:14',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15389,'1000','121669329175','2022-11-25 01:33:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15390,'4000','121669329175','2022-11-25 01:33:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15391,'1110','121669329199','2022-11-25 02:52:55',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(15392,'1110','121669329199','2022-11-25 02:52:55',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(15393,'5500','121669329199','2022-11-25 02:52:55',4028.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15394,'1000','121669329199','2022-11-25 02:52:55',5750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15395,'4000','121669329199','2022-11-25 02:52:55',NULL,5500.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(15396,'4000','121669329199','2022-11-25 02:52:55',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(15397,'1110','121669358248','2022-11-25 10:04:42',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15398,'5500','121669358248','2022-11-25 10:04:42',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15399,'1000','121669358248','2022-11-25 10:04:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15400,'4000','121669358248','2022-11-25 10:04:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15401,'1110','121669359969','2022-11-25 10:07:00',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15402,'5500','121669359969','2022-11-25 10:07:00',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15403,'1000','121669359969','2022-11-25 10:07:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15404,'4000','121669359969','2022-11-25 10:07:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15405,'1110','121669360025','2022-11-25 10:16:10',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15406,'5500','121669360025','2022-11-25 10:16:10',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15407,'1000','121669360025','2022-11-25 10:16:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15408,'4000','121669360025','2022-11-25 10:16:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15409,'1110','121669360574','2022-11-25 10:18:00',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15410,'5500','121669360574','2022-11-25 10:18:00',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15411,'1000','121669360574','2022-11-25 10:18:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15412,'4000','121669360574','2022-11-25 10:18:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15413,'1110','121669366362','2022-11-25 15:21:59',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15414,'5500','121669366362','2022-11-25 15:21:59',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15415,'1000','121669366362','2022-11-25 15:21:59',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15416,'4000','121669366362','2022-11-25 15:21:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15417,'1110','121669378939','2022-11-25 15:30:12',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15418,'5500','121669378939','2022-11-25 15:30:12',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15419,'1000','121669378939','2022-11-25 15:30:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15420,'4000','121669378939','2022-11-25 15:30:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15421,'1110','121669379424','2022-11-25 15:37:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15422,'1110','121669379424','2022-11-25 15:37:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15423,'1110','121669379424','2022-11-25 15:37:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15424,'5500','121669379424','2022-11-25 15:37:20',433.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15425,'1000','121669379424','2022-11-25 15:37:20',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15426,'4000','121669379424','2022-11-25 15:37:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15427,'4000','121669379424','2022-11-25 15:37:20',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15428,'4000','121669379424','2022-11-25 15:37:20',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15429,'1110','121669379889','2022-11-25 15:40:38',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15430,'5500','121669379889','2022-11-25 15:40:38',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15431,'1000','121669379889','2022-11-25 15:40:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15432,'4000','121669379889','2022-11-25 15:40:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15433,'1110','121669385907','2022-11-25 17:18:44',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15434,'5500','121669385907','2022-11-25 17:18:44',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15435,'1000','121669385907','2022-11-25 17:18:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15436,'4000','121669385907','2022-11-25 17:18:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15437,'1110','121669402983','2022-11-25 22:03:48',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15438,'1110','121669402983','2022-11-25 22:03:48',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15439,'1110','121669402983','2022-11-25 22:03:48',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15440,'5500','121669402983','2022-11-25 22:03:48',658.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15441,'1000','121669402983','2022-11-25 22:03:48',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15442,'4000','121669402983','2022-11-25 22:03:48',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15443,'4000','121669402983','2022-11-25 22:03:48',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15444,'4000','121669402983','2022-11-25 22:03:48',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15445,'1110','121669404879','2022-11-25 22:35:06',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15446,'1110','121669404879','2022-11-25 22:35:06',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15447,'1110','121669404879','2022-11-25 22:35:06',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15448,'5500','121669404879','2022-11-25 22:35:06',617.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15449,'1000','121669404879','2022-11-25 22:35:06',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15450,'4000','121669404879','2022-11-25 22:35:06',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15451,'4000','121669404879','2022-11-25 22:35:06',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15452,'4000','121669404879','2022-11-25 22:35:06',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15453,'1110','121669405127','2022-11-25 23:13:11',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(15454,'5500','121669405127','2022-11-25 23:13:11',3870.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15455,'1000','121669405127','2022-11-25 23:13:11',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15456,'4000','121669405127','2022-11-25 23:13:11',NULL,5500.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(15457,'1110','121669407201','2022-11-26 00:05:18',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(15458,'1110','121669407201','2022-11-26 00:05:18',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15459,'1110','121669407201','2022-11-26 00:05:18',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15460,'5500','121669407201','2022-11-26 00:05:18',3643.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15461,'1000','121669407201','2022-11-26 00:05:18',5700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15462,'4000','121669407201','2022-11-26 00:05:18',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(15463,'4000','121669407201','2022-11-26 00:05:18',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15464,'4000','121669407201','2022-11-26 00:05:18',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15465,'1110','121669410328','2022-11-26 00:10:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15466,'1110','121669410328','2022-11-26 00:10:25',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15467,'5500','121669410328','2022-11-26 00:10:25',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15468,'1000','121669410328','2022-11-26 00:10:25',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15469,'4000','121669410328','2022-11-26 00:10:25',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15470,'4000','121669410328','2022-11-26 00:10:25',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15471,'1110','121669411715','2022-11-26 00:34:53',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(15472,'1110','121669411715','2022-11-26 00:34:53',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(15473,'1110','121669411715','2022-11-26 00:34:53',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15474,'1110','121669411715','2022-11-26 00:34:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15475,'1110','121669411715','2022-11-26 00:34:53',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15476,'5500','121669411715','2022-11-26 00:34:53',4941.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15477,'1000','121669411715','2022-11-26 00:34:53',7700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15478,'4000','121669411715','2022-11-26 00:34:53',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(15479,'4000','121669411715','2022-11-26 00:34:53',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(15480,'4000','121669411715','2022-11-26 00:34:53',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15481,'4000','121669411715','2022-11-26 00:34:53',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(15482,'4000','121669411715','2022-11-26 00:34:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15483,'1110','121669412142','2022-11-26 00:45:39',NULL,1231.00,'','12','1','Inventory sold','1','','sales','7794450091604','','No',NULL,NULL,''),(15484,'1110','121669412142','2022-11-26 00:45:39',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15485,'5500','121669412142','2022-11-26 00:45:39',1611.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15486,'1000','121669412142','2022-11-26 00:45:39',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15487,'4000','121669412142','2022-11-26 00:45:39',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091604','','No',NULL,NULL,''),(15488,'4000','121669412142','2022-11-26 00:45:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15489,'1110','121669413567','2022-11-26 01:01:20',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15490,'5500','121669413567','2022-11-26 01:01:20',696.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15491,'1000','121669413567','2022-11-26 01:01:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15492,'4000','121669413567','2022-11-26 01:01:20',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15493,'1110','121669413686','2022-11-26 01:04:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15494,'5500','121669413686','2022-11-26 01:04:21',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15495,'1000','121669413686','2022-11-26 01:04:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15496,'4000','121669413686','2022-11-26 01:04:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15497,'1110','121669413866','2022-11-26 01:18:59',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(15498,'1110','121669413866','2022-11-26 01:18:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15499,'1110','121669413866','2022-11-26 01:18:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15500,'5500','121669413866','2022-11-26 01:18:59',1706.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15501,'1000','121669413866','2022-11-26 01:18:59',2360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15502,'4000','121669413866','2022-11-26 01:18:59',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(15503,'4000','121669413866','2022-11-26 01:18:59',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15504,'4000','121669413866','2022-11-26 01:18:59',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15505,'1110','121669416468','2022-11-26 01:56:32',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(15506,'5500','121669416468','2022-11-26 01:56:32',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15507,'1000','121669416468','2022-11-26 01:56:32',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15508,'4000','121669416468','2022-11-26 01:56:32',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(15509,'1110','121669416998','2022-11-26 03:11:35',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(15510,'5500','121669416998','2022-11-26 03:11:35',829.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15511,'1000','121669416998','2022-11-26 03:11:35',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15512,'4000','121669416998','2022-11-26 03:11:35',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(15513,'1110','121669423797','2022-11-26 04:26:48',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(15514,'1110','121669423797','2022-11-26 04:26:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15515,'1110','121669423797','2022-11-26 04:26:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15516,'1110','121669423797','2022-11-26 04:26:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15517,'5500','121669423797','2022-11-26 04:26:48',2229.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15518,'1000','121669423797','2022-11-26 04:26:48',3040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15519,'4000','121669423797','2022-11-26 04:26:48',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(15520,'4000','121669423797','2022-11-26 04:26:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15521,'4000','121669423797','2022-11-26 04:26:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15522,'4000','121669423797','2022-11-26 04:26:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15523,'1110','121669453878','2022-11-26 12:12:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15524,'5500','121669453878','2022-11-26 12:12:37',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15525,'1000','121669453878','2022-11-26 12:12:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15526,'4000','121669453878','2022-11-26 12:12:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15527,'1110','121669462373','2022-11-26 14:33:21',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15528,'5500','121669462373','2022-11-26 14:33:21',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15529,'1000','121669462373','2022-11-26 14:33:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15530,'4000','121669462373','2022-11-26 14:33:21',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15531,'1110','121669470078','2022-11-26 17:47:26',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15532,'5500','121669470078','2022-11-26 17:47:26',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15533,'1000','121669470078','2022-11-26 17:47:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15534,'4000','121669470078','2022-11-26 17:47:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15535,'1110','121669474052','2022-11-26 17:48:49',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15536,'5500','121669474052','2022-11-26 17:48:49',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15537,'1000','121669474052','2022-11-26 17:48:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15538,'4000','121669474052','2022-11-26 17:48:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15539,'1110','121669475727','2022-11-26 18:15:56',NULL,148.32,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15540,'5500','121669475727','2022-11-26 18:15:56',148.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15541,'1000','121669475727','2022-11-26 18:15:56',280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15542,'4000','121669475727','2022-11-26 18:15:56',NULL,280.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15543,'1110','121669475763','2022-11-26 18:36:22',NULL,865.00,'','12','1','Inventory sold','1','','sales','6001506900973','','No',NULL,NULL,''),(15544,'5500','121669475763','2022-11-26 18:36:22',865.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15545,'1000','121669475763','2022-11-26 18:36:22',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15546,'4000','121669475763','2022-11-26 18:36:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6001506900973','','No',NULL,NULL,''),(15547,'1110','121669477147','2022-11-26 18:50:47',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15548,'1110','121669477147','2022-11-26 18:50:47',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15549,'1110','121669477147','2022-11-26 18:50:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15550,'1110','121669477147','2022-11-26 18:50:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(15551,'5500','121669477147','2022-11-26 18:50:47',2362.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15552,'1000','121669477147','2022-11-26 18:50:47',3840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15553,'4000','121669477147','2022-11-26 18:50:47',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15554,'4000','121669477147','2022-11-26 18:50:47',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15555,'4000','121669477147','2022-11-26 18:50:47',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15556,'4000','121669477147','2022-11-26 18:50:47',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(15557,'1110','121669480381','2022-11-26 19:42:19',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15558,'5500','121669480381','2022-11-26 19:42:19',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15559,'1000','121669480381','2022-11-26 19:42:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15560,'4000','121669480381','2022-11-26 19:42:19',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15561,'1110','121669480946','2022-11-26 19:56:31',NULL,2460.00,'','12','1','Inventory sold','1','','sales','5000299618073','','No',NULL,NULL,''),(15562,'5500','121669480946','2022-11-26 19:56:31',2460.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15563,'1000','121669480946','2022-11-26 19:56:31',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15564,'4000','121669480946','2022-11-26 19:56:31',NULL,3500.00,'','12','1','Good sold','1','','sales','5000299618073','','No',NULL,NULL,''),(15565,'1110','121669484034','2022-11-26 21:19:17',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15566,'5500','121669484034','2022-11-26 21:19:17',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15567,'1000','121669484034','2022-11-26 21:19:17',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15568,'4000','121669484034','2022-11-26 21:19:17',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15569,'1110','121669489608','2022-11-26 22:06:57',NULL,1730.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(15570,'5500','121669489608','2022-11-26 22:06:57',1730.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15571,'1000','121669489608','2022-11-26 22:06:57',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15572,'4000','121669489608','2022-11-26 22:06:57',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(15573,'1110','121669489716','2022-11-26 22:58:34',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15574,'1110','121669489716','2022-11-26 22:58:34',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15575,'1110','121669489716','2022-11-26 22:58:34',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(15576,'5500','121669489716','2022-11-26 22:58:34',1359.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15577,'1000','121669489716','2022-11-26 22:58:34',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15578,'4000','121669489716','2022-11-26 22:58:34',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15579,'4000','121669489716','2022-11-26 22:58:34',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(15580,'4000','121669489716','2022-11-26 22:58:34',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(15581,'1110','121669492901','2022-11-26 23:07:21',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15582,'1110','121669492901','2022-11-26 23:07:21',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15583,'5500','121669492901','2022-11-26 23:07:21',113.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15584,'1000','121669492901','2022-11-26 23:07:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15585,'4000','121669492901','2022-11-26 23:07:21',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(15586,'4000','121669492901','2022-11-26 23:07:21',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15587,'1110','121669493270','2022-11-26 23:17:41',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15588,'5500','121669493270','2022-11-26 23:17:41',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15589,'1000','121669493270','2022-11-26 23:17:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15590,'4000','121669493270','2022-11-26 23:17:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15591,'1110','121669494742','2022-11-26 23:32:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(15592,'5500','121669494742','2022-11-26 23:32:32',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15593,'1000','121669494742','2022-11-26 23:32:32',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15594,'4000','121669494742','2022-11-26 23:32:32',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(15595,'1110','121669494758','2022-11-26 23:32:50',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15596,'5500','121669494758','2022-11-26 23:32:50',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15597,'1000','121669494758','2022-11-26 23:32:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15598,'4000','121669494758','2022-11-26 23:32:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15599,'1110','121669494775','2022-11-26 23:45:23',NULL,5685.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15600,'5500','121669494775','2022-11-26 23:45:23',5685.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15601,'1000','121669494775','2022-11-26 23:45:23',7700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15602,'4000','121669494775','2022-11-26 23:45:23',NULL,7700.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15603,'1110','121669495538','2022-11-26 23:45:53',NULL,1854.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(15604,'5500','121669495538','2022-11-26 23:45:53',1854.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15605,'1000','121669495538','2022-11-26 23:45:53',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15606,'4000','121669495538','2022-11-26 23:45:53',NULL,2600.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(15607,'1110','121669495908','2022-11-27 00:29:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15608,'5500','121669495908','2022-11-27 00:29:28',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15609,'1000','121669495908','2022-11-27 00:29:28',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15610,'4000','121669495908','2022-11-27 00:29:28',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15611,'1110','121669498181','2022-11-27 00:32:06',NULL,418.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(15612,'5500','121669498181','2022-11-27 00:32:06',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15613,'1000','121669498181','2022-11-27 00:32:06',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15614,'4000','121669498181','2022-11-27 00:32:06',NULL,580.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(15615,'1110','121669499468','2022-11-27 00:51:21',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15616,'5500','121669499468','2022-11-27 00:51:21',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15617,'1000','121669499468','2022-11-27 00:51:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15618,'4000','121669499468','2022-11-27 00:51:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15619,'1110','121669499485','2022-11-27 00:53:01',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15620,'5500','121669499485','2022-11-27 00:53:01',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15621,'1000','121669499485','2022-11-27 00:53:01',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15622,'4000','121669499485','2022-11-27 00:53:01',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15623,'1110','121669499589','2022-11-27 00:58:40',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15624,'5500','121669499589','2022-11-27 00:58:40',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15625,'1000','121669499589','2022-11-27 00:58:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15626,'4000','121669499589','2022-11-27 00:58:40',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15627,'1110','121669499925','2022-11-27 01:03:26',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15628,'5500','121669499925','2022-11-27 01:03:26',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15629,'1000','121669499925','2022-11-27 01:03:26',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15630,'4000','121669499925','2022-11-27 01:03:26',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15631,'1110','121669500326','2022-11-27 01:06:03',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(15632,'5500','121669500326','2022-11-27 01:06:03',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15633,'1000','121669500326','2022-11-27 01:06:03',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15634,'4000','121669500326','2022-11-27 01:06:03',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(15635,'1110','121669500452','2022-11-27 01:10:28',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15636,'5500','121669500452','2022-11-27 01:10:28',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15637,'1000','121669500452','2022-11-27 01:10:28',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15638,'4000','121669500452','2022-11-27 01:10:28',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15639,'1110','121669502075','2022-11-27 01:34:46',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(15640,'5500','121669502075','2022-11-27 01:34:46',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15641,'1000','121669502075','2022-11-27 01:34:46',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15642,'4000','121669502075','2022-11-27 01:34:46',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(15643,'1110','121669502241','2022-11-27 01:39:36',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15644,'1110','121669502241','2022-11-27 01:39:36',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15645,'1110','121669502241','2022-11-27 01:39:36',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15646,'1110','121669502241','2022-11-27 01:39:36',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15647,'1110','121669502241','2022-11-27 01:39:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(15648,'1110','121669502241','2022-11-27 01:39:36',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(15649,'1110','121669502241','2022-11-27 01:39:36',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(15650,'5500','121669502241','2022-11-27 01:39:36',3273.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15651,'1000','121669502241','2022-11-27 01:39:36',4590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15652,'4000','121669502241','2022-11-27 01:39:36',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15653,'4000','121669502241','2022-11-27 01:39:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15654,'4000','121669502241','2022-11-27 01:39:36',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15655,'4000','121669502241','2022-11-27 01:39:36',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15656,'4000','121669502241','2022-11-27 01:39:36',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(15657,'4000','121669502241','2022-11-27 01:39:36',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(15658,'4000','121669502241','2022-11-27 01:39:36',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(15659,'1110','121669502388','2022-11-27 01:40:05',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(15660,'5500','121669502388','2022-11-27 01:40:05',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15661,'1000','121669502388','2022-11-27 01:40:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15662,'4000','121669502388','2022-11-27 01:40:05',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(15663,'1110','121669502664','2022-11-27 01:48:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15664,'1110','121669502664','2022-11-27 01:48:42',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15665,'1110','121669502664','2022-11-27 01:48:42',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(15666,'5500','121669502664','2022-11-27 01:48:42',634.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15667,'1000','121669502664','2022-11-27 01:48:42',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15668,'4000','121669502664','2022-11-27 01:48:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(15669,'4000','121669502664','2022-11-27 01:48:42',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15670,'4000','121669502664','2022-11-27 01:48:42',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(15671,'1110','121669507305','2022-11-27 03:01:56',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(15672,'5500','121669507305','2022-11-27 03:01:56',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15673,'1000','121669507305','2022-11-27 03:01:56',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15674,'4000','121669507305','2022-11-27 03:01:56',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(15675,'1110','121669507321','2022-11-27 03:10:01',NULL,5685.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15676,'5500','121669507321','2022-11-27 03:10:01',5685.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15677,'1000','121669507321','2022-11-27 03:10:01',7700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15678,'4000','121669507321','2022-11-27 03:10:01',NULL,7700.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(15679,'1110','121669507991','2022-11-27 03:14:52',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15680,'5500','121669507991','2022-11-27 03:14:52',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15681,'1000','121669507991','2022-11-27 03:14:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15682,'4000','121669507991','2022-11-27 03:14:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15683,'1110','121669508096','2022-11-27 03:25:54',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(15684,'5500','121669508096','2022-11-27 03:25:54',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15685,'1000','121669508096','2022-11-27 03:25:54',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15686,'4000','121669508096','2022-11-27 03:25:54',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(15687,'1110','121669508758','2022-11-27 03:33:36',NULL,272.00,'','12','1','Inventory sold','1','','sales','5052197004281','','No',NULL,NULL,''),(15688,'5500','121669508758','2022-11-27 03:33:36',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15689,'1000','121669508758','2022-11-27 03:33:36',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15690,'4000','121669508758','2022-11-27 03:33:36',NULL,600.00,'','12','1','Good sold','1','','sales','5052197004281','','No',NULL,NULL,''),(15691,'1110','121669512531','2022-11-27 04:29:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15692,'1110','121669512531','2022-11-27 04:29:47',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15693,'1110','121669512531','2022-11-27 04:29:47',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15694,'1110','121669512531','2022-11-27 04:29:47',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(15695,'5500','121669512531','2022-11-27 04:29:47',1430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15696,'1000','121669512531','2022-11-27 04:29:47',2230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15697,'4000','121669512531','2022-11-27 04:29:47',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15698,'4000','121669512531','2022-11-27 04:29:47',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15699,'4000','121669512531','2022-11-27 04:29:47',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(15700,'4000','121669512531','2022-11-27 04:29:47',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(15701,'1110','121669512714','2022-11-27 04:55:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15702,'1110','121669512714','2022-11-27 04:55:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15703,'5500','121669512714','2022-11-27 04:55:05',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15704,'1000','121669512714','2022-11-27 04:55:05',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15705,'4000','121669512714','2022-11-27 04:55:05',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15706,'4000','121669512714','2022-11-27 04:55:05',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15707,'1110','121669522460','2022-11-27 07:15:22',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15708,'5500','121669522460','2022-11-27 07:15:22',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15709,'1000','121669522460','2022-11-27 07:15:22',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15710,'4000','121669522460','2022-11-27 07:15:22',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15711,'1110','121669543287','2022-11-27 13:03:51',NULL,84.00,'','12','1','Inventory sold','1','','sales','5449000061478','','No',NULL,NULL,''),(15712,'5500','121669543287','2022-11-27 13:03:51',84.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15713,'1000','121669543287','2022-11-27 13:03:51',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15714,'4000','121669543287','2022-11-27 13:03:51',NULL,180.00,'','12','1','Good sold','1','','sales','5449000061478','','No',NULL,NULL,''),(15715,'1110','121669552136','2022-11-27 15:29:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15716,'1110','121669552136','2022-11-27 15:29:47',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(15717,'5500','121669552136','2022-11-27 15:29:47',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15718,'1000','121669552136','2022-11-27 15:29:47',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15719,'4000','121669552136','2022-11-27 15:29:47',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(15720,'4000','121669552136','2022-11-27 15:29:47',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(15721,'1110','121669568129','2022-11-27 19:55:39',NULL,67.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(15722,'5500','121669568129','2022-11-27 19:55:39',67.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15723,'1000','121669568129','2022-11-27 19:55:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15724,'4000','121669568129','2022-11-27 19:55:39',NULL,80.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(15725,'1110','121669568224','2022-11-27 19:57:25',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15726,'5500','121669568224','2022-11-27 19:57:25',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15727,'1000','121669568224','2022-11-27 19:57:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15728,'4000','121669568224','2022-11-27 19:57:25',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15729,'1110','121669568250','2022-11-27 21:46:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15730,'5500','121669568250','2022-11-27 21:46:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15731,'1000','121669568250','2022-11-27 21:46:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15732,'4000','121669568250','2022-11-27 21:46:53',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15733,'1110','121669576267','2022-11-27 23:29:00',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15734,'5500','121669576267','2022-11-27 23:29:00',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15735,'1000','121669576267','2022-11-27 23:29:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15736,'4000','121669576267','2022-11-27 23:29:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15737,'1110','121669580947','2022-11-28 00:04:47',NULL,418.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(15738,'1110','121669580947','2022-11-28 00:04:47',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15739,'5500','121669580947','2022-11-28 00:04:47',437.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15740,'1000','121669580947','2022-11-28 00:04:47',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15741,'4000','121669580947','2022-11-28 00:04:47',NULL,580.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(15742,'4000','121669580947','2022-11-28 00:04:47',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15743,'1110','121669587244','2022-11-28 01:14:41',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(15744,'5500','121669587244','2022-11-28 01:14:41',1270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15745,'1000','121669587244','2022-11-28 01:14:41',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15746,'4000','121669587244','2022-11-28 01:14:41',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(15747,'1110','121669624489','2022-11-28 11:34:59',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15748,'5500','121669624489','2022-11-28 11:34:59',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15749,'1000','121669624489','2022-11-28 11:34:59',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15750,'4000','121669624489','2022-11-28 11:34:59',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15751,'1110','121669624506','2022-11-28 12:38:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(15752,'1110','121669624506','2022-11-28 12:38:35',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15753,'1110','121669624506','2022-11-28 12:38:35',NULL,84.00,'','12','1','Inventory sold','1','','sales','5449000061478','','No',NULL,NULL,''),(15754,'5500','121669624506','2022-11-28 12:38:35',679.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15755,'1000','121669624506','2022-11-28 12:38:35',1010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15756,'4000','121669624506','2022-11-28 12:38:35',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(15757,'4000','121669624506','2022-11-28 12:38:35',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15758,'4000','121669624506','2022-11-28 12:38:35',NULL,180.00,'','12','1','Good sold','1','','sales','5449000061478','','No',NULL,NULL,''),(15759,'1110','121669628411','2022-11-28 14:44:34',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15760,'5500','121669628411','2022-11-28 14:44:34',726.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15761,'1000','121669628411','2022-11-28 14:44:34',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15762,'4000','121669628411','2022-11-28 14:44:34',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(15763,'1110','121669635880','2022-11-28 14:45:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15764,'5500','121669635880','2022-11-28 14:45:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15765,'1000','121669635880','2022-11-28 14:45:04',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15766,'4000','121669635880','2022-11-28 14:45:04',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15767,'1110','121669657145','2022-11-28 20:40:53',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15768,'5500','121669657145','2022-11-28 20:40:53',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15769,'1000','121669657145','2022-11-28 20:40:53',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15770,'4000','121669657145','2022-11-28 20:40:53',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15771,'1110','121669657262','2022-11-28 20:41:36',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15772,'5500','121669657262','2022-11-28 20:41:36',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15773,'1000','121669657262','2022-11-28 20:41:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15774,'4000','121669657262','2022-11-28 20:41:36',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(15775,'1110','121669657300','2022-11-28 20:42:01',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15776,'5500','121669657300','2022-11-28 20:42:01',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15777,'1000','121669657300','2022-11-28 20:42:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15778,'4000','121669657300','2022-11-28 20:42:01',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15779,'1110','121669657329','2022-11-28 20:47:50',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15780,'5500','121669657329','2022-11-28 20:47:50',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15781,'1000','121669657329','2022-11-28 20:47:50',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15782,'4000','121669657329','2022-11-28 20:47:50',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15783,'1110','121669657675','2022-11-28 21:31:33',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15784,'5500','121669657675','2022-11-28 21:31:33',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15785,'1000','121669657675','2022-11-28 21:31:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15786,'4000','121669657675','2022-11-28 21:31:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(15787,'1110','121669660296','2022-11-28 21:38:03',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15788,'5500','121669660296','2022-11-28 21:38:03',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15789,'1000','121669660296','2022-11-28 21:38:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15790,'4000','121669660296','2022-11-28 21:38:03',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15791,'1110','121669661374','2022-11-28 21:50:34',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(15792,'1110','121669661374','2022-11-28 21:50:34',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(15793,'5500','121669661374','2022-11-28 21:50:34',437.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15794,'1000','121669661374','2022-11-28 21:50:34',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15795,'4000','121669661374','2022-11-28 21:50:34',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(15796,'4000','121669661374','2022-11-28 21:50:34',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(15797,'1110','121669661580','2022-11-28 21:53:33',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(15798,'1110','121669661580','2022-11-28 21:53:33',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15799,'5500','121669661580','2022-11-28 21:53:33',72.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15800,'1000','121669661580','2022-11-28 21:53:33',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15801,'4000','121669661580','2022-11-28 21:53:33',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(15802,'4000','121669661580','2022-11-28 21:53:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(15803,'1110','121669663079','2022-11-28 22:18:23',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15804,'5500','121669663079','2022-11-28 22:18:23',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15805,'1000','121669663079','2022-11-28 22:18:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15806,'4000','121669663079','2022-11-28 22:18:23',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15807,'1110','121669663114','2022-11-28 22:28:50',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15808,'5500','121669663114','2022-11-28 22:28:50',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15809,'1000','121669663114','2022-11-28 22:28:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15810,'4000','121669663114','2022-11-28 22:28:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15811,'1110','121669663738','2022-11-28 22:31:52',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15812,'1110','121669663738','2022-11-28 22:31:52',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15813,'5500','121669663738','2022-11-28 22:31:52',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15814,'1000','121669663738','2022-11-28 22:31:52',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15815,'4000','121669663738','2022-11-28 22:31:52',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15816,'4000','121669663738','2022-11-28 22:31:52',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15817,'1110','121669663917','2022-11-28 22:56:08',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(15818,'5500','121669663917','2022-11-28 22:56:08',719.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15819,'1000','121669663917','2022-11-28 22:56:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15820,'4000','121669663917','2022-11-28 22:56:08',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(15821,'1110','121669666669','2022-11-28 23:17:58',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15822,'5500','121669666669','2022-11-28 23:17:58',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15823,'1000','121669666669','2022-11-28 23:17:58',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15824,'4000','121669666669','2022-11-28 23:17:58',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15825,'1110','121669670559','2022-11-29 00:23:03',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15826,'5500','121669670559','2022-11-29 00:23:03',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15827,'1000','121669670559','2022-11-29 00:23:03',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15828,'4000','121669670559','2022-11-29 00:23:03',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15829,'1110','121669670590','2022-11-29 00:28:08',NULL,1037.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(15830,'1110','121669670590','2022-11-29 00:28:08',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15831,'5500','121669670590','2022-11-29 00:28:08',1337.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15832,'1000','121669670590','2022-11-29 00:28:08',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15833,'4000','121669670590','2022-11-29 00:28:08',NULL,1800.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(15834,'4000','121669670590','2022-11-29 00:28:08',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15835,'1110','121669670969','2022-11-29 00:35:56',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15836,'5500','121669670969','2022-11-29 00:35:56',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15837,'1000','121669670969','2022-11-29 00:35:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15838,'4000','121669670969','2022-11-29 00:35:56',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15839,'1110','121669671360','2022-11-29 00:43:37',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15840,'5500','121669671360','2022-11-29 00:43:37',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15841,'1000','121669671360','2022-11-29 00:43:37',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15842,'4000','121669671360','2022-11-29 00:43:37',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15843,'1110','121669673002','2022-11-29 01:03:32',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15844,'5500','121669673002','2022-11-29 01:03:32',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15845,'1000','121669673002','2022-11-29 01:03:32',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15846,'4000','121669673002','2022-11-29 01:03:32',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(15847,'1110','121669673017','2022-11-29 01:57:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15848,'1110','121669673017','2022-11-29 01:57:00',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15849,'5500','121669673017','2022-11-29 01:57:00',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15850,'1000','121669673017','2022-11-29 01:57:00',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15851,'4000','121669673017','2022-11-29 01:57:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15852,'4000','121669673017','2022-11-29 01:57:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15853,'1110','121669676225','2022-11-29 02:06:44',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15854,'1110','121669676225','2022-11-29 02:06:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15855,'5500','121669676225','2022-11-29 02:06:44',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15856,'1000','121669676225','2022-11-29 02:06:44',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15857,'4000','121669676225','2022-11-29 02:06:44',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15858,'4000','121669676225','2022-11-29 02:06:44',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15859,'1110','121669686052','2022-11-29 04:41:52',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(15860,'5500','121669686052','2022-11-29 04:41:52',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15861,'1000','121669686052','2022-11-29 04:41:52',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15862,'4000','121669686052','2022-11-29 04:41:52',NULL,2300.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(15863,'1110','121669694666','2022-11-29 07:04:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15864,'5500','121669694666','2022-11-29 07:04:38',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15865,'1000','121669694666','2022-11-29 07:04:38',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15866,'4000','121669694666','2022-11-29 07:04:38',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15867,'1110','121669696364','2022-11-29 07:32:52',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15868,'5500','121669696364','2022-11-29 07:32:52',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15869,'1000','121669696364','2022-11-29 07:32:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15870,'4000','121669696364','2022-11-29 07:32:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15871,'1110','121669702994','2022-11-29 11:20:24',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15872,'5500','121669702994','2022-11-29 11:20:24',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15873,'1000','121669702994','2022-11-29 11:20:24',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15874,'4000','121669702994','2022-11-29 11:20:24',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15875,'1110','121669710034','2022-11-29 12:15:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15876,'5500','121669710034','2022-11-29 12:15:25',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15877,'1000','121669710034','2022-11-29 12:15:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15878,'4000','121669710034','2022-11-29 12:15:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(15879,'1110','121669746594','2022-11-29 21:33:28',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15880,'1110','121669746594','2022-11-29 21:33:28',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15881,'5500','121669746594','2022-11-29 21:33:28',403.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15882,'1000','121669746594','2022-11-29 21:33:28',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15883,'4000','121669746594','2022-11-29 21:33:28',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15884,'4000','121669746594','2022-11-29 21:33:28',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(15885,'1110','121669746816','2022-11-29 22:02:57',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15886,'5500','121669746816','2022-11-29 22:02:57',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15887,'1000','121669746816','2022-11-29 22:02:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15888,'4000','121669746816','2022-11-29 22:02:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(15889,'1110','121669750892','2022-11-29 22:41:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15890,'1110','121669750892','2022-11-29 22:41:55',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15891,'5500','121669750892','2022-11-29 22:41:55',697.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15892,'1000','121669750892','2022-11-29 22:41:55',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15893,'4000','121669750892','2022-11-29 22:41:55',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(15894,'4000','121669750892','2022-11-29 22:41:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(15895,'1110','121669751942','2022-11-29 23:00:37',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15896,'5500','121669751942','2022-11-29 23:00:37',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15897,'1000','121669751942','2022-11-29 23:00:37',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15898,'4000','121669751942','2022-11-29 23:00:37',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15899,'1110','121669752043','2022-11-29 23:10:31',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(15900,'5500','121669752043','2022-11-29 23:10:31',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15901,'1000','121669752043','2022-11-29 23:10:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15902,'4000','121669752043','2022-11-29 23:10:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(15903,'1110','121669752641','2022-11-29 23:14:28',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15904,'5500','121669752641','2022-11-29 23:14:28',174.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15905,'1000','121669752641','2022-11-29 23:14:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15906,'4000','121669752641','2022-11-29 23:14:28',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15907,'1110','121669752873','2022-11-29 23:36:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(15908,'1110','121669752873','2022-11-29 23:36:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15909,'5500','121669752873','2022-11-29 23:36:37',364.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15910,'1000','121669752873','2022-11-29 23:36:37',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15911,'4000','121669752873','2022-11-29 23:36:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(15912,'4000','121669752873','2022-11-29 23:36:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(15913,'1110','121669754227','2022-11-29 23:39:16',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15914,'5500','121669754227','2022-11-29 23:39:16',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15915,'1000','121669754227','2022-11-29 23:39:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15916,'4000','121669754227','2022-11-29 23:39:16',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(15917,'1110','121669754365','2022-11-30 00:09:51',NULL,3350.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(15918,'5500','121669754365','2022-11-30 00:09:51',3350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15919,'1000','121669754365','2022-11-30 00:09:51',5200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15920,'4000','121669754365','2022-11-30 00:09:51',NULL,5200.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(15921,'1110','121669756487','2022-11-30 00:20:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15922,'5500','121669756487','2022-11-30 00:20:17',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15923,'1000','121669756487','2022-11-30 00:20:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15924,'4000','121669756487','2022-11-30 00:20:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15925,'1110','121669756822','2022-11-30 01:05:47',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(15926,'1110','121669756822','2022-11-30 01:05:47',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15927,'5500','121669756822','2022-11-30 01:05:47',1241.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15928,'1000','121669756822','2022-11-30 01:05:47',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15929,'4000','121669756822','2022-11-30 01:05:47',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(15930,'4000','121669756822','2022-11-30 01:05:47',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15931,'1110','121669759817','2022-11-30 01:10:46',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15932,'5500','121669759817','2022-11-30 01:10:46',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15933,'1000','121669759817','2022-11-30 01:10:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15934,'4000','121669759817','2022-11-30 01:10:46',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15935,'1110','121669760333','2022-11-30 01:21:19',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(15936,'1110','121669760333','2022-11-30 01:21:19',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15937,'5500','121669760333','2022-11-30 01:21:19',3901.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15938,'1000','121669760333','2022-11-30 01:21:19',6050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15939,'4000','121669760333','2022-11-30 01:21:19',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(15940,'4000','121669760333','2022-11-30 01:21:19',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(15941,'1110','121669811173','2022-11-30 15:26:41',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15942,'1110','121669811173','2022-11-30 15:26:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15943,'5500','121669811173','2022-11-30 15:26:41',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15944,'1000','121669811173','2022-11-30 15:26:41',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15945,'4000','121669811173','2022-11-30 15:26:41',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(15946,'4000','121669811173','2022-11-30 15:26:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(15947,'1110','121669812302','2022-11-30 16:03:20',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(15948,'5500','121669812302','2022-11-30 16:03:20',2461.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15949,'1000','121669812302','2022-11-30 16:03:20',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15950,'4000','121669812302','2022-11-30 16:03:20',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(15951,'1110','121669813432','2022-11-30 16:24:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(15952,'5500','121669813432','2022-11-30 16:24:59',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15953,'1000','121669813432','2022-11-30 16:24:59',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15954,'4000','121669813432','2022-11-30 16:24:59',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(15955,'1110','121669814706','2022-11-30 16:57:28',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(15956,'5500','121669814706','2022-11-30 16:57:28',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15957,'1000','121669814706','2022-11-30 16:57:28',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15958,'4000','121669814706','2022-11-30 16:57:28',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(15959,'1110','121669816653','2022-11-30 17:44:47',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15960,'5500','121669816653','2022-11-30 17:44:47',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15961,'1000','121669816653','2022-11-30 17:44:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15962,'4000','121669816653','2022-11-30 17:44:47',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15963,'1110','121669819494','2022-11-30 18:06:38',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(15964,'5500','121669819494','2022-11-30 18:06:38',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15965,'1000','121669819494','2022-11-30 18:06:38',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15966,'4000','121669819494','2022-11-30 18:06:38',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(15967,'1110','121669820804','2022-11-30 18:34:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15968,'5500','121669820804','2022-11-30 18:34:29',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15969,'1000','121669820804','2022-11-30 18:34:29',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15970,'4000','121669820804','2022-11-30 18:34:29',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15971,'1110','121669822473','2022-11-30 19:39:53',NULL,610.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(15972,'5500','121669822473','2022-11-30 19:39:53',610.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15973,'1000','121669822473','2022-11-30 19:39:53',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15974,'4000','121669822473','2022-11-30 19:39:53',NULL,1000.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(15975,'1110','121669826402','2022-11-30 19:41:07',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15976,'5500','121669826402','2022-11-30 19:41:07',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15977,'1000','121669826402','2022-11-30 19:41:07',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15978,'4000','121669826402','2022-11-30 19:41:07',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(15979,'1110','121669826472','2022-11-30 19:42:36',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15980,'5500','121669826472','2022-11-30 19:42:36',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15981,'1000','121669826472','2022-11-30 19:42:36',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15982,'4000','121669826472','2022-11-30 19:42:36',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(15983,'1110','121669826565','2022-11-30 19:48:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(15984,'1110','121669826565','2022-11-30 19:48:33',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(15985,'5500','121669826565','2022-11-30 19:48:33',431.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15986,'1000','121669826565','2022-11-30 19:48:33',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15987,'4000','121669826565','2022-11-30 19:48:33',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(15988,'4000','121669826565','2022-11-30 19:48:33',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(15989,'1110','121669826922','2022-11-30 20:14:19',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15990,'5500','121669826922','2022-11-30 20:14:19',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15991,'1000','121669826922','2022-11-30 20:14:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15992,'4000','121669826922','2022-11-30 20:14:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(15993,'1110','121669831148','2022-11-30 20:59:18',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15994,'5500','121669831148','2022-11-30 20:59:18',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(15995,'1000','121669831148','2022-11-30 20:59:18',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(15996,'4000','121669831148','2022-11-30 20:59:18',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15997,'1110','121669831162','2022-11-30 21:00:10',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(15998,'1110','121669831162','2022-11-30 21:00:10',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(15999,'5500','121669831162','2022-11-30 21:00:10',385.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16000,'1000','121669831162','2022-11-30 21:00:10',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16001,'4000','121669831162','2022-11-30 21:00:10',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16002,'4000','121669831162','2022-11-30 21:00:10',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16003,'1110','121669831216','2022-11-30 21:12:36',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16004,'5500','121669831216','2022-11-30 21:12:36',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16005,'1000','121669831216','2022-11-30 21:12:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16006,'4000','121669831216','2022-11-30 21:12:36',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16007,'1110','121669831962','2022-11-30 21:24:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16008,'5500','121669831962','2022-11-30 21:24:28',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16009,'1000','121669831962','2022-11-30 21:24:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16010,'4000','121669831962','2022-11-30 21:24:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16011,'1110','121669832878','2022-11-30 21:29:26',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16012,'1110','121669832878','2022-11-30 21:29:26',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16013,'1110','121669832878','2022-11-30 21:29:26',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16014,'1110','121669832878','2022-11-30 21:29:26',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16015,'5500','121669832878','2022-11-30 21:29:26',925.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16016,'1000','121669832878','2022-11-30 21:29:26',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16017,'4000','121669832878','2022-11-30 21:29:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16018,'4000','121669832878','2022-11-30 21:29:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16019,'4000','121669832878','2022-11-30 21:29:26',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16020,'4000','121669832878','2022-11-30 21:29:26',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16021,'1110','121669833298','2022-11-30 21:35:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16022,'5500','121669833298','2022-11-30 21:35:08',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16023,'1000','121669833298','2022-11-30 21:35:08',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16024,'4000','121669833298','2022-11-30 21:35:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16025,'1110','121669833312','2022-11-30 22:00:10',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16026,'1110','121669833312','2022-11-30 22:00:10',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(16027,'5500','121669833312','2022-11-30 22:00:10',383.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16028,'1000','121669833312','2022-11-30 22:00:10',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16029,'4000','121669833312','2022-11-30 22:00:10',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16030,'4000','121669833312','2022-11-30 22:00:10',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(16031,'1110','121669841695','2022-11-30 23:55:06',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16032,'5500','121669841695','2022-11-30 23:55:06',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16033,'1000','121669841695','2022-11-30 23:55:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16034,'4000','121669841695','2022-11-30 23:55:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16035,'1110','121669841712','2022-12-01 00:40:03',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16036,'5500','121669841712','2022-12-01 00:40:03',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16037,'1000','121669841712','2022-12-01 00:40:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16038,'4000','121669841712','2022-12-01 00:40:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16039,'1110','121669844409','2022-12-01 01:05:34',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16040,'5500','121669844409','2022-12-01 01:05:34',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16041,'1000','121669844409','2022-12-01 01:05:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16042,'4000','121669844409','2022-12-01 01:05:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16043,'1110','121669845940','2022-12-01 01:11:17',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16044,'5500','121669845940','2022-12-01 01:11:17',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16045,'1000','121669845940','2022-12-01 01:11:17',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16046,'4000','121669845940','2022-12-01 01:11:17',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16047,'1110','121669846283','2022-12-01 01:27:25',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16048,'1110','121669846283','2022-12-01 01:27:25',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16049,'5500','121669846283','2022-12-01 01:27:25',652.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16050,'1000','121669846283','2022-12-01 01:27:25',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16051,'4000','121669846283','2022-12-01 01:27:25',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16052,'4000','121669846283','2022-12-01 01:27:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16053,'1110','121669847316','2022-12-01 01:30:00',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16054,'5500','121669847316','2022-12-01 01:30:00',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16055,'1000','121669847316','2022-12-01 01:30:00',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16056,'4000','121669847316','2022-12-01 01:30:00',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16057,'1110','121669847405','2022-12-01 01:35:15',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(16058,'1110','121669847405','2022-12-01 01:35:15',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(16059,'1110','121669847405','2022-12-01 01:35:15',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(16060,'1110','121669847405','2022-12-01 01:35:15',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(16061,'1110','121669847405','2022-12-01 01:35:15',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16062,'1110','121669847405','2022-12-01 01:35:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16063,'1110','121669847405','2022-12-01 01:35:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(16064,'5500','121669847405','2022-12-01 01:35:15',2940.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16065,'1000','121669847405','2022-12-01 01:35:15',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16066,'4000','121669847405','2022-12-01 01:35:15',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(16067,'4000','121669847405','2022-12-01 01:35:15',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(16068,'4000','121669847405','2022-12-01 01:35:15',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(16069,'4000','121669847405','2022-12-01 01:35:15',NULL,250.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(16070,'4000','121669847405','2022-12-01 01:35:15',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16071,'4000','121669847405','2022-12-01 01:35:15',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16072,'4000','121669847405','2022-12-01 01:35:15',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(16073,'1110','121669847995','2022-12-01 01:55:29',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16074,'5500','121669847995','2022-12-01 01:55:29',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16075,'1000','121669847995','2022-12-01 01:55:29',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16076,'4000','121669847995','2022-12-01 01:55:29',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16077,'1110','121669848932','2022-12-01 02:04:01',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16078,'5500','121669848932','2022-12-01 02:04:01',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16079,'1000','121669848932','2022-12-01 02:04:01',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16080,'4000','121669848932','2022-12-01 02:04:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16081,'1110','121669849449','2022-12-01 03:58:37',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(16082,'5500','121669849449','2022-12-01 03:58:37',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16083,'1000','121669849449','2022-12-01 03:58:37',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16084,'4000','121669849449','2022-12-01 03:58:37',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(16085,'1110','121669856331','2022-12-01 04:03:04',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16086,'1110','121669856331','2022-12-01 04:03:04',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16087,'5500','121669856331','2022-12-01 04:03:04',1064.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16088,'1000','121669856331','2022-12-01 04:03:04',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16089,'4000','121669856331','2022-12-01 04:03:04',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16090,'4000','121669856331','2022-12-01 04:03:04',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16091,'1110','121669856592','2022-12-01 04:39:05',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(16092,'5500','121669856592','2022-12-01 04:39:05',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16093,'1000','121669856592','2022-12-01 04:39:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16094,'4000','121669856592','2022-12-01 04:39:05',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(16095,'1110','121669858750','2022-12-01 05:18:13',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16096,'5500','121669858750','2022-12-01 05:18:13',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16097,'1000','121669858750','2022-12-01 05:18:13',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16098,'4000','121669858750','2022-12-01 05:18:13',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16099,'1110','121669881500','2022-12-01 10:59:00',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(16100,'5500','121669881500','2022-12-01 10:59:00',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16101,'1000','121669881500','2022-12-01 10:59:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16102,'4000','121669881500','2022-12-01 10:59:00',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(16103,'1110','121669883450','2022-12-01 11:31:01',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(16104,'5500','121669883450','2022-12-01 11:31:01',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16105,'1000','121669883450','2022-12-01 11:31:01',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16106,'4000','121669883450','2022-12-01 11:31:01',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(16107,'1110','121669890335','2022-12-01 13:26:24',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16108,'1110','121669890335','2022-12-01 13:26:24',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16109,'1110','121669890335','2022-12-01 13:26:24',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16110,'5500','121669890335','2022-12-01 13:26:24',389.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16111,'1000','121669890335','2022-12-01 13:26:24',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16112,'4000','121669890335','2022-12-01 13:26:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16113,'4000','121669890335','2022-12-01 13:26:24',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16114,'4000','121669890335','2022-12-01 13:26:24',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16115,'1110','121669890395','2022-12-01 13:27:08',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16116,'5500','121669890395','2022-12-01 13:27:08',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16117,'1000','121669890395','2022-12-01 13:27:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16118,'4000','121669890395','2022-12-01 13:27:08',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16119,'1110','121669890432','2022-12-01 13:27:36',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16120,'1110','121669890432','2022-12-01 13:27:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16121,'5500','121669890432','2022-12-01 13:27:36',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16122,'1000','121669890432','2022-12-01 13:27:36',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16123,'4000','121669890432','2022-12-01 13:27:36',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16124,'4000','121669890432','2022-12-01 13:27:36',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16125,'1110','121669890461','2022-12-01 13:58:07',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16126,'5500','121669890461','2022-12-01 13:58:07',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16127,'1000','121669890461','2022-12-01 13:58:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16128,'4000','121669890461','2022-12-01 13:58:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16129,'1110','121669892292','2022-12-01 14:33:34',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16130,'5500','121669892292','2022-12-01 14:33:34',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16131,'1000','121669892292','2022-12-01 14:33:34',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16132,'4000','121669892292','2022-12-01 14:33:34',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16133,'1110','121669906768','2022-12-01 17:59:56',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16134,'1110','121669906768','2022-12-01 17:59:56',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16135,'5500','121669906768','2022-12-01 17:59:56',1199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16136,'1000','121669906768','2022-12-01 17:59:56',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16137,'4000','121669906768','2022-12-01 17:59:56',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16138,'4000','121669906768','2022-12-01 17:59:56',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16139,'1110','121669906805','2022-12-01 18:10:54',NULL,148.32,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16140,'5500','121669906805','2022-12-01 18:10:54',148.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16141,'1000','121669906805','2022-12-01 18:10:54',280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16142,'4000','121669906805','2022-12-01 18:10:54',NULL,280.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16143,'1110','121669909695','2022-12-01 18:48:45',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16144,'1110','121669909695','2022-12-01 18:48:45',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16145,'5500','121669909695','2022-12-01 18:48:45',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16146,'1000','121669909695','2022-12-01 18:48:45',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16147,'4000','121669909695','2022-12-01 18:48:45',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16148,'4000','121669909695','2022-12-01 18:48:45',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16149,'1110','121669909728','2022-12-01 19:08:11',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(16150,'5500','121669909728','2022-12-01 19:08:11',23.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16151,'1000','121669909728','2022-12-01 19:08:11',60.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16152,'4000','121669909728','2022-12-01 19:08:11',NULL,60.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(16153,'1110','121669910896','2022-12-01 19:11:03',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(16154,'1110','121669910896','2022-12-01 19:11:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16155,'5500','121669910896','2022-12-01 19:11:03',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16156,'1000','121669910896','2022-12-01 19:11:03',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16157,'4000','121669910896','2022-12-01 19:11:03',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(16158,'4000','121669910896','2022-12-01 19:11:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16159,'1110','121669911076','2022-12-01 20:22:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(16160,'5500','121669911076','2022-12-01 20:22:38',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16161,'1000','121669911076','2022-12-01 20:22:38',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16162,'4000','121669911076','2022-12-01 20:22:38',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(16163,'1110','121669921727','2022-12-01 22:09:05',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16164,'5500','121669921727','2022-12-01 22:09:05',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16165,'1000','121669921727','2022-12-01 22:09:05',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16166,'4000','121669921727','2022-12-01 22:09:05',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16167,'1110','121669922998','2022-12-01 22:30:27',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16168,'1110','121669922998','2022-12-01 22:30:27',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(16169,'5500','121669922998','2022-12-01 22:30:27',148.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16170,'1000','121669922998','2022-12-01 22:30:27',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16171,'4000','121669922998','2022-12-01 22:30:27',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16172,'4000','121669922998','2022-12-01 22:30:27',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(16173,'1110','121669923033','2022-12-01 22:43:37',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(16174,'1110','121669923033','2022-12-01 22:43:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16175,'5500','121669923033','2022-12-01 22:43:37',693.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16176,'1000','121669923033','2022-12-01 22:43:37',1070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16177,'4000','121669923033','2022-12-01 22:43:37',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(16178,'4000','121669923033','2022-12-01 22:43:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16179,'1110','121669923825','2022-12-01 22:50:01',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16180,'1110','121669923825','2022-12-01 22:50:01',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16181,'1110','121669923825','2022-12-01 22:50:01',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16182,'5500','121669923825','2022-12-01 22:50:01',1273.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16183,'1000','121669923825','2022-12-01 22:50:01',2040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16184,'4000','121669923825','2022-12-01 22:50:01',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16185,'4000','121669923825','2022-12-01 22:50:01',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16186,'4000','121669923825','2022-12-01 22:50:01',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16187,'1110','121669924206','2022-12-02 00:13:01',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16188,'1110','121669924206','2022-12-02 00:13:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16189,'5500','121669924206','2022-12-02 00:13:01',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16190,'1000','121669924206','2022-12-02 00:13:01',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16191,'4000','121669924206','2022-12-02 00:13:01',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16192,'4000','121669924206','2022-12-02 00:13:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16193,'1110','121669929187','2022-12-02 01:44:04',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(16194,'1110','121669929187','2022-12-02 01:44:04',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16195,'5500','121669929187','2022-12-02 01:44:04',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16196,'1000','121669929187','2022-12-02 01:44:04',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16197,'4000','121669929187','2022-12-02 01:44:04',NULL,1800.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(16198,'4000','121669929187','2022-12-02 01:44:04',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16199,'1110','121669934897','2022-12-02 02:15:46',NULL,6800.00,'','12','1','Inventory sold','1','','sales','5010327302201','','No',NULL,NULL,''),(16200,'5500','121669934897','2022-12-02 02:15:46',6800.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16201,'1000','121669934897','2022-12-02 02:15:46',8500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16202,'4000','121669934897','2022-12-02 02:15:46',NULL,8500.00,'','12','1','Good sold','1','','sales','5010327302201','','No',NULL,NULL,''),(16203,'1110','121669938412','2022-12-02 02:47:03',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16204,'5500','121669938412','2022-12-02 02:47:03',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16205,'1000','121669938412','2022-12-02 02:47:03',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16206,'4000','121669938412','2022-12-02 02:47:03',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16207,'1110','121669994559','2022-12-02 18:58:47',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(16208,'5500','121669994559','2022-12-02 18:58:47',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16209,'1000','121669994559','2022-12-02 18:58:47',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16210,'4000','121669994559','2022-12-02 18:58:47',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(16211,'1110','121669996794','2022-12-02 19:49:21',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(16212,'1110','121669996794','2022-12-02 19:49:21',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16213,'1110','121669996794','2022-12-02 19:49:21',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(16214,'5500','121669996794','2022-12-02 19:49:21',8299.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16215,'1000','121669996794','2022-12-02 19:49:21',11380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16216,'4000','121669996794','2022-12-02 19:49:21',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(16217,'4000','121669996794','2022-12-02 19:49:21',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16218,'4000','121669996794','2022-12-02 19:49:21',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(16219,'1110','121669999857','2022-12-02 20:18:46',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16220,'1110','121669999857','2022-12-02 20:18:46',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16221,'1110','121669999857','2022-12-02 20:18:46',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16222,'1110','121669999857','2022-12-02 20:18:46',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16223,'5500','121669999857','2022-12-02 20:18:46',2213.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16224,'1000','121669999857','2022-12-02 20:18:46',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16225,'4000','121669999857','2022-12-02 20:18:46',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16226,'4000','121669999857','2022-12-02 20:18:46',NULL,750.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16227,'4000','121669999857','2022-12-02 20:18:46',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16228,'4000','121669999857','2022-12-02 20:18:46',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16229,'1110','121670001567','2022-12-02 20:23:34',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(16230,'1110','121670001567','2022-12-02 20:23:34',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16231,'5500','121670001567','2022-12-02 20:23:34',484.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16232,'1000','121670001567','2022-12-02 20:23:34',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16233,'4000','121670001567','2022-12-02 20:23:34',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(16234,'4000','121670001567','2022-12-02 20:23:34',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16235,'1110','121670001819','2022-12-02 21:28:51',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16236,'1110','121670001819','2022-12-02 21:28:51',NULL,522.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16237,'1110','121670001819','2022-12-02 21:28:51',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16238,'5500','121670001819','2022-12-02 21:28:51',732.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16239,'1000','121670001819','2022-12-02 21:28:51',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16240,'4000','121670001819','2022-12-02 21:28:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16241,'4000','121670001819','2022-12-02 21:28:51',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16242,'4000','121670001819','2022-12-02 21:28:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16243,'1110','121670006965','2022-12-02 21:50:54',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16244,'1110','121670006965','2022-12-02 21:50:54',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16245,'1110','121670006965','2022-12-02 21:50:54',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16246,'1110','121670006965','2022-12-02 21:50:54',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16247,'1110','121670006965','2022-12-02 21:50:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16248,'5500','121670006965','2022-12-02 21:50:54',1366.34,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16249,'1000','121670006965','2022-12-02 21:50:54',2080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16250,'4000','121670006965','2022-12-02 21:50:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16251,'4000','121670006965','2022-12-02 21:50:54',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16252,'4000','121670006965','2022-12-02 21:50:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16253,'4000','121670006965','2022-12-02 21:50:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16254,'4000','121670006965','2022-12-02 21:50:54',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16255,'1110','121670008659','2022-12-02 22:20:30',NULL,1566.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16256,'1110','121670008659','2022-12-02 22:20:30',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16257,'1110','121670008659','2022-12-02 22:20:30',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16258,'5500','121670008659','2022-12-02 22:20:30',1929.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16259,'1000','121670008659','2022-12-02 22:20:30',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16260,'4000','121670008659','2022-12-02 22:20:30',NULL,2250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16261,'4000','121670008659','2022-12-02 22:20:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16262,'4000','121670008659','2022-12-02 22:20:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16263,'1110','121670009053','2022-12-02 22:34:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16264,'1110','121670009053','2022-12-02 22:34:03',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16265,'5500','121670009053','2022-12-02 22:34:03',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16266,'1000','121670009053','2022-12-02 22:34:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16267,'4000','121670009053','2022-12-02 22:34:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16268,'4000','121670009053','2022-12-02 22:34:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16269,'1110','121670010207','2022-12-02 22:43:40',NULL,1044.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16270,'5500','121670010207','2022-12-02 22:43:40',1044.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16271,'1000','121670010207','2022-12-02 22:43:40',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16272,'4000','121670010207','2022-12-02 22:43:40',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16273,'1110','121670011519','2022-12-02 23:05:39',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16274,'5500','121670011519','2022-12-02 23:05:39',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16275,'1000','121670011519','2022-12-02 23:05:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16276,'4000','121670011519','2022-12-02 23:05:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16277,'1110','121670011544','2022-12-02 23:15:53',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16278,'1110','121670011544','2022-12-02 23:15:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16279,'1110','121670011544','2022-12-02 23:15:53',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16280,'1110','121670011544','2022-12-02 23:15:53',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16281,'1110','121670011544','2022-12-02 23:15:53',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16282,'1110','121670011544','2022-12-02 23:15:53',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16283,'1110','121670011544','2022-12-02 23:15:53',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16284,'5500','121670011544','2022-12-02 23:15:53',1349.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16285,'1000','121670011544','2022-12-02 23:15:53',1890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16286,'4000','121670011544','2022-12-02 23:15:53',NULL,80.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(16287,'4000','121670011544','2022-12-02 23:15:53',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16288,'4000','121670011544','2022-12-02 23:15:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16289,'4000','121670011544','2022-12-02 23:15:53',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16290,'4000','121670011544','2022-12-02 23:15:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16291,'4000','121670011544','2022-12-02 23:15:53',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16292,'4000','121670011544','2022-12-02 23:15:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16293,'1110','121670012163','2022-12-02 23:16:29',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(16294,'5500','121670012163','2022-12-02 23:16:29',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16295,'1000','121670012163','2022-12-02 23:16:29',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16296,'4000','121670012163','2022-12-02 23:16:29',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(16297,'1110','121670012194','2022-12-02 23:19:49',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(16298,'5500','121670012194','2022-12-02 23:19:49',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16299,'1000','121670012194','2022-12-02 23:19:49',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16300,'4000','121670012194','2022-12-02 23:19:49',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(16301,'1110','121670012395','2022-12-02 23:21:46',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16302,'5500','121670012395','2022-12-02 23:21:46',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16303,'1000','121670012395','2022-12-02 23:21:46',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16304,'4000','121670012395','2022-12-02 23:21:46',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16305,'1110','121670012537','2022-12-02 23:23:42',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(16306,'5500','121670012537','2022-12-02 23:23:42',1072.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16307,'1000','121670012537','2022-12-02 23:23:42',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16308,'4000','121670012537','2022-12-02 23:23:42',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(16309,'1110','121670012940','2022-12-02 23:30:10',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(16310,'5500','121670012940','2022-12-02 23:30:10',1304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16311,'1000','121670012940','2022-12-02 23:30:10',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16312,'4000','121670012940','2022-12-02 23:30:10',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(16313,'1110','121670013048','2022-12-02 23:31:01',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16314,'5500','121670013048','2022-12-02 23:31:01',348.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16315,'1000','121670013048','2022-12-02 23:31:01',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16316,'4000','121670013048','2022-12-02 23:31:01',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16317,'1110','121670013066','2022-12-02 23:53:38',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16318,'1110','121670013066','2022-12-02 23:53:38',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(16319,'5500','121670013066','2022-12-02 23:53:38',881.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16320,'1000','121670013066','2022-12-02 23:53:38',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16321,'4000','121670013066','2022-12-02 23:53:38',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16322,'4000','121670013066','2022-12-02 23:53:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(16323,'1110','121670014423','2022-12-02 23:55:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16324,'5500','121670014423','2022-12-02 23:55:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16325,'1000','121670014423','2022-12-02 23:55:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16326,'4000','121670014423','2022-12-02 23:55:44',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16327,'1110','121670015317','2022-12-03 00:10:04',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16328,'1110','121670015317','2022-12-03 00:10:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16329,'1110','121670015317','2022-12-03 00:10:04',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16330,'5500','121670015317','2022-12-03 00:10:04',1445.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16331,'1000','121670015317','2022-12-03 00:10:04',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16332,'4000','121670015317','2022-12-03 00:10:04',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16333,'4000','121670015317','2022-12-03 00:10:04',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16334,'4000','121670015317','2022-12-03 00:10:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16335,'1110','121670015443','2022-12-03 00:12:20',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(16336,'5500','121670015443','2022-12-03 00:12:20',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16337,'1000','121670015443','2022-12-03 00:12:20',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16338,'4000','121670015443','2022-12-03 00:12:20',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(16339,'1110','121670015546','2022-12-03 00:23:59',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16340,'1110','121670015546','2022-12-03 00:23:59',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(16341,'5500','121670015546','2022-12-03 00:23:59',7494.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16342,'1000','121670015546','2022-12-03 00:23:59',10160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16343,'4000','121670015546','2022-12-03 00:23:59',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16344,'4000','121670015546','2022-12-03 00:23:59',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(16345,'1110','121670020454','2022-12-03 01:35:46',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16346,'1110','121670020454','2022-12-03 01:35:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16347,'5500','121670020454','2022-12-03 01:35:46',836.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16348,'1000','121670020454','2022-12-03 01:35:46',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16349,'4000','121670020454','2022-12-03 01:35:46',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16350,'4000','121670020454','2022-12-03 01:35:46',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16351,'1110','121670020875','2022-12-03 01:41:29',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16352,'5500','121670020875','2022-12-03 01:41:29',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16353,'1000','121670020875','2022-12-03 01:41:29',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16354,'4000','121670020875','2022-12-03 01:41:29',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16355,'1110','121670020894','2022-12-03 01:49:34',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(16356,'5500','121670020894','2022-12-03 01:49:34',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16357,'1000','121670020894','2022-12-03 01:49:34',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16358,'4000','121670020894','2022-12-03 01:49:34',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(16359,'1110','121670021381','2022-12-03 01:50:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16360,'5500','121670021381','2022-12-03 01:50:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16361,'1000','121670021381','2022-12-03 01:50:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16362,'4000','121670021381','2022-12-03 01:50:53',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16363,'1110','121670021458','2022-12-03 02:07:11',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(16364,'5500','121670021458','2022-12-03 02:07:11',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16365,'1000','121670021458','2022-12-03 02:07:11',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16366,'4000','121670021458','2022-12-03 02:07:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(16367,'1110','121670022720','2022-12-03 02:13:41',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16368,'1110','121670022720','2022-12-03 02:13:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16369,'1110','121670022720','2022-12-03 02:13:41',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16370,'1110','121670022720','2022-12-03 02:13:41',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16371,'1110','121670022720','2022-12-03 02:13:41',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16372,'5500','121670022720','2022-12-03 02:13:41',945.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16373,'1000','121670022720','2022-12-03 02:13:41',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16374,'4000','121670022720','2022-12-03 02:13:41',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16375,'4000','121670022720','2022-12-03 02:13:41',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16376,'4000','121670022720','2022-12-03 02:13:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16377,'4000','121670022720','2022-12-03 02:13:41',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16378,'4000','121670022720','2022-12-03 02:13:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16379,'1110','121670023258','2022-12-03 02:28:27',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16380,'1110','121670023258','2022-12-03 02:28:27',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16381,'1110','121670023258','2022-12-03 02:28:27',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16382,'1110','121670023258','2022-12-03 02:28:27',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16383,'1110','121670023258','2022-12-03 02:28:27',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16384,'5500','121670023258','2022-12-03 02:28:27',1843.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16385,'1000','121670023258','2022-12-03 02:28:27',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16386,'4000','121670023258','2022-12-03 02:28:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16387,'4000','121670023258','2022-12-03 02:28:27',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16388,'4000','121670023258','2022-12-03 02:28:27',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16389,'4000','121670023258','2022-12-03 02:28:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16390,'4000','121670023258','2022-12-03 02:28:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16391,'1110','121670023826','2022-12-03 02:30:39',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(16392,'5500','121670023826','2022-12-03 02:30:39',410.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16393,'1000','121670023826','2022-12-03 02:30:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16394,'4000','121670023826','2022-12-03 02:30:39',NULL,500.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(16395,'1110','121670023843','2022-12-03 02:37:28',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16396,'1110','121670023843','2022-12-03 02:37:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16397,'5500','121670023843','2022-12-03 02:37:28',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16398,'1000','121670023843','2022-12-03 02:37:28',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16399,'4000','121670023843','2022-12-03 02:37:28',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16400,'4000','121670023843','2022-12-03 02:37:28',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16401,'1110','121670024634','2022-12-03 02:44:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16402,'5500','121670024634','2022-12-03 02:44:27',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16403,'1000','121670024634','2022-12-03 02:44:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16404,'4000','121670024634','2022-12-03 02:44:27',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16405,'1110','121670025033','2022-12-03 02:50:43',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16406,'5500','121670025033','2022-12-03 02:50:43',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16407,'1000','121670025033','2022-12-03 02:50:43',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16408,'4000','121670025033','2022-12-03 02:50:43',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16409,'1110','121670025056','2022-12-03 02:56:34',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(16410,'1110','121670025056','2022-12-03 02:56:34',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16411,'5500','121670025056','2022-12-03 02:56:34',432.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16412,'1000','121670025056','2022-12-03 02:56:34',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16413,'4000','121670025056','2022-12-03 02:56:34',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(16414,'4000','121670025056','2022-12-03 02:56:34',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16415,'1110','121670025400','2022-12-03 03:02:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16416,'1110','121670025400','2022-12-03 03:02:16',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(16417,'5500','121670025400','2022-12-03 03:02:16',472.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16418,'1000','121670025400','2022-12-03 03:02:16',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16419,'4000','121670025400','2022-12-03 03:02:16',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16420,'4000','121670025400','2022-12-03 03:02:16',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(16421,'1110','121670025746','2022-12-03 03:06:46',NULL,660.00,'','12','1','Inventory sold','1','','sales','8906125990009','','No',NULL,NULL,''),(16422,'1110','121670025746','2022-12-03 03:06:46',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16423,'1110','121670025746','2022-12-03 03:06:46',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16424,'5500','121670025746','2022-12-03 03:06:46',887.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16425,'1000','121670025746','2022-12-03 03:06:46',1390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16426,'4000','121670025746','2022-12-03 03:06:46',NULL,1000.00,'','12','1','Good sold','1','','sales','8906125990009','','No',NULL,NULL,''),(16427,'4000','121670025746','2022-12-03 03:06:46',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16428,'4000','121670025746','2022-12-03 03:06:46',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16429,'1110','121670026013','2022-12-03 03:09:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16430,'5500','121670026013','2022-12-03 03:09:11',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16431,'1000','121670026013','2022-12-03 03:09:11',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16432,'4000','121670026013','2022-12-03 03:09:11',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16433,'1110','121670039216','2022-12-03 06:53:00',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(16434,'1110','121670039216','2022-12-03 06:53:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16435,'1110','121670039216','2022-12-03 06:53:00',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16436,'5500','121670039216','2022-12-03 06:53:00',860.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16437,'1000','121670039216','2022-12-03 06:53:00',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16438,'4000','121670039216','2022-12-03 06:53:00',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(16439,'4000','121670039216','2022-12-03 06:53:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16440,'4000','121670039216','2022-12-03 06:53:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16441,'1110','121670046179','2022-12-03 10:37:08',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(16442,'1110','121670046179','2022-12-03 10:37:08',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16443,'5500','121670046179','2022-12-03 10:37:08',212.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16444,'1000','121670046179','2022-12-03 10:37:08',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16445,'4000','121670046179','2022-12-03 10:37:08',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(16446,'4000','121670046179','2022-12-03 10:37:08',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16447,'1110','121670053543','2022-12-03 12:31:54',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16448,'5500','121670053543','2022-12-03 12:31:54',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16449,'1000','121670053543','2022-12-03 12:31:54',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16450,'4000','121670053543','2022-12-03 12:31:54',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16451,'1110','121670059918','2022-12-03 13:06:48',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16452,'1110','121670059918','2022-12-03 13:06:48',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16453,'5500','121670059918','2022-12-03 13:06:48',554.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16454,'1000','121670059918','2022-12-03 13:06:48',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16455,'4000','121670059918','2022-12-03 13:06:48',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16456,'4000','121670059918','2022-12-03 13:06:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16457,'1110','121670062011','2022-12-03 13:31:05',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16458,'1110','121670062011','2022-12-03 13:31:05',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16459,'5500','121670062011','2022-12-03 13:31:05',579.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16460,'1000','121670062011','2022-12-03 13:31:05',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16461,'4000','121670062011','2022-12-03 13:31:05',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16462,'4000','121670062011','2022-12-03 13:31:05',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16463,'1110','121670063529','2022-12-03 13:33:28',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16464,'5500','121670063529','2022-12-03 13:33:28',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16465,'1000','121670063529','2022-12-03 13:33:28',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16466,'4000','121670063529','2022-12-03 13:33:28',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16467,'1110','121670090013','2022-12-03 21:11:49',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16468,'1110','121670090013','2022-12-03 21:11:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16469,'5500','121670090013','2022-12-03 21:11:49',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16470,'1000','121670090013','2022-12-03 21:11:49',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16471,'4000','121670090013','2022-12-03 21:11:49',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16472,'4000','121670090013','2022-12-03 21:11:49',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16473,'1110','121670091583','2022-12-03 22:02:13',NULL,310.00,'','12','1','Inventory sold','1','','sales','5000196006652','','No',NULL,NULL,''),(16474,'1110','121670091583','2022-12-03 22:02:13',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(16475,'5500','121670091583','2022-12-03 22:02:13',515.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16476,'1000','121670091583','2022-12-03 22:02:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16477,'4000','121670091583','2022-12-03 22:02:13',NULL,500.00,'','12','1','Good sold','1','','sales','5000196006652','','No',NULL,NULL,''),(16478,'4000','121670091583','2022-12-03 22:02:13',NULL,250.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(16479,'1110','121670094139','2022-12-03 22:27:33',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16480,'5500','121670094139','2022-12-03 22:27:33',64.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16481,'1000','121670094139','2022-12-03 22:27:33',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16482,'4000','121670094139','2022-12-03 22:27:33',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16483,'1110','121670096032','2022-12-03 23:12:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16484,'5500','121670096032','2022-12-03 23:12:27',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16485,'1000','121670096032','2022-12-03 23:12:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16486,'4000','121670096032','2022-12-03 23:12:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16487,'1110','121670100800','2022-12-03 23:53:31',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(16488,'5500','121670100800','2022-12-03 23:53:31',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16489,'1000','121670100800','2022-12-03 23:53:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16490,'4000','121670100800','2022-12-03 23:53:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(16491,'1110','121670100815','2022-12-03 23:56:51',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(16492,'5500','121670100815','2022-12-03 23:56:51',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16493,'1000','121670100815','2022-12-03 23:56:51',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16494,'4000','121670100815','2022-12-03 23:56:51',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(16495,'1110','121670101959','2022-12-04 00:12:57',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16496,'5500','121670101959','2022-12-04 00:12:57',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16497,'1000','121670101959','2022-12-04 00:12:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16498,'4000','121670101959','2022-12-04 00:12:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16499,'1110','121670101983','2022-12-04 00:34:40',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(16500,'1110','121670101983','2022-12-04 00:34:40',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16501,'1110','121670101983','2022-12-04 00:34:40',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16502,'5500','121670101983','2022-12-04 00:34:40',1008.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16503,'1000','121670101983','2022-12-04 00:34:40',1720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16504,'4000','121670101983','2022-12-04 00:34:40',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(16505,'4000','121670101983','2022-12-04 00:34:40',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16506,'4000','121670101983','2022-12-04 00:34:40',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16507,'1110','121670105567','2022-12-04 01:15:28',NULL,704.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16508,'1110','121670105567','2022-12-04 01:15:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16509,'5500','121670105567','2022-12-04 01:15:28',757.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16510,'1000','121670105567','2022-12-04 01:15:28',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16511,'4000','121670105567','2022-12-04 01:15:28',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16512,'4000','121670105567','2022-12-04 01:15:28',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16513,'1110','121670107246','2022-12-04 01:43:43',NULL,1970.00,'','12','1','Inventory sold','1','','sales','089540448978','','No',NULL,NULL,''),(16514,'1110','121670107246','2022-12-04 01:43:43',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16515,'1110','121670107246','2022-12-04 01:43:43',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(16516,'1110','121670107246','2022-12-04 01:43:43',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16517,'5500','121670107246','2022-12-04 01:43:43',2573.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16518,'1000','121670107246','2022-12-04 01:43:43',3680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16519,'4000','121670107246','2022-12-04 01:43:43',NULL,2600.00,'','12','1','Good sold','1','','sales','089540448978','','No',NULL,NULL,''),(16520,'4000','121670107246','2022-12-04 01:43:43',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16521,'4000','121670107246','2022-12-04 01:43:43',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(16522,'4000','121670107246','2022-12-04 01:43:43',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16523,'1110','121670107453','2022-12-04 01:47:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16524,'1110','121670107453','2022-12-04 01:47:36',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16525,'1110','121670107453','2022-12-04 01:47:36',NULL,260.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(16526,'5500','121670107453','2022-12-04 01:47:36',460.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16527,'1000','121670107453','2022-12-04 01:47:36',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16528,'4000','121670107453','2022-12-04 01:47:36',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16529,'4000','121670107453','2022-12-04 01:47:36',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16530,'4000','121670107453','2022-12-04 01:47:36',NULL,360.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(16531,'1110','121670107659','2022-12-04 02:14:05',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(16532,'1110','121670107659','2022-12-04 02:14:05',NULL,72.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16533,'5500','121670107659','2022-12-04 02:14:05',927.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16534,'1000','121670107659','2022-12-04 02:14:05',1660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16535,'4000','121670107659','2022-12-04 02:14:05',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(16536,'4000','121670107659','2022-12-04 02:14:05',NULL,160.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16537,'1110','121670109274','2022-12-04 02:24:00',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(16538,'5500','121670109274','2022-12-04 02:24:00',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16539,'1000','121670109274','2022-12-04 02:24:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16540,'4000','121670109274','2022-12-04 02:24:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(16541,'1110','121670109845','2022-12-04 02:53:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16542,'5500','121670109845','2022-12-04 02:53:33',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16543,'1000','121670109845','2022-12-04 02:53:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16544,'4000','121670109845','2022-12-04 02:53:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16545,'1110','121670111618','2022-12-04 03:08:10',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16546,'5500','121670111618','2022-12-04 03:08:10',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16547,'1000','121670111618','2022-12-04 03:08:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16548,'4000','121670111618','2022-12-04 03:08:10',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16549,'1110','121670115286','2022-12-04 03:55:45',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16550,'1110','121670115286','2022-12-04 03:55:45',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16551,'5500','121670115286','2022-12-04 03:55:45',1289.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16552,'1000','121670115286','2022-12-04 03:55:45',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16553,'4000','121670115286','2022-12-04 03:55:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16554,'4000','121670115286','2022-12-04 03:55:45',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16555,'1110','121670115365','2022-12-04 04:00:15',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16556,'5500','121670115365','2022-12-04 04:00:15',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16557,'1000','121670115365','2022-12-04 04:00:15',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16558,'4000','121670115365','2022-12-04 04:00:15',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16559,'1110','121670115621','2022-12-04 04:29:49',NULL,4333.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(16560,'1110','121670115621','2022-12-04 04:29:49',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16561,'1110','121670115621','2022-12-04 04:29:49',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16562,'5500','121670115621','2022-12-04 04:29:49',4559.29,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16563,'1000','121670115621','2022-12-04 04:29:49',6350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16564,'4000','121670115621','2022-12-04 04:29:49',NULL,6000.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(16565,'4000','121670115621','2022-12-04 04:29:49',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16566,'4000','121670115621','2022-12-04 04:29:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16567,'1110','121670117609','2022-12-04 04:53:41',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(16568,'5500','121670117609','2022-12-04 04:53:41',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16569,'1000','121670117609','2022-12-04 04:53:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16570,'4000','121670117609','2022-12-04 04:53:41',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(16571,'1110','121670119768','2022-12-04 05:11:42',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16572,'1110','121670119768','2022-12-04 05:11:42',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16573,'5500','121670119768','2022-12-04 05:11:42',400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16574,'1000','121670119768','2022-12-04 05:11:42',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16575,'4000','121670119768','2022-12-04 05:11:42',NULL,500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16576,'4000','121670119768','2022-12-04 05:11:42',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16577,'1110','121670120320','2022-12-04 05:18:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16578,'1110','121670120320','2022-12-04 05:18:59',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16579,'5500','121670120320','2022-12-04 05:18:59',473.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16580,'1000','121670120320','2022-12-04 05:18:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16581,'4000','121670120320','2022-12-04 05:18:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16582,'4000','121670120320','2022-12-04 05:18:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16583,'1110','121670120380','2022-12-04 05:20:12',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16584,'1110','121670120380','2022-12-04 05:20:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16585,'5500','121670120380','2022-12-04 05:20:12',235.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16586,'1000','121670120380','2022-12-04 05:20:12',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16587,'4000','121670120380','2022-12-04 05:20:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16588,'4000','121670120380','2022-12-04 05:20:12',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16589,'1110','121670120419','2022-12-04 05:25:06',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16590,'5500','121670120419','2022-12-04 05:25:06',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16591,'1000','121670120419','2022-12-04 05:25:06',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16592,'4000','121670120419','2022-12-04 05:25:06',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16593,'1110','121670120711','2022-12-04 05:27:04',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(16594,'5500','121670120711','2022-12-04 05:27:04',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16595,'1000','121670120711','2022-12-04 05:27:04',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16596,'4000','121670120711','2022-12-04 05:27:04',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(16597,'1110','121670120847','2022-12-04 05:27:54',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16598,'5500','121670120847','2022-12-04 05:27:54',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16599,'1000','121670120847','2022-12-04 05:27:54',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16600,'4000','121670120847','2022-12-04 05:27:54',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16601,'1110','121670120879','2022-12-04 05:32:12',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16602,'5500','121670120879','2022-12-04 05:32:12',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16603,'1000','121670120879','2022-12-04 05:32:12',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16604,'4000','121670120879','2022-12-04 05:32:12',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16605,'1110','121670126678','2022-12-04 07:05:59',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16606,'1110','121670126678','2022-12-04 07:05:59',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16607,'1110','121670126678','2022-12-04 07:05:59',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16608,'1110','121670126678','2022-12-04 07:05:59',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(16609,'5500','121670126678','2022-12-04 07:05:59',2014.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16610,'1000','121670126678','2022-12-04 07:05:59',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16611,'4000','121670126678','2022-12-04 07:05:59',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16612,'4000','121670126678','2022-12-04 07:05:59',NULL,750.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16613,'4000','121670126678','2022-12-04 07:05:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16614,'4000','121670126678','2022-12-04 07:05:59',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(16615,'1110','121670129619','2022-12-04 09:41:21',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(16616,'5500','121670129619','2022-12-04 09:41:21',175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16617,'1000','121670129619','2022-12-04 09:41:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16618,'4000','121670129619','2022-12-04 09:41:21',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(16619,'1110','121670141029','2022-12-04 11:04:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16620,'1110','121670141029','2022-12-04 11:04:17',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(16621,'5500','121670141029','2022-12-04 11:04:17',229.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16622,'1000','121670141029','2022-12-04 11:04:17',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16623,'4000','121670141029','2022-12-04 11:04:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16624,'4000','121670141029','2022-12-04 11:04:17',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(16625,'1110','121670144919','2022-12-04 12:08:50',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16626,'5500','121670144919','2022-12-04 12:08:50',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16627,'1000','121670144919','2022-12-04 12:08:50',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16628,'4000','121670144919','2022-12-04 12:08:50',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16629,'1110','121670149819','2022-12-04 13:30:40',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16630,'1110','121670149819','2022-12-04 13:30:40',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16631,'5500','121670149819','2022-12-04 13:30:40',354.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16632,'1000','121670149819','2022-12-04 13:30:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16633,'4000','121670149819','2022-12-04 13:30:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16634,'4000','121670149819','2022-12-04 13:30:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16635,'1110','121670162115','2022-12-04 16:55:45',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16636,'1110','121670162115','2022-12-04 16:55:45',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(16637,'5500','121670162115','2022-12-04 16:55:45',387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16638,'1000','121670162115','2022-12-04 16:55:45',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16639,'4000','121670162115','2022-12-04 16:55:45',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(16640,'4000','121670162115','2022-12-04 16:55:45',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(16641,'1110','121670162167','2022-12-04 17:15:18',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(16642,'1110','121670162167','2022-12-04 17:15:18',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16643,'5500','121670162167','2022-12-04 17:15:18',1278.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16644,'1000','121670162167','2022-12-04 17:15:18',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16645,'4000','121670162167','2022-12-04 17:15:18',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(16646,'4000','121670162167','2022-12-04 17:15:18',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16647,'1110','121670184187','2022-12-04 23:04:03',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(16648,'5500','121670184187','2022-12-04 23:04:03',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16649,'1000','121670184187','2022-12-04 23:04:03',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16650,'4000','121670184187','2022-12-04 23:04:03',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(16651,'1110','121670192868','2022-12-05 01:29:09',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16652,'1110','121670192868','2022-12-05 01:29:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16653,'5500','121670192868','2022-12-05 01:29:09',1028.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16654,'1000','121670192868','2022-12-05 01:29:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16655,'4000','121670192868','2022-12-05 01:29:09',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16656,'4000','121670192868','2022-12-05 01:29:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16657,'1110','121670193048','2022-12-05 01:45:16',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387004605','','No',NULL,NULL,''),(16658,'1110','121670193048','2022-12-05 01:45:16',NULL,13000.00,'','12','1','Inventory sold','1','','sales','3245990987611','','No',NULL,NULL,''),(16659,'1110','121670193048','2022-12-05 01:45:16',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(16660,'1110','121670193048','2022-12-05 01:45:16',NULL,447.48,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16661,'1110','121670193048','2022-12-05 01:45:16',NULL,18500.00,'','12','1','Inventory sold','1','','sales','3024480004522','','No',NULL,NULL,''),(16662,'1110','121670193048','2022-12-05 01:45:16',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16663,'5500','121670193048','2022-12-05 01:45:16',33349.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16664,'1000','121670193048','2022-12-05 01:45:16',45280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16665,'4000','121670193048','2022-12-05 01:45:16',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387004605','','No',NULL,NULL,''),(16666,'4000','121670193048','2022-12-05 01:45:16',NULL,17500.00,'','12','1','Good sold','1','','sales','3245990987611','','No',NULL,NULL,''),(16667,'4000','121670193048','2022-12-05 01:45:16',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(16668,'4000','121670193048','2022-12-05 01:45:16',NULL,900.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16669,'4000','121670193048','2022-12-05 01:45:16',NULL,25000.00,'','12','1','Good sold','1','','sales','3024480004522','','No',NULL,NULL,''),(16670,'4000','121670193048','2022-12-05 01:45:16',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16671,'1110','121670193985','2022-12-05 01:57:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16672,'5500','121670193985','2022-12-05 01:57:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16673,'1000','121670193985','2022-12-05 01:57:22',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16674,'4000','121670193985','2022-12-05 01:57:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16675,'1110','121670194661','2022-12-05 02:14:59',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(16676,'1110','121670194661','2022-12-05 02:14:59',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16677,'5500','121670194661','2022-12-05 02:14:59',564.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16678,'1000','121670194661','2022-12-05 02:14:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16679,'4000','121670194661','2022-12-05 02:14:59',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(16680,'4000','121670194661','2022-12-05 02:14:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16681,'1110','121670195703','2022-12-05 02:26:28',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(16682,'5500','121670195703','2022-12-05 02:26:28',1072.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16683,'1000','121670195703','2022-12-05 02:26:28',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16684,'4000','121670195703','2022-12-05 02:26:28',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(16685,'1110','121670205311','2022-12-05 05:20:55',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(16686,'5500','121670205311','2022-12-05 05:20:55',244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16687,'1000','121670205311','2022-12-05 05:20:55',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16688,'4000','121670205311','2022-12-05 05:20:55',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(16689,'1110','121670206886','2022-12-05 05:28:28',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(16690,'1110','121670206886','2022-12-05 05:28:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16691,'1110','121670206886','2022-12-05 05:28:28',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16692,'5500','121670206886','2022-12-05 05:28:28',650.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16693,'1000','121670206886','2022-12-05 05:28:28',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16694,'4000','121670206886','2022-12-05 05:28:28',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(16695,'4000','121670206886','2022-12-05 05:28:28',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16696,'4000','121670206886','2022-12-05 05:28:28',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16697,'1110','121670207313','2022-12-05 05:39:51',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16698,'5500','121670207313','2022-12-05 05:39:51',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16699,'1000','121670207313','2022-12-05 05:39:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16700,'4000','121670207313','2022-12-05 05:39:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16701,'1110','121670207996','2022-12-05 05:48:21',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16702,'5500','121670207996','2022-12-05 05:48:21',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16703,'1000','121670207996','2022-12-05 05:48:21',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16704,'4000','121670207996','2022-12-05 05:48:21',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(16705,'1110','121670208506','2022-12-05 06:13:25',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16706,'5500','121670208506','2022-12-05 06:13:25',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16707,'1000','121670208506','2022-12-05 06:13:25',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16708,'4000','121670208506','2022-12-05 06:13:25',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16709,'1110','121670251904','2022-12-05 17:53:52',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16710,'5500','121670251904','2022-12-05 17:53:52',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16711,'1000','121670251904','2022-12-05 17:53:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16712,'4000','121670251904','2022-12-05 17:53:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16713,'1110','121670252038','2022-12-05 17:54:16',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(16714,'5500','121670252038','2022-12-05 17:54:16',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16715,'1000','121670252038','2022-12-05 17:54:16',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16716,'4000','121670252038','2022-12-05 17:54:16',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(16717,'1110','121670266913','2022-12-05 22:03:59',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(16718,'5500','121670266913','2022-12-05 22:03:59',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16719,'1000','121670266913','2022-12-05 22:03:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16720,'4000','121670266913','2022-12-05 22:03:59',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(16721,'1110','121670267184','2022-12-05 22:06:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(16722,'5500','121670267184','2022-12-05 22:06:45',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16723,'1000','121670267184','2022-12-05 22:06:45',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16724,'4000','121670267184','2022-12-05 22:06:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(16725,'1110','121670267213','2022-12-05 22:37:06',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(16726,'1110','121670267213','2022-12-05 22:37:06',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16727,'5500','121670267213','2022-12-05 22:37:06',154.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16728,'1000','121670267213','2022-12-05 22:37:06',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16729,'4000','121670267213','2022-12-05 22:37:06',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(16730,'4000','121670267213','2022-12-05 22:37:06',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16731,'1110','121670269408','2022-12-05 22:43:39',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(16732,'5500','121670269408','2022-12-05 22:43:39',1750.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16733,'1000','121670269408','2022-12-05 22:43:39',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16734,'4000','121670269408','2022-12-05 22:43:39',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(16735,'1110','121670269424','2022-12-05 22:55:07',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(16736,'5500','121670269424','2022-12-05 22:55:07',922.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16737,'1000','121670269424','2022-12-05 22:55:07',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16738,'4000','121670269424','2022-12-05 22:55:07',NULL,1500.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(16739,'1110','121670270111','2022-12-05 22:59:41',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16740,'1110','121670270111','2022-12-05 22:59:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16741,'5500','121670270111','2022-12-05 22:59:41',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16742,'1000','121670270111','2022-12-05 22:59:41',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16743,'4000','121670270111','2022-12-05 22:59:41',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16744,'4000','121670270111','2022-12-05 22:59:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(16745,'1110','121670270387','2022-12-05 23:04:54',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16746,'5500','121670270387','2022-12-05 23:04:54',64.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16747,'1000','121670270387','2022-12-05 23:04:54',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16748,'4000','121670270387','2022-12-05 23:04:54',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(16749,'1110','121670270699','2022-12-05 23:06:24',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(16750,'5500','121670270699','2022-12-05 23:06:24',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16751,'1000','121670270699','2022-12-05 23:06:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16752,'4000','121670270699','2022-12-05 23:06:24',NULL,250.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(16753,'1110','121670272199','2022-12-05 23:30:29',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16754,'1110','121670272199','2022-12-05 23:30:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16755,'1110','121670272199','2022-12-05 23:30:29',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16756,'5500','121670272199','2022-12-05 23:30:29',410.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16757,'1000','121670272199','2022-12-05 23:30:29',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16758,'4000','121670272199','2022-12-05 23:30:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16759,'4000','121670272199','2022-12-05 23:30:29',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16760,'4000','121670272199','2022-12-05 23:30:29',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(16761,'1110','121670272235','2022-12-05 23:34:57',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16762,'1110','121670272235','2022-12-05 23:34:57',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16763,'1110','121670272235','2022-12-05 23:34:57',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16764,'1110','121670272235','2022-12-05 23:34:57',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16765,'5500','121670272235','2022-12-05 23:34:57',1636.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16766,'1000','121670272235','2022-12-05 23:34:57',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16767,'4000','121670272235','2022-12-05 23:34:57',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16768,'4000','121670272235','2022-12-05 23:34:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16769,'4000','121670272235','2022-12-05 23:34:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16770,'4000','121670272235','2022-12-05 23:34:57',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16771,'1110','121670272502','2022-12-05 23:37:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16772,'5500','121670272502','2022-12-05 23:37:54',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16773,'1000','121670272502','2022-12-05 23:37:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16774,'4000','121670272502','2022-12-05 23:37:54',NULL,250.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16775,'1110','121670273732','2022-12-05 23:56:33',NULL,2011.00,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(16776,'1110','121670273732','2022-12-05 23:56:33',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16777,'1110','121670273732','2022-12-05 23:56:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16778,'5500','121670273732','2022-12-05 23:56:33',2343.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16779,'1000','121670273732','2022-12-05 23:56:33',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16780,'4000','121670273732','2022-12-05 23:56:33',NULL,2800.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(16781,'4000','121670273732','2022-12-05 23:56:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16782,'4000','121670273732','2022-12-05 23:56:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16783,'1110','121670273801','2022-12-06 00:10:59',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16784,'5500','121670273801','2022-12-06 00:10:59',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16785,'1000','121670273801','2022-12-06 00:10:59',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16786,'4000','121670273801','2022-12-06 00:10:59',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16787,'1110','121670274898','2022-12-06 00:40:15',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16788,'5500','121670274898','2022-12-06 00:40:15',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16789,'1000','121670274898','2022-12-06 00:40:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16790,'4000','121670274898','2022-12-06 00:40:15',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16791,'1110','121670276479','2022-12-06 00:41:33',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16792,'5500','121670276479','2022-12-06 00:41:33',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16793,'1000','121670276479','2022-12-06 00:41:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16794,'4000','121670276479','2022-12-06 00:41:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16795,'1110','121670276503','2022-12-06 01:50:43',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16796,'1110','121670276503','2022-12-06 01:50:43',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16797,'5500','121670276503','2022-12-06 01:50:43',372.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16798,'1000','121670276503','2022-12-06 01:50:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16799,'4000','121670276503','2022-12-06 01:50:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(16800,'4000','121670276503','2022-12-06 01:50:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16801,'1110','121670308644','2022-12-06 12:39:46',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16802,'5500','121670308644','2022-12-06 12:39:46',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16803,'1000','121670308644','2022-12-06 12:39:46',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16804,'4000','121670308644','2022-12-06 12:39:46',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(16805,'1110','121670337769','2022-12-06 17:46:44',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16806,'5500','121670337769','2022-12-06 17:46:44',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16807,'1000','121670337769','2022-12-06 17:46:44',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16808,'4000','121670337769','2022-12-06 17:46:44',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16809,'1110','121670340840','2022-12-06 18:34:08',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16810,'5500','121670340840','2022-12-06 18:34:08',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16811,'1000','121670340840','2022-12-06 18:34:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16812,'4000','121670340840','2022-12-06 18:34:08',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16813,'1110','121670340881','2022-12-06 18:59:38',NULL,13000.00,'','12','1','Inventory sold','1','','sales','3245990987611','','No',NULL,NULL,''),(16814,'1110','121670340881','2022-12-06 18:59:38',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(16815,'1110','121670340881','2022-12-06 18:59:38',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16816,'1110','121670340881','2022-12-06 18:59:38',NULL,372.90,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16817,'5500','121670340881','2022-12-06 18:59:38',16168.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16818,'1000','121670340881','2022-12-06 18:59:38',22000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16819,'4000','121670340881','2022-12-06 18:59:38',NULL,17500.00,'','12','1','Good sold','1','','sales','3245990987611','','No',NULL,NULL,''),(16820,'4000','121670340881','2022-12-06 18:59:38',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(16821,'4000','121670340881','2022-12-06 18:59:38',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16822,'4000','121670340881','2022-12-06 18:59:38',NULL,750.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16823,'1110','121670342636','2022-12-06 19:19:31',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16824,'5500','121670342636','2022-12-06 19:19:31',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16825,'1000','121670342636','2022-12-06 19:19:31',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16826,'4000','121670342636','2022-12-06 19:19:31',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16827,'1110','121670343607','2022-12-06 19:20:34',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(16828,'5500','121670343607','2022-12-06 19:20:34',2070.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16829,'1000','121670343607','2022-12-06 19:20:34',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16830,'4000','121670343607','2022-12-06 19:20:34',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(16831,'1110','121670345134','2022-12-06 19:46:00',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16832,'1110','121670345134','2022-12-06 19:46:00',NULL,790.00,'','12','1','Inventory sold','1','','sales','8005415049608','','No',NULL,NULL,''),(16833,'5500','121670345134','2022-12-06 19:46:00',1827.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16834,'1000','121670345134','2022-12-06 19:46:00',3050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16835,'4000','121670345134','2022-12-06 19:46:00',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16836,'4000','121670345134','2022-12-06 19:46:00',NULL,1550.00,'','12','1','Good sold','1','','sales','8005415049608','','No',NULL,NULL,''),(16837,'1110','121670345169','2022-12-06 20:50:41',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(16838,'1110','121670345169','2022-12-06 20:50:41',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16839,'5500','121670345169','2022-12-06 20:50:41',1473.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16840,'1000','121670345169','2022-12-06 20:50:41',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16841,'4000','121670345169','2022-12-06 20:50:41',NULL,1800.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(16842,'4000','121670345169','2022-12-06 20:50:41',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16843,'1110','121670349105','2022-12-06 21:10:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16844,'5500','121670349105','2022-12-06 21:10:33',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16845,'1000','121670349105','2022-12-06 21:10:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16846,'4000','121670349105','2022-12-06 21:10:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16847,'1110','121670350306','2022-12-06 21:12:03',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16848,'5500','121670350306','2022-12-06 21:12:03',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16849,'1000','121670350306','2022-12-06 21:12:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16850,'4000','121670350306','2022-12-06 21:12:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16851,'1110','121670350333','2022-12-06 21:18:37',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(16852,'5500','121670350333','2022-12-06 21:18:37',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16853,'1000','121670350333','2022-12-06 21:18:37',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16854,'4000','121670350333','2022-12-06 21:18:37',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(16855,'1110','121670352363','2022-12-06 21:47:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(16856,'1110','121670352363','2022-12-06 21:47:11',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16857,'5500','121670352363','2022-12-06 21:47:11',1470.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16858,'1000','121670352363','2022-12-06 21:47:11',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16859,'4000','121670352363','2022-12-06 21:47:11',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(16860,'4000','121670352363','2022-12-06 21:47:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16861,'1110','121670352913','2022-12-06 22:01:16',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16862,'1110','121670352913','2022-12-06 22:01:16',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16863,'5500','121670352913','2022-12-06 22:01:16',630.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16864,'1000','121670352913','2022-12-06 22:01:16',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16865,'4000','121670352913','2022-12-06 22:01:16',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(16866,'4000','121670352913','2022-12-06 22:01:16',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(16867,'1110','121670353281','2022-12-06 22:04:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16868,'5500','121670353281','2022-12-06 22:04:16',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16869,'1000','121670353281','2022-12-06 22:04:16',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16870,'4000','121670353281','2022-12-06 22:04:16',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16871,'1110','121670355343','2022-12-06 22:37:11',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16872,'1110','121670355343','2022-12-06 22:37:11',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16873,'5500','121670355343','2022-12-06 22:37:11',676.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16874,'1000','121670355343','2022-12-06 22:37:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16875,'4000','121670355343','2022-12-06 22:37:11',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16876,'4000','121670355343','2022-12-06 22:37:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(16877,'1110','121670355442','2022-12-06 22:37:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(16878,'5500','121670355442','2022-12-06 22:37:37',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16879,'1000','121670355442','2022-12-06 22:37:37',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16880,'4000','121670355442','2022-12-06 22:37:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(16881,'1110','121670356980','2022-12-06 23:03:24',NULL,148.32,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16882,'1110','121670356980','2022-12-06 23:03:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16883,'5500','121670356980','2022-12-06 23:03:24',1273.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16884,'1000','121670356980','2022-12-06 23:03:24',2030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16885,'4000','121670356980','2022-12-06 23:03:24',NULL,280.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16886,'4000','121670356980','2022-12-06 23:03:24',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(16887,'1110','121670357648','2022-12-06 23:14:26',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16888,'1110','121670357648','2022-12-06 23:14:26',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16889,'5500','121670357648','2022-12-06 23:14:26',458.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16890,'1000','121670357648','2022-12-06 23:14:26',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16891,'4000','121670357648','2022-12-06 23:14:26',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16892,'4000','121670357648','2022-12-06 23:14:26',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(16893,'1110','121670358457','2022-12-06 23:28:30',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16894,'1110','121670358457','2022-12-06 23:28:30',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(16895,'5500','121670358457','2022-12-06 23:28:30',212.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16896,'1000','121670358457','2022-12-06 23:28:30',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16897,'4000','121670358457','2022-12-06 23:28:30',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16898,'4000','121670358457','2022-12-06 23:28:30',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(16899,'1110','121670366705','2022-12-07 01:45:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16900,'5500','121670366705','2022-12-07 01:45:15',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16901,'1000','121670366705','2022-12-07 01:45:15',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16902,'4000','121670366705','2022-12-07 01:45:15',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16903,'1110','121670366725','2022-12-07 02:50:53',NULL,776.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(16904,'5500','121670366725','2022-12-07 02:50:53',776.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16905,'1000','121670366725','2022-12-07 02:50:53',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16906,'4000','121670366725','2022-12-07 02:50:53',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(16907,'1110','121670370769','2022-12-07 03:00:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16908,'5500','121670370769','2022-12-07 03:00:54',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16909,'1000','121670370769','2022-12-07 03:00:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16910,'4000','121670370769','2022-12-07 03:00:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(16911,'1110','121670371289','2022-12-07 03:19:42',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(16912,'1110','121670371289','2022-12-07 03:19:42',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16913,'5500','121670371289','2022-12-07 03:19:42',807.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16914,'1000','121670371289','2022-12-07 03:19:42',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16915,'4000','121670371289','2022-12-07 03:19:42',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(16916,'4000','121670371289','2022-12-07 03:19:42',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16917,'1110','121670376614','2022-12-07 04:30:34',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16918,'1110','121670376614','2022-12-07 04:30:34',NULL,1304.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(16919,'5500','121670376614','2022-12-07 04:30:34',1407.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16920,'1000','121670376614','2022-12-07 04:30:34',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16921,'4000','121670376614','2022-12-07 04:30:34',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(16922,'4000','121670376614','2022-12-07 04:30:34',NULL,2200.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(16923,'1110','121670377146','2022-12-07 04:40:59',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16924,'1110','121670377146','2022-12-07 04:40:59',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16925,'5500','121670377146','2022-12-07 04:40:59',743.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16926,'1000','121670377146','2022-12-07 04:40:59',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16927,'4000','121670377146','2022-12-07 04:40:59',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(16928,'4000','121670377146','2022-12-07 04:40:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16929,'1110','121670397503','2022-12-07 10:49:07',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(16930,'1110','121670397503','2022-12-07 10:49:07',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(16931,'5500','121670397503','2022-12-07 10:49:07',228.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16932,'1000','121670397503','2022-12-07 10:49:07',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16933,'4000','121670397503','2022-12-07 10:49:07',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(16934,'4000','121670397503','2022-12-07 10:49:07',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(16935,'1110','121670399352','2022-12-07 11:12:13',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16936,'5500','121670399352','2022-12-07 11:12:13',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16937,'1000','121670399352','2022-12-07 11:12:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16938,'4000','121670399352','2022-12-07 11:12:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(16939,'1110','121670400738','2022-12-07 11:23:09',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16940,'5500','121670400738','2022-12-07 11:23:09',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16941,'1000','121670400738','2022-12-07 11:23:09',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16942,'4000','121670400738','2022-12-07 11:23:09',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(16943,'1110','121670401394','2022-12-07 12:55:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16944,'1110','121670401394','2022-12-07 12:55:29',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16945,'5500','121670401394','2022-12-07 12:55:29',325.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16946,'1000','121670401394','2022-12-07 12:55:29',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16947,'4000','121670401394','2022-12-07 12:55:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(16948,'4000','121670401394','2022-12-07 12:55:29',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16949,'1110','121670406935','2022-12-07 12:58:20',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16950,'5500','121670406935','2022-12-07 12:58:20',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16951,'1000','121670406935','2022-12-07 12:58:20',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16952,'4000','121670406935','2022-12-07 12:58:20',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16953,'1110','121670407104','2022-12-07 13:19:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(16954,'1110','121670407104','2022-12-07 13:19:24',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(16955,'1110','121670407104','2022-12-07 13:19:24',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16956,'5500','121670407104','2022-12-07 13:19:24',695.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16957,'1000','121670407104','2022-12-07 13:19:24',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16958,'4000','121670407104','2022-12-07 13:19:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(16959,'4000','121670407104','2022-12-07 13:19:24',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(16960,'4000','121670407104','2022-12-07 13:19:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(16961,'1110','121670408388','2022-12-07 13:46:53',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(16962,'1110','121670408388','2022-12-07 13:46:53',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(16963,'1110','121670408388','2022-12-07 13:46:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16964,'5500','121670408388','2022-12-07 13:46:53',541.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16965,'1000','121670408388','2022-12-07 13:46:53',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16966,'4000','121670408388','2022-12-07 13:46:53',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(16967,'4000','121670408388','2022-12-07 13:46:53',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(16968,'4000','121670408388','2022-12-07 13:46:53',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(16969,'1110','121670410131','2022-12-07 14:13:35',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16970,'5500','121670410131','2022-12-07 14:13:35',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16971,'1000','121670410131','2022-12-07 14:13:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16972,'4000','121670410131','2022-12-07 14:13:35',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(16973,'1110','121670423477','2022-12-07 18:48:00',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16974,'5500','121670423477','2022-12-07 18:48:00',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16975,'1000','121670423477','2022-12-07 18:48:00',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16976,'4000','121670423477','2022-12-07 18:48:00',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(16977,'1110','121670428086','2022-12-07 19:00:19',NULL,7531.00,'','12','1','Inventory sold','1','','sales','5000267165806','','No',NULL,NULL,''),(16978,'1110','121670428086','2022-12-07 19:00:19',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16979,'1110','121670428086','2022-12-07 19:00:19',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16980,'5500','121670428086','2022-12-07 19:00:19',8376.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16981,'1000','121670428086','2022-12-07 19:00:19',11500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16982,'4000','121670428086','2022-12-07 19:00:19',NULL,10000.00,'','12','1','Good sold','1','','sales','5000267165806','','No',NULL,NULL,''),(16983,'4000','121670428086','2022-12-07 19:00:19',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(16984,'4000','121670428086','2022-12-07 19:00:19',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(16985,'1110','121670435742','2022-12-07 21:02:28',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(16986,'5500','121670435742','2022-12-07 21:02:28',2835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16987,'1000','121670435742','2022-12-07 21:02:28',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16988,'4000','121670435742','2022-12-07 21:02:28',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(16989,'1110','121670438356','2022-12-07 22:05:57',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16990,'1110','121670438356','2022-12-07 22:05:57',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(16991,'5500','121670438356','2022-12-07 22:05:57',345.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16992,'1000','121670438356','2022-12-07 22:05:57',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16993,'4000','121670438356','2022-12-07 22:05:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(16994,'4000','121670438356','2022-12-07 22:05:57',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(16995,'1110','121670440532','2022-12-07 22:15:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16996,'5500','121670440532','2022-12-07 22:15:58',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(16997,'1000','121670440532','2022-12-07 22:15:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(16998,'4000','121670440532','2022-12-07 22:15:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(16999,'1110','121670440564','2022-12-07 22:18:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17000,'1110','121670440564','2022-12-07 22:18:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17001,'5500','121670440564','2022-12-07 22:18:51',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17002,'1000','121670440564','2022-12-07 22:18:51',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17003,'4000','121670440564','2022-12-07 22:18:51',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17004,'4000','121670440564','2022-12-07 22:18:51',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17005,'1110','121670440742','2022-12-07 22:20:08',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(17006,'5500','121670440742','2022-12-07 22:20:08',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17007,'1000','121670440742','2022-12-07 22:20:08',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17008,'4000','121670440742','2022-12-07 22:20:08',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(17009,'1110','121670440812','2022-12-07 22:21:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17010,'5500','121670440812','2022-12-07 22:21:06',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17011,'1000','121670440812','2022-12-07 22:21:06',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17012,'4000','121670440812','2022-12-07 22:21:06',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17013,'1110','121670440872','2022-12-07 22:36:23',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17014,'5500','121670440872','2022-12-07 22:36:23',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17015,'1000','121670440872','2022-12-07 22:36:23',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17016,'4000','121670440872','2022-12-07 22:36:23',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17017,'1110','121670441793','2022-12-07 22:43:30',NULL,836.00,'','12','1','Inventory sold','1','','sales','6161101561021','','No',NULL,NULL,''),(17018,'5500','121670441793','2022-12-07 22:43:30',836.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17019,'1000','121670441793','2022-12-07 22:43:30',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17020,'4000','121670441793','2022-12-07 22:43:30',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101561021','','No',NULL,NULL,''),(17021,'1110','121670442222','2022-12-07 23:00:02',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17022,'5500','121670442222','2022-12-07 23:00:02',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17023,'1000','121670442222','2022-12-07 23:00:02',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17024,'4000','121670442222','2022-12-07 23:00:02',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17025,'1110','121670443206','2022-12-07 23:05:40',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17026,'1110','121670443206','2022-12-07 23:05:40',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17027,'5500','121670443206','2022-12-07 23:05:40',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17028,'1000','121670443206','2022-12-07 23:05:40',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17029,'4000','121670443206','2022-12-07 23:05:40',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17030,'4000','121670443206','2022-12-07 23:05:40',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17031,'1110','121670443855','2022-12-07 23:28:17',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17032,'5500','121670443855','2022-12-07 23:28:17',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17033,'1000','121670443855','2022-12-07 23:28:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17034,'4000','121670443855','2022-12-07 23:28:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17035,'1110','121670446699','2022-12-07 23:58:44',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17036,'5500','121670446699','2022-12-07 23:58:44',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17037,'1000','121670446699','2022-12-07 23:58:44',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17038,'4000','121670446699','2022-12-07 23:58:44',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17039,'1110','121670446728','2022-12-08 00:26:27',NULL,1300.00,'','12','1','Inventory sold','1','','sales','6002323400639','','No',NULL,NULL,''),(17040,'1110','121670446728','2022-12-08 00:26:27',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17041,'1110','121670446728','2022-12-08 00:26:27',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(17042,'1110','121670446728','2022-12-08 00:26:27',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(17043,'5500','121670446728','2022-12-08 00:26:27',11508.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17044,'1000','121670446728','2022-12-08 00:26:27',16300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17045,'4000','121670446728','2022-12-08 00:26:27',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323400639','','No',NULL,NULL,''),(17046,'4000','121670446728','2022-12-08 00:26:27',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17047,'4000','121670446728','2022-12-08 00:26:27',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(17048,'4000','121670446728','2022-12-08 00:26:27',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(17049,'1110','121670448398','2022-12-08 00:43:42',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17050,'1110','121670448398','2022-12-08 00:43:42',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17051,'5500','121670448398','2022-12-08 00:43:42',554.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17052,'1000','121670448398','2022-12-08 00:43:42',790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17053,'4000','121670448398','2022-12-08 00:43:42',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17054,'4000','121670448398','2022-12-08 00:43:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17055,'1110','121670450447','2022-12-08 01:01:47',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17056,'5500','121670450447','2022-12-08 01:01:47',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17057,'1000','121670450447','2022-12-08 01:01:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17058,'4000','121670450447','2022-12-08 01:01:47',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17059,'1110','121670451306','2022-12-08 01:15:35',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17060,'1110','121670451306','2022-12-08 01:15:35',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17061,'5500','121670451306','2022-12-08 01:15:35',553.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17062,'1000','121670451306','2022-12-08 01:15:35',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17063,'4000','121670451306','2022-12-08 01:15:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17064,'4000','121670451306','2022-12-08 01:15:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17065,'1110','121670451340','2022-12-08 01:27:48',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17066,'1110','121670451340','2022-12-08 01:27:48',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17067,'5500','121670451340','2022-12-08 01:27:48',1284.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17068,'1000','121670451340','2022-12-08 01:27:48',1990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17069,'4000','121670451340','2022-12-08 01:27:48',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17070,'4000','121670451340','2022-12-08 01:27:48',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17071,'1110','121670452079','2022-12-08 01:34:11',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17072,'5500','121670452079','2022-12-08 01:34:11',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17073,'1000','121670452079','2022-12-08 01:34:11',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17074,'4000','121670452079','2022-12-08 01:34:11',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17075,'1110','121670452458','2022-12-08 02:08:04',NULL,650.00,'','12','1','Inventory sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17076,'1110','121670452458','2022-12-08 02:08:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(17077,'1110','121670452458','2022-12-08 02:08:04',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17078,'5500','121670452458','2022-12-08 02:08:04',1066.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17079,'1000','121670452458','2022-12-08 02:08:04',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17080,'4000','121670452458','2022-12-08 02:08:04',NULL,900.00,'','12','1','Good sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17081,'4000','121670452458','2022-12-08 02:08:04',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(17082,'4000','121670452458','2022-12-08 02:08:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17083,'1110','121670454862','2022-12-08 02:17:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17084,'5500','121670454862','2022-12-08 02:17:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17085,'1000','121670454862','2022-12-08 02:17:44',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17086,'4000','121670454862','2022-12-08 02:17:44',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17087,'1110','121670495910','2022-12-08 14:14:28',NULL,1699.00,'','12','1','Inventory sold','1','','sales','5010103800457','','No',NULL,NULL,''),(17088,'1110','121670495910','2022-12-08 14:14:28',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(17089,'5500','121670495910','2022-12-08 14:14:28',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17090,'1000','121670495910','2022-12-08 14:14:28',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17091,'4000','121670495910','2022-12-08 14:14:28',NULL,2300.00,'','12','1','Good sold','1','','sales','5010103800457','','No',NULL,NULL,''),(17092,'4000','121670495910','2022-12-08 14:14:28',NULL,250.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(17093,'1110','121670498294','2022-12-08 14:21:48',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17094,'5500','121670498294','2022-12-08 14:21:48',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17095,'1000','121670498294','2022-12-08 14:21:48',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17096,'4000','121670498294','2022-12-08 14:21:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17097,'1110','121670499043','2022-12-08 15:15:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17098,'1110','121670499043','2022-12-08 15:15:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17099,'5500','121670499043','2022-12-08 15:15:08',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17100,'1000','121670499043','2022-12-08 15:15:08',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17101,'4000','121670499043','2022-12-08 15:15:08',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17102,'4000','121670499043','2022-12-08 15:15:08',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17103,'1110','121670501714','2022-12-08 15:20:49',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17104,'1110','121670501714','2022-12-08 15:20:49',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17105,'5500','121670501714','2022-12-08 15:20:49',1517.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17106,'1000','121670501714','2022-12-08 15:20:49',1870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17107,'4000','121670501714','2022-12-08 15:20:49',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17108,'4000','121670501714','2022-12-08 15:20:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17109,'1110','121670502054','2022-12-08 15:28:47',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17110,'5500','121670502054','2022-12-08 15:28:47',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17111,'1000','121670502054','2022-12-08 15:28:47',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17112,'4000','121670502054','2022-12-08 15:28:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17113,'1110','121670502531','2022-12-08 16:18:56',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17114,'5500','121670502531','2022-12-08 16:18:56',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17115,'1000','121670502531','2022-12-08 16:18:56',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17116,'4000','121670502531','2022-12-08 16:18:56',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17117,'1110','121670505540','2022-12-08 16:22:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17118,'1110','121670505540','2022-12-08 16:22:00',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17119,'5500','121670505540','2022-12-08 16:22:00',553.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17120,'1000','121670505540','2022-12-08 16:22:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17121,'4000','121670505540','2022-12-08 16:22:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17122,'4000','121670505540','2022-12-08 16:22:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17123,'1110','121670509261','2022-12-08 17:30:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17124,'1110','121670509261','2022-12-08 17:30:41',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17125,'5500','121670509261','2022-12-08 17:30:41',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17126,'1000','121670509261','2022-12-08 17:30:41',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17127,'4000','121670509261','2022-12-08 17:30:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17128,'4000','121670509261','2022-12-08 17:30:41',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17129,'1110','121670510823','2022-12-08 17:47:21',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(17130,'5500','121670510823','2022-12-08 17:47:21',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17131,'1000','121670510823','2022-12-08 17:47:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17132,'4000','121670510823','2022-12-08 17:47:21',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(17133,'1110','121670510851','2022-12-08 18:16:20',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17134,'5500','121670510851','2022-12-08 18:16:20',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17135,'1000','121670510851','2022-12-08 18:16:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17136,'4000','121670510851','2022-12-08 18:16:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17137,'1110','121670512584','2022-12-08 18:43:57',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001274','','No',NULL,NULL,''),(17138,'1110','121670512584','2022-12-08 18:43:57',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17139,'5500','121670512584','2022-12-08 18:43:57',1292.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17140,'1000','121670512584','2022-12-08 18:43:57',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17141,'4000','121670512584','2022-12-08 18:43:57',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001274','','No',NULL,NULL,''),(17142,'4000','121670512584','2022-12-08 18:43:57',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17143,'1110','121670516435','2022-12-08 19:23:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17144,'1110','121670516435','2022-12-08 19:23:25',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17145,'1110','121670516435','2022-12-08 19:23:25',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17146,'1110','121670516435','2022-12-08 19:23:25',NULL,348.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17147,'5500','121670516435','2022-12-08 19:23:25',1336.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17148,'1000','121670516435','2022-12-08 19:23:25',1970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17149,'4000','121670516435','2022-12-08 19:23:25',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17150,'4000','121670516435','2022-12-08 19:23:25',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17151,'4000','121670516435','2022-12-08 19:23:25',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17152,'4000','121670516435','2022-12-08 19:23:25',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17153,'1110','121670516610','2022-12-08 19:25:01',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(17154,'1110','121670516610','2022-12-08 19:25:01',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17155,'1110','121670516610','2022-12-08 19:25:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17156,'5500','121670516610','2022-12-08 19:25:01',685.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17157,'1000','121670516610','2022-12-08 19:25:01',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17158,'4000','121670516610','2022-12-08 19:25:01',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(17159,'4000','121670516610','2022-12-08 19:25:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17160,'4000','121670516610','2022-12-08 19:25:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17161,'1110','121670518041','2022-12-08 20:10:29',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(17162,'1110','121670518041','2022-12-08 20:10:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17163,'5500','121670518041','2022-12-08 20:10:29',2888.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17164,'1000','121670518041','2022-12-08 20:10:29',4080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17165,'4000','121670518041','2022-12-08 20:10:29',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(17166,'4000','121670518041','2022-12-08 20:10:29',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17167,'1110','121670521539','2022-12-08 20:47:56',NULL,1332.63,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17168,'1110','121670521539','2022-12-08 20:47:56',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17169,'1110','121670521539','2022-12-08 20:47:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17170,'1110','121670521539','2022-12-08 20:47:56',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17171,'1110','121670521539','2022-12-08 20:47:56',NULL,174.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17172,'1110','121670521539','2022-12-08 20:47:56',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(17173,'5500','121670521539','2022-12-08 20:47:56',2064.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17174,'1000','121670521539','2022-12-08 20:47:56',2920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17175,'4000','121670521539','2022-12-08 20:47:56',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17176,'4000','121670521539','2022-12-08 20:47:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17177,'4000','121670521539','2022-12-08 20:47:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17178,'4000','121670521539','2022-12-08 20:47:56',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17179,'4000','121670521539','2022-12-08 20:47:56',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17180,'4000','121670521539','2022-12-08 20:47:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(17181,'1110','121670521684','2022-12-08 21:21:01',NULL,650.00,'','12','1','Inventory sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17182,'5500','121670521684','2022-12-08 21:21:01',650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17183,'1000','121670521684','2022-12-08 21:21:01',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17184,'4000','121670521684','2022-12-08 21:21:01',NULL,900.00,'','12','1','Good sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17185,'1110','121670523666','2022-12-08 21:22:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17186,'5500','121670523666','2022-12-08 21:22:16',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17187,'1000','121670523666','2022-12-08 21:22:16',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17188,'4000','121670523666','2022-12-08 21:22:16',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17189,'1110','121670523741','2022-12-08 22:17:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(17190,'1110','121670523741','2022-12-08 22:17:27',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17191,'5500','121670523741','2022-12-08 22:17:27',90.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17192,'1000','121670523741','2022-12-08 22:17:27',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17193,'4000','121670523741','2022-12-08 22:17:27',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(17194,'4000','121670523741','2022-12-08 22:17:27',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17195,'1110','121670527053','2022-12-08 23:02:20',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17196,'5500','121670527053','2022-12-08 23:02:20',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17197,'1000','121670527053','2022-12-08 23:02:20',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17198,'4000','121670527053','2022-12-08 23:02:20',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17199,'1110','121670529747','2022-12-08 23:08:33',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(17200,'1110','121670529747','2022-12-08 23:08:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17201,'5500','121670529747','2022-12-08 23:08:33',835.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17202,'1000','121670529747','2022-12-08 23:08:33',1580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17203,'4000','121670529747','2022-12-08 23:08:33',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(17204,'4000','121670529747','2022-12-08 23:08:33',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17205,'1110','121670530117','2022-12-08 23:11:44',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17206,'1110','121670530117','2022-12-08 23:11:44',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17207,'1110','121670530117','2022-12-08 23:11:44',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(17208,'1110','121670530117','2022-12-08 23:11:44',NULL,526.31,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(17209,'1110','121670530117','2022-12-08 23:11:44',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(17210,'5500','121670530117','2022-12-08 23:11:44',1906.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17211,'1000','121670530117','2022-12-08 23:11:44',3230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17212,'4000','121670530117','2022-12-08 23:11:44',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17213,'4000','121670530117','2022-12-08 23:11:44',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17214,'4000','121670530117','2022-12-08 23:11:44',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(17215,'4000','121670530117','2022-12-08 23:11:44',NULL,1200.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(17216,'4000','121670530117','2022-12-08 23:11:44',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(17217,'1110','121670531038','2022-12-08 23:24:45',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17218,'1110','121670531038','2022-12-08 23:24:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17219,'1110','121670531038','2022-12-08 23:24:45',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17220,'5500','121670531038','2022-12-08 23:24:45',1236.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17221,'1000','121670531038','2022-12-08 23:24:45',1970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17222,'4000','121670531038','2022-12-08 23:24:45',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17223,'4000','121670531038','2022-12-08 23:24:45',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17224,'4000','121670531038','2022-12-08 23:24:45',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17225,'1110','121670531090','2022-12-08 23:44:23',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17226,'1110','121670531090','2022-12-08 23:44:23',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(17227,'1110','121670531090','2022-12-08 23:44:23',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17228,'5500','121670531090','2022-12-08 23:44:23',1338.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17229,'1000','121670531090','2022-12-08 23:44:23',2070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17230,'4000','121670531090','2022-12-08 23:44:23',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17231,'4000','121670531090','2022-12-08 23:44:23',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(17232,'4000','121670531090','2022-12-08 23:44:23',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17233,'1110','121670532321','2022-12-09 00:12:59',NULL,925.59,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(17234,'1110','121670532321','2022-12-09 00:12:59',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(17235,'1110','121670532321','2022-12-09 00:12:59',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(17236,'1110','121670532321','2022-12-09 00:12:59',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17237,'1110','121670532321','2022-12-09 00:12:59',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(17238,'1110','121670532321','2022-12-09 00:12:59',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(17239,'5500','121670532321','2022-12-09 00:12:59',1753.77,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17240,'1000','121670532321','2022-12-09 00:12:59',2360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17241,'4000','121670532321','2022-12-09 00:12:59',NULL,1050.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(17242,'4000','121670532321','2022-12-09 00:12:59',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(17243,'4000','121670532321','2022-12-09 00:12:59',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(17244,'4000','121670532321','2022-12-09 00:12:59',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17245,'4000','121670532321','2022-12-09 00:12:59',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(17246,'4000','121670532321','2022-12-09 00:12:59',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(17247,'1110','121670537226','2022-12-09 01:10:40',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(17248,'1110','121670537226','2022-12-09 01:10:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17249,'5500','121670537226','2022-12-09 01:10:40',298.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17250,'1000','121670537226','2022-12-09 01:10:40',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17251,'4000','121670537226','2022-12-09 01:10:40',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(17252,'4000','121670537226','2022-12-09 01:10:40',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17253,'1110','121670540555','2022-12-09 02:08:39',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17254,'1110','121670540555','2022-12-09 02:08:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17255,'5500','121670540555','2022-12-09 02:08:39',574.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17256,'1000','121670540555','2022-12-09 02:08:39',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17257,'4000','121670540555','2022-12-09 02:08:39',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17258,'4000','121670540555','2022-12-09 02:08:39',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17259,'1110','121670547590','2022-12-09 04:00:01',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(17260,'5500','121670547590','2022-12-09 04:00:01',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17261,'1000','121670547590','2022-12-09 04:00:01',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17262,'4000','121670547590','2022-12-09 04:00:01',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(17263,'1110','121670560983','2022-12-09 07:44:12',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(17264,'5500','121670560983','2022-12-09 07:44:12',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17265,'1000','121670560983','2022-12-09 07:44:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17266,'4000','121670560983','2022-12-09 07:44:12',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(17267,'1110','121670568428','2022-12-09 09:47:16',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17268,'5500','121670568428','2022-12-09 09:47:16',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17269,'1000','121670568428','2022-12-09 09:47:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17270,'4000','121670568428','2022-12-09 09:47:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17271,'1110','121670568442','2022-12-09 10:22:33',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17272,'1110','121670568442','2022-12-09 10:22:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17273,'5500','121670568442','2022-12-09 10:22:33',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17274,'1000','121670568442','2022-12-09 10:22:33',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17275,'4000','121670568442','2022-12-09 10:22:33',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17276,'4000','121670568442','2022-12-09 10:22:33',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17277,'1110','121670576101','2022-12-09 11:56:31',NULL,650.00,'','12','1','Inventory sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17278,'1110','121670576101','2022-12-09 11:56:31',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(17279,'1110','121670576101','2022-12-09 11:56:31',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(17280,'5500','121670576101','2022-12-09 11:56:31',1406.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17281,'1000','121670576101','2022-12-09 11:56:31',2480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17282,'4000','121670576101','2022-12-09 11:56:31',NULL,900.00,'','12','1','Good sold','1','','sales','4820229031984','','No',NULL,NULL,''),(17283,'4000','121670576101','2022-12-09 11:56:31',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(17284,'4000','121670576101','2022-12-09 11:56:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(17285,'1110','121670578705','2022-12-09 14:06:13',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(17286,'1110','121670578705','2022-12-09 14:06:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17287,'1110','121670578705','2022-12-09 14:06:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17288,'5500','121670578705','2022-12-09 14:06:13',510.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17289,'1000','121670578705','2022-12-09 14:06:13',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17290,'4000','121670578705','2022-12-09 14:06:13',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(17291,'4000','121670578705','2022-12-09 14:06:13',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17292,'4000','121670578705','2022-12-09 14:06:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17293,'1110','121670584138','2022-12-09 14:09:22',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17294,'1110','121670584138','2022-12-09 14:09:22',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17295,'5500','121670584138','2022-12-09 14:09:22',1109.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17296,'1000','121670584138','2022-12-09 14:09:22',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17297,'4000','121670584138','2022-12-09 14:09:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17298,'4000','121670584138','2022-12-09 14:09:22',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17299,'1110','121670594483','2022-12-09 17:36:57',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17300,'1110','121670594483','2022-12-09 17:36:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17301,'1110','121670594483','2022-12-09 17:36:57',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(17302,'5500','121670594483','2022-12-09 17:36:57',720.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17303,'1000','121670594483','2022-12-09 17:36:57',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17304,'4000','121670594483','2022-12-09 17:36:57',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17305,'4000','121670594483','2022-12-09 17:36:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17306,'4000','121670594483','2022-12-09 17:36:57',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(17307,'1110','121670596625','2022-12-09 18:36:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17308,'5500','121670596625','2022-12-09 18:36:16',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17309,'1000','121670596625','2022-12-09 18:36:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17310,'4000','121670596625','2022-12-09 18:36:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17311,'1110','121670600182','2022-12-09 19:40:40',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17312,'1110','121670600182','2022-12-09 19:40:40',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17313,'5500','121670600182','2022-12-09 19:40:40',456.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17314,'1000','121670600182','2022-12-09 19:40:40',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17315,'4000','121670600182','2022-12-09 19:40:40',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17316,'4000','121670600182','2022-12-09 19:40:40',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17317,'1110','121670604094','2022-12-09 19:58:28',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17318,'5500','121670604094','2022-12-09 19:58:28',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17319,'1000','121670604094','2022-12-09 19:58:28',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17320,'4000','121670604094','2022-12-09 19:58:28',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17321,'1110','121670605192','2022-12-09 21:41:19',NULL,634.52,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17322,'1110','121670605192','2022-12-09 21:41:19',NULL,128.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(17323,'5500','121670605192','2022-12-09 21:41:19',762.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17324,'1000','121670605192','2022-12-09 21:41:19',940.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17325,'4000','121670605192','2022-12-09 21:41:19',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17326,'4000','121670605192','2022-12-09 21:41:19',NULL,240.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(17327,'1110','121670611391','2022-12-09 21:44:01',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17328,'5500','121670611391','2022-12-09 21:44:01',951.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17329,'1000','121670611391','2022-12-09 21:44:01',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17330,'4000','121670611391','2022-12-09 21:44:01',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17331,'1110','121670611446','2022-12-09 21:56:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(17332,'5500','121670611446','2022-12-09 21:56:06',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17333,'1000','121670611446','2022-12-09 21:56:06',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17334,'4000','121670611446','2022-12-09 21:56:06',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(17335,'1110','121670612171','2022-12-09 22:07:30',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17336,'5500','121670612171','2022-12-09 22:07:30',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17337,'1000','121670612171','2022-12-09 22:07:30',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17338,'4000','121670612171','2022-12-09 22:07:30',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17339,'1110','121670612855','2022-12-09 22:34:19',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17340,'1110','121670612855','2022-12-09 22:34:19',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17341,'5500','121670612855','2022-12-09 22:34:19',1818.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17342,'1000','121670612855','2022-12-09 22:34:19',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17343,'4000','121670612855','2022-12-09 22:34:19',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17344,'4000','121670612855','2022-12-09 22:34:19',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17345,'1110','121670614917','2022-12-09 22:45:10',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17346,'1110','121670614917','2022-12-09 22:45:10',NULL,2262.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17347,'1110','121670614917','2022-12-09 22:45:10',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(17348,'1110','121670614917','2022-12-09 22:45:10',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(17349,'5500','121670614917','2022-12-09 22:45:10',2915.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17350,'1000','121670614917','2022-12-09 22:45:10',4830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17351,'4000','121670614917','2022-12-09 22:45:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17352,'4000','121670614917','2022-12-09 22:45:10',NULL,3900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17353,'4000','121670614917','2022-12-09 22:45:10',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(17354,'4000','121670614917','2022-12-09 22:45:10',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(17355,'1110','121670615116','2022-12-09 23:08:22',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17356,'1110','121670615116','2022-12-09 23:08:22',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17357,'1110','121670615116','2022-12-09 23:08:22',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17358,'1110','121670615116','2022-12-09 23:08:22',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17359,'5500','121670615116','2022-12-09 23:08:22',1205.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17360,'1000','121670615116','2022-12-09 23:08:22',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17361,'4000','121670615116','2022-12-09 23:08:22',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17362,'4000','121670615116','2022-12-09 23:08:22',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(17363,'4000','121670615116','2022-12-09 23:08:22',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17364,'4000','121670615116','2022-12-09 23:08:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17365,'1110','121670616651','2022-12-09 23:12:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17366,'1110','121670616651','2022-12-09 23:12:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17367,'5500','121670616651','2022-12-09 23:12:12',127.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17368,'1000','121670616651','2022-12-09 23:12:12',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17369,'4000','121670616651','2022-12-09 23:12:12',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17370,'4000','121670616651','2022-12-09 23:12:12',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17371,'1110','121670616800','2022-12-09 23:13:32',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17372,'5500','121670616800','2022-12-09 23:13:32',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17373,'1000','121670616800','2022-12-09 23:13:32',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17374,'4000','121670616800','2022-12-09 23:13:32',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17375,'1110','121670616841','2022-12-09 23:52:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17376,'1110','121670616841','2022-12-09 23:52:08',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001410','','No',NULL,NULL,''),(17377,'5500','121670616841','2022-12-09 23:52:08',1148.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17378,'1000','121670616841','2022-12-09 23:52:08',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17379,'4000','121670616841','2022-12-09 23:52:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17380,'4000','121670616841','2022-12-09 23:52:08',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001410','','No',NULL,NULL,''),(17381,'1110','121670619133','2022-12-09 23:56:01',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(17382,'5500','121670619133','2022-12-09 23:56:01',268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17383,'1000','121670619133','2022-12-09 23:56:01',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17384,'4000','121670619133','2022-12-09 23:56:01',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(17385,'1110','121670619723','2022-12-10 00:02:20',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(17386,'5500','121670619723','2022-12-10 00:02:20',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17387,'1000','121670619723','2022-12-10 00:02:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17388,'4000','121670619723','2022-12-10 00:02:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(17389,'1110','121670619750','2022-12-10 00:04:21',NULL,1172.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17390,'5500','121670619750','2022-12-10 00:04:21',1172.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17391,'1000','121670619750','2022-12-10 00:04:21',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17392,'4000','121670619750','2022-12-10 00:04:21',NULL,1700.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17393,'1110','121670619939','2022-12-10 00:24:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17394,'5500','121670619939','2022-12-10 00:24:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17395,'1000','121670619939','2022-12-10 00:24:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17396,'4000','121670619939','2022-12-10 00:24:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17397,'1110','121670621074','2022-12-10 00:37:35',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17398,'1110','121670621074','2022-12-10 00:37:35',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17399,'5500','121670621074','2022-12-10 00:37:35',736.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17400,'1000','121670621074','2022-12-10 00:37:35',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17401,'4000','121670621074','2022-12-10 00:37:35',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17402,'4000','121670621074','2022-12-10 00:37:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17403,'1110','121670621874','2022-12-10 00:38:49',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17404,'5500','121670621874','2022-12-10 00:38:49',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17405,'1000','121670621874','2022-12-10 00:38:49',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17406,'4000','121670621874','2022-12-10 00:38:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17407,'1110','121670621939','2022-12-10 01:02:24',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17408,'5500','121670621939','2022-12-10 01:02:24',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17409,'1000','121670621939','2022-12-10 01:02:24',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17410,'4000','121670621939','2022-12-10 01:02:24',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17411,'1110','121670623348','2022-12-10 01:08:55',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17412,'5500','121670623348','2022-12-10 01:08:55',545.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17413,'1000','121670623348','2022-12-10 01:08:55',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17414,'4000','121670623348','2022-12-10 01:08:55',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17415,'1110','121670630316','2022-12-10 03:05:19',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(17416,'1110','121670630316','2022-12-10 03:05:19',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17417,'5500','121670630316','2022-12-10 03:05:19',818.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17418,'1000','121670630316','2022-12-10 03:05:19',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17419,'4000','121670630316','2022-12-10 03:05:19',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(17420,'4000','121670630316','2022-12-10 03:05:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17421,'1110','121670630726','2022-12-10 03:07:24',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17422,'5500','121670630726','2022-12-10 03:07:24',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17423,'1000','121670630726','2022-12-10 03:07:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17424,'4000','121670630726','2022-12-10 03:07:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17425,'1110','121670630849','2022-12-10 03:12:33',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17426,'1110','121670630849','2022-12-10 03:12:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17427,'5500','121670630849','2022-12-10 03:12:33',561.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17428,'1000','121670630849','2022-12-10 03:12:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17429,'4000','121670630849','2022-12-10 03:12:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17430,'4000','121670630849','2022-12-10 03:12:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17431,'1110','121670631160','2022-12-10 03:35:53',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17432,'1110','121670631160','2022-12-10 03:35:53',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17433,'1110','121670631160','2022-12-10 03:35:53',NULL,1085.00,'','12','1','Inventory sold','1','','sales','5011007003654','','No',NULL,NULL,''),(17434,'1110','121670631160','2022-12-10 03:35:53',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(17435,'1110','121670631160','2022-12-10 03:35:53',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(17436,'1110','121670631160','2022-12-10 03:35:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17437,'5500','121670631160','2022-12-10 03:35:53',2806.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17438,'1000','121670631160','2022-12-10 03:35:53',3920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17439,'4000','121670631160','2022-12-10 03:35:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17440,'4000','121670631160','2022-12-10 03:35:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17441,'4000','121670631160','2022-12-10 03:35:53',NULL,1700.00,'','12','1','Good sold','1','','sales','5011007003654','','No',NULL,NULL,''),(17442,'4000','121670631160','2022-12-10 03:35:53',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(17443,'4000','121670631160','2022-12-10 03:35:53',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(17444,'4000','121670631160','2022-12-10 03:35:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17445,'1110','121670632736','2022-12-10 04:03:47',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17446,'5500','121670632736','2022-12-10 04:03:47',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17447,'1000','121670632736','2022-12-10 04:03:47',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17448,'4000','121670632736','2022-12-10 04:03:47',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17449,'1110','121670664034','2022-12-10 12:29:05',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17450,'1110','121670664034','2022-12-10 12:29:05',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17451,'5500','121670664034','2022-12-10 12:29:05',691.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17452,'1000','121670664034','2022-12-10 12:29:05',910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17453,'4000','121670664034','2022-12-10 12:29:05',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17454,'4000','121670664034','2022-12-10 12:29:05',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17455,'1110','121670664553','2022-12-10 12:34:09',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17456,'1110','121670664553','2022-12-10 12:34:09',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17457,'1110','121670664553','2022-12-10 12:34:09',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17458,'1110','121670664553','2022-12-10 12:34:09',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17459,'5500','121670664553','2022-12-10 12:34:09',742.29,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17460,'1000','121670664553','2022-12-10 12:34:09',970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17461,'4000','121670664553','2022-12-10 12:34:09',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17462,'4000','121670664553','2022-12-10 12:34:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17463,'4000','121670664553','2022-12-10 12:34:09',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17464,'4000','121670664553','2022-12-10 12:34:09',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(17465,'1110','121670664959','2022-12-10 12:38:18',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17466,'5500','121670664959','2022-12-10 12:38:18',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17467,'1000','121670664959','2022-12-10 12:38:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17468,'4000','121670664959','2022-12-10 12:38:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17469,'1110','121670671843','2022-12-10 14:30:52',NULL,2074.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17470,'5500','121670671843','2022-12-10 14:30:52',2074.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17471,'1000','121670671843','2022-12-10 14:30:52',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17472,'4000','121670671843','2022-12-10 14:30:52',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17473,'1110','121670684207','2022-12-10 17:56:58',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17474,'5500','121670684207','2022-12-10 17:56:58',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17475,'1000','121670684207','2022-12-10 17:56:58',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17476,'4000','121670684207','2022-12-10 17:56:58',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17477,'1110','121670685825','2022-12-10 18:33:04',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(17478,'5500','121670685825','2022-12-10 18:33:04',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17479,'1000','121670685825','2022-12-10 18:33:04',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17480,'4000','121670685825','2022-12-10 18:33:04',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(17481,'1110','121670686399','2022-12-10 18:52:44',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(17482,'1110','121670686399','2022-12-10 18:52:44',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17483,'5500','121670686399','2022-12-10 18:52:44',327.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17484,'1000','121670686399','2022-12-10 18:52:44',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17485,'4000','121670686399','2022-12-10 18:52:44',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(17486,'4000','121670686399','2022-12-10 18:52:44',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17487,'1110','121670687572','2022-12-10 19:45:54',NULL,668.00,'','12','1','Inventory sold','1','','sales','6001495080007','','No',NULL,NULL,''),(17488,'5500','121670687572','2022-12-10 19:45:54',668.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17489,'1000','121670687572','2022-12-10 19:45:54',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17490,'4000','121670687572','2022-12-10 19:45:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6001495080007','','No',NULL,NULL,''),(17491,'1110','121670691399','2022-12-10 19:56:59',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17492,'5500','121670691399','2022-12-10 19:56:59',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17493,'1000','121670691399','2022-12-10 19:56:59',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17494,'4000','121670691399','2022-12-10 19:56:59',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17495,'1110','121670694891','2022-12-10 20:55:02',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17496,'5500','121670694891','2022-12-10 20:55:02',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17497,'1000','121670694891','2022-12-10 20:55:02',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17498,'4000','121670694891','2022-12-10 20:55:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17499,'1110','121670694906','2022-12-10 20:59:40',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17500,'1110','121670694906','2022-12-10 20:59:40',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(17501,'1110','121670694906','2022-12-10 20:59:40',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17502,'5500','121670694906','2022-12-10 20:59:40',439.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17503,'1000','121670694906','2022-12-10 20:59:40',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17504,'4000','121670694906','2022-12-10 20:59:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17505,'4000','121670694906','2022-12-10 20:59:40',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(17506,'4000','121670694906','2022-12-10 20:59:40',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17507,'1110','121670695400','2022-12-10 21:03:49',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17508,'1110','121670695400','2022-12-10 21:03:49',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17509,'1110','121670695400','2022-12-10 21:03:49',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17510,'5500','121670695400','2022-12-10 21:03:49',437.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17511,'1000','121670695400','2022-12-10 21:03:49',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17512,'4000','121670695400','2022-12-10 21:03:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17513,'4000','121670695400','2022-12-10 21:03:49',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17514,'4000','121670695400','2022-12-10 21:03:49',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17515,'1110','121670695435','2022-12-10 21:56:47',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17516,'1110','121670695435','2022-12-10 21:56:47',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(17517,'5500','121670695435','2022-12-10 21:56:47',404.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17518,'1000','121670695435','2022-12-10 21:56:47',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17519,'4000','121670695435','2022-12-10 21:56:47',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17520,'4000','121670695435','2022-12-10 21:56:47',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(17521,'1110','121670698630','2022-12-10 22:19:06',NULL,864.17,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17522,'1110','121670698630','2022-12-10 22:19:06',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17523,'5500','121670698630','2022-12-10 22:19:06',1625.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17524,'1000','121670698630','2022-12-10 22:19:06',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17525,'4000','121670698630','2022-12-10 22:19:06',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17526,'4000','121670698630','2022-12-10 22:19:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17527,'1110','121670699951','2022-12-10 23:23:44',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17528,'5500','121670699951','2022-12-10 23:23:44',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17529,'1000','121670699951','2022-12-10 23:23:44',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17530,'4000','121670699951','2022-12-10 23:23:44',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17531,'1110','121670703848','2022-12-11 00:02:43',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(17532,'1110','121670703848','2022-12-11 00:02:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17533,'5500','121670703848','2022-12-11 00:02:43',1303.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17534,'1000','121670703848','2022-12-11 00:02:43',1880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17535,'4000','121670703848','2022-12-11 00:02:43',NULL,1800.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(17536,'4000','121670703848','2022-12-11 00:02:43',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17537,'1110','121670706282','2022-12-11 00:05:27',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17538,'5500','121670706282','2022-12-11 00:05:27',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17539,'1000','121670706282','2022-12-11 00:05:27',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17540,'4000','121670706282','2022-12-11 00:05:27',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17541,'1110','121670710252','2022-12-11 01:11:04',NULL,1540.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(17542,'5500','121670710252','2022-12-11 01:11:04',1540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17543,'1000','121670710252','2022-12-11 01:11:04',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17544,'4000','121670710252','2022-12-11 01:11:04',NULL,2000.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(17545,'1110','121670711883','2022-12-11 01:38:24',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(17546,'1110','121670711883','2022-12-11 01:38:24',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17547,'5500','121670711883','2022-12-11 01:38:24',582.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17548,'1000','121670711883','2022-12-11 01:38:24',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17549,'4000','121670711883','2022-12-11 01:38:24',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(17550,'4000','121670711883','2022-12-11 01:38:24',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17551,'1110','121670711908','2022-12-11 01:49:26',NULL,21211.00,'','12','1','Inventory sold','1','','sales','5000267114279','','No',NULL,NULL,''),(17552,'5500','121670711908','2022-12-11 01:49:26',21211.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17553,'1000','121670711908','2022-12-11 01:49:26',25000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17554,'4000','121670711908','2022-12-11 01:49:26',NULL,25000.00,'','12','1','Good sold','1','','sales','5000267114279','','No',NULL,NULL,''),(17555,'1110','121670712684','2022-12-11 01:58:25',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17556,'1110','121670712684','2022-12-11 01:58:25',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17557,'1110','121670712684','2022-12-11 01:58:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17558,'5500','121670712684','2022-12-11 01:58:25',474.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17559,'1000','121670712684','2022-12-11 01:58:25',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17560,'4000','121670712684','2022-12-11 01:58:25',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17561,'4000','121670712684','2022-12-11 01:58:25',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(17562,'4000','121670712684','2022-12-11 01:58:25',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17563,'1110','121670714617','2022-12-11 02:23:44',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(17564,'5500','121670714617','2022-12-11 02:23:44',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17565,'1000','121670714617','2022-12-11 02:23:44',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17566,'4000','121670714617','2022-12-11 02:23:44',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(17567,'1110','121670732007','2022-12-11 07:13:36',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(17568,'5500','121670732007','2022-12-11 07:13:36',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17569,'1000','121670732007','2022-12-11 07:13:36',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17570,'4000','121670732007','2022-12-11 07:13:36',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(17571,'1110','121670732032','2022-12-11 07:14:53',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17572,'1110','121670732032','2022-12-11 07:14:53',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17573,'5500','121670732032','2022-12-11 07:14:53',719.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17574,'1000','121670732032','2022-12-11 07:14:53',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17575,'4000','121670732032','2022-12-11 07:14:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17576,'4000','121670732032','2022-12-11 07:14:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17577,'1110','121670732103','2022-12-11 07:17:34',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17578,'1110','121670732103','2022-12-11 07:17:34',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17579,'5500','121670732103','2022-12-11 07:17:34',1166.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17580,'1000','121670732103','2022-12-11 07:17:34',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17581,'4000','121670732103','2022-12-11 07:17:34',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17582,'4000','121670732103','2022-12-11 07:17:34',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17583,'1110','121670732261','2022-12-11 07:32:35',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17584,'5500','121670732261','2022-12-11 07:32:35',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17585,'1000','121670732261','2022-12-11 07:32:35',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17586,'4000','121670732261','2022-12-11 07:32:35',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17587,'1110','121670769496','2022-12-11 17:38:30',NULL,1854.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(17588,'5500','121670769496','2022-12-11 17:38:30',1854.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17589,'1000','121670769496','2022-12-11 17:38:30',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17590,'4000','121670769496','2022-12-11 17:38:30',NULL,2600.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(17591,'1110','121670769774','2022-12-11 18:13:00',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17592,'1110','121670769774','2022-12-11 18:13:00',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(17593,'5500','121670769774','2022-12-11 18:13:00',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17594,'1000','121670769774','2022-12-11 18:13:00',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17595,'4000','121670769774','2022-12-11 18:13:00',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17596,'4000','121670769774','2022-12-11 18:13:00',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(17597,'1110','121670771588','2022-12-11 19:29:42',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17598,'5500','121670771588','2022-12-11 19:29:42',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17599,'1000','121670771588','2022-12-11 19:29:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17600,'4000','121670771588','2022-12-11 19:29:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17601,'1110','121670776254','2022-12-11 19:31:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17602,'5500','121670776254','2022-12-11 19:31:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17603,'1000','121670776254','2022-12-11 19:31:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17604,'4000','121670776254','2022-12-11 19:31:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17605,'1110','121670776277','2022-12-11 19:31:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17606,'5500','121670776277','2022-12-11 19:31:30',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17607,'1000','121670776277','2022-12-11 19:31:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17608,'4000','121670776277','2022-12-11 19:31:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17609,'1110','121670776296','2022-12-11 19:31:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17610,'5500','121670776296','2022-12-11 19:31:51',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17611,'1000','121670776296','2022-12-11 19:31:51',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17612,'4000','121670776296','2022-12-11 19:31:51',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(17613,'1110','121670776324','2022-12-11 19:32:52',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17614,'5500','121670776324','2022-12-11 19:32:52',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17615,'1000','121670776324','2022-12-11 19:32:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17616,'4000','121670776324','2022-12-11 19:32:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17617,'1110','121670776381','2022-12-11 19:33:31',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17618,'5500','121670776381','2022-12-11 19:33:31',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17619,'1000','121670776381','2022-12-11 19:33:31',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17620,'4000','121670776381','2022-12-11 19:33:31',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17621,'1110','121670776422','2022-12-11 19:34:03',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17622,'5500','121670776422','2022-12-11 19:34:03',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17623,'1000','121670776422','2022-12-11 19:34:03',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17624,'4000','121670776422','2022-12-11 19:34:03',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17625,'1110','121670776450','2022-12-11 19:34:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17626,'5500','121670776450','2022-12-11 19:34:25',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17627,'1000','121670776450','2022-12-11 19:34:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17628,'4000','121670776450','2022-12-11 19:34:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17629,'1110','121670776470','2022-12-11 19:47:10',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(17630,'5500','121670776470','2022-12-11 19:47:10',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17631,'1000','121670776470','2022-12-11 19:47:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17632,'4000','121670776470','2022-12-11 19:47:10',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(17633,'1110','121670777239','2022-12-11 20:36:33',NULL,588.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(17634,'1110','121670777239','2022-12-11 20:36:33',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17635,'1110','121670777239','2022-12-11 20:36:33',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(17636,'5500','121670777239','2022-12-11 20:36:33',952.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17637,'1000','121670777239','2022-12-11 20:36:33',1540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17638,'4000','121670777239','2022-12-11 20:36:33',NULL,920.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(17639,'4000','121670777239','2022-12-11 20:36:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17640,'4000','121670777239','2022-12-11 20:36:33',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(17641,'1110','121670780409','2022-12-11 20:53:59',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(17642,'5500','121670780409','2022-12-11 20:53:59',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17643,'1000','121670780409','2022-12-11 20:53:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17644,'4000','121670780409','2022-12-11 20:53:59',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(17645,'1110','121670781249','2022-12-11 22:32:56',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17646,'1110','121670781249','2022-12-11 22:32:56',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(17647,'5500','121670781249','2022-12-11 22:32:56',452.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17648,'1000','121670781249','2022-12-11 22:32:56',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17649,'4000','121670781249','2022-12-11 22:32:56',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17650,'4000','121670781249','2022-12-11 22:32:56',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(17651,'1110','121670787300','2022-12-11 22:45:21',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17652,'1110','121670787300','2022-12-11 22:45:21',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17653,'5500','121670787300','2022-12-11 22:45:21',1413.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17654,'1000','121670787300','2022-12-11 22:45:21',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17655,'4000','121670787300','2022-12-11 22:45:21',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17656,'4000','121670787300','2022-12-11 22:45:21',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17657,'1110','121670787925','2022-12-11 22:56:22',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17658,'5500','121670787925','2022-12-11 22:56:22',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17659,'1000','121670787925','2022-12-11 22:56:22',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17660,'4000','121670787925','2022-12-11 22:56:22',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(17661,'1110','121670788586','2022-12-12 00:46:34',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(17662,'5500','121670788586','2022-12-12 00:46:34',690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17663,'1000','121670788586','2022-12-12 00:46:34',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17664,'4000','121670788586','2022-12-12 00:46:34',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(17665,'1110','121670805675','2022-12-12 04:06:37',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(17666,'1110','121670805675','2022-12-12 04:06:37',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(17667,'5500','121670805675','2022-12-12 04:06:37',946.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17668,'1000','121670805675','2022-12-12 04:06:37',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17669,'4000','121670805675','2022-12-12 04:06:37',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(17670,'4000','121670805675','2022-12-12 04:06:37',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(17671,'1110','121670835036','2022-12-12 11:52:19',NULL,1914.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17672,'1110','121670835036','2022-12-12 11:52:19',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17673,'1110','121670835036','2022-12-12 11:52:19',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17674,'5500','121670835036','2022-12-12 11:52:19',2468.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17675,'1000','121670835036','2022-12-12 11:52:19',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17676,'4000','121670835036','2022-12-12 11:52:19',NULL,2750.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17677,'4000','121670835036','2022-12-12 11:52:19',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17678,'4000','121670835036','2022-12-12 11:52:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17679,'1110','121670843583','2022-12-12 14:13:43',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17680,'1110','121670843583','2022-12-12 14:13:43',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17681,'5500','121670843583','2022-12-12 14:13:43',610.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17682,'1000','121670843583','2022-12-12 14:13:43',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17683,'4000','121670843583','2022-12-12 14:13:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17684,'4000','121670843583','2022-12-12 14:13:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17685,'1110','121670851370','2022-12-12 16:23:11',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17686,'1110','121670851370','2022-12-12 16:23:11',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17687,'5500','121670851370','2022-12-12 16:23:11',922.39,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17688,'1000','121670851370','2022-12-12 16:23:11',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17689,'4000','121670851370','2022-12-12 16:23:11',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17690,'4000','121670851370','2022-12-12 16:23:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17691,'1110','121670864878','2022-12-12 20:08:10',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17692,'5500','121670864878','2022-12-12 20:08:10',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17693,'1000','121670864878','2022-12-12 20:08:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17694,'4000','121670864878','2022-12-12 20:08:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17695,'1110','121670864896','2022-12-12 20:51:03',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(17696,'5500','121670864896','2022-12-12 20:51:03',18500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17697,'1000','121670864896','2022-12-12 20:51:03',28500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17698,'4000','121670864896','2022-12-12 20:51:03',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(17699,'1110','121670868138','2022-12-12 21:43:18',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(17700,'5500','121670868138','2022-12-12 21:43:18',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17701,'1000','121670868138','2022-12-12 21:43:18',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17702,'4000','121670868138','2022-12-12 21:43:18',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(17703,'1110','121670870798','2022-12-12 22:04:19',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17704,'1110','121670870798','2022-12-12 22:04:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17705,'5500','121670870798','2022-12-12 22:04:19',445.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17706,'1000','121670870798','2022-12-12 22:04:19',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17707,'4000','121670870798','2022-12-12 22:04:19',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(17708,'4000','121670870798','2022-12-12 22:04:19',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17709,'1110','121670871955','2022-12-12 23:12:51',NULL,1316.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17710,'1110','121670871955','2022-12-12 23:12:51',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17711,'1110','121670871955','2022-12-12 23:12:51',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17712,'1110','121670871955','2022-12-12 23:12:51',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17713,'1110','121670871955','2022-12-12 23:12:51',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17714,'5500','121670871955','2022-12-12 23:12:51',2214.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17715,'1000','121670871955','2022-12-12 23:12:51',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17716,'4000','121670871955','2022-12-12 23:12:51',NULL,1750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17717,'4000','121670871955','2022-12-12 23:12:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17718,'4000','121670871955','2022-12-12 23:12:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17719,'4000','121670871955','2022-12-12 23:12:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17720,'4000','121670871955','2022-12-12 23:12:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17721,'1110','121670876043','2022-12-12 23:36:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17722,'5500','121670876043','2022-12-12 23:36:08',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17723,'1000','121670876043','2022-12-12 23:36:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17724,'4000','121670876043','2022-12-12 23:36:08',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17725,'1110','121670877383','2022-12-12 23:38:35',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(17726,'1110','121670877383','2022-12-12 23:38:35',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17727,'5500','121670877383','2022-12-12 23:38:35',824.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17728,'1000','121670877383','2022-12-12 23:38:35',1420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17729,'4000','121670877383','2022-12-12 23:38:35',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(17730,'4000','121670877383','2022-12-12 23:38:35',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(17731,'1110','121670877557','2022-12-13 00:03:04',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(17732,'1110','121670877557','2022-12-13 00:03:04',NULL,206.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(17733,'5500','121670877557','2022-12-13 00:03:04',2122.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17734,'1000','121670877557','2022-12-13 00:03:04',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17735,'4000','121670877557','2022-12-13 00:03:04',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(17736,'4000','121670877557','2022-12-13 00:03:04',NULL,300.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(17737,'1110','121670879046','2022-12-13 00:34:03',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17738,'5500','121670879046','2022-12-13 00:34:03',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17739,'1000','121670879046','2022-12-13 00:34:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17740,'4000','121670879046','2022-12-13 00:34:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17741,'1110','121670880847','2022-12-13 00:34:20',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(17742,'5500','121670880847','2022-12-13 00:34:20',1141.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17743,'1000','121670880847','2022-12-13 00:34:20',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17744,'4000','121670880847','2022-12-13 00:34:20',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(17745,'1110','121670885079','2022-12-13 01:45:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17746,'1110','121670885079','2022-12-13 01:45:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17747,'5500','121670885079','2022-12-13 01:45:31',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17748,'1000','121670885079','2022-12-13 01:45:31',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17749,'4000','121670885079','2022-12-13 01:45:31',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17750,'4000','121670885079','2022-12-13 01:45:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17751,'1110','121670892136','2022-12-13 03:43:09',NULL,1085.00,'','12','1','Inventory sold','1','','sales','5011007003654','','No',NULL,NULL,''),(17752,'5500','121670892136','2022-12-13 03:43:09',1085.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17753,'1000','121670892136','2022-12-13 03:43:09',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17754,'4000','121670892136','2022-12-13 03:43:09',NULL,1700.00,'','12','1','Good sold','1','','sales','5011007003654','','No',NULL,NULL,''),(17755,'1110','121670892194','2022-12-13 03:53:12',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17756,'5500','121670892194','2022-12-13 03:53:12',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17757,'1000','121670892194','2022-12-13 03:53:12',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17758,'4000','121670892194','2022-12-13 03:53:12',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17759,'1110','121670892798','2022-12-13 04:17:31',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(17760,'1110','121670892798','2022-12-13 04:17:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17761,'5500','121670892798','2022-12-13 04:17:31',297.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17762,'1000','121670892798','2022-12-13 04:17:31',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17763,'4000','121670892798','2022-12-13 04:17:31',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(17764,'4000','121670892798','2022-12-13 04:17:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17765,'1110','121670901791','2022-12-13 06:24:30',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17766,'1110','121670901791','2022-12-13 06:24:30',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17767,'1110','121670901791','2022-12-13 06:24:30',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17768,'5500','121670901791','2022-12-13 06:24:30',3365.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17769,'1000','121670901791','2022-12-13 06:24:30',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17770,'4000','121670901791','2022-12-13 06:24:30',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17771,'4000','121670901791','2022-12-13 06:24:30',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17772,'4000','121670901791','2022-12-13 06:24:30',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17773,'1110','121670915116','2022-12-13 10:06:04',NULL,1740.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17774,'1110','121670915116','2022-12-13 10:06:04',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17775,'1110','121670915116','2022-12-13 10:06:04',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17776,'5500','121670915116','2022-12-13 10:06:04',2196.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17777,'1000','121670915116','2022-12-13 10:06:04',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17778,'4000','121670915116','2022-12-13 10:06:04',NULL,3000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17779,'4000','121670915116','2022-12-13 10:06:04',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(17780,'4000','121670915116','2022-12-13 10:06:04',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17781,'1110','121670944297','2022-12-13 18:12:00',NULL,210.00,'','12','1','Inventory sold','1','','sales','6161101561020','','No',NULL,NULL,''),(17782,'1110','121670944297','2022-12-13 18:12:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17783,'5500','121670944297','2022-12-13 18:12:00',251.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17784,'1000','121670944297','2022-12-13 18:12:00',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17785,'4000','121670944297','2022-12-13 18:12:00',NULL,400.00,'','12','1','Good sold','1','','sales','6161101561020','','No',NULL,NULL,''),(17786,'4000','121670944297','2022-12-13 18:12:00',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17787,'1110','121670945711','2022-12-13 18:35:40',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17788,'1110','121670945711','2022-12-13 18:35:40',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17789,'1110','121670945711','2022-12-13 18:35:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17790,'5500','121670945711','2022-12-13 18:35:40',812.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17791,'1000','121670945711','2022-12-13 18:35:40',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17792,'4000','121670945711','2022-12-13 18:35:40',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(17793,'4000','121670945711','2022-12-13 18:35:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(17794,'4000','121670945711','2022-12-13 18:35:40',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17795,'1110','121670945744','2022-12-13 18:38:27',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(17796,'5500','121670945744','2022-12-13 18:38:27',18500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17797,'1000','121670945744','2022-12-13 18:38:27',28500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17798,'4000','121670945744','2022-12-13 18:38:27',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(17799,'1110','121670946783','2022-12-13 19:35:04',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17800,'5500','121670946783','2022-12-13 19:35:04',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17801,'1000','121670946783','2022-12-13 19:35:04',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17802,'4000','121670946783','2022-12-13 19:35:04',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17803,'1110','121670949309','2022-12-13 20:45:25',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(17804,'1110','121670949309','2022-12-13 20:45:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17805,'5500','121670949309','2022-12-13 20:45:25',304.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17806,'1000','121670949309','2022-12-13 20:45:25',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17807,'4000','121670949309','2022-12-13 20:45:25',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(17808,'4000','121670949309','2022-12-13 20:45:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17809,'1110','121670953944','2022-12-13 20:53:20',NULL,576.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(17810,'1110','121670953944','2022-12-13 20:53:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17811,'1110','121670953944','2022-12-13 20:53:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(17812,'5500','121670953944','2022-12-13 20:53:20',682.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17813,'1000','121670953944','2022-12-13 20:53:20',970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17814,'4000','121670953944','2022-12-13 20:53:20',NULL,810.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(17815,'4000','121670953944','2022-12-13 20:53:20',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(17816,'4000','121670953944','2022-12-13 20:53:20',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(17817,'1110','121670954273','2022-12-13 21:22:59',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17818,'5500','121670954273','2022-12-13 21:22:59',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17819,'1000','121670954273','2022-12-13 21:22:59',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17820,'4000','121670954273','2022-12-13 21:22:59',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17821,'1110','121670955842','2022-12-13 21:55:04',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17822,'5500','121670955842','2022-12-13 21:55:04',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17823,'1000','121670955842','2022-12-13 21:55:04',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17824,'4000','121670955842','2022-12-13 21:55:04',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17825,'1110','121670957717','2022-12-13 22:31:30',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(17826,'5500','121670957717','2022-12-13 22:31:30',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17827,'1000','121670957717','2022-12-13 22:31:30',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17828,'4000','121670957717','2022-12-13 22:31:30',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(17829,'1110','121670959899','2022-12-13 22:33:00',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(17830,'5500','121670959899','2022-12-13 22:33:00',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17831,'1000','121670959899','2022-12-13 22:33:00',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17832,'4000','121670959899','2022-12-13 22:33:00',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(17833,'1110','121670960004','2022-12-13 22:55:16',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(17834,'5500','121670960004','2022-12-13 22:55:16',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17835,'1000','121670960004','2022-12-13 22:55:16',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17836,'4000','121670960004','2022-12-13 22:55:16',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(17837,'1110','121670963525','2022-12-14 00:04:09',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(17838,'5500','121670963525','2022-12-14 00:04:09',175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17839,'1000','121670963525','2022-12-14 00:04:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17840,'4000','121670963525','2022-12-14 00:04:09',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(17841,'1110','121670965474','2022-12-14 00:08:59',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17842,'5500','121670965474','2022-12-14 00:08:59',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17843,'1000','121670965474','2022-12-14 00:08:59',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17844,'4000','121670965474','2022-12-14 00:08:59',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(17845,'1110','121670965807','2022-12-14 00:15:16',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(17846,'1110','121670965807','2022-12-14 00:15:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17847,'1110','121670965807','2022-12-14 00:15:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17848,'1110','121670965807','2022-12-14 00:15:16',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17849,'1110','121670965807','2022-12-14 00:15:16',NULL,1354.05,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17850,'1110','121670965807','2022-12-14 00:15:16',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17851,'1110','121670965807','2022-12-14 00:15:16',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17852,'5500','121670965807','2022-12-14 00:15:16',3167.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17853,'1000','121670965807','2022-12-14 00:15:16',4800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17854,'4000','121670965807','2022-12-14 00:15:16',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(17855,'4000','121670965807','2022-12-14 00:15:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17856,'4000','121670965807','2022-12-14 00:15:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(17857,'4000','121670965807','2022-12-14 00:15:16',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17858,'4000','121670965807','2022-12-14 00:15:16',NULL,2250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(17859,'4000','121670965807','2022-12-14 00:15:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17860,'4000','121670965807','2022-12-14 00:15:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(17861,'1110','121670966124','2022-12-14 00:32:16',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(17862,'5500','121670966124','2022-12-14 00:32:16',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17863,'1000','121670966124','2022-12-14 00:32:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17864,'4000','121670966124','2022-12-14 00:32:16',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(17865,'1110','121670967146','2022-12-14 00:35:31',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(17866,'1110','121670967146','2022-12-14 00:35:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17867,'5500','121670967146','2022-12-14 00:35:31',393.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17868,'1000','121670967146','2022-12-14 00:35:31',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17869,'4000','121670967146','2022-12-14 00:35:31',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(17870,'4000','121670967146','2022-12-14 00:35:31',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17871,'1110','121670967335','2022-12-14 00:53:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(17872,'1110','121670967335','2022-12-14 00:53:51',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17873,'5500','121670967335','2022-12-14 00:53:51',226.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17874,'1000','121670967335','2022-12-14 00:53:51',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17875,'4000','121670967335','2022-12-14 00:53:51',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(17876,'4000','121670967335','2022-12-14 00:53:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17877,'1110','121670968438','2022-12-14 00:55:09',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(17878,'5500','121670968438','2022-12-14 00:55:09',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17879,'1000','121670968438','2022-12-14 00:55:09',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17880,'4000','121670968438','2022-12-14 00:55:09',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(17881,'1110','121670970197','2022-12-14 01:24:03',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17882,'1110','121670970197','2022-12-14 01:24:03',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(17883,'1110','121670970197','2022-12-14 01:24:03',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17884,'5500','121670970197','2022-12-14 01:24:03',1239.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17885,'1000','121670970197','2022-12-14 01:24:03',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17886,'4000','121670970197','2022-12-14 01:24:03',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17887,'4000','121670970197','2022-12-14 01:24:03',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(17888,'4000','121670970197','2022-12-14 01:24:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17889,'1110','121670971866','2022-12-14 01:52:41',NULL,3350.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(17890,'1110','121670971866','2022-12-14 01:52:41',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17891,'1110','121670971866','2022-12-14 01:52:41',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(17892,'1110','121670971866','2022-12-14 01:52:41',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17893,'5500','121670971866','2022-12-14 01:52:41',4120.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17894,'1000','121670971866','2022-12-14 01:52:41',6330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17895,'4000','121670971866','2022-12-14 01:52:41',NULL,5200.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(17896,'4000','121670971866','2022-12-14 01:52:41',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17897,'4000','121670971866','2022-12-14 01:52:41',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(17898,'4000','121670971866','2022-12-14 01:52:41',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(17899,'1110','121670974930','2022-12-14 02:42:18',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(17900,'5500','121670974930','2022-12-14 02:42:18',175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17901,'1000','121670974930','2022-12-14 02:42:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17902,'4000','121670974930','2022-12-14 02:42:18',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(17903,'1110','121670975296','2022-12-14 03:08:53',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17904,'1110','121670975296','2022-12-14 03:08:53',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17905,'5500','121670975296','2022-12-14 03:08:53',454.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17906,'1000','121670975296','2022-12-14 03:08:53',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17907,'4000','121670975296','2022-12-14 03:08:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17908,'4000','121670975296','2022-12-14 03:08:53',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(17909,'1110','121670976537','2022-12-14 03:09:28',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17910,'5500','121670976537','2022-12-14 03:09:28',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17911,'1000','121670976537','2022-12-14 03:09:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17912,'4000','121670976537','2022-12-14 03:09:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17913,'1110','121670976573','2022-12-14 03:11:56',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17914,'5500','121670976573','2022-12-14 03:11:56',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17915,'1000','121670976573','2022-12-14 03:11:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17916,'4000','121670976573','2022-12-14 03:11:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17917,'1110','121670976720','2022-12-14 03:12:39',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17918,'5500','121670976720','2022-12-14 03:12:39',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17919,'1000','121670976720','2022-12-14 03:12:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17920,'4000','121670976720','2022-12-14 03:12:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(17921,'1110','121670976788','2022-12-14 03:47:41',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17922,'1110','121670976788','2022-12-14 03:47:41',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17923,'1110','121670976788','2022-12-14 03:47:41',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17924,'5500','121670976788','2022-12-14 03:47:41',1259.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17925,'1000','121670976788','2022-12-14 03:47:41',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17926,'4000','121670976788','2022-12-14 03:47:41',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(17927,'4000','121670976788','2022-12-14 03:47:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(17928,'4000','121670976788','2022-12-14 03:47:41',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17929,'1110','121670988340','2022-12-14 06:26:30',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17930,'1110','121670988340','2022-12-14 06:26:30',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17931,'5500','121670988340','2022-12-14 06:26:30',1173.30,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17932,'1000','121670988340','2022-12-14 06:26:30',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17933,'4000','121670988340','2022-12-14 06:26:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(17934,'4000','121670988340','2022-12-14 06:26:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(17935,'1110','121670988395','2022-12-14 06:29:53',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17936,'5500','121670988395','2022-12-14 06:29:53',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17937,'1000','121670988395','2022-12-14 06:29:53',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17938,'4000','121670988395','2022-12-14 06:29:53',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(17939,'1110','121671023676','2022-12-14 16:16:31',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(17940,'1110','121671023676','2022-12-14 16:16:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17941,'5500','121671023676','2022-12-14 16:16:31',231.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17942,'1000','121671023676','2022-12-14 16:16:31',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17943,'4000','121671023676','2022-12-14 16:16:31',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(17944,'4000','121671023676','2022-12-14 16:16:31',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(17945,'1110','121671023799','2022-12-14 16:23:09',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(17946,'5500','121671023799','2022-12-14 16:23:09',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17947,'1000','121671023799','2022-12-14 16:23:09',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17948,'4000','121671023799','2022-12-14 16:23:09',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(17949,'1110','121671035125','2022-12-14 20:33:58',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(17950,'1110','121671035125','2022-12-14 20:33:58',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929190378','','No',NULL,NULL,''),(17951,'5500','121671035125','2022-12-14 20:33:58',2705.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17952,'1000','121671035125','2022-12-14 20:33:58',3550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17953,'4000','121671035125','2022-12-14 20:33:58',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(17954,'4000','121671035125','2022-12-14 20:33:58',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929190378','','No',NULL,NULL,''),(17955,'1110','121671039332','2022-12-14 21:23:32',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17956,'1110','121671039332','2022-12-14 21:23:32',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(17957,'5500','121671039332','2022-12-14 21:23:32',526.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17958,'1000','121671039332','2022-12-14 21:23:32',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17959,'4000','121671039332','2022-12-14 21:23:32',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(17960,'4000','121671039332','2022-12-14 21:23:32',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(17961,'1110','121671045225','2022-12-14 22:14:28',NULL,696.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17962,'1110','121671045225','2022-12-14 22:14:28',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17963,'5500','121671045225','2022-12-14 22:14:28',1387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17964,'1000','121671045225','2022-12-14 22:14:28',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17965,'4000','121671045225','2022-12-14 22:14:28',NULL,1000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(17966,'4000','121671045225','2022-12-14 22:14:28',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(17967,'1110','121671045627','2022-12-14 22:20:45',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17968,'5500','121671045627','2022-12-14 22:20:45',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17969,'1000','121671045627','2022-12-14 22:20:45',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17970,'4000','121671045627','2022-12-14 22:20:45',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17971,'1110','121671046174','2022-12-14 22:32:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17972,'1110','121671046174','2022-12-14 22:32:22',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17973,'1110','121671046174','2022-12-14 22:32:22',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(17974,'5500','121671046174','2022-12-14 22:32:22',1323.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17975,'1000','121671046174','2022-12-14 22:32:22',2090.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17976,'4000','121671046174','2022-12-14 22:32:22',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(17977,'4000','121671046174','2022-12-14 22:32:22',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(17978,'4000','121671046174','2022-12-14 22:32:22',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(17979,'1110','121671046387','2022-12-14 22:37:37',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17980,'5500','121671046387','2022-12-14 22:37:37',1128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17981,'1000','121671046387','2022-12-14 22:37:37',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17982,'4000','121671046387','2022-12-14 22:37:37',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(17983,'1110','121671047027','2022-12-14 22:44:36',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17984,'1110','121671047027','2022-12-14 22:44:36',NULL,3164.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(17985,'5500','121671047027','2022-12-14 22:44:36',4306.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17986,'1000','121671047027','2022-12-14 22:44:36',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17987,'4000','121671047027','2022-12-14 22:44:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(17988,'4000','121671047027','2022-12-14 22:44:36',NULL,5000.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(17989,'1110','121671047707','2022-12-14 22:56:23',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6002323400332','','No',NULL,NULL,''),(17990,'5500','121671047707','2022-12-14 22:56:23',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17991,'1000','121671047707','2022-12-14 22:56:23',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17992,'4000','121671047707','2022-12-14 22:56:23',NULL,1700.00,'','12','1','Good sold','1','','sales','6002323400332','','No',NULL,NULL,''),(17993,'1110','121671048312','2022-12-14 23:07:16',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(17994,'1110','121671048312','2022-12-14 23:07:16',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(17995,'1110','121671048312','2022-12-14 23:07:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(17996,'5500','121671048312','2022-12-14 23:07:16',858.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(17997,'1000','121671048312','2022-12-14 23:07:16',1620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(17998,'4000','121671048312','2022-12-14 23:07:16',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(17999,'4000','121671048312','2022-12-14 23:07:16',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18000,'4000','121671048312','2022-12-14 23:07:16',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18001,'1110','121671052238','2022-12-15 00:50:30',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(18002,'5500','121671052238','2022-12-15 00:50:30',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18003,'1000','121671052238','2022-12-15 00:50:30',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18004,'4000','121671052238','2022-12-15 00:50:30',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(18005,'1110','121671054971','2022-12-15 00:56:20',NULL,2280.00,'','12','1','Inventory sold','1','','sales','7640175740030','','No',NULL,NULL,''),(18006,'5500','121671054971','2022-12-15 00:56:20',2280.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18007,'1000','121671054971','2022-12-15 00:56:20',3350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18008,'4000','121671054971','2022-12-15 00:56:20',NULL,3350.00,'','12','1','Good sold','1','','sales','7640175740030','','No',NULL,NULL,''),(18009,'1110','121671055057','2022-12-15 00:58:19',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18010,'5500','121671055057','2022-12-15 00:58:19',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18011,'1000','121671055057','2022-12-15 00:58:19',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18012,'4000','121671055057','2022-12-15 00:58:19',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18013,'1110','121671064241','2022-12-15 03:51:57',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18014,'1110','121671064241','2022-12-15 03:51:57',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18015,'5500','121671064241','2022-12-15 03:51:57',462.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18016,'1000','121671064241','2022-12-15 03:51:57',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18017,'4000','121671064241','2022-12-15 03:51:57',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18018,'4000','121671064241','2022-12-15 03:51:57',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18019,'1110','121671065523','2022-12-15 04:14:56',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(18020,'1110','121671065523','2022-12-15 04:14:56',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18021,'5500','121671065523','2022-12-15 04:14:56',362.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18022,'1000','121671065523','2022-12-15 04:14:56',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18023,'4000','121671065523','2022-12-15 04:14:56',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(18024,'4000','121671065523','2022-12-15 04:14:56',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18025,'1110','121671073928','2022-12-15 06:14:42',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18026,'1110','121671073928','2022-12-15 06:14:42',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(18027,'1110','121671073928','2022-12-15 06:14:42',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18028,'1110','121671073928','2022-12-15 06:14:42',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18029,'1110','121671073928','2022-12-15 06:14:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18030,'1110','121671073928','2022-12-15 06:14:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(18031,'5500','121671073928','2022-12-15 06:14:42',2420.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18032,'1000','121671073928','2022-12-15 06:14:42',3480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18033,'4000','121671073928','2022-12-15 06:14:42',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18034,'4000','121671073928','2022-12-15 06:14:42',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(18035,'4000','121671073928','2022-12-15 06:14:42',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18036,'4000','121671073928','2022-12-15 06:14:42',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18037,'4000','121671073928','2022-12-15 06:14:42',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18038,'4000','121671073928','2022-12-15 06:14:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(18039,'1110','121671074091','2022-12-15 06:17:23',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18040,'5500','121671074091','2022-12-15 06:17:23',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18041,'1000','121671074091','2022-12-15 06:17:23',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18042,'4000','121671074091','2022-12-15 06:17:23',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18043,'1110','121671074984','2022-12-15 06:30:33',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18044,'1110','121671074984','2022-12-15 06:30:33',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(18045,'1110','121671074984','2022-12-15 06:30:33',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(18046,'5500','121671074984','2022-12-15 06:30:33',1019.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18047,'1000','121671074984','2022-12-15 06:30:33',1390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18048,'4000','121671074984','2022-12-15 06:30:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18049,'4000','121671074984','2022-12-15 06:30:33',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(18050,'4000','121671074984','2022-12-15 06:30:33',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(18051,'1110','121671077822','2022-12-15 07:25:16',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(18052,'5500','121671077822','2022-12-15 07:25:16',175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18053,'1000','121671077822','2022-12-15 07:25:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18054,'4000','121671077822','2022-12-15 07:25:16',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(18055,'1110','121671078323','2022-12-15 08:19:52',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(18056,'5500','121671078323','2022-12-15 08:19:52',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18057,'1000','121671078323','2022-12-15 08:19:52',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18058,'4000','121671078323','2022-12-15 08:19:52',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(18059,'1110','121671081598','2022-12-15 08:20:43',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(18060,'1110','121671081598','2022-12-15 08:20:43',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(18061,'5500','121671081598','2022-12-15 08:20:43',387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18062,'1000','121671081598','2022-12-15 08:20:43',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18063,'4000','121671081598','2022-12-15 08:20:43',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(18064,'4000','121671081598','2022-12-15 08:20:43',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(18065,'1110','121671097595','2022-12-15 15:14:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18066,'1110','121671097595','2022-12-15 15:14:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18067,'1110','121671097595','2022-12-15 15:14:31',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(18068,'5500','121671097595','2022-12-15 15:14:31',1242.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18069,'1000','121671097595','2022-12-15 15:14:31',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18070,'4000','121671097595','2022-12-15 15:14:31',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18071,'4000','121671097595','2022-12-15 15:14:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18072,'4000','121671097595','2022-12-15 15:14:31',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(18073,'1110','121671108710','2022-12-15 15:52:03',NULL,5136.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18074,'5500','121671108710','2022-12-15 15:52:03',5136.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18075,'1000','121671108710','2022-12-15 15:52:03',7200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18076,'4000','121671108710','2022-12-15 15:52:03',NULL,7200.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18077,'1110','121671108916','2022-12-15 15:55:28',NULL,5136.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18078,'5500','121671108916','2022-12-15 15:55:28',5136.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18079,'1000','121671108916','2022-12-15 15:55:28',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18080,'4000','121671108916','2022-12-15 15:55:28',NULL,6000.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18081,'1110','121671108933','2022-12-15 17:23:03',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323300533','','No',NULL,NULL,''),(18082,'5500','121671108933','2022-12-15 17:23:03',1325.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18083,'1000','121671108933','2022-12-15 17:23:03',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18084,'4000','121671108933','2022-12-15 17:23:03',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323300533','','No',NULL,NULL,''),(18085,'1110','121671116185','2022-12-15 17:56:54',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18086,'5500','121671116185','2022-12-15 17:56:54',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18087,'1000','121671116185','2022-12-15 17:56:54',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18088,'4000','121671116185','2022-12-15 17:56:54',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18089,'1110','121671118327','2022-12-15 18:32:26',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(18090,'5500','121671118327','2022-12-15 18:32:26',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18091,'1000','121671118327','2022-12-15 18:32:26',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18092,'4000','121671118327','2022-12-15 18:32:26',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(18093,'1110','121671118352','2022-12-15 18:33:53',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323300533','','No',NULL,NULL,''),(18094,'5500','121671118352','2022-12-15 18:33:53',1325.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18095,'1000','121671118352','2022-12-15 18:33:53',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18096,'4000','121671118352','2022-12-15 18:33:53',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323300533','','No',NULL,NULL,''),(18097,'1110','121671118439','2022-12-15 19:17:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18098,'5500','121671118439','2022-12-15 19:17:13',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18099,'1000','121671118439','2022-12-15 19:17:13',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18100,'4000','121671118439','2022-12-15 19:17:13',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18101,'1110','121671121042','2022-12-15 20:21:53',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18102,'1110','121671121042','2022-12-15 20:21:53',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18103,'5500','121671121042','2022-12-15 20:21:53',1052.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18104,'1000','121671121042','2022-12-15 20:21:53',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18105,'4000','121671121042','2022-12-15 20:21:53',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18106,'4000','121671121042','2022-12-15 20:21:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18107,'1110','121671125259','2022-12-15 20:35:10',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(18108,'5500','121671125259','2022-12-15 20:35:10',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18109,'1000','121671125259','2022-12-15 20:35:10',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18110,'4000','121671125259','2022-12-15 20:35:10',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(18111,'1110','121671128232','2022-12-15 21:18:07',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(18112,'1110','121671128232','2022-12-15 21:18:07',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(18113,'1110','121671128232','2022-12-15 21:18:07',NULL,1382.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18114,'5500','121671128232','2022-12-15 21:18:07',2470.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18115,'1000','121671128232','2022-12-15 21:18:07',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18116,'4000','121671128232','2022-12-15 21:18:07',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(18117,'4000','121671128232','2022-12-15 21:18:07',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(18118,'4000','121671128232','2022-12-15 21:18:07',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18119,'1110','121671129874','2022-12-15 21:44:45',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18120,'5500','121671129874','2022-12-15 21:44:45',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18121,'1000','121671129874','2022-12-15 21:44:45',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18122,'4000','121671129874','2022-12-15 21:44:45',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18123,'1110','121671129888','2022-12-15 21:55:39',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18124,'5500','121671129888','2022-12-15 21:55:39',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18125,'1000','121671129888','2022-12-15 21:55:39',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18126,'4000','121671129888','2022-12-15 21:55:39',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18127,'1110','121671133195','2022-12-15 22:40:05',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18128,'5500','121671133195','2022-12-15 22:40:05',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18129,'1000','121671133195','2022-12-15 22:40:05',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18130,'4000','121671133195','2022-12-15 22:40:05',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18131,'1110','121671133209','2022-12-15 22:40:17',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18132,'5500','121671133209','2022-12-15 22:40:17',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18133,'1000','121671133209','2022-12-15 22:40:17',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18134,'4000','121671133209','2022-12-15 22:40:17',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18135,'1110','121671133233','2022-12-15 22:40:41',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18136,'5500','121671133233','2022-12-15 22:40:41',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18137,'1000','121671133233','2022-12-15 22:40:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18138,'4000','121671133233','2022-12-15 22:40:41',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18139,'1110','121671133246','2022-12-15 22:55:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(18140,'5500','121671133246','2022-12-15 22:55:08',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18141,'1000','121671133246','2022-12-15 22:55:08',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18142,'4000','121671133246','2022-12-15 22:55:08',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(18143,'1110','121671134111','2022-12-15 23:03:34',NULL,1200.00,'','12','1','Inventory sold','1','','sales','7804320301174','','No',NULL,NULL,''),(18144,'1110','121671134111','2022-12-15 23:03:34',NULL,1206.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18145,'5500','121671134111','2022-12-15 23:03:34',2406.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18146,'1000','121671134111','2022-12-15 23:03:34',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18147,'4000','121671134111','2022-12-15 23:03:34',NULL,2000.00,'','12','1','Good sold','1','','sales','7804320301174','','No',NULL,NULL,''),(18148,'4000','121671134111','2022-12-15 23:03:34',NULL,1800.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18149,'1110','121671139030','2022-12-16 00:17:29',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18150,'1110','121671139030','2022-12-16 00:17:29',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18151,'5500','121671139030','2022-12-16 00:17:29',592.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18152,'1000','121671139030','2022-12-16 00:17:29',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18153,'4000','121671139030','2022-12-16 00:17:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18154,'4000','121671139030','2022-12-16 00:17:29',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18155,'1110','121671139054','2022-12-16 00:25:46',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18156,'5500','121671139054','2022-12-16 00:25:46',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18157,'1000','121671139054','2022-12-16 00:25:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18158,'4000','121671139054','2022-12-16 00:25:46',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18159,'1110','121671139554','2022-12-16 00:37:35',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18160,'5500','121671139554','2022-12-16 00:37:35',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18161,'1000','121671139554','2022-12-16 00:37:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18162,'4000','121671139554','2022-12-16 00:37:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18163,'1110','121671141962','2022-12-16 01:06:31',NULL,418.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(18164,'1110','121671141962','2022-12-16 01:06:31',NULL,57.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18165,'5500','121671141962','2022-12-16 01:06:31',475.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18166,'1000','121671141962','2022-12-16 01:06:31',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18167,'4000','121671141962','2022-12-16 01:06:31',NULL,580.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(18168,'4000','121671141962','2022-12-16 01:06:31',NULL,150.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18169,'1110','121671143513','2022-12-16 01:33:36',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(18170,'1110','121671143513','2022-12-16 01:33:36',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(18171,'1110','121671143513','2022-12-16 01:33:36',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18172,'5500','121671143513','2022-12-16 01:33:36',1644.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18173,'1000','121671143513','2022-12-16 01:33:36',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18174,'4000','121671143513','2022-12-16 01:33:36',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(18175,'4000','121671143513','2022-12-16 01:33:36',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(18176,'4000','121671143513','2022-12-16 01:33:36',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18177,'1110','121671144376','2022-12-16 01:48:50',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18178,'5500','121671144376','2022-12-16 01:48:50',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18179,'1000','121671144376','2022-12-16 01:48:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18180,'4000','121671144376','2022-12-16 01:48:50',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18181,'1110','121671144536','2022-12-16 02:05:37',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18182,'1110','121671144536','2022-12-16 02:05:37',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18183,'5500','121671144536','2022-12-16 02:05:37',510.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18184,'1000','121671144536','2022-12-16 02:05:37',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18185,'4000','121671144536','2022-12-16 02:05:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18186,'4000','121671144536','2022-12-16 02:05:37',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18187,'1110','121671150012','2022-12-16 03:23:37',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18188,'1110','121671150012','2022-12-16 03:23:37',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18189,'1110','121671150012','2022-12-16 03:23:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18190,'1110','121671150012','2022-12-16 03:23:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18191,'1110','121671150012','2022-12-16 03:23:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18192,'5500','121671150012','2022-12-16 03:23:37',871.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18193,'1000','121671150012','2022-12-16 03:23:37',1280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18194,'4000','121671150012','2022-12-16 03:23:37',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18195,'4000','121671150012','2022-12-16 03:23:37',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18196,'4000','121671150012','2022-12-16 03:23:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18197,'4000','121671150012','2022-12-16 03:23:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18198,'4000','121671150012','2022-12-16 03:23:37',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18199,'1110','121671150231','2022-12-16 05:47:32',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18200,'1110','121671150231','2022-12-16 05:47:32',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(18201,'1110','121671150231','2022-12-16 05:47:32',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18202,'1110','121671150231','2022-12-16 05:47:32',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18203,'5500','121671150231','2022-12-16 05:47:32',841.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18204,'1000','121671150231','2022-12-16 05:47:32',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18205,'4000','121671150231','2022-12-16 05:47:32',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18206,'4000','121671150231','2022-12-16 05:47:32',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(18207,'4000','121671150231','2022-12-16 05:47:32',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18208,'4000','121671150231','2022-12-16 05:47:32',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18209,'1110','121671162831','2022-12-16 06:56:01',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18210,'1110','121671162831','2022-12-16 06:56:01',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18211,'1110','121671162831','2022-12-16 06:56:01',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18212,'1110','121671162831','2022-12-16 06:56:01',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18213,'1110','121671162831','2022-12-16 06:56:01',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18214,'5500','121671162831','2022-12-16 06:56:01',3883.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18215,'1000','121671162831','2022-12-16 06:56:01',5580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18216,'4000','121671162831','2022-12-16 06:56:01',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18217,'4000','121671162831','2022-12-16 06:56:01',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18218,'4000','121671162831','2022-12-16 06:56:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18219,'4000','121671162831','2022-12-16 06:56:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18220,'4000','121671162831','2022-12-16 06:56:01',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18221,'1110','121671163129','2022-12-16 07:10:15',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18222,'5500','121671163129','2022-12-16 07:10:15',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18223,'1000','121671163129','2022-12-16 07:10:15',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18224,'4000','121671163129','2022-12-16 07:10:15',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18225,'1110','121671187548','2022-12-16 13:48:33',NULL,653.00,'','12','1','Inventory sold','1','','sales','6161101604994','','No',NULL,NULL,''),(18226,'5500','121671187548','2022-12-16 13:48:33',653.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18227,'1000','121671187548','2022-12-16 13:48:33',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18228,'4000','121671187548','2022-12-16 13:48:33',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604994','','No',NULL,NULL,''),(18229,'1110','121671189754','2022-12-16 16:10:51',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(18230,'1110','121671189754','2022-12-16 16:10:51',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(18231,'1110','121671189754','2022-12-16 16:10:51',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18232,'1110','121671189754','2022-12-16 16:10:51',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(18233,'5500','121671189754','2022-12-16 16:10:51',684.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18234,'1000','121671189754','2022-12-16 16:10:51',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18235,'4000','121671189754','2022-12-16 16:10:51',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(18236,'4000','121671189754','2022-12-16 16:10:51',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(18237,'4000','121671189754','2022-12-16 16:10:51',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18238,'4000','121671189754','2022-12-16 16:10:51',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(18239,'1110','121671196474','2022-12-16 16:17:03',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(18240,'1110','121671196474','2022-12-16 16:17:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(18241,'5500','121671196474','2022-12-16 16:17:03',322.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18242,'1000','121671196474','2022-12-16 16:17:03',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18243,'4000','121671196474','2022-12-16 16:17:03',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(18244,'4000','121671196474','2022-12-16 16:17:03',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(18245,'1110','121671205210','2022-12-16 18:45:00',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(18246,'1110','121671205210','2022-12-16 18:45:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18247,'5500','121671205210','2022-12-16 18:45:00',1703.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18248,'1000','121671205210','2022-12-16 18:45:00',2380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18249,'4000','121671205210','2022-12-16 18:45:00',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(18250,'4000','121671205210','2022-12-16 18:45:00',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18251,'1110','121671205712','2022-12-16 19:06:41',NULL,590.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(18252,'1110','121671205712','2022-12-16 19:06:41',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18253,'5500','121671205712','2022-12-16 19:06:41',664.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18254,'1000','121671205712','2022-12-16 19:06:41',1040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18255,'4000','121671205712','2022-12-16 19:06:41',NULL,900.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(18256,'4000','121671205712','2022-12-16 19:06:41',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18257,'1110','121671206813','2022-12-16 21:26:09',NULL,92.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(18258,'5500','121671206813','2022-12-16 21:26:09',92.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18259,'1000','121671206813','2022-12-16 21:26:09',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18260,'4000','121671206813','2022-12-16 21:26:09',NULL,300.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(18261,'1110','121671215177','2022-12-16 21:47:47',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(18262,'1110','121671215177','2022-12-16 21:47:47',NULL,213.32,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18263,'1110','121671215177','2022-12-16 21:47:47',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18264,'5500','121671215177','2022-12-16 21:47:47',2357.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18265,'1000','121671215177','2022-12-16 21:47:47',3270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18266,'4000','121671215177','2022-12-16 21:47:47',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(18267,'4000','121671215177','2022-12-16 21:47:47',NULL,320.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18268,'4000','121671215177','2022-12-16 21:47:47',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18269,'1110','121671216544','2022-12-16 21:50:20',NULL,886.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(18270,'1110','121671216544','2022-12-16 21:50:20',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18271,'1110','121671216544','2022-12-16 21:50:20',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18272,'5500','121671216544','2022-12-16 21:50:20',1007.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18273,'1000','121671216544','2022-12-16 21:50:20',1760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18274,'4000','121671216544','2022-12-16 21:50:20',NULL,1500.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(18275,'4000','121671216544','2022-12-16 21:50:20',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18276,'4000','121671216544','2022-12-16 21:50:20',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18277,'1110','121671216635','2022-12-16 21:52:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18278,'1110','121671216635','2022-12-16 21:52:30',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18279,'5500','121671216635','2022-12-16 21:52:30',417.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18280,'1000','121671216635','2022-12-16 21:52:30',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18281,'4000','121671216635','2022-12-16 21:52:30',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18282,'4000','121671216635','2022-12-16 21:52:30',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18283,'1110','121671216873','2022-12-16 21:55:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18284,'1110','121671216873','2022-12-16 21:55:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18285,'5500','121671216873','2022-12-16 21:55:04',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18286,'1000','121671216873','2022-12-16 21:55:04',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18287,'4000','121671216873','2022-12-16 21:55:04',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18288,'4000','121671216873','2022-12-16 21:55:04',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18289,'1110','121671217556','2022-12-16 22:23:42',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18290,'1110','121671217556','2022-12-16 22:23:42',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18291,'5500','121671217556','2022-12-16 22:23:42',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18292,'1000','121671217556','2022-12-16 22:23:42',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18293,'4000','121671217556','2022-12-16 22:23:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18294,'4000','121671217556','2022-12-16 22:23:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18295,'1110','121671218625','2022-12-16 22:37:03',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18296,'5500','121671218625','2022-12-16 22:37:03',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18297,'1000','121671218625','2022-12-16 22:37:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18298,'4000','121671218625','2022-12-16 22:37:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18299,'1110','121671219430','2022-12-16 22:50:14',NULL,1180.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(18300,'1110','121671219430','2022-12-16 22:50:14',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18301,'1110','121671219430','2022-12-16 22:50:14',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18302,'1110','121671219430','2022-12-16 22:50:14',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18303,'1110','121671219430','2022-12-16 22:50:14',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(18304,'1110','121671219430','2022-12-16 22:50:14',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18305,'1110','121671219430','2022-12-16 22:50:14',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18306,'1110','121671219430','2022-12-16 22:50:14',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18307,'1110','121671219430','2022-12-16 22:50:14',NULL,0.00,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18308,'5500','121671219430','2022-12-16 22:50:14',2891.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18309,'1000','121671219430','2022-12-16 22:50:14',4390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18310,'4000','121671219430','2022-12-16 22:50:14',NULL,1800.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(18311,'4000','121671219430','2022-12-16 22:50:14',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18312,'4000','121671219430','2022-12-16 22:50:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18313,'4000','121671219430','2022-12-16 22:50:14',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(18314,'4000','121671219430','2022-12-16 22:50:14',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(18315,'4000','121671219430','2022-12-16 22:50:14',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18316,'4000','121671219430','2022-12-16 22:50:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18317,'4000','121671219430','2022-12-16 22:50:14',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18318,'4000','121671219430','2022-12-16 22:50:14',NULL,0.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18319,'1110','121671220290','2022-12-16 23:17:44',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18320,'5500','121671220290','2022-12-16 23:17:44',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18321,'1000','121671220290','2022-12-16 23:17:44',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18322,'4000','121671220290','2022-12-16 23:17:44',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18323,'1110','121671221997','2022-12-16 23:26:23',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18324,'1110','121671221997','2022-12-16 23:26:23',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18325,'5500','121671221997','2022-12-16 23:26:23',371.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18326,'1000','121671221997','2022-12-16 23:26:23',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18327,'4000','121671221997','2022-12-16 23:26:23',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18328,'4000','121671221997','2022-12-16 23:26:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18329,'1110','121671222387','2022-12-16 23:34:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18330,'5500','121671222387','2022-12-16 23:34:45',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18331,'1000','121671222387','2022-12-16 23:34:45',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18332,'4000','121671222387','2022-12-16 23:34:45',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18333,'1110','121671222889','2022-12-16 23:46:23',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(18334,'5500','121671222889','2022-12-16 23:46:23',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18335,'1000','121671222889','2022-12-16 23:46:23',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18336,'4000','121671222889','2022-12-16 23:46:23',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(18337,'1110','121671223588','2022-12-16 23:48:53',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(18338,'1110','121671223588','2022-12-16 23:48:53',NULL,206.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18339,'5500','121671223588','2022-12-16 23:48:53',1876.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18340,'1000','121671223588','2022-12-16 23:48:53',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18341,'4000','121671223588','2022-12-16 23:48:53',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(18342,'4000','121671223588','2022-12-16 23:48:53',NULL,300.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18343,'1110','121671223948','2022-12-16 23:52:48',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18344,'1110','121671223948','2022-12-16 23:52:48',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18345,'5500','121671223948','2022-12-16 23:52:48',368.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18346,'1000','121671223948','2022-12-16 23:52:48',610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18347,'4000','121671223948','2022-12-16 23:52:48',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18348,'4000','121671223948','2022-12-16 23:52:48',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18349,'1110','121671224341','2022-12-16 23:59:24',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18350,'1110','121671224341','2022-12-16 23:59:24',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18351,'5500','121671224341','2022-12-16 23:59:24',561.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18352,'1000','121671224341','2022-12-16 23:59:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18353,'4000','121671224341','2022-12-16 23:59:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18354,'4000','121671224341','2022-12-16 23:59:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18355,'1110','121671225761','2022-12-17 00:22:54',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18356,'5500','121671225761','2022-12-17 00:22:54',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18357,'1000','121671225761','2022-12-17 00:22:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18358,'4000','121671225761','2022-12-17 00:22:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18359,'1110','121671229210','2022-12-17 01:27:45',NULL,1329.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(18360,'1110','121671229210','2022-12-17 01:27:45',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18361,'1110','121671229210','2022-12-17 01:27:45',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18362,'1110','121671229210','2022-12-17 01:27:45',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18363,'5500','121671229210','2022-12-17 01:27:45',2672.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18364,'1000','121671229210','2022-12-17 01:27:45',4190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18365,'4000','121671229210','2022-12-17 01:27:45',NULL,2250.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(18366,'4000','121671229210','2022-12-17 01:27:45',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18367,'4000','121671229210','2022-12-17 01:27:45',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18368,'4000','121671229210','2022-12-17 01:27:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18369,'1110','121671229676','2022-12-17 01:33:57',NULL,1180.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(18370,'1110','121671229676','2022-12-17 01:33:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18371,'5500','121671229676','2022-12-17 01:33:57',1217.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18372,'1000','121671229676','2022-12-17 01:33:57',1870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18373,'4000','121671229676','2022-12-17 01:33:57',NULL,1800.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(18374,'4000','121671229676','2022-12-17 01:33:57',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18375,'1110','121671230042','2022-12-17 01:41:17',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18376,'5500','121671230042','2022-12-17 01:41:17',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18377,'1000','121671230042','2022-12-17 01:41:17',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18378,'4000','121671230042','2022-12-17 01:41:17',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18379,'1110','121671230487','2022-12-17 02:16:13',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(18380,'1110','121671230487','2022-12-17 02:16:13',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18381,'5500','121671230487','2022-12-17 02:16:13',958.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18382,'1000','121671230487','2022-12-17 02:16:13',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18383,'4000','121671230487','2022-12-17 02:16:13',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(18384,'4000','121671230487','2022-12-17 02:16:13',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18385,'1110','121671232731','2022-12-17 03:20:12',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18386,'1110','121671232731','2022-12-17 03:20:12',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18387,'5500','121671232731','2022-12-17 03:20:12',1499.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18388,'1000','121671232731','2022-12-17 03:20:12',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18389,'4000','121671232731','2022-12-17 03:20:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18390,'4000','121671232731','2022-12-17 03:20:12',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18391,'1110','121671236479','2022-12-17 03:26:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18392,'5500','121671236479','2022-12-17 03:26:54',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18393,'1000','121671236479','2022-12-17 03:26:54',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18394,'4000','121671236479','2022-12-17 03:26:54',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18395,'1110','121671236821','2022-12-17 03:27:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18396,'1110','121671236821','2022-12-17 03:27:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(18397,'1110','121671236821','2022-12-17 03:27:49',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18398,'1110','121671236821','2022-12-17 03:27:49',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18399,'5500','121671236821','2022-12-17 03:27:49',433.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18400,'1000','121671236821','2022-12-17 03:27:49',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18401,'4000','121671236821','2022-12-17 03:27:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18402,'4000','121671236821','2022-12-17 03:27:49',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(18403,'4000','121671236821','2022-12-17 03:27:49',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18404,'4000','121671236821','2022-12-17 03:27:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18405,'1110','121671236919','2022-12-17 03:29:52',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18406,'1110','121671236919','2022-12-17 03:29:52',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18407,'1110','121671236919','2022-12-17 03:29:52',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(18408,'5500','121671236919','2022-12-17 03:29:52',2286.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18409,'1000','121671236919','2022-12-17 03:29:52',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18410,'4000','121671236919','2022-12-17 03:29:52',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18411,'4000','121671236919','2022-12-17 03:29:52',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18412,'4000','121671236919','2022-12-17 03:29:52',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(18413,'1110','121671236997','2022-12-17 03:40:15',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18414,'5500','121671236997','2022-12-17 03:40:15',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18415,'1000','121671236997','2022-12-17 03:40:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18416,'4000','121671236997','2022-12-17 03:40:15',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18417,'1110','121671240251','2022-12-17 05:08:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(18418,'5500','121671240251','2022-12-17 05:08:41',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18419,'1000','121671240251','2022-12-17 05:08:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18420,'4000','121671240251','2022-12-17 05:08:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(18421,'1110','121671242931','2022-12-17 07:09:43',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(18422,'1110','121671242931','2022-12-17 07:09:43',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18423,'1110','121671242931','2022-12-17 07:09:43',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18424,'1110','121671242931','2022-12-17 07:09:43',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18425,'1110','121671242931','2022-12-17 07:09:43',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(18426,'5500','121671242931','2022-12-17 07:09:43',1488.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18427,'1000','121671242931','2022-12-17 07:09:43',2230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18428,'4000','121671242931','2022-12-17 07:09:43',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(18429,'4000','121671242931','2022-12-17 07:09:43',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18430,'4000','121671242931','2022-12-17 07:09:43',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18431,'4000','121671242931','2022-12-17 07:09:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18432,'4000','121671242931','2022-12-17 07:09:43',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(18433,'1110','121671256708','2022-12-17 09:52:22',NULL,894.96,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18434,'1110','121671256708','2022-12-17 09:52:22',NULL,316.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(18435,'5500','121671256708','2022-12-17 09:52:22',1210.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18436,'1000','121671256708','2022-12-17 09:52:22',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18437,'4000','121671256708','2022-12-17 09:52:22',NULL,1800.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18438,'4000','121671256708','2022-12-17 09:52:22',NULL,500.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(18439,'1110','121671260294','2022-12-17 11:23:02',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(18440,'1110','121671260294','2022-12-17 11:23:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18441,'5500','121671260294','2022-12-17 11:23:02',292.31,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18442,'1000','121671260294','2022-12-17 11:23:02',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18443,'4000','121671260294','2022-12-17 11:23:02',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(18444,'4000','121671260294','2022-12-17 11:23:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18445,'1110','121671265571','2022-12-17 12:03:07',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(18446,'5500','121671265571','2022-12-17 12:03:07',175.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18447,'1000','121671265571','2022-12-17 12:03:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18448,'4000','121671265571','2022-12-17 12:03:07',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(18449,'1110','121671267797','2022-12-17 13:40:26',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18450,'5500','121671267797','2022-12-17 13:40:26',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18451,'1000','121671267797','2022-12-17 13:40:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18452,'4000','121671267797','2022-12-17 13:40:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18453,'1110','121671273632','2022-12-17 13:41:07',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18454,'5500','121671273632','2022-12-17 13:41:07',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18455,'1000','121671273632','2022-12-17 13:41:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18456,'4000','121671273632','2022-12-17 13:41:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18457,'1110','121671276197','2022-12-17 15:29:24',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(18458,'1110','121671276197','2022-12-17 15:29:24',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18459,'1110','121671276197','2022-12-17 15:29:24',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18460,'1110','121671276197','2022-12-17 15:29:24',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18461,'1110','121671276197','2022-12-17 15:29:24',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(18462,'1110','121671276197','2022-12-17 15:29:24',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18463,'5500','121671276197','2022-12-17 15:29:24',1321.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18464,'1000','121671276197','2022-12-17 15:29:24',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18465,'4000','121671276197','2022-12-17 15:29:24',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(18466,'4000','121671276197','2022-12-17 15:29:24',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18467,'4000','121671276197','2022-12-17 15:29:24',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18468,'4000','121671276197','2022-12-17 15:29:24',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18469,'4000','121671276197','2022-12-17 15:29:24',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(18470,'4000','121671276197','2022-12-17 15:29:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18471,'1110','121671280170','2022-12-17 15:41:31',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18472,'5500','121671280170','2022-12-17 15:41:31',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18473,'1000','121671280170','2022-12-17 15:41:31',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18474,'4000','121671280170','2022-12-17 15:41:31',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18475,'1110','121671280903','2022-12-17 15:42:24',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18476,'5500','121671280903','2022-12-17 15:42:24',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18477,'1000','121671280903','2022-12-17 15:42:24',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18478,'4000','121671280903','2022-12-17 15:42:24',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18479,'1110','121671288842','2022-12-17 17:56:22',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18480,'1110','121671288842','2022-12-17 17:56:22',NULL,441.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18481,'5500','121671288842','2022-12-17 17:56:22',1235.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18482,'1000','121671288842','2022-12-17 17:56:22',2190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18483,'4000','121671288842','2022-12-17 17:56:22',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18484,'4000','121671288842','2022-12-17 17:56:22',NULL,690.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18485,'1110','121671289001','2022-12-17 17:57:19',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18486,'5500','121671289001','2022-12-17 17:57:19',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18487,'1000','121671289001','2022-12-17 17:57:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18488,'4000','121671289001','2022-12-17 17:57:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18489,'1110','121671289049','2022-12-17 18:05:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18490,'5500','121671289049','2022-12-17 18:05:40',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18491,'1000','121671289049','2022-12-17 18:05:40',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18492,'4000','121671289049','2022-12-17 18:05:40',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18493,'1110','121671289546','2022-12-17 18:17:01',NULL,835.00,'','12','1','Inventory sold','1','','sales','6001506910347','','No',NULL,NULL,''),(18494,'5500','121671289546','2022-12-17 18:17:01',835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18495,'1000','121671289546','2022-12-17 18:17:01',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18496,'4000','121671289546','2022-12-17 18:17:01',NULL,1500.00,'','12','1','Good sold','1','','sales','6001506910347','','No',NULL,NULL,''),(18497,'1110','121671290226','2022-12-17 18:28:10',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18498,'1110','121671290226','2022-12-17 18:28:10',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18499,'5500','121671290226','2022-12-17 18:28:10',462.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18500,'1000','121671290226','2022-12-17 18:28:10',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18501,'4000','121671290226','2022-12-17 18:28:10',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18502,'4000','121671290226','2022-12-17 18:28:10',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(18503,'1110','121671290926','2022-12-17 18:34:12',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18504,'5500','121671290926','2022-12-17 18:34:12',4000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18505,'1000','121671290926','2022-12-17 18:34:12',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18506,'4000','121671290926','2022-12-17 18:34:12',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18507,'1110','121671291260','2022-12-17 18:38:48',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18508,'5500','121671291260','2022-12-17 18:38:48',794.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18509,'1000','121671291260','2022-12-17 18:38:48',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18510,'4000','121671291260','2022-12-17 18:38:48',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18511,'1110','121671291533','2022-12-17 19:02:21',NULL,380.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(18512,'5500','121671291533','2022-12-17 19:02:21',380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18513,'1000','121671291533','2022-12-17 19:02:21',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18514,'4000','121671291533','2022-12-17 19:02:21',NULL,700.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(18515,'1110','121671296539','2022-12-17 20:03:05',NULL,7531.00,'','12','1','Inventory sold','1','','sales','5000267165806','','No',NULL,NULL,''),(18516,'1110','121671296539','2022-12-17 20:03:05',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18517,'1110','121671296539','2022-12-17 20:03:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(18518,'5500','121671296539','2022-12-17 20:03:05',7673.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18519,'1000','121671296539','2022-12-17 20:03:05',10280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18520,'4000','121671296539','2022-12-17 20:03:05',NULL,10000.00,'','12','1','Good sold','1','','sales','5000267165806','','No',NULL,NULL,''),(18521,'4000','121671296539','2022-12-17 20:03:05',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18522,'4000','121671296539','2022-12-17 20:03:05',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(18523,'1110','121671297102','2022-12-17 20:14:18',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(18524,'1110','121671297102','2022-12-17 20:14:18',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(18525,'5500','121671297102','2022-12-17 20:14:18',411.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18526,'1000','121671297102','2022-12-17 20:14:18',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18527,'4000','121671297102','2022-12-17 20:14:18',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(18528,'4000','121671297102','2022-12-17 20:14:18',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(18529,'1110','121671297267','2022-12-17 20:33:07',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18530,'1110','121671297267','2022-12-17 20:33:07',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18531,'5500','121671297267','2022-12-17 20:33:07',462.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18532,'1000','121671297267','2022-12-17 20:33:07',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18533,'4000','121671297267','2022-12-17 20:33:07',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(18534,'4000','121671297267','2022-12-17 20:33:07',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18535,'1110','121671298406','2022-12-17 21:00:05',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18536,'1110','121671298406','2022-12-17 21:00:05',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18537,'1110','121671298406','2022-12-17 21:00:05',NULL,856.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18538,'1110','121671298406','2022-12-17 21:00:05',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(18539,'5500','121671298406','2022-12-17 21:00:05',2826.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18540,'1000','121671298406','2022-12-17 21:00:05',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18541,'4000','121671298406','2022-12-17 21:00:05',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18542,'4000','121671298406','2022-12-17 21:00:05',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18543,'4000','121671298406','2022-12-17 21:00:05',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18544,'4000','121671298406','2022-12-17 21:00:05',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(18545,'1110','121671304685','2022-12-17 22:27:36',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18546,'1110','121671304685','2022-12-17 22:27:36',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18547,'1110','121671304685','2022-12-17 22:27:36',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18548,'5500','121671304685','2022-12-17 22:27:36',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18549,'1000','121671304685','2022-12-17 22:27:36',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18550,'4000','121671304685','2022-12-17 22:27:36',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18551,'4000','121671304685','2022-12-17 22:27:36',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18552,'4000','121671304685','2022-12-17 22:27:36',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18553,'1110','121671305261','2022-12-17 22:42:43',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18554,'1110','121671305261','2022-12-17 22:42:43',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18555,'5500','121671305261','2022-12-17 22:42:43',743.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18556,'1000','121671305261','2022-12-17 22:42:43',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18557,'4000','121671305261','2022-12-17 22:42:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(18558,'4000','121671305261','2022-12-17 22:42:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18559,'1110','121671307197','2022-12-17 23:00:44',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(18560,'1110','121671307197','2022-12-17 23:00:44',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18561,'5500','121671307197','2022-12-17 23:00:44',935.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18562,'1000','121671307197','2022-12-17 23:00:44',1760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18563,'4000','121671307197','2022-12-17 23:00:44',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(18564,'4000','121671307197','2022-12-17 23:00:44',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18565,'1110','121671317165','2022-12-18 02:37:30',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18566,'1110','121671317165','2022-12-18 02:37:30',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18567,'5500','121671317165','2022-12-18 02:37:30',785.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18568,'1000','121671317165','2022-12-18 02:37:30',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18569,'4000','121671317165','2022-12-18 02:37:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18570,'4000','121671317165','2022-12-18 02:37:30',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18571,'1110','121671320545','2022-12-18 02:45:40',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(18572,'5500','121671320545','2022-12-18 02:45:40',3540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18573,'1000','121671320545','2022-12-18 02:45:40',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18574,'4000','121671320545','2022-12-18 02:45:40',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(18575,'1110','121671320965','2022-12-18 02:49:55',NULL,1389.15,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18576,'1110','121671320965','2022-12-18 02:49:55',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18577,'5500','121671320965','2022-12-18 02:49:55',2252.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18578,'1000','121671320965','2022-12-18 02:49:55',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18579,'4000','121671320965','2022-12-18 02:49:55',NULL,1750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18580,'4000','121671320965','2022-12-18 02:49:55',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18581,'1110','121671321206','2022-12-18 04:09:52',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18582,'5500','121671321206','2022-12-18 04:09:52',726.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18583,'1000','121671321206','2022-12-18 04:09:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18584,'4000','121671321206','2022-12-18 04:09:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18585,'1110','121671327801','2022-12-18 04:44:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18586,'1110','121671327801','2022-12-18 04:44:10',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18587,'1110','121671327801','2022-12-18 04:44:10',NULL,108.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(18588,'5500','121671327801','2022-12-18 04:44:10',1344.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18589,'1000','121671327801','2022-12-18 04:44:10',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18590,'4000','121671327801','2022-12-18 04:44:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18591,'4000','121671327801','2022-12-18 04:44:10',NULL,210.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18592,'4000','121671327801','2022-12-18 04:44:10',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(18593,'1110','121671332182','2022-12-18 05:57:51',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18594,'1110','121671332182','2022-12-18 05:57:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18595,'5500','121671332182','2022-12-18 05:57:51',1231.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18596,'1000','121671332182','2022-12-18 05:57:51',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18597,'4000','121671332182','2022-12-18 05:57:51',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18598,'4000','121671332182','2022-12-18 05:57:51',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(18599,'1110','121671332898','2022-12-18 06:08:54',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18600,'1110','121671332898','2022-12-18 06:08:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(18601,'5500','121671332898','2022-12-18 06:08:54',343.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18602,'1000','121671332898','2022-12-18 06:08:54',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18603,'4000','121671332898','2022-12-18 06:08:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(18604,'4000','121671332898','2022-12-18 06:08:54',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(18605,'1110','121671332941','2022-12-18 06:14:59',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(18606,'1110','121671332941','2022-12-18 06:14:59',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18607,'1110','121671332941','2022-12-18 06:14:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18608,'5500','121671332941','2022-12-18 06:14:59',474.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18609,'1000','121671332941','2022-12-18 06:14:59',690.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18610,'4000','121671332941','2022-12-18 06:14:59',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(18611,'4000','121671332941','2022-12-18 06:14:59',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(18612,'4000','121671332941','2022-12-18 06:14:59',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18613,'1110','121671347638','2022-12-18 11:37:48',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(18614,'1110','121671347638','2022-12-18 11:37:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(18615,'5500','121671347638','2022-12-18 11:37:48',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18616,'1000','121671347638','2022-12-18 11:37:48',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18617,'4000','121671347638','2022-12-18 11:37:48',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(18618,'4000','121671347638','2022-12-18 11:37:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(18619,'1110','121671352678','2022-12-18 11:47:52',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18620,'5500','121671352678','2022-12-18 11:47:52',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18621,'1000','121671352678','2022-12-18 11:47:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18622,'4000','121671352678','2022-12-18 11:47:52',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(18623,'1110','121671355353','2022-12-18 12:55:09',NULL,175.00,'','12','1','Inventory sold','1','','sales','725765052063','','No',NULL,NULL,''),(18624,'1110','121671355353','2022-12-18 12:55:09',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(18625,'5500','121671355353','2022-12-18 12:55:09',231.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18626,'1000','121671355353','2022-12-18 12:55:09',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18627,'4000','121671355353','2022-12-18 12:55:09',NULL,250.00,'','12','1','Good sold','1','','sales','725765052063','','No',NULL,NULL,''),(18628,'4000','121671355353','2022-12-18 12:55:09',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(18629,'1110','121671360625','2022-12-18 13:50:37',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(18630,'5500','121671360625','2022-12-18 13:50:37',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18631,'1000','121671360625','2022-12-18 13:50:37',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18632,'4000','121671360625','2022-12-18 13:50:37',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(18633,'1110','121671361297','2022-12-18 14:02:22',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18634,'1110','121671361297','2022-12-18 14:02:22',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18635,'5500','121671361297','2022-12-18 14:02:22',999.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18636,'1000','121671361297','2022-12-18 14:02:22',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18637,'4000','121671361297','2022-12-18 14:02:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18638,'4000','121671361297','2022-12-18 14:02:22',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18639,'1110','121671368872','2022-12-18 16:08:29',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(18640,'1110','121671368872','2022-12-18 16:08:29',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18641,'5500','121671368872','2022-12-18 16:08:29',281.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18642,'1000','121671368872','2022-12-18 16:08:29',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18643,'4000','121671368872','2022-12-18 16:08:29',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(18644,'4000','121671368872','2022-12-18 16:08:29',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18645,'1110','121671369390','2022-12-18 19:09:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18646,'1110','121671369390','2022-12-18 19:09:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(18647,'5500','121671369390','2022-12-18 19:09:39',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18648,'1000','121671369390','2022-12-18 19:09:39',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18649,'4000','121671369390','2022-12-18 19:09:39',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18650,'4000','121671369390','2022-12-18 19:09:39',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(18651,'1110','121671379804','2022-12-18 21:04:10',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18652,'5500','121671379804','2022-12-18 21:04:10',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18653,'1000','121671379804','2022-12-18 21:04:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18654,'4000','121671379804','2022-12-18 21:04:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18655,'1110','121671386657','2022-12-18 22:49:56',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18656,'5500','121671386657','2022-12-18 22:49:56',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18657,'1000','121671386657','2022-12-18 22:49:56',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18658,'4000','121671386657','2022-12-18 22:49:56',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(18659,'1110','121671393082','2022-12-18 22:54:51',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(18660,'1110','121671393082','2022-12-18 22:54:51',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18661,'5500','121671393082','2022-12-18 22:54:51',1034.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18662,'1000','121671393082','2022-12-18 22:54:51',1450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18663,'4000','121671393082','2022-12-18 22:54:51',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(18664,'4000','121671393082','2022-12-18 22:54:51',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18665,'1110','121671393359','2022-12-18 23:14:20',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18666,'1110','121671393359','2022-12-18 23:14:20',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18667,'5500','121671393359','2022-12-18 23:14:20',264.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18668,'1000','121671393359','2022-12-18 23:14:20',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18669,'4000','121671393359','2022-12-18 23:14:20',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(18670,'4000','121671393359','2022-12-18 23:14:20',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18671,'1110','121671394957','2022-12-18 23:23:06',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18672,'1110','121671394957','2022-12-18 23:23:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(18673,'5500','121671394957','2022-12-18 23:23:06',232.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18674,'1000','121671394957','2022-12-18 23:23:06',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18675,'4000','121671394957','2022-12-18 23:23:06',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18676,'4000','121671394957','2022-12-18 23:23:06',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(18677,'1110','121671395710','2022-12-18 23:35:30',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18678,'5500','121671395710','2022-12-18 23:35:30',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18679,'1000','121671395710','2022-12-18 23:35:30',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18680,'4000','121671395710','2022-12-18 23:35:30',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(18681,'1110','121671396866','2022-12-18 23:55:13',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(18682,'1110','121671396866','2022-12-18 23:55:13',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(18683,'1110','121671396866','2022-12-18 23:55:13',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(18684,'5500','121671396866','2022-12-18 23:55:13',4106.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18685,'1000','121671396866','2022-12-18 23:55:13',6050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18686,'4000','121671396866','2022-12-18 23:55:13',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(18687,'4000','121671396866','2022-12-18 23:55:13',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(18688,'4000','121671396866','2022-12-18 23:55:13',NULL,200.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(18689,'1110','121671403044','2022-12-19 02:10:37',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(18690,'5500','121671403044','2022-12-19 02:10:37',18500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18691,'1000','121671403044','2022-12-19 02:10:37',28500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18692,'4000','121671403044','2022-12-19 02:10:37',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(18693,'1110','121671405043','2022-12-19 02:12:57',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(18694,'5500','121671405043','2022-12-19 02:12:57',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18695,'1000','121671405043','2022-12-19 02:12:57',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18696,'4000','121671405043','2022-12-19 02:12:57',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(18697,'1110','121671408145','2022-12-19 03:05:20',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18698,'1110','121671408145','2022-12-19 03:05:20',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18699,'1110','121671408145','2022-12-19 03:05:20',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18700,'1110','121671408145','2022-12-19 03:05:20',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18701,'1110','121671408145','2022-12-19 03:05:20',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18702,'5500','121671408145','2022-12-19 03:05:20',2704.76,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18703,'1000','121671408145','2022-12-19 03:05:20',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18704,'4000','121671408145','2022-12-19 03:05:20',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18705,'4000','121671408145','2022-12-19 03:05:20',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18706,'4000','121671408145','2022-12-19 03:05:20',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18707,'4000','121671408145','2022-12-19 03:05:20',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(18708,'4000','121671408145','2022-12-19 03:05:20',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18709,'1110','121671408326','2022-12-19 03:39:13',NULL,1280.00,'','12','1','Inventory sold','1','','sales','7794450091598','','No',NULL,NULL,''),(18710,'5500','121671408326','2022-12-19 03:39:13',1280.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18711,'1000','121671408326','2022-12-19 03:39:13',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18712,'4000','121671408326','2022-12-19 03:39:13',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091598','','No',NULL,NULL,''),(18713,'1110','121671415604','2022-12-19 05:07:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18714,'1110','121671415604','2022-12-19 05:07:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18715,'5500','121671415604','2022-12-19 05:07:10',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18716,'1000','121671415604','2022-12-19 05:07:10',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18717,'4000','121671415604','2022-12-19 05:07:10',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18718,'4000','121671415604','2022-12-19 05:07:10',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18719,'1110','121671415671','2022-12-19 05:22:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18720,'5500','121671415671','2022-12-19 05:22:59',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18721,'1000','121671415671','2022-12-19 05:22:59',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18722,'4000','121671415671','2022-12-19 05:22:59',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(18723,'1110','121671428684','2022-12-19 08:44:55',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(18724,'5500','121671428684','2022-12-19 08:44:55',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18725,'1000','121671428684','2022-12-19 08:44:55',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18726,'4000','121671428684','2022-12-19 08:44:55',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(18727,'1110','121671438137','2022-12-19 12:33:44',NULL,1284.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18728,'5500','121671438137','2022-12-19 12:33:44',1284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18729,'1000','121671438137','2022-12-19 12:33:44',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18730,'4000','121671438137','2022-12-19 12:33:44',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18731,'1110','121671442601','2022-12-19 15:03:18',NULL,1085.00,'','12','1','Inventory sold','1','','sales','5011007003654','','No',NULL,NULL,''),(18732,'1110','121671442601','2022-12-19 15:03:18',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18733,'5500','121671442601','2022-12-19 15:03:18',1126.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18734,'1000','121671442601','2022-12-19 15:03:18',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18735,'4000','121671442601','2022-12-19 15:03:18',NULL,1700.00,'','12','1','Good sold','1','','sales','5011007003654','','No',NULL,NULL,''),(18736,'4000','121671442601','2022-12-19 15:03:18',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18737,'1110','121671453970','2022-12-19 16:11:27',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18738,'1110','121671453970','2022-12-19 16:11:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18739,'5500','121671453970','2022-12-19 16:11:27',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18740,'1000','121671453970','2022-12-19 16:11:27',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18741,'4000','121671453970','2022-12-19 16:11:27',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18742,'4000','121671453970','2022-12-19 16:11:27',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18743,'1110','121671455514','2022-12-19 17:20:36',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18744,'1110','121671455514','2022-12-19 17:20:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18745,'5500','121671455514','2022-12-19 17:20:36',340.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18746,'1000','121671455514','2022-12-19 17:20:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18747,'4000','121671455514','2022-12-19 17:20:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18748,'4000','121671455514','2022-12-19 17:20:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18749,'1110','121671459662','2022-12-19 18:51:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18750,'5500','121671459662','2022-12-19 18:51:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18751,'1000','121671459662','2022-12-19 18:51:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18752,'4000','121671459662','2022-12-19 18:51:53',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18753,'1110','121671472095','2022-12-19 20:49:34',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(18754,'1110','121671472095','2022-12-19 20:49:34',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(18755,'1110','121671472095','2022-12-19 20:49:34',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18756,'1110','121671472095','2022-12-19 20:49:34',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18757,'5500','121671472095','2022-12-19 20:49:34',2744.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18758,'1000','121671472095','2022-12-19 20:49:34',4310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18759,'4000','121671472095','2022-12-19 20:49:34',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(18760,'4000','121671472095','2022-12-19 20:49:34',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(18761,'4000','121671472095','2022-12-19 20:49:34',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18762,'4000','121671472095','2022-12-19 20:49:34',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(18763,'1110','121671472182','2022-12-19 20:51:49',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18764,'5500','121671472182','2022-12-19 20:51:49',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18765,'1000','121671472182','2022-12-19 20:51:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18766,'4000','121671472182','2022-12-19 20:51:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18767,'1110','121671475904','2022-12-19 21:51:59',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18768,'5500','121671475904','2022-12-19 21:51:59',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18769,'1000','121671475904','2022-12-19 21:51:59',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18770,'4000','121671475904','2022-12-19 21:51:59',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(18771,'1110','121671475927','2022-12-19 22:26:11',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18772,'1110','121671475927','2022-12-19 22:26:11',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18773,'5500','121671475927','2022-12-19 22:26:11',872.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18774,'1000','121671475927','2022-12-19 22:26:11',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18775,'4000','121671475927','2022-12-19 22:26:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18776,'4000','121671475927','2022-12-19 22:26:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18777,'1110','121671478015','2022-12-19 22:28:12',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(18778,'5500','121671478015','2022-12-19 22:28:12',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18779,'1000','121671478015','2022-12-19 22:28:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18780,'4000','121671478015','2022-12-19 22:28:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(18781,'1110','121671478374','2022-12-19 22:34:30',NULL,8200.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(18782,'1110','121671478374','2022-12-19 22:34:30',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(18783,'1110','121671478374','2022-12-19 22:34:30',NULL,5670.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18784,'5500','121671478374','2022-12-19 22:34:30',17410.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18785,'1000','121671478374','2022-12-19 22:34:30',26300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18786,'4000','121671478374','2022-12-19 22:34:30',NULL,13000.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(18787,'4000','121671478374','2022-12-19 22:34:30',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(18788,'4000','121671478374','2022-12-19 22:34:30',NULL,8000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18789,'1110','121671480564','2022-12-19 23:09:54',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(18790,'1110','121671480564','2022-12-19 23:09:54',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(18791,'5500','121671480564','2022-12-19 23:09:54',587.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18792,'1000','121671480564','2022-12-19 23:09:54',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18793,'4000','121671480564','2022-12-19 23:09:54',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(18794,'4000','121671480564','2022-12-19 23:09:54',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(18795,'1110','121671480659','2022-12-19 23:26:54',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(18796,'1110','121671480659','2022-12-19 23:26:54',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18797,'5500','121671480659','2022-12-19 23:26:54',1029.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18798,'1000','121671480659','2022-12-19 23:26:54',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18799,'4000','121671480659','2022-12-19 23:26:54',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(18800,'4000','121671480659','2022-12-19 23:26:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18801,'1110','121671489417','2022-12-20 01:40:28',NULL,1590.00,'','12','1','Inventory sold','1','','sales','089540448992','','No',NULL,NULL,''),(18802,'1110','121671489417','2022-12-20 01:40:28',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(18803,'5500','121671489417','2022-12-20 01:40:28',1649.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18804,'1000','121671489417','2022-12-20 01:40:28',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18805,'4000','121671489417','2022-12-20 01:40:28',NULL,2150.00,'','12','1','Good sold','1','','sales','089540448992','','No',NULL,NULL,''),(18806,'4000','121671489417','2022-12-20 01:40:28',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(18807,'1110','121671489633','2022-12-20 03:10:28',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18808,'1110','121671489633','2022-12-20 03:10:28',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18809,'5500','121671489633','2022-12-20 03:10:28',673.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18810,'1000','121671489633','2022-12-20 03:10:28',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18811,'4000','121671489633','2022-12-20 03:10:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18812,'4000','121671489633','2022-12-20 03:10:28',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18813,'1110','121671496462','2022-12-20 03:34:36',NULL,1523.00,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18814,'5500','121671496462','2022-12-20 03:34:36',1523.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18815,'1000','121671496462','2022-12-20 03:34:36',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18816,'4000','121671496462','2022-12-20 03:34:36',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18817,'1110','121671510137','2022-12-20 07:22:42',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(18818,'1110','121671510137','2022-12-20 07:22:42',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(18819,'5500','121671510137','2022-12-20 07:22:42',587.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18820,'1000','121671510137','2022-12-20 07:22:42',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18821,'4000','121671510137','2022-12-20 07:22:42',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(18822,'4000','121671510137','2022-12-20 07:22:42',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(18823,'1110','121671524498','2022-12-20 12:16:12',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18824,'1110','121671524498','2022-12-20 12:16:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(18825,'5500','121671524498','2022-12-20 12:16:12',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18826,'1000','121671524498','2022-12-20 12:16:12',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18827,'4000','121671524498','2022-12-20 12:16:12',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18828,'4000','121671524498','2022-12-20 12:16:12',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(18829,'1110','121671527776','2022-12-20 12:17:25',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(18830,'5500','121671527776','2022-12-20 12:17:25',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18831,'1000','121671527776','2022-12-20 12:17:25',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18832,'4000','121671527776','2022-12-20 12:17:25',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(18833,'1110','121671530206','2022-12-20 14:36:42',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18834,'5500','121671530206','2022-12-20 14:36:42',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18835,'1000','121671530206','2022-12-20 14:36:42',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18836,'4000','121671530206','2022-12-20 14:36:42',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(18837,'1110','121671536323','2022-12-20 14:39:07',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18838,'1110','121671536323','2022-12-20 14:39:07',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(18839,'5500','121671536323','2022-12-20 14:39:07',1036.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18840,'1000','121671536323','2022-12-20 14:39:07',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18841,'4000','121671536323','2022-12-20 14:39:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18842,'4000','121671536323','2022-12-20 14:39:07',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(18843,'1110','121671539771','2022-12-20 15:36:39',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(18844,'5500','121671539771','2022-12-20 15:36:39',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18845,'1000','121671539771','2022-12-20 15:36:39',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18846,'4000','121671539771','2022-12-20 15:36:39',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(18847,'1110','121671540982','2022-12-20 15:56:44',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(18848,'1110','121671540982','2022-12-20 15:56:44',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18849,'5500','121671540982','2022-12-20 15:56:44',1810.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18850,'1000','121671540982','2022-12-20 15:56:44',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18851,'4000','121671540982','2022-12-20 15:56:44',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(18852,'4000','121671540982','2022-12-20 15:56:44',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18853,'1110','121671548703','2022-12-20 18:10:04',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18854,'1110','121671548703','2022-12-20 18:10:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18855,'5500','121671548703','2022-12-20 18:10:04',4198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18856,'1000','121671548703','2022-12-20 18:10:04',5650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18857,'4000','121671548703','2022-12-20 18:10:04',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18858,'4000','121671548703','2022-12-20 18:10:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18859,'1110','121671549520','2022-12-20 18:19:01',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18860,'1110','121671549520','2022-12-20 18:19:01',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18861,'5500','121671549520','2022-12-20 18:19:01',4396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18862,'1000','121671549520','2022-12-20 18:19:01',5900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18863,'4000','121671549520','2022-12-20 18:19:01',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281016689','','No',NULL,NULL,''),(18864,'4000','121671549520','2022-12-20 18:19:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(18865,'1110','121671549545','2022-12-20 20:07:18',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18866,'1110','121671549545','2022-12-20 20:07:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18867,'5500','121671549545','2022-12-20 20:07:18',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18868,'1000','121671549545','2022-12-20 20:07:18',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18869,'4000','121671549545','2022-12-20 20:07:18',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(18870,'4000','121671549545','2022-12-20 20:07:18',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18871,'1110','121671556041','2022-12-20 20:12:14',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(18872,'5500','121671556041','2022-12-20 20:12:14',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18873,'1000','121671556041','2022-12-20 20:12:14',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18874,'4000','121671556041','2022-12-20 20:12:14',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(18875,'1110','121671556375','2022-12-20 21:19:04',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18876,'1110','121671556375','2022-12-20 21:19:04',NULL,450.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(18877,'5500','121671556375','2022-12-20 21:19:04',830.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18878,'1000','121671556375','2022-12-20 21:19:04',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18879,'4000','121671556375','2022-12-20 21:19:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18880,'4000','121671556375','2022-12-20 21:19:04',NULL,600.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(18881,'1110','121671560349','2022-12-20 22:14:32',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(18882,'5500','121671560349','2022-12-20 22:14:32',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18883,'1000','121671560349','2022-12-20 22:14:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18884,'4000','121671560349','2022-12-20 22:14:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(18885,'1110','121671563737','2022-12-20 22:19:12',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(18886,'1110','121671563737','2022-12-20 22:19:12',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18887,'1110','121671563737','2022-12-20 22:19:12',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18888,'5500','121671563737','2022-12-20 22:19:12',9572.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18889,'1000','121671563737','2022-12-20 22:19:12',13000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18890,'4000','121671563737','2022-12-20 22:19:12',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(18891,'4000','121671563737','2022-12-20 22:19:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(18892,'4000','121671563737','2022-12-20 22:19:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(18893,'1110','121671563998','2022-12-20 22:43:49',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(18894,'5500','121671563998','2022-12-20 22:43:49',710.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18895,'1000','121671563998','2022-12-20 22:43:49',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18896,'4000','121671563998','2022-12-20 22:43:49',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(18897,'1110','121671565966','2022-12-20 22:53:11',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(18898,'5500','121671565966','2022-12-20 22:53:11',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18899,'1000','121671565966','2022-12-20 22:53:11',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18900,'4000','121671565966','2022-12-20 22:53:11',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(18901,'1110','121671566325','2022-12-21 00:18:43',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18902,'5500','121671566325','2022-12-21 00:18:43',2835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18903,'1000','121671566325','2022-12-21 00:18:43',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18904,'4000','121671566325','2022-12-21 00:18:43',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18905,'1110','121671571184','2022-12-21 00:26:09',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(18906,'1110','121671571184','2022-12-21 00:26:09',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18907,'1110','121671571184','2022-12-21 00:26:09',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(18908,'5500','121671571184','2022-12-21 00:26:09',1228.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18909,'1000','121671571184','2022-12-21 00:26:09',1930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18910,'4000','121671571184','2022-12-21 00:26:09',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(18911,'4000','121671571184','2022-12-21 00:26:09',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(18912,'4000','121671571184','2022-12-21 00:26:09',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(18913,'1110','121671576600','2022-12-21 01:52:53',NULL,1005.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18914,'1110','121671576600','2022-12-21 01:52:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(18915,'5500','121671576600','2022-12-21 01:52:53',1158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18916,'1000','121671576600','2022-12-21 01:52:53',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18917,'4000','121671576600','2022-12-21 01:52:53',NULL,1500.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(18918,'4000','121671576600','2022-12-21 01:52:53',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(18919,'1110','121671576854','2022-12-21 02:16:55',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(18920,'1110','121671576854','2022-12-21 02:16:55',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18921,'5500','121671576854','2022-12-21 02:16:55',685.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18922,'1000','121671576854','2022-12-21 02:16:55',1420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18923,'4000','121671576854','2022-12-21 02:16:55',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(18924,'4000','121671576854','2022-12-21 02:16:55',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(18925,'1110','121671583057','2022-12-21 03:37:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18926,'5500','121671583057','2022-12-21 03:37:47',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18927,'1000','121671583057','2022-12-21 03:37:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18928,'4000','121671583057','2022-12-21 03:37:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(18929,'1110','121671583072','2022-12-21 03:38:16',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(18930,'5500','121671583072','2022-12-21 03:38:16',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18931,'1000','121671583072','2022-12-21 03:38:16',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18932,'4000','121671583072','2022-12-21 03:38:16',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(18933,'1110','121671583101','2022-12-21 03:44:08',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(18934,'1110','121671583101','2022-12-21 03:44:08',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18935,'5500','121671583101','2022-12-21 03:44:08',2025.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18936,'1000','121671583101','2022-12-21 03:44:08',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18937,'4000','121671583101','2022-12-21 03:44:08',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(18938,'4000','121671583101','2022-12-21 03:44:08',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18939,'1110','121671593871','2022-12-21 06:39:30',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18940,'1110','121671593871','2022-12-21 06:39:30',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18941,'1110','121671593871','2022-12-21 06:39:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(18942,'5500','121671593871','2022-12-21 06:39:30',3791.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18943,'1000','121671593871','2022-12-21 06:39:30',5570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18944,'4000','121671593871','2022-12-21 06:39:30',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18945,'4000','121671593871','2022-12-21 06:39:30',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18946,'4000','121671593871','2022-12-21 06:39:30',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(18947,'1110','121671602126','2022-12-21 08:56:31',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18948,'1110','121671602126','2022-12-21 08:56:31',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18949,'1110','121671602126','2022-12-21 08:56:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(18950,'1110','121671602126','2022-12-21 08:56:31',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18951,'5500','121671602126','2022-12-21 08:56:31',3938.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18952,'1000','121671602126','2022-12-21 08:56:31',5800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18953,'4000','121671602126','2022-12-21 08:56:31',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(18954,'4000','121671602126','2022-12-21 08:56:31',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18955,'4000','121671602126','2022-12-21 08:56:31',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(18956,'4000','121671602126','2022-12-21 08:56:31',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18957,'1110','121671611570','2022-12-21 11:34:45',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387004605','','No',NULL,NULL,''),(18958,'5500','121671611570','2022-12-21 11:34:45',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18959,'1000','121671611570','2022-12-21 11:34:45',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18960,'4000','121671611570','2022-12-21 11:34:45',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387004605','','No',NULL,NULL,''),(18961,'1110','121671624980','2022-12-21 15:16:57',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18962,'1110','121671624980','2022-12-21 15:16:57',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(18963,'5500','121671624980','2022-12-21 15:16:57',447.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18964,'1000','121671624980','2022-12-21 15:16:57',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18965,'4000','121671624980','2022-12-21 15:16:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(18966,'4000','121671624980','2022-12-21 15:16:57',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(18967,'1110','121671625517','2022-12-21 15:25:27',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(18968,'5500','121671625517','2022-12-21 15:25:27',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18969,'1000','121671625517','2022-12-21 15:25:27',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18970,'4000','121671625517','2022-12-21 15:25:27',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(18971,'1110','121671625575','2022-12-21 16:43:28',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(18972,'5500','121671625575','2022-12-21 16:43:28',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18973,'1000','121671625575','2022-12-21 16:43:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18974,'4000','121671625575','2022-12-21 16:43:28',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(18975,'1110','121671630226','2022-12-21 17:03:14',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18976,'1110','121671630226','2022-12-21 17:03:14',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18977,'5500','121671630226','2022-12-21 17:03:14',459.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18978,'1000','121671630226','2022-12-21 17:03:14',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18979,'4000','121671630226','2022-12-21 17:03:14',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(18980,'4000','121671630226','2022-12-21 17:03:14',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(18981,'1110','121671631400','2022-12-21 17:53:11',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(18982,'1110','121671631400','2022-12-21 17:53:11',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(18983,'5500','121671631400','2022-12-21 17:53:11',260.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18984,'1000','121671631400','2022-12-21 17:53:11',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18985,'4000','121671631400','2022-12-21 17:53:11',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(18986,'4000','121671631400','2022-12-21 17:53:11',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(18987,'1110','121671638963','2022-12-21 19:10:33',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18988,'1110','121671638963','2022-12-21 19:10:33',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18989,'1110','121671638963','2022-12-21 19:10:33',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(18990,'5500','121671638963','2022-12-21 19:10:33',2286.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18991,'1000','121671638963','2022-12-21 19:10:33',2950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18992,'4000','121671638963','2022-12-21 19:10:33',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(18993,'4000','121671638963','2022-12-21 19:10:33',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(18994,'4000','121671638963','2022-12-21 19:10:33',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(18995,'1110','121671640121','2022-12-21 19:28:52',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18996,'5500','121671640121','2022-12-21 19:28:52',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(18997,'1000','121671640121','2022-12-21 19:28:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(18998,'4000','121671640121','2022-12-21 19:28:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(18999,'1110','121671640136','2022-12-21 19:57:32',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19000,'1110','121671640136','2022-12-21 19:57:32',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19001,'5500','121671640136','2022-12-21 19:57:32',726.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19002,'1000','121671640136','2022-12-21 19:57:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19003,'4000','121671640136','2022-12-21 19:57:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19004,'4000','121671640136','2022-12-21 19:57:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19005,'1110','121671641862','2022-12-21 20:17:43',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(19006,'1110','121671641862','2022-12-21 20:17:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19007,'5500','121671641862','2022-12-21 20:17:43',414.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19008,'1000','121671641862','2022-12-21 20:17:43',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19009,'4000','121671641862','2022-12-21 20:17:43',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(19010,'4000','121671641862','2022-12-21 20:17:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19011,'1110','121671643322','2022-12-21 20:22:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19012,'5500','121671643322','2022-12-21 20:22:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19013,'1000','121671643322','2022-12-21 20:22:58',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19014,'4000','121671643322','2022-12-21 20:22:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19015,'1110','121671647574','2022-12-21 23:23:37',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(19016,'5500','121671647574','2022-12-21 23:23:37',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19017,'1000','121671647574','2022-12-21 23:23:37',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19018,'4000','121671647574','2022-12-21 23:23:37',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(19019,'1110','121671654223','2022-12-22 00:22:43',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19020,'5500','121671654223','2022-12-22 00:22:43',1141.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19021,'1000','121671654223','2022-12-22 00:22:43',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19022,'4000','121671654223','2022-12-22 00:22:43',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19023,'1110','121671657969','2022-12-22 00:26:31',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19024,'1110','121671657969','2022-12-22 00:26:31',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(19025,'5500','121671657969','2022-12-22 00:26:31',920.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19026,'1000','121671657969','2022-12-22 00:26:31',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19027,'4000','121671657969','2022-12-22 00:26:31',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19028,'4000','121671657969','2022-12-22 00:26:31',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(19029,'1110','121671658088','2022-12-22 00:31:26',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(19030,'5500','121671658088','2022-12-22 00:31:26',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19031,'1000','121671658088','2022-12-22 00:31:26',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19032,'4000','121671658088','2022-12-22 00:31:26',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(19033,'1110','121671658592','2022-12-22 00:36:46',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19034,'5500','121671658592','2022-12-22 00:36:46',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19035,'1000','121671658592','2022-12-22 00:36:46',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19036,'4000','121671658592','2022-12-22 00:36:46',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19037,'1110','121671658611','2022-12-22 01:06:01',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19038,'5500','121671658611','2022-12-22 01:06:01',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19039,'1000','121671658611','2022-12-22 01:06:01',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19040,'4000','121671658611','2022-12-22 01:06:01',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19041,'1110','121671660369','2022-12-22 01:18:30',NULL,2282.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19042,'1110','121671660369','2022-12-22 01:18:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19043,'1110','121671660369','2022-12-22 01:18:30',NULL,84.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(19044,'5500','121671660369','2022-12-22 01:18:30',2419.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19045,'1000','121671660369','2022-12-22 01:18:30',3480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19046,'4000','121671660369','2022-12-22 01:18:30',NULL,3200.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19047,'4000','121671660369','2022-12-22 01:18:30',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19048,'4000','121671660369','2022-12-22 01:18:30',NULL,200.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(19049,'1110','121671661160','2022-12-22 01:28:26',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19050,'1110','121671661160','2022-12-22 01:28:26',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19051,'1110','121671661160','2022-12-22 01:28:26',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19052,'1110','121671661160','2022-12-22 01:28:26',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(19053,'5500','121671661160','2022-12-22 01:28:26',1245.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19054,'1000','121671661160','2022-12-22 01:28:26',2120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19055,'4000','121671661160','2022-12-22 01:28:26',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19056,'4000','121671661160','2022-12-22 01:28:26',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19057,'4000','121671661160','2022-12-22 01:28:26',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19058,'4000','121671661160','2022-12-22 01:28:26',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(19059,'1110','121671661712','2022-12-22 01:39:47',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19060,'1110','121671661712','2022-12-22 01:39:47',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19061,'5500','121671661712','2022-12-22 01:39:47',495.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19062,'1000','121671661712','2022-12-22 01:39:47',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19063,'4000','121671661712','2022-12-22 01:39:47',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19064,'4000','121671661712','2022-12-22 01:39:47',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19065,'1110','121671672933','2022-12-22 04:36:40',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(19066,'1110','121671672933','2022-12-22 04:36:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19067,'5500','121671672933','2022-12-22 04:36:40',604.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19068,'1000','121671672933','2022-12-22 04:36:40',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19069,'4000','121671672933','2022-12-22 04:36:40',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(19070,'4000','121671672933','2022-12-22 04:36:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19071,'1110','121671678919','2022-12-22 06:16:45',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19072,'1110','121671678919','2022-12-22 06:16:45',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19073,'1110','121671678919','2022-12-22 06:16:45',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19074,'5500','121671678919','2022-12-22 06:16:45',1205.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19075,'1000','121671678919','2022-12-22 06:16:45',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19076,'4000','121671678919','2022-12-22 06:16:45',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19077,'4000','121671678919','2022-12-22 06:16:45',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19078,'4000','121671678919','2022-12-22 06:16:45',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19079,'1110','121671695397','2022-12-22 10:50:29',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(19080,'1110','121671695397','2022-12-22 10:50:29',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(19081,'1110','121671695397','2022-12-22 10:50:29',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(19082,'5500','121671695397','2022-12-22 10:50:29',2796.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19083,'1000','121671695397','2022-12-22 10:50:29',4330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19084,'4000','121671695397','2022-12-22 10:50:29',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(19085,'4000','121671695397','2022-12-22 10:50:29',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(19086,'4000','121671695397','2022-12-22 10:50:29',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(19087,'1110','121671710294','2022-12-22 14:59:37',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19088,'1110','121671710294','2022-12-22 14:59:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19089,'1110','121671710294','2022-12-22 14:59:37',NULL,617.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(19090,'5500','121671710294','2022-12-22 14:59:37',1514.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19091,'1000','121671710294','2022-12-22 14:59:37',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19092,'4000','121671710294','2022-12-22 14:59:37',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19093,'4000','121671710294','2022-12-22 14:59:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19094,'4000','121671710294','2022-12-22 14:59:37',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(19095,'1110','121671710611','2022-12-22 15:44:05',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(19096,'1110','121671710611','2022-12-22 15:44:05',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(19097,'5500','121671710611','2022-12-22 15:44:05',444.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19098,'1000','121671710611','2022-12-22 15:44:05',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19099,'4000','121671710611','2022-12-22 15:44:05',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(19100,'4000','121671710611','2022-12-22 15:44:05',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(19101,'1110','121671713052','2022-12-22 15:46:26',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19102,'5500','121671713052','2022-12-22 15:46:26',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19103,'1000','121671713052','2022-12-22 15:46:26',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19104,'4000','121671713052','2022-12-22 15:46:26',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19105,'1110','121671713191','2022-12-22 15:51:05',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19106,'5500','121671713191','2022-12-22 15:51:05',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19107,'1000','121671713191','2022-12-22 15:51:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19108,'4000','121671713191','2022-12-22 15:51:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19109,'1110','121671713471','2022-12-22 17:32:43',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19110,'1110','121671713471','2022-12-22 17:32:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19111,'1110','121671713471','2022-12-22 17:32:43',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(19112,'5500','121671713471','2022-12-22 17:32:43',442.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19113,'1000','121671713471','2022-12-22 17:32:43',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19114,'4000','121671713471','2022-12-22 17:32:43',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19115,'4000','121671713471','2022-12-22 17:32:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19116,'4000','121671713471','2022-12-22 17:32:43',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(19117,'1110','121671725180','2022-12-22 19:06:39',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(19118,'1110','121671725180','2022-12-22 19:06:39',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19119,'5500','121671725180','2022-12-22 19:06:39',191.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19120,'1000','121671725180','2022-12-22 19:06:39',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19121,'4000','121671725180','2022-12-22 19:06:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(19122,'4000','121671725180','2022-12-22 19:06:39',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19123,'1110','121671725207','2022-12-22 20:48:10',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19124,'1110','121671725207','2022-12-22 20:48:10',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19125,'5500','121671725207','2022-12-22 20:48:10',209.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19126,'1000','121671725207','2022-12-22 20:48:10',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19127,'4000','121671725207','2022-12-22 20:48:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19128,'4000','121671725207','2022-12-22 20:48:10',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19129,'1110','121671731296','2022-12-22 20:50:34',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19130,'1110','121671731296','2022-12-22 20:50:34',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19131,'1110','121671731296','2022-12-22 20:50:34',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(19132,'5500','121671731296','2022-12-22 20:50:34',450.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19133,'1000','121671731296','2022-12-22 20:50:34',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19134,'4000','121671731296','2022-12-22 20:50:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19135,'4000','121671731296','2022-12-22 20:50:34',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19136,'4000','121671731296','2022-12-22 20:50:34',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(19137,'1110','121671744382','2022-12-23 00:28:45',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(19138,'5500','121671744382','2022-12-23 00:28:45',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19139,'1000','121671744382','2022-12-23 00:28:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19140,'4000','121671744382','2022-12-23 00:28:45',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(19141,'1110','121671744875','2022-12-23 00:34:48',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(19142,'5500','121671744875','2022-12-23 00:34:48',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19143,'1000','121671744875','2022-12-23 00:34:48',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19144,'4000','121671744875','2022-12-23 00:34:48',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(19145,'1110','121671745856','2022-12-23 00:51:10',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19146,'5500','121671745856','2022-12-23 00:51:10',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19147,'1000','121671745856','2022-12-23 00:51:10',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19148,'4000','121671745856','2022-12-23 00:51:10',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19149,'1110','121671745876','2022-12-23 01:26:52',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(19150,'5500','121671745876','2022-12-23 01:26:52',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19151,'1000','121671745876','2022-12-23 01:26:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19152,'4000','121671745876','2022-12-23 01:26:52',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(19153,'1110','121671748019','2022-12-23 01:54:39',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(19154,'5500','121671748019','2022-12-23 01:54:39',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19155,'1000','121671748019','2022-12-23 01:54:39',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19156,'4000','121671748019','2022-12-23 01:54:39',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(19157,'1110','121671749688','2022-12-23 01:55:10',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(19158,'5500','121671749688','2022-12-23 01:55:10',1916.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19159,'1000','121671749688','2022-12-23 01:55:10',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19160,'4000','121671749688','2022-12-23 01:55:10',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(19161,'1110','121671749715','2022-12-23 02:10:34',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19162,'1110','121671749715','2022-12-23 02:10:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19163,'5500','121671749715','2022-12-23 02:10:34',445.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19164,'1000','121671749715','2022-12-23 02:10:34',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19165,'4000','121671749715','2022-12-23 02:10:34',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19166,'4000','121671749715','2022-12-23 02:10:34',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19167,'1110','121671750642','2022-12-23 03:33:20',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(19168,'1110','121671750642','2022-12-23 03:33:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19169,'5500','121671750642','2022-12-23 03:33:20',375.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19170,'1000','121671750642','2022-12-23 03:33:20',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19171,'4000','121671750642','2022-12-23 03:33:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(19172,'4000','121671750642','2022-12-23 03:33:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19173,'1110','121671765283','2022-12-23 06:17:16',NULL,5670.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(19174,'1110','121671765283','2022-12-23 06:17:16',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19175,'1110','121671765283','2022-12-23 06:17:16',NULL,206.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19176,'5500','121671765283','2022-12-23 06:17:16',6025.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19177,'1000','121671765283','2022-12-23 06:17:16',8600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19178,'4000','121671765283','2022-12-23 06:17:16',NULL,8000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(19179,'4000','121671765283','2022-12-23 06:17:16',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19180,'4000','121671765283','2022-12-23 06:17:16',NULL,300.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19181,'1110','121671765467','2022-12-23 06:19:31',NULL,315.79,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(19182,'5500','121671765467','2022-12-23 06:19:31',315.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19183,'1000','121671765467','2022-12-23 06:19:31',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19184,'4000','121671765467','2022-12-23 06:19:31',NULL,700.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(19185,'1110','121671779580','2022-12-23 11:56:04',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(19186,'1110','121671779580','2022-12-23 11:56:04',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(19187,'5500','121671779580','2022-12-23 11:56:04',482.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19188,'1000','121671779580','2022-12-23 11:56:04',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19189,'4000','121671779580','2022-12-23 11:56:04',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(19190,'4000','121671779580','2022-12-23 11:56:04',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(19191,'1110','121671785845','2022-12-23 13:48:01',NULL,660.00,'','12','1','Inventory sold','1','','sales','8906125990009','','No',NULL,NULL,''),(19192,'1110','121671785845','2022-12-23 13:48:01',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(19193,'5500','121671785845','2022-12-23 13:48:01',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19194,'1000','121671785845','2022-12-23 13:48:01',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19195,'4000','121671785845','2022-12-23 13:48:01',NULL,1000.00,'','12','1','Good sold','1','','sales','8906125990009','','No',NULL,NULL,''),(19196,'4000','121671785845','2022-12-23 13:48:01',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(19197,'1110','121671792490','2022-12-23 14:28:04',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(19198,'5500','121671792490','2022-12-23 14:28:04',690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19199,'1000','121671792490','2022-12-23 14:28:04',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19200,'4000','121671792490','2022-12-23 14:28:04',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(19201,'1110','121671804636','2022-12-23 17:16:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19202,'1110','121671804636','2022-12-23 17:16:25',NULL,1180.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(19203,'1110','121671804636','2022-12-23 17:16:25',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(19204,'5500','121671804636','2022-12-23 17:16:25',1323.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19205,'1000','121671804636','2022-12-23 17:16:25',2070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19206,'4000','121671804636','2022-12-23 17:16:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19207,'4000','121671804636','2022-12-23 17:16:25',NULL,1800.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(19208,'4000','121671804636','2022-12-23 17:16:25',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(19209,'1110','121671809122','2022-12-23 18:46:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19210,'1110','121671809122','2022-12-23 18:46:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(19211,'5500','121671809122','2022-12-23 18:46:36',127.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19212,'1000','121671809122','2022-12-23 18:46:36',220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19213,'4000','121671809122','2022-12-23 18:46:36',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19214,'4000','121671809122','2022-12-23 18:46:36',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(19215,'1110','121671810547','2022-12-23 18:54:32',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(19216,'1110','121671810547','2022-12-23 18:54:32',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(19217,'1110','121671810547','2022-12-23 18:54:32',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(19218,'1110','121671810547','2022-12-23 18:54:32',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19219,'5500','121671810547','2022-12-23 18:54:32',1497.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19220,'1000','121671810547','2022-12-23 18:54:32',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19221,'4000','121671810547','2022-12-23 18:54:32',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(19222,'4000','121671810547','2022-12-23 18:54:32',NULL,600.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(19223,'4000','121671810547','2022-12-23 18:54:32',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(19224,'4000','121671810547','2022-12-23 18:54:32',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19225,'1110','121671811035','2022-12-23 20:05:38',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(19226,'5500','121671811035','2022-12-23 20:05:38',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19227,'1000','121671811035','2022-12-23 20:05:38',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19228,'4000','121671811035','2022-12-23 20:05:38',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(19229,'1110','121671815143','2022-12-23 20:29:15',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19230,'1110','121671815143','2022-12-23 20:29:15',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19231,'5500','121671815143','2022-12-23 20:29:15',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19232,'1000','121671815143','2022-12-23 20:29:15',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19233,'4000','121671815143','2022-12-23 20:29:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19234,'4000','121671815143','2022-12-23 20:29:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19235,'1110','121671824705','2022-12-23 22:45:22',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(19236,'1110','121671824705','2022-12-23 22:45:22',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001182','','No',NULL,NULL,''),(19237,'5500','121671824705','2022-12-23 22:45:22',2260.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19238,'1000','121671824705','2022-12-23 22:45:22',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19239,'4000','121671824705','2022-12-23 22:45:22',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(19240,'4000','121671824705','2022-12-23 22:45:22',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001182','','No',NULL,NULL,''),(19241,'1110','121671826416','2022-12-23 23:14:03',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19242,'1110','121671826416','2022-12-23 23:14:03',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(19243,'5500','121671826416','2022-12-23 23:14:03',692.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19244,'1000','121671826416','2022-12-23 23:14:03',1010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19245,'4000','121671826416','2022-12-23 23:14:03',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19246,'4000','121671826416','2022-12-23 23:14:03',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(19247,'1110','121671826454','2022-12-23 23:50:08',NULL,795.00,'','12','1','Inventory sold','1','','sales','8906054940120','','No',NULL,NULL,''),(19248,'1110','121671826454','2022-12-23 23:50:08',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(19249,'5500','121671826454','2022-12-23 23:50:08',1100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19250,'1000','121671826454','2022-12-23 23:50:08',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19251,'4000','121671826454','2022-12-23 23:50:08',NULL,1300.00,'','12','1','Good sold','1','','sales','8906054940120','','No',NULL,NULL,''),(19252,'4000','121671826454','2022-12-23 23:50:08',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(19253,'1110','121671828619','2022-12-23 23:53:43',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(19254,'5500','121671828619','2022-12-23 23:53:43',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19255,'1000','121671828619','2022-12-23 23:53:43',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19256,'4000','121671828619','2022-12-23 23:53:43',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(19257,'1110','121671829272','2022-12-24 00:03:54',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(19258,'1110','121671829272','2022-12-24 00:03:54',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(19259,'1110','121671829272','2022-12-24 00:03:54',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19260,'5500','121671829272','2022-12-24 00:03:54',811.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19261,'1000','121671829272','2022-12-24 00:03:54',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19262,'4000','121671829272','2022-12-24 00:03:54',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(19263,'4000','121671829272','2022-12-24 00:03:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(19264,'4000','121671829272','2022-12-24 00:03:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19265,'1110','121671829439','2022-12-24 00:15:04',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19266,'1110','121671829439','2022-12-24 00:15:04',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19267,'5500','121671829439','2022-12-24 00:15:04',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19268,'1000','121671829439','2022-12-24 00:15:04',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19269,'4000','121671829439','2022-12-24 00:15:04',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19270,'4000','121671829439','2022-12-24 00:15:04',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19271,'1110','121671830110','2022-12-24 00:50:27',NULL,531.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(19272,'5500','121671830110','2022-12-24 00:50:27',531.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19273,'1000','121671830110','2022-12-24 00:50:27',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19274,'4000','121671830110','2022-12-24 00:50:27',NULL,750.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(19275,'1110','121671832232','2022-12-24 01:26:12',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19276,'5500','121671832232','2022-12-24 01:26:12',951.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19277,'1000','121671832232','2022-12-24 01:26:12',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19278,'4000','121671832232','2022-12-24 01:26:12',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19279,'1110','121671842672','2022-12-24 03:46:23',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(19280,'1110','121671842672','2022-12-24 03:46:23',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19281,'5500','121671842672','2022-12-24 03:46:23',801.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19282,'1000','121671842672','2022-12-24 03:46:23',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19283,'4000','121671842672','2022-12-24 03:46:23',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(19284,'4000','121671842672','2022-12-24 03:46:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19285,'1110','121671842969','2022-12-24 04:33:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19286,'1110','121671842969','2022-12-24 04:33:43',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19287,'5500','121671842969','2022-12-24 04:33:43',655.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19288,'1000','121671842969','2022-12-24 04:33:43',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19289,'4000','121671842969','2022-12-24 04:33:43',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19290,'4000','121671842969','2022-12-24 04:33:43',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19291,'1110','121671877625','2022-12-24 15:10:01',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387004605','','No',NULL,NULL,''),(19292,'5500','121671877625','2022-12-24 15:10:01',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19293,'1000','121671877625','2022-12-24 15:10:01',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19294,'4000','121671877625','2022-12-24 15:10:01',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387004605','','No',NULL,NULL,''),(19295,'1110','121671894425','2022-12-24 18:42:15',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19296,'5500','121671894425','2022-12-24 18:42:15',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19297,'1000','121671894425','2022-12-24 18:42:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19298,'4000','121671894425','2022-12-24 18:42:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19299,'1110','121671896593','2022-12-24 19:20:35',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19300,'1110','121671896593','2022-12-24 19:20:35',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19301,'5500','121671896593','2022-12-24 19:20:35',379.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19302,'1000','121671896593','2022-12-24 19:20:35',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19303,'4000','121671896593','2022-12-24 19:20:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19304,'4000','121671896593','2022-12-24 19:20:35',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19305,'1110','121671901108','2022-12-24 19:58:49',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929192235','','No',NULL,NULL,''),(19306,'5500','121671901108','2022-12-24 19:58:49',2500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19307,'1000','121671901108','2022-12-24 19:58:49',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19308,'4000','121671901108','2022-12-24 19:58:49',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929192235','','No',NULL,NULL,''),(19309,'1110','121671901134','2022-12-24 20:01:08',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19310,'5500','121671901134','2022-12-24 20:01:08',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19311,'1000','121671901134','2022-12-24 20:01:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19312,'4000','121671901134','2022-12-24 20:01:08',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19313,'1110','121671901277','2022-12-24 20:02:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19314,'1110','121671901277','2022-12-24 20:02:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19315,'1110','121671901277','2022-12-24 20:02:48',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19316,'5500','121671901277','2022-12-24 20:02:48',562.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19317,'1000','121671901277','2022-12-24 20:02:48',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19318,'4000','121671901277','2022-12-24 20:02:48',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19319,'4000','121671901277','2022-12-24 20:02:48',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19320,'4000','121671901277','2022-12-24 20:02:48',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19321,'1110','121671902693','2022-12-24 20:25:24',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018926','','No',NULL,NULL,''),(19322,'1110','121671902693','2022-12-24 20:25:24',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(19323,'5500','121671902693','2022-12-24 20:25:24',540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19324,'1000','121671902693','2022-12-24 20:25:24',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19325,'4000','121671902693','2022-12-24 20:25:24',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018926','','No',NULL,NULL,''),(19326,'4000','121671902693','2022-12-24 20:25:24',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(19327,'1110','121671902767','2022-12-24 20:31:59',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19328,'5500','121671902767','2022-12-24 20:31:59',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19329,'1000','121671902767','2022-12-24 20:31:59',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19330,'4000','121671902767','2022-12-24 20:31:59',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19331,'1110','121671904752','2022-12-24 21:00:41',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(19332,'1110','121671904752','2022-12-24 21:00:41',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19333,'1110','121671904752','2022-12-24 21:00:41',NULL,250.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(19334,'5500','121671904752','2022-12-24 21:00:41',474.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19335,'1000','121671904752','2022-12-24 21:00:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19336,'4000','121671904752','2022-12-24 21:00:41',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(19337,'4000','121671904752','2022-12-24 21:00:41',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19338,'4000','121671904752','2022-12-24 21:00:41',NULL,400.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(19339,'1110','121671904899','2022-12-24 21:06:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19340,'5500','121671904899','2022-12-24 21:06:49',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19341,'1000','121671904899','2022-12-24 21:06:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19342,'4000','121671904899','2022-12-24 21:06:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19343,'1110','121671905221','2022-12-24 21:07:13',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(19344,'5500','121671905221','2022-12-24 21:07:13',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19345,'1000','121671905221','2022-12-24 21:07:13',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19346,'4000','121671905221','2022-12-24 21:07:13',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(19347,'1110','121671905304','2022-12-24 21:35:25',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19348,'1110','121671905304','2022-12-24 21:35:25',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(19349,'1110','121671905304','2022-12-24 21:35:25',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19350,'5500','121671905304','2022-12-24 21:35:25',262.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19351,'1000','121671905304','2022-12-24 21:35:25',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19352,'4000','121671905304','2022-12-24 21:35:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19353,'4000','121671905304','2022-12-24 21:35:25',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(19354,'4000','121671905304','2022-12-24 21:35:25',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19355,'1110','121671907008','2022-12-24 21:53:05',NULL,1710.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(19356,'1110','121671907008','2022-12-24 21:53:05',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19357,'5500','121671907008','2022-12-24 21:53:05',1859.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19358,'1000','121671907008','2022-12-24 21:53:05',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19359,'4000','121671907008','2022-12-24 21:53:05',NULL,3000.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(19360,'4000','121671907008','2022-12-24 21:53:05',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19361,'1110','121671907989','2022-12-24 21:55:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19362,'1110','121671907989','2022-12-24 21:55:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19363,'5500','121671907989','2022-12-24 21:55:17',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19364,'1000','121671907989','2022-12-24 21:55:17',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19365,'4000','121671907989','2022-12-24 21:55:17',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19366,'4000','121671907989','2022-12-24 21:55:17',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19367,'1110','121671910021','2022-12-24 22:41:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19368,'5500','121671910021','2022-12-24 22:41:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19369,'1000','121671910021','2022-12-24 22:41:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19370,'4000','121671910021','2022-12-24 22:41:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19371,'1110','121671910957','2022-12-24 22:43:04',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19372,'1110','121671910957','2022-12-24 22:43:04',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19373,'1110','121671910957','2022-12-24 22:43:04',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19374,'5500','121671910957','2022-12-24 22:43:04',602.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19375,'1000','121671910957','2022-12-24 22:43:04',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19376,'4000','121671910957','2022-12-24 22:43:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19377,'4000','121671910957','2022-12-24 22:43:04',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19378,'4000','121671910957','2022-12-24 22:43:04',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19379,'1110','121671911116','2022-12-24 23:33:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19380,'5500','121671911116','2022-12-24 23:33:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19381,'1000','121671911116','2022-12-24 23:33:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19382,'4000','121671911116','2022-12-24 23:33:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19383,'1110','121671913995','2022-12-25 00:31:02',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(19384,'1110','121671913995','2022-12-25 00:31:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19385,'5500','121671913995','2022-12-25 00:31:02',508.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19386,'1000','121671913995','2022-12-25 00:31:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19387,'4000','121671913995','2022-12-25 00:31:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(19388,'4000','121671913995','2022-12-25 00:31:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19389,'1110','121671917839','2022-12-25 00:37:31',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19390,'5500','121671917839','2022-12-25 00:37:31',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19391,'1000','121671917839','2022-12-25 00:37:31',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19392,'4000','121671917839','2022-12-25 00:37:31',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(19393,'1110','121671917855','2022-12-25 01:41:52',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19394,'1110','121671917855','2022-12-25 01:41:52',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(19395,'5500','121671917855','2022-12-25 01:41:52',1114.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19396,'1000','121671917855','2022-12-25 01:41:52',1720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19397,'4000','121671917855','2022-12-25 01:41:52',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19398,'4000','121671917855','2022-12-25 01:41:52',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(19399,'1110','121671921724','2022-12-25 01:43:47',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19400,'1110','121671921724','2022-12-25 01:43:47',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(19401,'1110','121671921724','2022-12-25 01:43:47',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(19402,'5500','121671921724','2022-12-25 01:43:47',817.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19403,'1000','121671921724','2022-12-25 01:43:47',1210.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19404,'4000','121671921724','2022-12-25 01:43:47',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19405,'4000','121671921724','2022-12-25 01:43:47',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(19406,'4000','121671921724','2022-12-25 01:43:47',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(19407,'1110','121671922087','2022-12-25 02:23:01',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19408,'5500','121671922087','2022-12-25 02:23:01',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19409,'1000','121671922087','2022-12-25 02:23:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19410,'4000','121671922087','2022-12-25 02:23:01',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19411,'1110','121671924333','2022-12-25 02:25:56',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(19412,'1110','121671924333','2022-12-25 02:25:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19413,'5500','121671924333','2022-12-25 02:25:56',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19414,'1000','121671924333','2022-12-25 02:25:56',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19415,'4000','121671924333','2022-12-25 02:25:56',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(19416,'4000','121671924333','2022-12-25 02:25:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19417,'1110','121671924588','2022-12-25 02:29:59',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19418,'5500','121671924588','2022-12-25 02:29:59',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19419,'1000','121671924588','2022-12-25 02:29:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19420,'4000','121671924588','2022-12-25 02:29:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19421,'1110','121671924724','2022-12-25 02:32:16',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19422,'5500','121671924724','2022-12-25 02:32:16',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19423,'1000','121671924724','2022-12-25 02:32:16',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19424,'4000','121671924724','2022-12-25 02:32:16',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(19425,'1110','121671924741','2022-12-25 02:35:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19426,'1110','121671924741','2022-12-25 02:35:37',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(19427,'5500','121671924741','2022-12-25 02:35:37',1853.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19428,'1000','121671924741','2022-12-25 02:35:37',2650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19429,'4000','121671924741','2022-12-25 02:35:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19430,'4000','121671924741','2022-12-25 02:35:37',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(19431,'1110','121671925864','2022-12-25 02:51:12',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(19432,'5500','121671925864','2022-12-25 02:51:12',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19433,'1000','121671925864','2022-12-25 02:51:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19434,'4000','121671925864','2022-12-25 02:51:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(19435,'1110','121671925877','2022-12-25 02:55:57',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19436,'5500','121671925877','2022-12-25 02:55:57',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19437,'1000','121671925877','2022-12-25 02:55:57',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19438,'4000','121671925877','2022-12-25 02:55:57',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19439,'1110','121671926166','2022-12-25 03:24:17',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19440,'1110','121671926166','2022-12-25 03:24:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19441,'5500','121671926166','2022-12-25 03:24:17',332.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19442,'1000','121671926166','2022-12-25 03:24:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19443,'4000','121671926166','2022-12-25 03:24:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19444,'4000','121671926166','2022-12-25 03:24:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19445,'1110','121671927868','2022-12-25 03:44:46',NULL,634.52,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19446,'5500','121671927868','2022-12-25 03:44:46',634.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19447,'1000','121671927868','2022-12-25 03:44:46',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19448,'4000','121671927868','2022-12-25 03:44:46',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19449,'1110','121671936092','2022-12-25 05:41:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19450,'5500','121671936092','2022-12-25 05:41:41',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19451,'1000','121671936092','2022-12-25 05:41:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19452,'4000','121671936092','2022-12-25 05:41:41',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19453,'1110','121671948989','2022-12-25 10:46:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(19454,'5500','121671948989','2022-12-25 10:46:37',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19455,'1000','121671948989','2022-12-25 10:46:37',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19456,'4000','121671948989','2022-12-25 10:46:37',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(19457,'1110','121671972509','2022-12-25 17:08:50',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19458,'1110','121671972509','2022-12-25 17:08:50',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19459,'5500','121671972509','2022-12-25 17:08:50',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19460,'1000','121671972509','2022-12-25 17:08:50',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19461,'4000','121671972509','2022-12-25 17:08:50',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19462,'4000','121671972509','2022-12-25 17:08:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19463,'1110','121671977335','2022-12-25 19:37:40',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(19464,'5500','121671977335','2022-12-25 19:37:40',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19465,'1000','121671977335','2022-12-25 19:37:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19466,'4000','121671977335','2022-12-25 19:37:40',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(19467,'1110','121671986358','2022-12-25 19:41:06',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19468,'1110','121671986358','2022-12-25 19:41:06',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19469,'1110','121671986358','2022-12-25 19:41:06',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19470,'5500','121671986358','2022-12-25 19:41:06',2135.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19471,'1000','121671986358','2022-12-25 19:41:06',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19472,'4000','121671986358','2022-12-25 19:41:06',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(19473,'4000','121671986358','2022-12-25 19:41:06',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19474,'4000','121671986358','2022-12-25 19:41:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19475,'1110','121671986472','2022-12-25 19:46:53',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(19476,'1110','121671986472','2022-12-25 19:46:53',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19477,'1110','121671986472','2022-12-25 19:46:53',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19478,'5500','121671986472','2022-12-25 19:46:53',653.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19479,'1000','121671986472','2022-12-25 19:46:53',1110.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19480,'4000','121671986472','2022-12-25 19:46:53',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(19481,'4000','121671986472','2022-12-25 19:46:53',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19482,'4000','121671986472','2022-12-25 19:46:53',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19483,'1110','121671987040','2022-12-25 20:30:07',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19484,'1110','121671987040','2022-12-25 20:30:07',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19485,'1110','121671987040','2022-12-25 20:30:07',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19486,'5500','121671987040','2022-12-25 20:30:07',750.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19487,'1000','121671987040','2022-12-25 20:30:07',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19488,'4000','121671987040','2022-12-25 20:30:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(19489,'4000','121671987040','2022-12-25 20:30:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19490,'4000','121671987040','2022-12-25 20:30:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19491,'1110','121671989413','2022-12-25 22:02:00',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19492,'5500','121671989413','2022-12-25 22:02:00',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19493,'1000','121671989413','2022-12-25 22:02:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19494,'4000','121671989413','2022-12-25 22:02:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19495,'1110','121671994924','2022-12-25 22:18:19',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19496,'5500','121671994924','2022-12-25 22:18:19',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19497,'1000','121671994924','2022-12-25 22:18:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19498,'4000','121671994924','2022-12-25 22:18:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19499,'1110','121671996227','2022-12-25 22:23:59',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19500,'5500','121671996227','2022-12-25 22:23:59',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19501,'1000','121671996227','2022-12-25 22:23:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19502,'4000','121671996227','2022-12-25 22:23:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19503,'1110','121671996243','2022-12-25 23:01:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19504,'5500','121671996243','2022-12-25 23:01:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19505,'1000','121671996243','2022-12-25 23:01:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19506,'4000','121671996243','2022-12-25 23:01:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19507,'1110','121671999136','2022-12-25 23:12:50',NULL,1300.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(19508,'1110','121671999136','2022-12-25 23:12:50',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19509,'5500','121671999136','2022-12-25 23:12:50',2336.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19510,'1000','121671999136','2022-12-25 23:12:50',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19511,'4000','121671999136','2022-12-25 23:12:50',NULL,1800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(19512,'4000','121671999136','2022-12-25 23:12:50',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19513,'1110','121671999297','2022-12-25 23:51:47',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19514,'5500','121671999297','2022-12-25 23:51:47',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19515,'1000','121671999297','2022-12-25 23:51:47',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19516,'4000','121671999297','2022-12-25 23:51:47',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(19517,'1110','121672001516','2022-12-25 23:54:12',NULL,4450.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(19518,'1110','121672001516','2022-12-25 23:54:12',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19519,'1110','121672001516','2022-12-25 23:54:12',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(19520,'5500','121672001516','2022-12-25 23:54:12',5603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19521,'1000','121672001516','2022-12-25 23:54:12',8250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19522,'4000','121672001516','2022-12-25 23:54:12',NULL,6500.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(19523,'4000','121672001516','2022-12-25 23:54:12',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19524,'4000','121672001516','2022-12-25 23:54:12',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(19525,'1110','121672003078','2022-12-26 00:52:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19526,'1110','121672003078','2022-12-26 00:52:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19527,'1110','121672003078','2022-12-26 00:52:10',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19528,'1110','121672003078','2022-12-26 00:52:10',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(19529,'1110','121672003078','2022-12-26 00:52:10',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(19530,'5500','121672003078','2022-12-26 00:52:10',1807.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19531,'1000','121672003078','2022-12-26 00:52:10',2810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19532,'4000','121672003078','2022-12-26 00:52:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19533,'4000','121672003078','2022-12-26 00:52:10',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19534,'4000','121672003078','2022-12-26 00:52:10',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19535,'4000','121672003078','2022-12-26 00:52:10',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(19536,'4000','121672003078','2022-12-26 00:52:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(19537,'1110','121672005251','2022-12-26 01:07:04',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(19538,'5500','121672005251','2022-12-26 01:07:04',268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19539,'1000','121672005251','2022-12-26 01:07:04',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19540,'4000','121672005251','2022-12-26 01:07:04',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(19541,'1110','121672006030','2022-12-26 01:27:16',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19542,'5500','121672006030','2022-12-26 01:27:16',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19543,'1000','121672006030','2022-12-26 01:27:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19544,'4000','121672006030','2022-12-26 01:27:16',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19545,'1110','121672007242','2022-12-26 02:18:23',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19546,'1110','121672007242','2022-12-26 02:18:23',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19547,'1110','121672007242','2022-12-26 02:18:23',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(19548,'5500','121672007242','2022-12-26 02:18:23',512.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19549,'1000','121672007242','2022-12-26 02:18:23',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19550,'4000','121672007242','2022-12-26 02:18:23',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19551,'4000','121672007242','2022-12-26 02:18:23',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19552,'4000','121672007242','2022-12-26 02:18:23',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(19553,'1110','121672010408','2022-12-26 04:18:22',NULL,3350.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(19554,'1110','121672010408','2022-12-26 04:18:22',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(19555,'5500','121672010408','2022-12-26 04:18:22',3644.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19556,'1000','121672010408','2022-12-26 04:18:22',5660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19557,'4000','121672010408','2022-12-26 04:18:22',NULL,5200.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(19558,'4000','121672010408','2022-12-26 04:18:22',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(19559,'1110','121672017614','2022-12-26 05:36:36',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19560,'5500','121672017614','2022-12-26 05:36:36',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19561,'1000','121672017614','2022-12-26 05:36:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19562,'4000','121672017614','2022-12-26 05:36:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19563,'1110','121672023285','2022-12-26 05:55:00',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19564,'5500','121672023285','2022-12-26 05:55:00',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19565,'1000','121672023285','2022-12-26 05:55:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19566,'4000','121672023285','2022-12-26 05:55:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19567,'1110','121672023304','2022-12-26 06:51:13',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19568,'1110','121672023304','2022-12-26 06:51:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19569,'1110','121672023304','2022-12-26 06:51:13',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19570,'1110','121672023304','2022-12-26 06:51:13',NULL,631.57,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(19571,'5500','121672023304','2022-12-26 06:51:13',2430.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19572,'1000','121672023304','2022-12-26 06:51:13',3900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19573,'4000','121672023304','2022-12-26 06:51:13',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19574,'4000','121672023304','2022-12-26 06:51:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19575,'4000','121672023304','2022-12-26 06:51:13',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(19576,'4000','121672023304','2022-12-26 06:51:13',NULL,1400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(19577,'1110','121672058477','2022-12-26 16:57:57',NULL,7100.00,'','12','1','Inventory sold','1','','sales','3219820005899','','No',NULL,NULL,''),(19578,'5500','121672058477','2022-12-26 16:57:57',7100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19579,'1000','121672058477','2022-12-26 16:57:57',10500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19580,'4000','121672058477','2022-12-26 16:57:57',NULL,10500.00,'','12','1','Good sold','1','','sales','3219820005899','','No',NULL,NULL,''),(19581,'1110','121672069961','2022-12-26 18:52:44',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(19582,'5500','121672069961','2022-12-26 18:52:44',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19583,'1000','121672069961','2022-12-26 18:52:44',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19584,'4000','121672069961','2022-12-26 18:52:44',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(19585,'1110','121672074583','2022-12-26 20:11:39',NULL,14200.00,'','12','1','Inventory sold','1','','sales','3219820005899','','No',NULL,NULL,''),(19586,'1110','121672074583','2022-12-26 20:11:39',NULL,3200.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(19587,'5500','121672074583','2022-12-26 20:11:39',17400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19588,'1000','121672074583','2022-12-26 20:11:39',25350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19589,'4000','121672074583','2022-12-26 20:11:39',NULL,21000.00,'','12','1','Good sold','1','','sales','3219820005899','','No',NULL,NULL,''),(19590,'4000','121672074583','2022-12-26 20:11:39',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(19591,'1110','121672081147','2022-12-26 21:59:19',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19592,'5500','121672081147','2022-12-26 21:59:19',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19593,'1000','121672081147','2022-12-26 21:59:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19594,'4000','121672081147','2022-12-26 21:59:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19595,'1110','121672081165','2022-12-26 21:59:42',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19596,'5500','121672081165','2022-12-26 21:59:42',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19597,'1000','121672081165','2022-12-26 21:59:42',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19598,'4000','121672081165','2022-12-26 21:59:42',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19599,'1110','121672081930','2022-12-26 22:12:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19600,'5500','121672081930','2022-12-26 22:12:22',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19601,'1000','121672081930','2022-12-26 22:12:22',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19602,'4000','121672081930','2022-12-26 22:12:22',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19603,'1110','121672084548','2022-12-26 22:56:11',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19604,'5500','121672084548','2022-12-26 22:56:11',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19605,'1000','121672084548','2022-12-26 22:56:11',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19606,'4000','121672084548','2022-12-26 22:56:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19607,'1110','121672084872','2022-12-26 23:03:34',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19608,'1110','121672084872','2022-12-26 23:03:34',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(19609,'1110','121672084872','2022-12-26 23:03:34',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(19610,'1110','121672084872','2022-12-26 23:03:34',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19611,'1110','121672084872','2022-12-26 23:03:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19612,'1110','121672084872','2022-12-26 23:03:34',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19613,'5500','121672084872','2022-12-26 23:03:34',798.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19614,'1000','121672084872','2022-12-26 23:03:34',1310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19615,'4000','121672084872','2022-12-26 23:03:34',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19616,'4000','121672084872','2022-12-26 23:03:34',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(19617,'4000','121672084872','2022-12-26 23:03:34',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(19618,'4000','121672084872','2022-12-26 23:03:34',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19619,'4000','121672084872','2022-12-26 23:03:34',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19620,'4000','121672084872','2022-12-26 23:03:34',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19621,'1110','121672085108','2022-12-26 23:05:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19622,'5500','121672085108','2022-12-26 23:05:17',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19623,'1000','121672085108','2022-12-26 23:05:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19624,'4000','121672085108','2022-12-26 23:05:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19625,'1110','121672085122','2022-12-26 23:11:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19626,'5500','121672085122','2022-12-26 23:11:22',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19627,'1000','121672085122','2022-12-26 23:11:22',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19628,'4000','121672085122','2022-12-26 23:11:22',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19629,'1110','121672085488','2022-12-26 23:11:39',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19630,'5500','121672085488','2022-12-26 23:11:39',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19631,'1000','121672085488','2022-12-26 23:11:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19632,'4000','121672085488','2022-12-26 23:11:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19633,'1110','121672085503','2022-12-26 23:24:24',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(19634,'1110','121672085503','2022-12-26 23:24:24',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19635,'5500','121672085503','2022-12-26 23:24:24',681.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19636,'1000','121672085503','2022-12-26 23:24:24',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19637,'4000','121672085503','2022-12-26 23:24:24',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(19638,'4000','121672085503','2022-12-26 23:24:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19639,'1110','121672086328','2022-12-26 23:33:43',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19640,'1110','121672086328','2022-12-26 23:33:43',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19641,'1110','121672086328','2022-12-26 23:33:43',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19642,'5500','121672086328','2022-12-26 23:33:43',743.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19643,'1000','121672086328','2022-12-26 23:33:43',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19644,'4000','121672086328','2022-12-26 23:33:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19645,'4000','121672086328','2022-12-26 23:33:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(19646,'4000','121672086328','2022-12-26 23:33:43',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19647,'1110','121672088896','2022-12-27 00:08:33',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19648,'5500','121672088896','2022-12-27 00:08:33',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19649,'1000','121672088896','2022-12-27 00:08:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19650,'4000','121672088896','2022-12-27 00:08:33',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19651,'1110','121672089168','2022-12-27 00:13:18',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19652,'5500','121672089168','2022-12-27 00:13:18',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19653,'1000','121672089168','2022-12-27 00:13:18',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19654,'4000','121672089168','2022-12-27 00:13:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19655,'1110','121672089202','2022-12-27 00:14:17',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(19656,'1110','121672089202','2022-12-27 00:14:17',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19657,'1110','121672089202','2022-12-27 00:14:17',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19658,'1110','121672089202','2022-12-27 00:14:17',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(19659,'5500','121672089202','2022-12-27 00:14:17',1565.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19660,'1000','121672089202','2022-12-27 00:14:17',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19661,'4000','121672089202','2022-12-27 00:14:17',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(19662,'4000','121672089202','2022-12-27 00:14:17',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19663,'4000','121672089202','2022-12-27 00:14:17',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(19664,'4000','121672089202','2022-12-27 00:14:17',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(19665,'1110','121672089453','2022-12-27 00:39:22',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19666,'5500','121672089453','2022-12-27 00:39:22',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19667,'1000','121672089453','2022-12-27 00:39:22',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19668,'4000','121672089453','2022-12-27 00:39:22',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(19669,'1110','121672092637','2022-12-27 01:10:49',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(19670,'5500','121672092637','2022-12-27 01:10:49',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19671,'1000','121672092637','2022-12-27 01:10:49',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19672,'4000','121672092637','2022-12-27 01:10:49',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(19673,'1110','121672092818','2022-12-27 01:34:53',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(19674,'1110','121672092818','2022-12-27 01:34:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(19675,'1110','121672092818','2022-12-27 01:34:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(19676,'1110','121672092818','2022-12-27 01:34:53',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19677,'1110','121672092818','2022-12-27 01:34:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19678,'5500','121672092818','2022-12-27 01:34:53',1705.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19679,'1000','121672092818','2022-12-27 01:34:53',2510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19680,'4000','121672092818','2022-12-27 01:34:53',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(19681,'4000','121672092818','2022-12-27 01:34:53',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(19682,'4000','121672092818','2022-12-27 01:34:53',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(19683,'4000','121672092818','2022-12-27 01:34:53',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19684,'4000','121672092818','2022-12-27 01:34:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19685,'1110','121672094239','2022-12-27 01:48:57',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(19686,'1110','121672094239','2022-12-27 01:48:57',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(19687,'5500','121672094239','2022-12-27 01:48:57',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19688,'1000','121672094239','2022-12-27 01:48:57',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19689,'4000','121672094239','2022-12-27 01:48:57',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(19690,'4000','121672094239','2022-12-27 01:48:57',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(19691,'1110','121672094988','2022-12-27 02:55:08',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(19692,'1110','121672094988','2022-12-27 02:55:08',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19693,'5500','121672094988','2022-12-27 02:55:08',217.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19694,'1000','121672094988','2022-12-27 02:55:08',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19695,'4000','121672094988','2022-12-27 02:55:08',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(19696,'4000','121672094988','2022-12-27 02:55:08',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(19697,'1110','121672098913','2022-12-27 03:03:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19698,'5500','121672098913','2022-12-27 03:03:08',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19699,'1000','121672098913','2022-12-27 03:03:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19700,'4000','121672098913','2022-12-27 03:03:08',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19701,'1110','121672112311','2022-12-27 06:43:15',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(19702,'5500','121672112311','2022-12-27 06:43:15',829.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19703,'1000','121672112311','2022-12-27 06:43:15',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19704,'4000','121672112311','2022-12-27 06:43:15',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(19705,'1110','121672128330','2022-12-27 11:06:43',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19706,'1110','121672128330','2022-12-27 11:06:43',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19707,'1110','121672128330','2022-12-27 11:06:43',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19708,'5500','121672128330','2022-12-27 11:06:43',573.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19709,'1000','121672128330','2022-12-27 11:06:43',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19710,'4000','121672128330','2022-12-27 11:06:43',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19711,'4000','121672128330','2022-12-27 11:06:43',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19712,'4000','121672128330','2022-12-27 11:06:43',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(19713,'1110','121672141389','2022-12-27 14:48:53',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19714,'1110','121672141389','2022-12-27 14:48:53',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19715,'1110','121672141389','2022-12-27 14:48:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(19716,'1110','121672141389','2022-12-27 14:48:53',NULL,634.52,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19717,'5500','121672141389','2022-12-27 14:48:53',2052.59,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19718,'1000','121672141389','2022-12-27 14:48:53',2830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19719,'4000','121672141389','2022-12-27 14:48:53',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(19720,'4000','121672141389','2022-12-27 14:48:53',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(19721,'4000','121672141389','2022-12-27 14:48:53',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(19722,'4000','121672141389','2022-12-27 14:48:53',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19723,'1110','121672155845','2022-12-27 18:44:20',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(19724,'5500','121672155845','2022-12-27 18:44:20',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19725,'1000','121672155845','2022-12-27 18:44:20',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19726,'4000','121672155845','2022-12-27 18:44:20',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(19727,'1110','121672155864','2022-12-27 18:48:38',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19728,'5500','121672155864','2022-12-27 18:48:38',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19729,'1000','121672155864','2022-12-27 18:48:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19730,'4000','121672155864','2022-12-27 18:48:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19731,'1110','121672156123','2022-12-27 19:50:59',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19732,'5500','121672156123','2022-12-27 19:50:59',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19733,'1000','121672156123','2022-12-27 19:50:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19734,'4000','121672156123','2022-12-27 19:50:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(19735,'1110','121672159865','2022-12-27 20:44:27',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(19736,'1110','121672159865','2022-12-27 20:44:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19737,'5500','121672159865','2022-12-27 20:44:27',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19738,'1000','121672159865','2022-12-27 20:44:27',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19739,'4000','121672159865','2022-12-27 20:44:27',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(19740,'4000','121672159865','2022-12-27 20:44:27',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19741,'1110','121672163132','2022-12-27 20:49:45',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(19742,'5500','121672163132','2022-12-27 20:49:45',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19743,'1000','121672163132','2022-12-27 20:49:45',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19744,'4000','121672163132','2022-12-27 20:49:45',NULL,300.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(19745,'1110','121672163390','2022-12-27 21:04:37',NULL,1730.00,'','12','1','Inventory sold','1','','sales','6001506908146','','No',NULL,NULL,''),(19746,'5500','121672163390','2022-12-27 21:04:37',1730.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19747,'1000','121672163390','2022-12-27 21:04:37',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19748,'4000','121672163390','2022-12-27 21:04:37',NULL,3000.00,'','12','1','Good sold','1','','sales','6001506908146','','No',NULL,NULL,''),(19749,'1110','121672164391','2022-12-27 21:06:41',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19750,'5500','121672164391','2022-12-27 21:06:41',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19751,'1000','121672164391','2022-12-27 21:06:41',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19752,'4000','121672164391','2022-12-27 21:06:41',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19753,'1110','121672164675','2022-12-27 21:12:37',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(19754,'1110','121672164675','2022-12-27 21:12:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19755,'1110','121672164675','2022-12-27 21:12:37',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(19756,'5500','121672164675','2022-12-27 21:12:37',2297.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19757,'1000','121672164675','2022-12-27 21:12:37',3610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19758,'4000','121672164675','2022-12-27 21:12:37',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(19759,'4000','121672164675','2022-12-27 21:12:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(19760,'4000','121672164675','2022-12-27 21:12:37',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(19761,'1110','121672164789','2022-12-27 22:56:20',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19762,'1110','121672164789','2022-12-27 22:56:20',NULL,72.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19763,'1110','121672164789','2022-12-27 22:56:20',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(19764,'5500','121672164789','2022-12-27 22:56:20',910.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19765,'1000','121672164789','2022-12-27 22:56:20',1610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19766,'4000','121672164789','2022-12-27 22:56:20',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19767,'4000','121672164789','2022-12-27 22:56:20',NULL,160.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(19768,'4000','121672164789','2022-12-27 22:56:20',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(19769,'1110','121672171086','2022-12-27 23:43:41',NULL,546.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19770,'1110','121672171086','2022-12-27 23:43:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(19771,'5500','121672171086','2022-12-27 23:43:41',599.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19772,'1000','121672171086','2022-12-27 23:43:41',890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19773,'4000','121672171086','2022-12-27 23:43:41',NULL,810.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19774,'4000','121672171086','2022-12-27 23:43:41',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(19775,'1110','121672174095','2022-12-27 23:48:51',NULL,4100.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(19776,'5500','121672174095','2022-12-27 23:48:51',4100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19777,'1000','121672174095','2022-12-27 23:48:51',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19778,'4000','121672174095','2022-12-27 23:48:51',NULL,6500.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(19779,'1110','121672174280','2022-12-28 00:03:50',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(19780,'1110','121672174280','2022-12-28 00:03:50',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19781,'1110','121672174280','2022-12-28 00:03:50',NULL,64.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(19782,'5500','121672174280','2022-12-28 00:03:50',557.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19783,'1000','121672174280','2022-12-28 00:03:50',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19784,'4000','121672174280','2022-12-28 00:03:50',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(19785,'4000','121672174280','2022-12-28 00:03:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19786,'4000','121672174280','2022-12-28 00:03:50',NULL,120.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(19787,'1110','121672176022','2022-12-28 00:20:31',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19788,'5500','121672176022','2022-12-28 00:20:31',726.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19789,'1000','121672176022','2022-12-28 00:20:31',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19790,'4000','121672176022','2022-12-28 00:20:31',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19791,'1110','121672176103','2022-12-28 00:24:21',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(19792,'1110','121672176103','2022-12-28 00:24:21',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(19793,'5500','121672176103','2022-12-28 00:24:21',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19794,'1000','121672176103','2022-12-28 00:24:21',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19795,'4000','121672176103','2022-12-28 00:24:21',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(19796,'4000','121672176103','2022-12-28 00:24:21',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(19797,'1110','121672176265','2022-12-28 00:35:19',NULL,119.33,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(19798,'5500','121672176265','2022-12-28 00:35:19',119.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19799,'1000','121672176265','2022-12-28 00:35:19',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19800,'4000','121672176265','2022-12-28 00:35:19',NULL,200.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(19801,'1110','121672178400','2022-12-28 01:00:15',NULL,250.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19802,'5500','121672178400','2022-12-28 01:00:15',250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19803,'1000','121672178400','2022-12-28 01:00:15',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19804,'4000','121672178400','2022-12-28 01:00:15',NULL,400.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19805,'1110','121672178419','2022-12-28 01:31:35',NULL,317.26,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19806,'5500','121672178419','2022-12-28 01:31:35',317.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19807,'1000','121672178419','2022-12-28 01:31:35',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19808,'4000','121672178419','2022-12-28 01:31:35',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(19809,'1110','121672180662','2022-12-28 01:37:53',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19810,'5500','121672180662','2022-12-28 01:37:53',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19811,'1000','121672180662','2022-12-28 01:37:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19812,'4000','121672180662','2022-12-28 01:37:53',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19813,'1110','121672180677','2022-12-28 01:53:53',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19814,'5500','121672180677','2022-12-28 01:53:53',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19815,'1000','121672180677','2022-12-28 01:53:53',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19816,'4000','121672180677','2022-12-28 01:53:53',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19817,'1110','121672200552','2022-12-28 09:25:39',NULL,2460.00,'','12','1','Inventory sold','1','','sales','5000329002230','','No',NULL,NULL,''),(19818,'1110','121672200552','2022-12-28 09:25:39',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19819,'5500','121672200552','2022-12-28 09:25:39',2585.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19820,'1000','121672200552','2022-12-28 09:25:39',3700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19821,'4000','121672200552','2022-12-28 09:25:39',NULL,3500.00,'','12','1','Good sold','1','','sales','5000329002230','','No',NULL,NULL,''),(19822,'4000','121672200552','2022-12-28 09:25:39',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19823,'1110','121672222206','2022-12-28 13:10:25',NULL,1699.00,'','12','1','Inventory sold','1','','sales','5010103800457','','No',NULL,NULL,''),(19824,'1110','121672222206','2022-12-28 13:10:25',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19825,'5500','121672222206','2022-12-28 13:10:25',1824.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19826,'1000','121672222206','2022-12-28 13:10:25',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19827,'4000','121672222206','2022-12-28 13:10:25',NULL,2300.00,'','12','1','Good sold','1','','sales','5010103800457','','No',NULL,NULL,''),(19828,'4000','121672222206','2022-12-28 13:10:25',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(19829,'1110','121672234308','2022-12-28 17:05:18',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19830,'5500','121672234308','2022-12-28 17:05:18',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19831,'1000','121672234308','2022-12-28 17:05:18',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19832,'4000','121672234308','2022-12-28 17:05:18',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19833,'1110','121672241749','2022-12-28 18:37:16',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(19834,'1110','121672241749','2022-12-28 18:37:16',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19835,'5500','121672241749','2022-12-28 18:37:16',2090.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19836,'1000','121672241749','2022-12-28 18:37:16',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19837,'4000','121672241749','2022-12-28 18:37:16',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(19838,'4000','121672241749','2022-12-28 18:37:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19839,'1110','121672241932','2022-12-28 18:39:04',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19840,'5500','121672241932','2022-12-28 18:39:04',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19841,'1000','121672241932','2022-12-28 18:39:04',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19842,'4000','121672241932','2022-12-28 18:39:04',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19843,'1110','121672241950','2022-12-28 18:59:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19844,'1110','121672241950','2022-12-28 18:59:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19845,'5500','121672241950','2022-12-28 18:59:28',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19846,'1000','121672241950','2022-12-28 18:59:28',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19847,'4000','121672241950','2022-12-28 18:59:28',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19848,'4000','121672241950','2022-12-28 18:59:28',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19849,'1110','121672243176','2022-12-28 20:35:59',NULL,4049.00,'','12','1','Inventory sold','1','','sales','5011013500604','','No',NULL,NULL,''),(19850,'5500','121672243176','2022-12-28 20:35:59',4049.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19851,'1000','121672243176','2022-12-28 20:35:59',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19852,'4000','121672243176','2022-12-28 20:35:59',NULL,5500.00,'','12','1','Good sold','1','','sales','5011013500604','','No',NULL,NULL,''),(19853,'1110','121672248964','2022-12-28 21:33:13',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(19854,'1110','121672248964','2022-12-28 21:33:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(19855,'5500','121672248964','2022-12-28 21:33:13',763.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19856,'1000','121672248964','2022-12-28 21:33:13',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19857,'4000','121672248964','2022-12-28 21:33:13',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(19858,'4000','121672248964','2022-12-28 21:33:13',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(19859,'1110','121672252507','2022-12-28 21:44:39',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19860,'1110','121672252507','2022-12-28 21:44:39',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(19861,'5500','121672252507','2022-12-28 21:44:39',1231.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19862,'1000','121672252507','2022-12-28 21:44:39',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19863,'4000','121672252507','2022-12-28 21:44:39',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(19864,'4000','121672252507','2022-12-28 21:44:39',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(19865,'1110','121672253725','2022-12-28 21:55:33',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(19866,'5500','121672253725','2022-12-28 21:55:33',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19867,'1000','121672253725','2022-12-28 21:55:33',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19868,'4000','121672253725','2022-12-28 21:55:33',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(19869,'1110','121672253741','2022-12-28 22:05:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19870,'5500','121672253741','2022-12-28 22:05:41',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19871,'1000','121672253741','2022-12-28 22:05:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19872,'4000','121672253741','2022-12-28 22:05:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19873,'1110','121672254516','2022-12-28 22:14:05',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(19874,'1110','121672254516','2022-12-28 22:14:05',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(19875,'1110','121672254516','2022-12-28 22:14:05',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(19876,'5500','121672254516','2022-12-28 22:14:05',966.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19877,'1000','121672254516','2022-12-28 22:14:05',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19878,'4000','121672254516','2022-12-28 22:14:05',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(19879,'4000','121672254516','2022-12-28 22:14:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(19880,'4000','121672254516','2022-12-28 22:14:05',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(19881,'1110','121672259421','2022-12-28 23:31:35',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19882,'5500','121672259421','2022-12-28 23:31:35',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19883,'1000','121672259421','2022-12-28 23:31:35',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19884,'4000','121672259421','2022-12-28 23:31:35',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19885,'1110','121672259500','2022-12-28 23:48:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19886,'5500','121672259500','2022-12-28 23:48:30',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19887,'1000','121672259500','2022-12-28 23:48:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19888,'4000','121672259500','2022-12-28 23:48:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19889,'1110','121672262119','2022-12-29 00:15:28',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19890,'5500','121672262119','2022-12-29 00:15:28',545.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19891,'1000','121672262119','2022-12-29 00:15:28',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19892,'4000','121672262119','2022-12-29 00:15:28',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19893,'1110','121672264709','2022-12-29 00:59:11',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(19894,'5500','121672264709','2022-12-29 00:59:11',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19895,'1000','121672264709','2022-12-29 00:59:11',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19896,'4000','121672264709','2022-12-29 00:59:11',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(19897,'1110','121672264795','2022-12-29 01:02:04',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(19898,'5500','121672264795','2022-12-29 01:02:04',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19899,'1000','121672264795','2022-12-29 01:02:04',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19900,'4000','121672264795','2022-12-29 01:02:04',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(19901,'1110','121672264970','2022-12-29 01:03:00',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19902,'5500','121672264970','2022-12-29 01:03:00',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19903,'1000','121672264970','2022-12-29 01:03:00',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19904,'4000','121672264970','2022-12-29 01:03:00',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19905,'1110','121672264986','2022-12-29 01:03:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19906,'5500','121672264986','2022-12-29 01:03:16',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19907,'1000','121672264986','2022-12-29 01:03:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19908,'4000','121672264986','2022-12-29 01:03:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19909,'1110','121672265004','2022-12-29 01:17:02',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(19910,'5500','121672265004','2022-12-29 01:17:02',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19911,'1000','121672265004','2022-12-29 01:17:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19912,'4000','121672265004','2022-12-29 01:17:02',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(19913,'1110','121672267652','2022-12-29 01:48:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19914,'1110','121672267652','2022-12-29 01:48:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19915,'5500','121672267652','2022-12-29 01:48:12',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19916,'1000','121672267652','2022-12-29 01:48:12',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19917,'4000','121672267652','2022-12-29 01:48:12',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(19918,'4000','121672267652','2022-12-29 01:48:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19919,'1110','121672268109','2022-12-29 01:55:23',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323300533','','No',NULL,NULL,''),(19920,'5500','121672268109','2022-12-29 01:55:23',1325.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19921,'1000','121672268109','2022-12-29 01:55:23',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19922,'4000','121672268109','2022-12-29 01:55:23',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323300533','','No',NULL,NULL,''),(19923,'1110','121672268127','2022-12-29 02:02:17',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19924,'5500','121672268127','2022-12-29 02:02:17',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19925,'1000','121672268127','2022-12-29 02:02:17',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19926,'4000','121672268127','2022-12-29 02:02:17',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19927,'1110','121672268922','2022-12-29 02:08:52',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19928,'5500','121672268922','2022-12-29 02:08:52',327.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19929,'1000','121672268922','2022-12-29 02:08:52',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19930,'4000','121672268922','2022-12-29 02:08:52',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19931,'1110','121672268938','2022-12-29 02:23:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19932,'1110','121672268938','2022-12-29 02:23:22',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(19933,'5500','121672268938','2022-12-29 02:23:22',346.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19934,'1000','121672268938','2022-12-29 02:23:22',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19935,'4000','121672268938','2022-12-29 02:23:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19936,'4000','121672268938','2022-12-29 02:23:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(19937,'1110','121672269817','2022-12-29 02:35:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19938,'1110','121672269817','2022-12-29 02:35:03',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19939,'5500','121672269817','2022-12-29 02:35:03',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19940,'1000','121672269817','2022-12-29 02:35:03',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19941,'4000','121672269817','2022-12-29 02:35:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19942,'4000','121672269817','2022-12-29 02:35:03',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19943,'1110','121672270507','2022-12-29 03:51:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19944,'1110','121672270507','2022-12-29 03:51:43',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(19945,'5500','121672270507','2022-12-29 03:51:43',236.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19946,'1000','121672270507','2022-12-29 03:51:43',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19947,'4000','121672270507','2022-12-29 03:51:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19948,'4000','121672270507','2022-12-29 03:51:43',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(19949,'1110','121672275121','2022-12-29 03:58:13',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(19950,'1110','121672275121','2022-12-29 03:58:13',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19951,'5500','121672275121','2022-12-29 03:58:13',747.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19952,'1000','121672275121','2022-12-29 03:58:13',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19953,'4000','121672275121','2022-12-29 03:58:13',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(19954,'4000','121672275121','2022-12-29 03:58:13',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(19955,'1110','121672283240','2022-12-29 06:08:02',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(19956,'1110','121672283240','2022-12-29 06:08:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(19957,'5500','121672283240','2022-12-29 06:08:02',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19958,'1000','121672283240','2022-12-29 06:08:02',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19959,'4000','121672283240','2022-12-29 06:08:02',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(19960,'4000','121672283240','2022-12-29 06:08:02',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(19961,'1110','121672283492','2022-12-29 07:58:11',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19962,'1110','121672283492','2022-12-29 07:58:11',NULL,327.04,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19963,'1110','121672283492','2022-12-29 07:58:11',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19964,'5500','121672283492','2022-12-29 07:58:11',602.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19965,'1000','121672283492','2022-12-29 07:58:11',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19966,'4000','121672283492','2022-12-29 07:58:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(19967,'4000','121672283492','2022-12-29 07:58:11',NULL,370.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(19968,'4000','121672283492','2022-12-29 07:58:11',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(19969,'1110','121672323663','2022-12-29 17:21:22',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(19970,'5500','121672323663','2022-12-29 17:21:22',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19971,'1000','121672323663','2022-12-29 17:21:22',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19972,'4000','121672323663','2022-12-29 17:21:22',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(19973,'1110','121672324187','2022-12-29 17:44:18',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(19974,'1110','121672324187','2022-12-29 17:44:18',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19975,'5500','121672324187','2022-12-29 17:44:18',331.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19976,'1000','121672324187','2022-12-29 17:44:18',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19977,'4000','121672324187','2022-12-29 17:44:18',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(19978,'4000','121672324187','2022-12-29 17:44:18',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(19979,'1110','121672325130','2022-12-29 17:46:22',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19980,'5500','121672325130','2022-12-29 17:46:22',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19981,'1000','121672325130','2022-12-29 17:46:22',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19982,'4000','121672325130','2022-12-29 17:46:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(19983,'1110','121672327321','2022-12-29 18:22:20',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(19984,'1110','121672327321','2022-12-29 18:22:20',NULL,2460.00,'','12','1','Inventory sold','1','','sales','5000299618073','','No',NULL,NULL,''),(19985,'5500','121672327321','2022-12-29 18:22:20',6000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19986,'1000','121672327321','2022-12-29 18:22:20',8800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19987,'4000','121672327321','2022-12-29 18:22:20',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(19988,'4000','121672327321','2022-12-29 18:22:20',NULL,3500.00,'','12','1','Good sold','1','','sales','5000299618073','','No',NULL,NULL,''),(19989,'1110','121672328057','2022-12-29 18:34:39',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19990,'5500','121672328057','2022-12-29 18:34:39',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19991,'1000','121672328057','2022-12-29 18:34:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19992,'4000','121672328057','2022-12-29 18:34:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(19993,'1110','121672329638','2022-12-29 19:00:49',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19994,'5500','121672329638','2022-12-29 19:00:49',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19995,'1000','121672329638','2022-12-29 19:00:49',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19996,'4000','121672329638','2022-12-29 19:00:49',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(19997,'1110','121672329653','2022-12-29 19:34:21',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(19998,'5500','121672329653','2022-12-29 19:34:21',125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(19999,'1000','121672329653','2022-12-29 19:34:21',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20000,'4000','121672329653','2022-12-29 19:34:21',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(20001,'1110','121672335739','2022-12-29 20:42:32',NULL,708.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(20002,'5500','121672335739','2022-12-29 20:42:32',708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20003,'1000','121672335739','2022-12-29 20:42:32',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20004,'4000','121672335739','2022-12-29 20:42:32',NULL,1000.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(20005,'1110','121672335756','2022-12-29 21:08:47',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20006,'1110','121672335756','2022-12-29 21:08:47',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20007,'1110','121672335756','2022-12-29 21:08:47',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(20008,'1110','121672335756','2022-12-29 21:08:47',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(20009,'5500','121672335756','2022-12-29 21:08:47',495.54,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20010,'1000','121672335756','2022-12-29 21:08:47',780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20011,'4000','121672335756','2022-12-29 21:08:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20012,'4000','121672335756','2022-12-29 21:08:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20013,'4000','121672335756','2022-12-29 21:08:47',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(20014,'4000','121672335756','2022-12-29 21:08:47',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(20015,'1110','121672337479','2022-12-29 22:46:35',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20016,'5500','121672337479','2022-12-29 22:46:35',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20017,'1000','121672337479','2022-12-29 22:46:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20018,'4000','121672337479','2022-12-29 22:46:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20019,'1110','121672344832','2022-12-29 23:14:17',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20020,'1110','121672344832','2022-12-29 23:14:17',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20021,'5500','121672344832','2022-12-29 23:14:17',772.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20022,'1000','121672344832','2022-12-29 23:14:17',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20023,'4000','121672344832','2022-12-29 23:14:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20024,'4000','121672344832','2022-12-29 23:14:17',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20025,'1110','121672346764','2022-12-29 23:46:16',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20026,'5500','121672346764','2022-12-29 23:46:16',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20027,'1000','121672346764','2022-12-29 23:46:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20028,'4000','121672346764','2022-12-29 23:46:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20029,'1110','121672349269','2022-12-30 00:28:00',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20030,'5500','121672349269','2022-12-30 00:28:00',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20031,'1000','121672349269','2022-12-30 00:28:00',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20032,'4000','121672349269','2022-12-30 00:28:00',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20033,'1110','121672349285','2022-12-30 00:28:27',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(20034,'5500','121672349285','2022-12-30 00:28:27',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20035,'1000','121672349285','2022-12-30 00:28:27',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20036,'4000','121672349285','2022-12-30 00:28:27',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(20037,'1110','121672349311','2022-12-30 00:28:44',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20038,'5500','121672349311','2022-12-30 00:28:44',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20039,'1000','121672349311','2022-12-30 00:28:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20040,'4000','121672349311','2022-12-30 00:28:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20041,'1110','121672349439','2022-12-30 00:31:09',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(20042,'1110','121672349439','2022-12-30 00:31:09',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20043,'5500','121672349439','2022-12-30 00:31:09',2752.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20044,'1000','121672349439','2022-12-30 00:31:09',3950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20045,'4000','121672349439','2022-12-30 00:31:09',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(20046,'4000','121672349439','2022-12-30 00:31:09',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20047,'1110','121672350642','2022-12-30 00:50:54',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(20048,'5500','121672350642','2022-12-30 00:50:54',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20049,'1000','121672350642','2022-12-30 00:50:54',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20050,'4000','121672350642','2022-12-30 00:50:54',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(20051,'1110','121672350662','2022-12-30 01:39:32',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20052,'1110','121672350662','2022-12-30 01:39:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20053,'5500','121672350662','2022-12-30 01:39:32',429.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20054,'1000','121672350662','2022-12-30 01:39:32',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20055,'4000','121672350662','2022-12-30 01:39:32',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20056,'4000','121672350662','2022-12-30 01:39:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20057,'1110','121672353579','2022-12-30 01:58:06',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(20058,'1110','121672353579','2022-12-30 01:58:06',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20059,'5500','121672353579','2022-12-30 01:58:06',1612.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20060,'1000','121672353579','2022-12-30 01:58:06',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20061,'4000','121672353579','2022-12-30 01:58:06',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(20062,'4000','121672353579','2022-12-30 01:58:06',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20063,'1110','121672355785','2022-12-30 03:59:41',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20064,'1110','121672355785','2022-12-30 03:59:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20065,'5500','121672355785','2022-12-30 03:59:41',340.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20066,'1000','121672355785','2022-12-30 03:59:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20067,'4000','121672355785','2022-12-30 03:59:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20068,'4000','121672355785','2022-12-30 03:59:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20069,'1110','121672361985','2022-12-30 03:59:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20070,'5500','121672361985','2022-12-30 03:59:56',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20071,'1000','121672361985','2022-12-30 03:59:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20072,'4000','121672361985','2022-12-30 03:59:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20073,'1110','121672362021','2022-12-30 04:36:18',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(20074,'5500','121672362021','2022-12-30 04:36:18',710.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20075,'1000','121672362021','2022-12-30 04:36:18',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20076,'4000','121672362021','2022-12-30 04:36:18',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(20077,'1110','121672365150','2022-12-30 04:52:44',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20078,'5500','121672365150','2022-12-30 04:52:44',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20079,'1000','121672365150','2022-12-30 04:52:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20080,'4000','121672365150','2022-12-30 04:52:44',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20081,'1110','121672373534','2022-12-30 07:12:26',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20082,'5500','121672373534','2022-12-30 07:12:26',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20083,'1000','121672373534','2022-12-30 07:12:26',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20084,'4000','121672373534','2022-12-30 07:12:26',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20085,'1110','121672406726','2022-12-30 16:26:05',NULL,1172.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20086,'1110','121672406726','2022-12-30 16:26:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20087,'5500','121672406726','2022-12-30 16:26:05',1246.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20088,'1000','121672406726','2022-12-30 16:26:05',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20089,'4000','121672406726','2022-12-30 16:26:05',NULL,1700.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20090,'4000','121672406726','2022-12-30 16:26:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20091,'1110','121672406774','2022-12-30 18:01:21',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20092,'5500','121672406774','2022-12-30 18:01:21',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20093,'1000','121672406774','2022-12-30 18:01:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20094,'4000','121672406774','2022-12-30 18:01:21',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20095,'1110','121672413324','2022-12-30 18:15:37',NULL,948.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20096,'5500','121672413324','2022-12-30 18:15:37',948.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20097,'1000','121672413324','2022-12-30 18:15:37',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20098,'4000','121672413324','2022-12-30 18:15:37',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20099,'1110','121672413347','2022-12-30 18:17:55',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20100,'5500','121672413347','2022-12-30 18:17:55',125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20101,'1000','121672413347','2022-12-30 18:17:55',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20102,'4000','121672413347','2022-12-30 18:17:55',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20103,'1110','121672420825','2022-12-30 20:21:20',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(20104,'1110','121672420825','2022-12-30 20:21:20',NULL,4000.00,'','12','1','Inventory sold','1','','sales','5010103912976','','No',NULL,NULL,''),(20105,'1110','121672420825','2022-12-30 20:21:20',NULL,185.40,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20106,'5500','121672420825','2022-12-30 20:21:20',4390.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20107,'1000','121672420825','2022-12-30 20:21:20',6050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20108,'4000','121672420825','2022-12-30 20:21:20',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(20109,'4000','121672420825','2022-12-30 20:21:20',NULL,5400.00,'','12','1','Good sold','1','','sales','5010103912976','','No',NULL,NULL,''),(20110,'4000','121672420825','2022-12-30 20:21:20',NULL,350.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20111,'1110','121672420896','2022-12-30 20:42:16',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20112,'1110','121672420896','2022-12-30 20:42:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20113,'5500','121672420896','2022-12-30 20:42:16',639.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20114,'1000','121672420896','2022-12-30 20:42:16',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20115,'4000','121672420896','2022-12-30 20:42:16',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20116,'4000','121672420896','2022-12-30 20:42:16',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20117,'1110','121672422831','2022-12-30 21:29:07',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20118,'5500','121672422831','2022-12-30 21:29:07',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20119,'1000','121672422831','2022-12-30 21:29:07',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20120,'4000','121672422831','2022-12-30 21:29:07',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20121,'1110','121672425775','2022-12-30 21:43:28',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20122,'1110','121672425775','2022-12-30 21:43:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20123,'5500','121672425775','2022-12-30 21:43:28',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20124,'1000','121672425775','2022-12-30 21:43:28',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20125,'4000','121672425775','2022-12-30 21:43:28',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20126,'4000','121672425775','2022-12-30 21:43:28',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20127,'1110','121672425812','2022-12-30 21:51:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(20128,'5500','121672425812','2022-12-30 21:51:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20129,'1000','121672425812','2022-12-30 21:51:24',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20130,'4000','121672425812','2022-12-30 21:51:24',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(20131,'1110','121672426288','2022-12-30 22:26:07',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20132,'1110','121672426288','2022-12-30 22:26:07',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20133,'5500','121672426288','2022-12-30 22:26:07',429.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20134,'1000','121672426288','2022-12-30 22:26:07',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20135,'4000','121672426288','2022-12-30 22:26:07',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20136,'4000','121672426288','2022-12-30 22:26:07',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20137,'1110','121672428370','2022-12-30 22:35:25',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(20138,'5500','121672428370','2022-12-30 22:35:25',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20139,'1000','121672428370','2022-12-30 22:35:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20140,'4000','121672428370','2022-12-30 22:35:25',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(20141,'1110','121672428982','2022-12-30 22:47:10',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(20142,'5500','121672428982','2022-12-30 22:47:10',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20143,'1000','121672428982','2022-12-30 22:47:10',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20144,'4000','121672428982','2022-12-30 22:47:10',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(20145,'1110','121672431528','2022-12-30 23:19:39',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20146,'1110','121672431528','2022-12-30 23:19:39',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20147,'5500','121672431528','2022-12-30 23:19:39',1199.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20148,'1000','121672431528','2022-12-30 23:19:39',1890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20149,'4000','121672431528','2022-12-30 23:19:39',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20150,'4000','121672431528','2022-12-30 23:19:39',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20151,'1110','121672431583','2022-12-30 23:30:20',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20152,'5500','121672431583','2022-12-30 23:30:20',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20153,'1000','121672431583','2022-12-30 23:30:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20154,'4000','121672431583','2022-12-30 23:30:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(20155,'1110','121672433048','2022-12-30 23:44:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20156,'5500','121672433048','2022-12-30 23:44:21',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20157,'1000','121672433048','2022-12-30 23:44:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20158,'4000','121672433048','2022-12-30 23:44:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20159,'1110','121672433068','2022-12-31 00:11:02',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20160,'1110','121672433068','2022-12-31 00:11:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20161,'1110','121672433068','2022-12-31 00:11:02',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20162,'5500','121672433068','2022-12-31 00:11:02',589.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20163,'1000','121672433068','2022-12-31 00:11:02',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20164,'4000','121672433068','2022-12-31 00:11:02',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20165,'4000','121672433068','2022-12-31 00:11:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20166,'4000','121672433068','2022-12-31 00:11:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20167,'1110','121672437713','2022-12-31 01:02:22',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(20168,'1110','121672437713','2022-12-31 01:02:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20169,'5500','121672437713','2022-12-31 01:02:22',1125.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20170,'1000','121672437713','2022-12-31 01:02:22',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20171,'4000','121672437713','2022-12-31 01:02:22',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(20172,'4000','121672437713','2022-12-31 01:02:22',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20173,'1110','121672438133','2022-12-31 01:09:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(20174,'1110','121672438133','2022-12-31 01:09:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20175,'5500','121672438133','2022-12-31 01:09:24',1314.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20176,'1000','121672438133','2022-12-31 01:09:24',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20177,'4000','121672438133','2022-12-31 01:09:24',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(20178,'4000','121672438133','2022-12-31 01:09:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20179,'1110','121672438171','2022-12-31 02:09:32',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(20180,'5500','121672438171','2022-12-31 02:09:32',352.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20181,'1000','121672438171','2022-12-31 02:09:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20182,'4000','121672438171','2022-12-31 02:09:32',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(20183,'1110','121672441778','2022-12-31 03:14:55',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(20184,'5500','121672441778','2022-12-31 03:14:55',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20185,'1000','121672441778','2022-12-31 03:14:55',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20186,'4000','121672441778','2022-12-31 03:14:55',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(20187,'1110','121672445743','2022-12-31 04:20:02',NULL,4100.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(20188,'1110','121672445743','2022-12-31 04:20:02',NULL,7100.00,'','12','1','Inventory sold','1','','sales','3219820005899','','No',NULL,NULL,''),(20189,'1110','121672445743','2022-12-31 04:20:02',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(20190,'5500','121672445743','2022-12-31 04:20:02',11358.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20191,'1000','121672445743','2022-12-31 04:20:02',17250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20192,'4000','121672445743','2022-12-31 04:20:02',NULL,6500.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(20193,'4000','121672445743','2022-12-31 04:20:02',NULL,10500.00,'','12','1','Good sold','1','','sales','3219820005899','','No',NULL,NULL,''),(20194,'4000','121672445743','2022-12-31 04:20:02',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(20195,'1110','121672482715','2022-12-31 13:32:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20196,'5500','121672482715','2022-12-31 13:32:24',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20197,'1000','121672482715','2022-12-31 13:32:24',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20198,'4000','121672482715','2022-12-31 13:32:24',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20199,'1110','121672488446','2022-12-31 15:09:24',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20200,'1110','121672488446','2022-12-31 15:09:24',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20201,'1110','121672488446','2022-12-31 15:09:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(20202,'5500','121672488446','2022-12-31 15:09:24',657.68,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20203,'1000','121672488446','2022-12-31 15:09:24',1070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20204,'4000','121672488446','2022-12-31 15:09:24',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20205,'4000','121672488446','2022-12-31 15:09:24',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20206,'4000','121672488446','2022-12-31 15:09:24',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(20207,'1110','121672488571','2022-12-31 15:35:10',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(20208,'1110','121672488571','2022-12-31 15:35:10',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20209,'5500','121672488571','2022-12-31 15:35:10',305.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20210,'1000','121672488571','2022-12-31 15:35:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20211,'4000','121672488571','2022-12-31 15:35:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(20212,'4000','121672488571','2022-12-31 15:35:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20213,'1110','121672492661','2022-12-31 16:18:40',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(20214,'5500','121672492661','2022-12-31 16:18:40',1098.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20215,'1000','121672492661','2022-12-31 16:18:40',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20216,'4000','121672492661','2022-12-31 16:18:40',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(20217,'1110','121672492834','2022-12-31 17:22:42',NULL,1256.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(20218,'5500','121672492834','2022-12-31 17:22:42',1256.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20219,'1000','121672492834','2022-12-31 17:22:42',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20220,'4000','121672492834','2022-12-31 17:22:42',NULL,2800.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(20221,'1110','121672499550','2022-12-31 18:13:03',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20222,'1110','121672499550','2022-12-31 18:13:03',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20223,'5500','121672499550','2022-12-31 18:13:03',256.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20224,'1000','121672499550','2022-12-31 18:13:03',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20225,'4000','121672499550','2022-12-31 18:13:03',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20226,'4000','121672499550','2022-12-31 18:13:03',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20227,'1110','121672503014','2022-12-31 19:10:40',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20228,'1110','121672503014','2022-12-31 19:10:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(20229,'5500','121672503014','2022-12-31 19:10:40',689.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20230,'1000','121672503014','2022-12-31 19:10:40',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20231,'4000','121672503014','2022-12-31 19:10:40',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20232,'4000','121672503014','2022-12-31 19:10:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(20233,'1110','121672503050','2022-12-31 20:34:31',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20234,'5500','121672503050','2022-12-31 20:34:31',308.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20235,'1000','121672503050','2022-12-31 20:34:31',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20236,'4000','121672503050','2022-12-31 20:34:31',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20237,'1110','121672508817','2022-12-31 20:50:57',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(20238,'1110','121672508817','2022-12-31 20:50:57',NULL,617.06,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20239,'5500','121672508817','2022-12-31 20:50:57',19117.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20240,'1000','121672508817','2022-12-31 20:50:57',29200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20241,'4000','121672508817','2022-12-31 20:50:57',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(20242,'4000','121672508817','2022-12-31 20:50:57',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20243,'1110','121672509064','2022-12-31 20:54:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20244,'1110','121672509064','2022-12-31 20:54:55',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(20245,'5500','121672509064','2022-12-31 20:54:55',691.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20246,'1000','121672509064','2022-12-31 20:54:55',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20247,'4000','121672509064','2022-12-31 20:54:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20248,'4000','121672509064','2022-12-31 20:54:55',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(20249,'1110','121672509412','2022-12-31 20:58:38',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(20250,'1110','121672509412','2022-12-31 20:58:38',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(20251,'5500','121672509412','2022-12-31 20:58:38',2871.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20252,'1000','121672509412','2022-12-31 20:58:38',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20253,'4000','121672509412','2022-12-31 20:58:38',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(20254,'4000','121672509412','2022-12-31 20:58:38',NULL,600.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(20255,'1110','121672509538','2022-12-31 21:00:32',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20256,'1110','121672509538','2022-12-31 21:00:32',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(20257,'5500','121672509538','2022-12-31 21:00:32',402.39,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20258,'1000','121672509538','2022-12-31 21:00:32',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20259,'4000','121672509538','2022-12-31 21:00:32',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20260,'4000','121672509538','2022-12-31 21:00:32',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(20261,'1110','121672509687','2022-12-31 21:24:27',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20262,'1110','121672509687','2022-12-31 21:24:27',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20263,'5500','121672509687','2022-12-31 21:24:27',1187.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20264,'1000','121672509687','2022-12-31 21:24:27',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20265,'4000','121672509687','2022-12-31 21:24:27',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20266,'4000','121672509687','2022-12-31 21:24:27',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20267,'1110','121672511072','2022-12-31 22:00:25',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20268,'1110','121672511072','2022-12-31 22:00:25',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20269,'5500','121672511072','2022-12-31 22:00:25',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20270,'1000','121672511072','2022-12-31 22:00:25',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20271,'4000','121672511072','2022-12-31 22:00:25',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20272,'4000','121672511072','2022-12-31 22:00:25',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20273,'1110','121672513360','2022-12-31 22:04:26',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(20274,'5500','121672513360','2022-12-31 22:04:26',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20275,'1000','121672513360','2022-12-31 22:04:26',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20276,'4000','121672513360','2022-12-31 22:04:26',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(20277,'1110','121672513533','2022-12-31 22:06:43',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20278,'5500','121672513533','2022-12-31 22:06:43',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20279,'1000','121672513533','2022-12-31 22:06:43',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20280,'4000','121672513533','2022-12-31 22:06:43',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20281,'1110','121672513612','2022-12-31 22:19:16',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20282,'1110','121672513612','2022-12-31 22:19:16',NULL,1300.00,'','12','1','Inventory sold','1','','sales','6002323400639','','No',NULL,NULL,''),(20283,'1110','121672513612','2022-12-31 22:19:16',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(20284,'1110','121672513612','2022-12-31 22:19:16',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20285,'1110','121672513612','2022-12-31 22:19:16',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20286,'5500','121672513612','2022-12-31 22:19:16',4107.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20287,'1000','121672513612','2022-12-31 22:19:16',6060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20288,'4000','121672513612','2022-12-31 22:19:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20289,'4000','121672513612','2022-12-31 22:19:16',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323400639','','No',NULL,NULL,''),(20290,'4000','121672513612','2022-12-31 22:19:16',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(20291,'4000','121672513612','2022-12-31 22:19:16',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20292,'4000','121672513612','2022-12-31 22:19:16',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20293,'1110','121672514362','2022-12-31 22:20:07',NULL,1590.00,'','12','1','Inventory sold','1','','sales','089540448992','','No',NULL,NULL,''),(20294,'1110','121672514362','2022-12-31 22:20:07',NULL,160.00,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20295,'5500','121672514362','2022-12-31 22:20:07',1750.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20296,'1000','121672514362','2022-12-31 22:20:07',2390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20297,'4000','121672514362','2022-12-31 22:20:07',NULL,2150.00,'','12','1','Good sold','1','','sales','089540448992','','No',NULL,NULL,''),(20298,'4000','121672514362','2022-12-31 22:20:07',NULL,240.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20299,'1110','121672514586','2022-12-31 22:26:57',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20300,'1110','121672514586','2022-12-31 22:26:57',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20301,'1110','121672514586','2022-12-31 22:26:57',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20302,'1110','121672514586','2022-12-31 22:26:57',NULL,308.53,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20303,'1110','121672514586','2022-12-31 22:26:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20304,'5500','121672514586','2022-12-31 22:26:57',2422.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20305,'1000','121672514586','2022-12-31 22:26:57',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20306,'4000','121672514586','2022-12-31 22:26:57',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20307,'4000','121672514586','2022-12-31 22:26:57',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20308,'4000','121672514586','2022-12-31 22:26:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20309,'4000','121672514586','2022-12-31 22:26:57',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(20310,'4000','121672514586','2022-12-31 22:26:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20311,'1110','121672514899','2022-12-31 22:33:56',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(20312,'1110','121672514899','2022-12-31 22:33:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20313,'1110','121672514899','2022-12-31 22:33:56',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20314,'5500','121672514899','2022-12-31 22:33:56',2261.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20315,'1000','121672514899','2022-12-31 22:33:56',2930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20316,'4000','121672514899','2022-12-31 22:33:56',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(20317,'4000','121672514899','2022-12-31 22:33:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20318,'4000','121672514899','2022-12-31 22:33:56',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20319,'1110','121672515629','2022-12-31 22:41:10',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20320,'1110','121672515629','2022-12-31 22:41:10',NULL,185.40,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20321,'5500','121672515629','2022-12-31 22:41:10',2255.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20322,'1000','121672515629','2022-12-31 22:41:10',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20323,'4000','121672515629','2022-12-31 22:41:10',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20324,'4000','121672515629','2022-12-31 22:41:10',NULL,350.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20325,'1110','121672515827','2022-12-31 22:49:39',NULL,1157.00,'','12','1','Inventory sold','1','','sales','4820000944625','','No',NULL,NULL,''),(20326,'1110','121672515827','2022-12-31 22:49:39',NULL,1206.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20327,'1110','121672515827','2022-12-31 22:49:39',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20328,'5500','121672515827','2022-12-31 22:49:39',2671.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20329,'1000','121672515827','2022-12-31 22:49:39',4150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20330,'4000','121672515827','2022-12-31 22:49:39',NULL,2000.00,'','12','1','Good sold','1','','sales','4820000944625','','No',NULL,NULL,''),(20331,'4000','121672515827','2022-12-31 22:49:39',NULL,1800.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20332,'4000','121672515827','2022-12-31 22:49:39',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20333,'1110','121672516246','2022-12-31 22:50:56',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20334,'1110','121672516246','2022-12-31 22:50:56',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20335,'5500','121672516246','2022-12-31 22:50:56',429.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20336,'1000','121672516246','2022-12-31 22:50:56',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20337,'4000','121672516246','2022-12-31 22:50:56',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(20338,'4000','121672516246','2022-12-31 22:50:56',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20339,'1110','121672516316','2022-12-31 22:52:11',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(20340,'5500','121672516316','2022-12-31 22:52:11',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20341,'1000','121672516316','2022-12-31 22:52:11',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20342,'4000','121672516316','2022-12-31 22:52:11',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(20343,'1110','121672517959','2022-12-31 23:20:04',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20344,'1110','121672517959','2022-12-31 23:20:04',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20345,'1110','121672517959','2022-12-31 23:20:04',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20346,'1110','121672517959','2022-12-31 23:20:04',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20347,'1110','121672517959','2022-12-31 23:20:04',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(20348,'5500','121672517959','2022-12-31 23:20:04',1100.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20349,'1000','121672517959','2022-12-31 23:20:04',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20350,'4000','121672517959','2022-12-31 23:20:04',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20351,'4000','121672517959','2022-12-31 23:20:04',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20352,'4000','121672517959','2022-12-31 23:20:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20353,'4000','121672517959','2022-12-31 23:20:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20354,'4000','121672517959','2022-12-31 23:20:04',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(20355,'1110','121672518056','2022-12-31 23:23:52',NULL,4049.00,'','12','1','Inventory sold','1','','sales','5011013500604','','No',NULL,NULL,''),(20356,'1110','121672518056','2022-12-31 23:23:52',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(20357,'5500','121672518056','2022-12-31 23:23:52',4801.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20358,'1000','121672518056','2022-12-31 23:23:52',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20359,'4000','121672518056','2022-12-31 23:23:52',NULL,5500.00,'','12','1','Good sold','1','','sales','5011013500604','','No',NULL,NULL,''),(20360,'4000','121672518056','2022-12-31 23:23:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(20361,'1110','121672518513','2022-12-31 23:31:16',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20362,'5500','121672518513','2022-12-31 23:31:16',1002.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20363,'1000','121672518513','2022-12-31 23:31:16',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20364,'4000','121672518513','2022-12-31 23:31:16',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20365,'1110','121672518681','2022-12-31 23:31:40',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20366,'1110','121672518681','2022-12-31 23:31:40',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(20367,'5500','121672518681','2022-12-31 23:31:40',626.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20368,'1000','121672518681','2022-12-31 23:31:40',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20369,'4000','121672518681','2022-12-31 23:31:40',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20370,'4000','121672518681','2022-12-31 23:31:40',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(20371,'1110','121672518737','2022-12-31 23:34:15',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(20372,'1110','121672518737','2022-12-31 23:34:15',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(20373,'1110','121672518737','2022-12-31 23:34:15',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(20374,'5500','121672518737','2022-12-31 23:34:15',2832.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20375,'1000','121672518737','2022-12-31 23:34:15',3910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20376,'4000','121672518737','2022-12-31 23:34:15',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(20377,'4000','121672518737','2022-12-31 23:34:15',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(20378,'4000','121672518737','2022-12-31 23:34:15',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(20379,'1110','121672518956','2022-12-31 23:39:26',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20380,'5500','121672518956','2022-12-31 23:39:26',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20381,'1000','121672518956','2022-12-31 23:39:26',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20382,'4000','121672518956','2022-12-31 23:39:26',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(20383,'1110','121672519171','2022-12-31 23:40:12',NULL,1576.00,'','12','1','Inventory sold','1','','sales','7312040017010','','No',NULL,NULL,''),(20384,'1110','121672519171','2022-12-31 23:40:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20385,'1110','121672519171','2022-12-31 23:40:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20386,'1110','121672519171','2022-12-31 23:40:12',NULL,612.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20387,'5500','121672519171','2022-12-31 23:40:12',2262.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20388,'1000','121672519171','2022-12-31 23:40:12',3340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20389,'4000','121672519171','2022-12-31 23:40:12',NULL,2200.00,'','12','1','Good sold','1','','sales','7312040017010','','No',NULL,NULL,''),(20390,'4000','121672519171','2022-12-31 23:40:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20391,'4000','121672519171','2022-12-31 23:40:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20392,'4000','121672519171','2022-12-31 23:40:12',NULL,1000.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20393,'1110','121672519714','2022-12-31 23:48:50',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20394,'5500','121672519714','2022-12-31 23:48:50',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20395,'1000','121672519714','2022-12-31 23:48:50',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20396,'4000','121672519714','2022-12-31 23:48:50',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20397,'1110','121672519867','2022-12-31 23:51:43',NULL,26000.00,'','12','1','Inventory sold','1','','sales','3245990987611','','No',NULL,NULL,''),(20398,'5500','121672519867','2022-12-31 23:51:43',26000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20399,'1000','121672519867','2022-12-31 23:51:43',35000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20400,'4000','121672519867','2022-12-31 23:51:43',NULL,35000.00,'','12','1','Good sold','1','','sales','3245990987611','','No',NULL,NULL,''),(20401,'1110','121672520947','2023-01-01 00:24:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(20402,'5500','121672520947','2023-01-01 00:24:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20403,'1000','121672520947','2023-01-01 00:24:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20404,'4000','121672520947','2023-01-01 00:24:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(20405,'1110','121672521893','2023-01-01 00:41:52',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452371506','','No',NULL,NULL,''),(20406,'1110','121672521893','2023-01-01 00:41:52',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20407,'5500','121672521893','2023-01-01 00:41:52',1909.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20408,'1000','121672521893','2023-01-01 00:41:52',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20409,'4000','121672521893','2023-01-01 00:41:52',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452371506','','No',NULL,NULL,''),(20410,'4000','121672521893','2023-01-01 00:41:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20411,'1110','121672522920','2023-01-01 00:45:40',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(20412,'5500','121672522920','2023-01-01 00:45:40',829.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20413,'1000','121672522920','2023-01-01 00:45:40',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20414,'4000','121672522920','2023-01-01 00:45:40',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(20415,'1110','121672523354','2023-01-01 00:49:37',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(20416,'1110','121672523354','2023-01-01 00:49:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20417,'5500','121672523354','2023-01-01 00:49:37',623.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20418,'1000','121672523354','2023-01-01 00:49:37',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20419,'4000','121672523354','2023-01-01 00:49:37',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(20420,'4000','121672523354','2023-01-01 00:49:37',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20421,'1110','121672523507','2023-01-01 00:52:59',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20422,'5500','121672523507','2023-01-01 00:52:59',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20423,'1000','121672523507','2023-01-01 00:52:59',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20424,'4000','121672523507','2023-01-01 00:52:59',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20425,'1110','121672524023','2023-01-01 01:01:11',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20426,'1110','121672524023','2023-01-01 01:01:11',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(20427,'5500','121672524023','2023-01-01 01:01:11',383.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20428,'1000','121672524023','2023-01-01 01:01:11',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20429,'4000','121672524023','2023-01-01 01:01:11',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20430,'4000','121672524023','2023-01-01 01:01:11',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(20431,'1110','121672526649','2023-01-01 01:45:40',NULL,3056.00,'','12','1','Inventory sold','1','','sales','5000267173139','','No',NULL,NULL,''),(20432,'1110','121672526649','2023-01-01 01:45:40',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(20433,'1110','121672526649','2023-01-01 01:45:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20434,'1110','121672526649','2023-01-01 01:45:40',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(20435,'5500','121672526649','2023-01-01 01:45:40',3349.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20436,'1000','121672526649','2023-01-01 01:45:40',5030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20437,'4000','121672526649','2023-01-01 01:45:40',NULL,4500.00,'','12','1','Good sold','1','','sales','5000267173139','','No',NULL,NULL,''),(20438,'4000','121672526649','2023-01-01 01:45:40',NULL,200.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(20439,'4000','121672526649','2023-01-01 01:45:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20440,'4000','121672526649','2023-01-01 01:45:40',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(20441,'1110','121672526886','2023-01-01 01:56:31',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(20442,'1110','121672526886','2023-01-01 01:56:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20443,'5500','121672526886','2023-01-01 01:56:31',541.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20444,'1000','121672526886','2023-01-01 01:56:31',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20445,'4000','121672526886','2023-01-01 01:56:31',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(20446,'4000','121672526886','2023-01-01 01:56:31',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20447,'1110','121672527678','2023-01-01 02:01:29',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20448,'5500','121672527678','2023-01-01 02:01:29',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20449,'1000','121672527678','2023-01-01 02:01:29',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20450,'4000','121672527678','2023-01-01 02:01:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20451,'1110','121672530842','2023-01-01 02:54:32',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20452,'5500','121672530842','2023-01-01 02:54:32',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20453,'1000','121672530842','2023-01-01 02:54:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20454,'4000','121672530842','2023-01-01 02:54:32',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20455,'1110','121672530878','2023-01-01 03:16:19',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20456,'5500','121672530878','2023-01-01 03:16:19',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20457,'1000','121672530878','2023-01-01 03:16:19',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20458,'4000','121672530878','2023-01-01 03:16:19',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(20462,'1000','121672532185','2023-01-01 04:04:20',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20465,'1110','121672532185','2023-01-01 04:04:20',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(20466,'1110','121672532185','2023-01-01 04:49:15',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20467,'1110','121672532185','2023-01-01 04:49:15',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20468,'5500','121672532185','2023-01-01 04:49:15',760.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20469,'1000','121672532185','2023-01-01 04:04:20',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20470,'4000','121672532185','2023-01-01 04:04:20',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(20471,'4000','121672532185','2023-01-01 04:49:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(20472,'4000','121672532185','2023-01-01 04:49:15',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20473,'1110','121672559054','2023-01-01 10:44:37',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20474,'5500','121672559054','2023-01-01 10:44:37',308.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20475,'1000','121672559054','2023-01-01 10:44:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20476,'4000','121672559054','2023-01-01 10:44:37',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20477,'1110','121672559088','2023-01-01 11:41:25',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20478,'5500','121672559088','2023-01-01 11:41:25',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20479,'1000','121672559088','2023-01-01 11:41:25',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20480,'4000','121672559088','2023-01-01 11:41:25',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20481,'1110','121672562491','2023-01-01 13:01:00',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20482,'1110','121672562491','2023-01-01 13:01:00',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20483,'1110','121672562491','2023-01-01 13:01:00',NULL,295.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(20484,'5500','121672562491','2023-01-01 13:01:00',681.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20485,'1000','121672562491','2023-01-01 13:01:00',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20486,'4000','121672562491','2023-01-01 13:01:00',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20487,'4000','121672562491','2023-01-01 13:01:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20488,'4000','121672562491','2023-01-01 13:01:00',NULL,450.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(20489,'1110','121672568145','2023-01-01 13:16:33',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20490,'1110','121672568145','2023-01-01 13:16:33',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20491,'1110','121672568145','2023-01-01 13:16:33',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20492,'5500','121672568145','2023-01-01 13:16:33',929.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20493,'1000','121672568145','2023-01-01 13:16:33',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20494,'4000','121672568145','2023-01-01 13:16:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20495,'4000','121672568145','2023-01-01 13:16:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20496,'4000','121672568145','2023-01-01 13:16:33',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20497,'1110','121672568386','2023-01-01 14:07:28',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20498,'1110','121672568386','2023-01-01 14:07:28',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20499,'5500','121672568386','2023-01-01 14:07:28',2044.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20500,'1000','121672568386','2023-01-01 14:07:28',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20501,'4000','121672568386','2023-01-01 14:07:28',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20502,'4000','121672568386','2023-01-01 14:07:28',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20503,'1110','121672571262','2023-01-01 14:35:21',NULL,1780.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20504,'1110','121672571262','2023-01-01 14:35:21',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20505,'5500','121672571262','2023-01-01 14:35:21',1905.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20506,'1000','121672571262','2023-01-01 14:35:21',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20507,'4000','121672571262','2023-01-01 14:35:21',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20508,'4000','121672571262','2023-01-01 14:35:21',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20509,'1110','121672578642','2023-01-01 16:10:53',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(20510,'5500','121672578642','2023-01-01 16:10:53',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20511,'1000','121672578642','2023-01-01 16:10:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20512,'4000','121672578642','2023-01-01 16:10:53',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(20513,'1110','121672585775','2023-01-01 18:10:50',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20514,'1110','121672585775','2023-01-01 18:10:50',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20515,'1110','121672585775','2023-01-01 18:10:50',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(20516,'1110','121672585775','2023-01-01 18:10:50',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20517,'5500','121672585775','2023-01-01 18:10:50',1247.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20518,'1000','121672585775','2023-01-01 18:10:50',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20519,'4000','121672585775','2023-01-01 18:10:50',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20520,'4000','121672585775','2023-01-01 18:10:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20521,'4000','121672585775','2023-01-01 18:10:50',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(20522,'4000','121672585775','2023-01-01 18:10:50',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20523,'1110','121672586274','2023-01-01 18:36:16',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20524,'5500','121672586274','2023-01-01 18:36:16',2070.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20525,'1000','121672586274','2023-01-01 18:36:16',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20526,'4000','121672586274','2023-01-01 18:36:16',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20527,'1110','121672587663','2023-01-01 18:44:59',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(20528,'5500','121672587663','2023-01-01 18:44:59',561.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20529,'1000','121672587663','2023-01-01 18:44:59',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20530,'4000','121672587663','2023-01-01 18:44:59',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(20531,'1110','121672589064','2023-01-01 19:04:33',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20532,'5500','121672589064','2023-01-01 19:04:33',308.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20533,'1000','121672589064','2023-01-01 19:04:33',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20534,'4000','121672589064','2023-01-01 19:04:33',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20535,'1110','121672589078','2023-01-01 19:04:54',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20536,'5500','121672589078','2023-01-01 19:04:54',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20537,'1000','121672589078','2023-01-01 19:04:54',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20538,'4000','121672589078','2023-01-01 19:04:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20539,'1110','121672589122','2023-01-01 19:05:30',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20540,'5500','121672589122','2023-01-01 19:05:30',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20541,'1000','121672589122','2023-01-01 19:05:30',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20542,'4000','121672589122','2023-01-01 19:05:30',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20543,'1110','121672589197','2023-01-01 19:07:01',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20544,'1110','121672589197','2023-01-01 19:07:01',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20545,'1110','121672589197','2023-01-01 19:07:01',NULL,295.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(20546,'5500','121672589197','2023-01-01 19:07:01',681.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20547,'1000','121672589197','2023-01-01 19:07:01',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20548,'4000','121672589197','2023-01-01 19:07:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20549,'4000','121672589197','2023-01-01 19:07:01',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20550,'4000','121672589197','2023-01-01 19:07:01',NULL,450.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(20551,'1110','121672589333','2023-01-01 19:09:16',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20552,'1110','121672589333','2023-01-01 19:09:16',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20553,'5500','121672589333','2023-01-01 19:09:16',2044.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20554,'1000','121672589333','2023-01-01 19:09:16',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20555,'4000','121672589333','2023-01-01 19:09:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20556,'4000','121672589333','2023-01-01 19:09:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20557,'1110','121672589361','2023-01-01 19:10:30',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20558,'1110','121672589361','2023-01-01 19:10:30',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20559,'1110','121672589361','2023-01-01 19:10:30',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20560,'5500','121672589361','2023-01-01 19:10:30',929.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20561,'1000','121672589361','2023-01-01 19:10:30',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20562,'4000','121672589361','2023-01-01 19:10:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(20563,'4000','121672589361','2023-01-01 19:10:30',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20564,'4000','121672589361','2023-01-01 19:10:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20565,'1110','121672589482','2023-01-01 19:11:45',NULL,1780.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20566,'1110','121672589482','2023-01-01 19:11:45',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20567,'5500','121672589482','2023-01-01 19:11:45',1905.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20568,'1000','121672589482','2023-01-01 19:11:45',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20569,'4000','121672589482','2023-01-01 19:11:45',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20570,'4000','121672589482','2023-01-01 19:11:45',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(20571,'1110','121672589530','2023-01-01 19:12:20',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20572,'5500','121672589530','2023-01-01 19:12:20',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20573,'1000','121672589530','2023-01-01 19:12:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20574,'4000','121672589530','2023-01-01 19:12:20',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(20575,'1110','121672589572','2023-01-01 19:13:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(20576,'5500','121672589572','2023-01-01 19:13:01',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20577,'1000','121672589572','2023-01-01 19:13:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20578,'4000','121672589572','2023-01-01 19:13:01',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(20579,'1110','121672589691','2023-01-01 19:15:34',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20580,'1110','121672589691','2023-01-01 19:15:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20581,'1110','121672589691','2023-01-01 19:15:34',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20582,'1110','121672589691','2023-01-01 19:15:34',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(20583,'5500','121672589691','2023-01-01 19:15:34',1247.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20584,'1000','121672589691','2023-01-01 19:15:34',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20585,'4000','121672589691','2023-01-01 19:15:34',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20586,'4000','121672589691','2023-01-01 19:15:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(20587,'4000','121672589691','2023-01-01 19:15:34',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20588,'4000','121672589691','2023-01-01 19:15:34',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(20589,'1110','121672589738','2023-01-01 19:29:55',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20590,'5500','121672589738','2023-01-01 19:29:55',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20591,'1000','121672589738','2023-01-01 19:29:55',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20592,'4000','121672589738','2023-01-01 19:29:55',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20593,'1110','121672590600','2023-01-01 21:48:16',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(20594,'5500','121672590600','2023-01-01 21:48:16',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20595,'1000','121672590600','2023-01-01 21:48:16',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20596,'4000','121672590600','2023-01-01 21:48:16',NULL,1400.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(20597,'1110','121672598915','2023-01-01 21:59:18',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20598,'1110','121672598915','2023-01-01 21:59:18',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20599,'5500','121672598915','2023-01-01 21:59:18',660.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20600,'1000','121672598915','2023-01-01 21:59:18',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20601,'4000','121672598915','2023-01-01 21:59:18',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(20602,'4000','121672598915','2023-01-01 21:59:18',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20603,'1110','121672599615','2023-01-01 22:38:32',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001410','','No',NULL,NULL,''),(20604,'5500','121672599615','2023-01-01 22:38:32',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20605,'1000','121672599615','2023-01-01 22:38:32',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20606,'4000','121672599615','2023-01-01 22:38:32',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001410','','No',NULL,NULL,''),(20607,'1110','121672601919','2023-01-01 22:38:54',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(20608,'1110','121672601919','2023-01-01 22:38:54',NULL,7900.00,'','12','1','Inventory sold','1','','sales','5010327325125','','No',NULL,NULL,''),(20609,'5500','121672601919','2023-01-01 22:38:54',10120.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20610,'1000','121672601919','2023-01-01 22:38:54',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20611,'4000','121672601919','2023-01-01 22:38:54',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(20612,'4000','121672601919','2023-01-01 22:38:54',NULL,1100.00,'','12','1','Good sold','1','','sales','5010327325125','','No',NULL,NULL,''),(20613,'1110','121672605244','2023-01-01 23:34:15',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001506003599','','No',NULL,NULL,''),(20614,'5500','121672605244','2023-01-01 23:34:15',850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20615,'1000','121672605244','2023-01-01 23:34:15',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20616,'4000','121672605244','2023-01-01 23:34:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6001506003599','','No',NULL,NULL,''),(20617,'1110','121672605855','2023-01-01 23:44:28',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(20618,'5500','121672605855','2023-01-01 23:44:28',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20619,'1000','121672605855','2023-01-01 23:44:28',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20620,'4000','121672605855','2023-01-01 23:44:28',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(20621,'1110','121672605872','2023-01-02 00:11:04',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(20622,'1110','121672605872','2023-01-02 00:11:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20623,'5500','121672605872','2023-01-02 00:11:04',694.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20624,'1000','121672605872','2023-01-02 00:11:04',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20625,'4000','121672605872','2023-01-02 00:11:04',NULL,1100.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(20626,'4000','121672605872','2023-01-02 00:11:04',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20627,'1110','121672608968','2023-01-02 00:37:05',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(20628,'1110','121672608968','2023-01-02 00:37:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20629,'5500','121672608968','2023-01-02 00:37:05',1224.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20630,'1000','121672608968','2023-01-02 00:37:05',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20631,'4000','121672608968','2023-01-02 00:37:05',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(20632,'4000','121672608968','2023-01-02 00:37:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(20633,'1110','121672609039','2023-01-02 00:50:44',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(20634,'5500','121672609039','2023-01-02 00:50:44',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20635,'1000','121672609039','2023-01-02 00:50:44',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20636,'4000','121672609039','2023-01-02 00:50:44',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(20637,'1110','121672609849','2023-01-02 00:59:46',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(20638,'5500','121672609849','2023-01-02 00:59:46',1474.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20639,'1000','121672609849','2023-01-02 00:59:46',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20640,'4000','121672609849','2023-01-02 00:59:46',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(20641,'1110','121672610436','2023-01-02 01:11:51',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20642,'5500','121672610436','2023-01-02 01:11:51',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20643,'1000','121672610436','2023-01-02 01:11:51',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20644,'4000','121672610436','2023-01-02 01:11:51',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20645,'1110','121672613095','2023-01-02 01:45:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20646,'5500','121672613095','2023-01-02 01:45:07',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20647,'1000','121672613095','2023-01-02 01:45:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20648,'4000','121672613095','2023-01-02 01:45:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20649,'1110','121672614091','2023-01-02 02:01:48',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(20650,'5500','121672614091','2023-01-02 02:01:48',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20651,'1000','121672614091','2023-01-02 02:01:48',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20652,'4000','121672614091','2023-01-02 02:01:48',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(20653,'1110','121672616049','2023-01-02 02:34:34',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20654,'5500','121672616049','2023-01-02 02:34:34',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20655,'1000','121672616049','2023-01-02 02:34:34',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20656,'4000','121672616049','2023-01-02 02:34:34',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20657,'1110','121672616081','2023-01-02 02:35:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20658,'1110','121672616081','2023-01-02 02:35:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20659,'5500','121672616081','2023-01-02 02:35:17',362.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20660,'1000','121672616081','2023-01-02 02:35:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20661,'4000','121672616081','2023-01-02 02:35:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20662,'4000','121672616081','2023-01-02 02:35:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20663,'1110','121672616156','2023-01-02 03:29:36',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(20664,'5500','121672616156','2023-01-02 03:29:36',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20665,'1000','121672616156','2023-01-02 03:29:36',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20666,'4000','121672616156','2023-01-02 03:29:36',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(20667,'1110','121672651607','2023-01-02 12:26:59',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(20668,'5500','121672651607','2023-01-02 12:26:59',410.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20669,'1000','121672651607','2023-01-02 12:26:59',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20670,'4000','121672651607','2023-01-02 12:26:59',NULL,600.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(20671,'1110','121672651727','2023-01-02 12:29:10',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20672,'1110','121672651727','2023-01-02 12:29:10',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20673,'5500','121672651727','2023-01-02 12:29:10',343.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20674,'1000','121672651727','2023-01-02 12:29:10',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20675,'4000','121672651727','2023-01-02 12:29:10',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20676,'4000','121672651727','2023-01-02 12:29:10',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20677,'1110','121672651781','2023-01-02 12:29:52',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20678,'5500','121672651781','2023-01-02 12:29:52',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20679,'1000','121672651781','2023-01-02 12:29:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20680,'4000','121672651781','2023-01-02 12:29:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20681,'1110','121672662328','2023-01-02 15:25:42',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20682,'5500','121672662328','2023-01-02 15:25:42',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20683,'1000','121672662328','2023-01-02 15:25:42',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20684,'4000','121672662328','2023-01-02 15:25:42',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20685,'1110','121672662350','2023-01-02 15:31:18',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20686,'5500','121672662350','2023-01-02 15:31:18',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20687,'1000','121672662350','2023-01-02 15:31:18',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20688,'4000','121672662350','2023-01-02 15:31:18',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20689,'1110','121672662682','2023-01-02 15:51:16',NULL,810.00,'','12','1','Inventory sold','1','','sales','6008165018186','','No',NULL,NULL,''),(20690,'5500','121672662682','2023-01-02 15:51:16',810.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20691,'1000','121672662682','2023-01-02 15:51:16',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20692,'4000','121672662682','2023-01-02 15:51:16',NULL,1200.00,'','12','1','Good sold','1','','sales','6008165018186','','No',NULL,NULL,''),(20693,'1110','121672664287','2023-01-02 19:49:01',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20694,'5500','121672664287','2023-01-02 19:49:01',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20695,'1000','121672664287','2023-01-02 19:49:01',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20696,'4000','121672664287','2023-01-02 19:49:01',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20697,'1110','121672678151','2023-01-02 19:49:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20698,'5500','121672678151','2023-01-02 19:49:24',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20699,'1000','121672678151','2023-01-02 19:49:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20700,'4000','121672678151','2023-01-02 19:49:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20701,'1110','121672683744','2023-01-02 21:24:25',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(20702,'1110','121672683744','2023-01-02 21:24:25',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20703,'5500','121672683744','2023-01-02 21:24:25',355.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20704,'1000','121672683744','2023-01-02 21:24:25',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20705,'4000','121672683744','2023-01-02 21:24:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(20706,'4000','121672683744','2023-01-02 21:24:25',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20707,'1110','121672683955','2023-01-02 21:26:25',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20708,'1110','121672683955','2023-01-02 21:26:25',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20709,'5500','121672683955','2023-01-02 21:26:25',830.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20710,'1000','121672683955','2023-01-02 21:26:25',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20711,'4000','121672683955','2023-01-02 21:26:25',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(20712,'4000','121672683955','2023-01-02 21:26:25',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20713,'1110','121672684168','2023-01-02 21:29:51',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20714,'5500','121672684168','2023-01-02 21:29:51',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20715,'1000','121672684168','2023-01-02 21:29:51',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20716,'4000','121672684168','2023-01-02 21:29:51',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20717,'1110','121672684361','2023-01-02 22:07:04',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20718,'5500','121672684361','2023-01-02 22:07:04',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20719,'1000','121672684361','2023-01-02 22:07:04',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20720,'4000','121672684361','2023-01-02 22:07:04',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20721,'1110','121672686506','2023-01-02 22:09:50',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(20722,'1110','121672686506','2023-01-02 22:09:50',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20723,'5500','121672686506','2023-01-02 22:09:50',250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20724,'1000','121672686506','2023-01-02 22:09:50',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20725,'4000','121672686506','2023-01-02 22:09:50',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(20726,'4000','121672686506','2023-01-02 22:09:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20727,'1110','121672686596','2023-01-02 22:10:06',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(20728,'5500','121672686596','2023-01-02 22:10:06',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20729,'1000','121672686596','2023-01-02 22:10:06',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20730,'4000','121672686596','2023-01-02 22:10:06',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(20731,'1110','121672688198','2023-01-02 22:36:54',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20732,'1110','121672688198','2023-01-02 22:36:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20733,'5500','121672688198','2023-01-02 22:36:54',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20734,'1000','121672688198','2023-01-02 22:36:54',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20735,'4000','121672688198','2023-01-02 22:36:54',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(20736,'4000','121672688198','2023-01-02 22:36:54',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20737,'1110','121672694669','2023-01-03 00:24:41',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(20738,'5500','121672694669','2023-01-03 00:24:41',3540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20739,'1000','121672694669','2023-01-03 00:24:41',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20740,'4000','121672694669','2023-01-03 00:24:41',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(20741,'1110','121672694800','2023-01-03 00:26:55',NULL,708.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(20742,'5500','121672694800','2023-01-03 00:26:55',708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20743,'1000','121672694800','2023-01-03 00:26:55',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20744,'4000','121672694800','2023-01-03 00:26:55',NULL,1000.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(20745,'1110','121672697583','2023-01-03 01:15:26',NULL,970.00,'','12','1','Inventory sold','1','','sales','8906120780179','','No',NULL,NULL,''),(20746,'5500','121672697583','2023-01-03 01:15:26',970.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20747,'1000','121672697583','2023-01-03 01:15:26',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20748,'4000','121672697583','2023-01-03 01:15:26',NULL,1600.00,'','12','1','Good sold','1','','sales','8906120780179','','No',NULL,NULL,''),(20749,'1110','121672697739','2023-01-03 01:58:18',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20750,'5500','121672697739','2023-01-03 01:58:18',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20751,'1000','121672697739','2023-01-03 01:58:18',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20752,'4000','121672697739','2023-01-03 01:58:18',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20753,'1110','121672730065','2023-01-03 10:21:34',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20754,'5500','121672730065','2023-01-03 10:21:34',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20755,'1000','121672730065','2023-01-03 10:21:34',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20756,'4000','121672730065','2023-01-03 10:21:34',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20757,'1110','121672754032','2023-01-03 16:55:02',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20758,'1110','121672754032','2023-01-03 16:55:02',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(20759,'5500','121672754032','2023-01-03 16:55:02',607.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20760,'1000','121672754032','2023-01-03 16:55:02',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20761,'4000','121672754032','2023-01-03 16:55:02',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20762,'4000','121672754032','2023-01-03 16:55:02',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(20763,'1110','121672754115','2023-01-03 16:55:25',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20764,'5500','121672754115','2023-01-03 16:55:25',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20765,'1000','121672754115','2023-01-03 16:55:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20766,'4000','121672754115','2023-01-03 16:55:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20767,'1110','121672754130','2023-01-03 16:55:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20768,'5500','121672754130','2023-01-03 16:55:39',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20769,'1000','121672754130','2023-01-03 16:55:39',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20770,'4000','121672754130','2023-01-03 16:55:39',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20771,'1110','121672754143','2023-01-03 18:28:29',NULL,580.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20772,'1110','121672754143','2023-01-03 18:28:29',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20773,'1110','121672754143','2023-01-03 18:28:29',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20774,'1110','121672754143','2023-01-03 18:28:29',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20775,'5500','121672754143','2023-01-03 18:28:29',850.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20776,'1000','121672754143','2023-01-03 18:28:29',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20777,'4000','121672754143','2023-01-03 18:28:29',NULL,800.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20778,'4000','121672754143','2023-01-03 18:28:29',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20779,'4000','121672754143','2023-01-03 18:28:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20780,'4000','121672754143','2023-01-03 18:28:29',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20781,'1110','121672759788','2023-01-03 18:32:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20782,'1110','121672759788','2023-01-03 18:32:12',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20783,'5500','121672759788','2023-01-03 18:32:12',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20784,'1000','121672759788','2023-01-03 18:32:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20785,'4000','121672759788','2023-01-03 18:32:12',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20786,'4000','121672759788','2023-01-03 18:32:12',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20787,'1110','121672759941','2023-01-03 19:07:57',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20788,'5500','121672759941','2023-01-03 19:07:57',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20789,'1000','121672759941','2023-01-03 19:07:57',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20790,'4000','121672759941','2023-01-03 19:07:57',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20791,'1110','121672762086','2023-01-03 19:24:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20792,'5500','121672762086','2023-01-03 19:24:53',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20793,'1000','121672762086','2023-01-03 19:24:53',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20794,'4000','121672762086','2023-01-03 19:24:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20795,'1110','121672775960','2023-01-03 22:59:38',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(20796,'5500','121672775960','2023-01-03 22:59:38',268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20797,'1000','121672775960','2023-01-03 22:59:38',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20798,'4000','121672775960','2023-01-03 22:59:38',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(20799,'1110','121672778614','2023-01-03 23:44:07',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(20800,'5500','121672778614','2023-01-03 23:44:07',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20801,'1000','121672778614','2023-01-03 23:44:07',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20802,'4000','121672778614','2023-01-03 23:44:07',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(20803,'1110','121672780570','2023-01-04 00:16:33',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20804,'5500','121672780570','2023-01-04 00:16:33',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20805,'1000','121672780570','2023-01-04 00:16:33',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20806,'4000','121672780570','2023-01-04 00:16:33',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(20807,'1110','121672786771','2023-01-04 02:30:02',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(20808,'1110','121672786771','2023-01-04 02:30:02',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(20809,'1110','121672786771','2023-01-04 02:30:02',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20810,'1110','121672786771','2023-01-04 02:30:02',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(20811,'1110','121672786771','2023-01-04 02:30:02',NULL,1780.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20812,'1110','121672786771','2023-01-04 02:30:02',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20813,'5500','121672786771','2023-01-04 02:30:02',5878.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20814,'1000','121672786771','2023-01-04 02:30:02',8980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20815,'4000','121672786771','2023-01-04 02:30:02',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(20816,'4000','121672786771','2023-01-04 02:30:02',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(20817,'4000','121672786771','2023-01-04 02:30:02',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20818,'4000','121672786771','2023-01-04 02:30:02',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(20819,'4000','121672786771','2023-01-04 02:30:02',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(20820,'4000','121672786771','2023-01-04 02:30:02',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20821,'1110','121672788733','2023-01-04 05:03:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20822,'1110','121672788733','2023-01-04 05:03:33',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20823,'5500','121672788733','2023-01-04 05:03:33',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20824,'1000','121672788733','2023-01-04 05:03:33',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20825,'4000','121672788733','2023-01-04 05:03:33',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20826,'4000','121672788733','2023-01-04 05:03:33',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(20827,'1110','121672797821','2023-01-04 05:05:27',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(20828,'1110','121672797821','2023-01-04 05:05:27',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20829,'1110','121672797821','2023-01-04 05:05:27',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20830,'5500','121672797821','2023-01-04 05:05:27',388.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20831,'1000','121672797821','2023-01-04 05:05:27',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20832,'4000','121672797821','2023-01-04 05:05:27',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(20833,'4000','121672797821','2023-01-04 05:05:27',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20834,'4000','121672797821','2023-01-04 05:05:27',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20835,'1110','121672814853','2023-01-04 09:49:35',NULL,590.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(20836,'5500','121672814853','2023-01-04 09:49:35',590.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20837,'1000','121672814853','2023-01-04 09:49:35',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20838,'4000','121672814853','2023-01-04 09:49:35',NULL,900.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(20839,'1110','121672836109','2023-01-04 15:45:01',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20840,'5500','121672836109','2023-01-04 15:45:01',308.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20841,'1000','121672836109','2023-01-04 15:45:01',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20842,'4000','121672836109','2023-01-04 15:45:01',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20843,'1110','121672836307','2023-01-04 18:02:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20844,'5500','121672836307','2023-01-04 18:02:37',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20845,'1000','121672836307','2023-01-04 18:02:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20846,'4000','121672836307','2023-01-04 18:02:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20847,'1110','121672844566','2023-01-04 18:12:13',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(20848,'5500','121672844566','2023-01-04 18:12:13',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20849,'1000','121672844566','2023-01-04 18:12:13',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20850,'4000','121672844566','2023-01-04 18:12:13',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(20851,'1110','121672845138','2023-01-04 19:01:49',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(20852,'5500','121672845138','2023-01-04 19:01:49',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20853,'1000','121672845138','2023-01-04 19:01:49',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20854,'4000','121672845138','2023-01-04 19:01:49',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(20855,'1110','121672848117','2023-01-04 20:13:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20856,'5500','121672848117','2023-01-04 20:13:00',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20857,'1000','121672848117','2023-01-04 20:13:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20858,'4000','121672848117','2023-01-04 20:13:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20859,'1110','121672852384','2023-01-04 21:45:47',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(20860,'1110','121672852384','2023-01-04 21:45:47',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20861,'1110','121672852384','2023-01-04 21:45:47',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(20862,'1110','121672852384','2023-01-04 21:45:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(20863,'5500','121672852384','2023-01-04 21:45:47',3046.94,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20864,'1000','121672852384','2023-01-04 21:45:47',4570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20865,'4000','121672852384','2023-01-04 21:45:47',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(20866,'4000','121672852384','2023-01-04 21:45:47',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20867,'4000','121672852384','2023-01-04 21:45:47',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(20868,'4000','121672852384','2023-01-04 21:45:47',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(20869,'1110','121672858146','2023-01-04 22:02:16',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(20870,'1110','121672858146','2023-01-04 22:02:16',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20871,'5500','121672858146','2023-01-04 22:02:16',2557.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20872,'1000','121672858146','2023-01-04 22:02:16',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20873,'4000','121672858146','2023-01-04 22:02:16',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(20874,'4000','121672858146','2023-01-04 22:02:16',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20875,'1110','121672858941','2023-01-04 22:57:07',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(20876,'5500','121672858941','2023-01-04 22:57:07',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20877,'1000','121672858941','2023-01-04 22:57:07',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20878,'4000','121672858941','2023-01-04 22:57:07',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(20879,'1110','121672862549','2023-01-04 23:05:17',NULL,1730.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(20880,'1110','121672862549','2023-01-04 23:05:17',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20881,'5500','121672862549','2023-01-04 23:05:17',2421.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20882,'1000','121672862549','2023-01-04 23:05:17',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20883,'4000','121672862549','2023-01-04 23:05:17',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(20884,'4000','121672862549','2023-01-04 23:05:17',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(20885,'1110','121672867150','2023-01-05 00:19:46',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(20886,'1110','121672867150','2023-01-05 00:19:46',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20887,'1110','121672867150','2023-01-05 00:19:46',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20888,'5500','121672867150','2023-01-05 00:19:46',1285.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20889,'1000','121672867150','2023-01-05 00:19:46',2360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20890,'4000','121672867150','2023-01-05 00:19:46',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(20891,'4000','121672867150','2023-01-05 00:19:46',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20892,'4000','121672867150','2023-01-05 00:19:46',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20893,'1110','121672867244','2023-01-05 00:54:13',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20894,'5500','121672867244','2023-01-05 00:54:13',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20895,'1000','121672867244','2023-01-05 00:54:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20896,'4000','121672867244','2023-01-05 00:54:13',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(20897,'1110','121672872420','2023-01-05 01:47:13',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20898,'5500','121672872420','2023-01-05 01:47:13',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20899,'1000','121672872420','2023-01-05 01:47:13',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20900,'4000','121672872420','2023-01-05 01:47:13',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(20901,'1110','121672872815','2023-01-05 01:53:45',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(20902,'1110','121672872815','2023-01-05 01:53:45',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20903,'5500','121672872815','2023-01-05 01:53:45',2703.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20904,'1000','121672872815','2023-01-05 01:53:45',4150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20905,'4000','121672872815','2023-01-05 01:53:45',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(20906,'4000','121672872815','2023-01-05 01:53:45',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(20907,'1110','121672872836','2023-01-05 03:20:41',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20908,'5500','121672872836','2023-01-05 03:20:41',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20909,'1000','121672872836','2023-01-05 03:20:41',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20910,'4000','121672872836','2023-01-05 03:20:41',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20911,'1110','121672878050','2023-01-05 05:07:15',NULL,870.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20912,'1110','121672878050','2023-01-05 05:07:15',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20913,'1110','121672878050','2023-01-05 05:07:15',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20914,'5500','121672878050','2023-01-05 05:07:15',1185.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20915,'1000','121672878050','2023-01-05 05:07:15',1890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20916,'4000','121672878050','2023-01-05 05:07:15',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20917,'4000','121672878050','2023-01-05 05:07:15',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20918,'4000','121672878050','2023-01-05 05:07:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20919,'1110','121672884444','2023-01-05 05:08:15',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20920,'5500','121672884444','2023-01-05 05:08:15',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20921,'1000','121672884444','2023-01-05 05:08:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20922,'4000','121672884444','2023-01-05 05:08:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20923,'1110','121672884501','2023-01-05 05:11:35',NULL,870.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20924,'1110','121672884501','2023-01-05 05:11:35',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20925,'5500','121672884501','2023-01-05 05:11:35',995.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20926,'1000','121672884501','2023-01-05 05:11:35',1640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20927,'4000','121672884501','2023-01-05 05:11:35',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20928,'4000','121672884501','2023-01-05 05:11:35',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20929,'1110','121672884701','2023-01-05 05:14:09',NULL,870.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20930,'1110','121672884701','2023-01-05 05:14:09',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20931,'1110','121672884701','2023-01-05 05:14:09',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20932,'5500','121672884701','2023-01-05 05:14:09',1101.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20933,'1000','121672884701','2023-01-05 05:14:09',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20934,'4000','121672884701','2023-01-05 05:14:09',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(20935,'4000','121672884701','2023-01-05 05:14:09',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(20936,'4000','121672884701','2023-01-05 05:14:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(20937,'1110','121672884854','2023-01-05 06:21:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20938,'1110','121672884854','2023-01-05 06:21:30',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20939,'1110','121672884854','2023-01-05 06:21:30',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20940,'5500','121672884854','2023-01-05 06:21:30',738.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20941,'1000','121672884854','2023-01-05 06:21:30',1120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20942,'4000','121672884854','2023-01-05 06:21:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(20943,'4000','121672884854','2023-01-05 06:21:30',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20944,'4000','121672884854','2023-01-05 06:21:30',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(20945,'1110','121672912586','2023-01-05 12:57:23',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20946,'1110','121672912586','2023-01-05 12:57:23',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(20947,'5500','121672912586','2023-01-05 12:57:23',2364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20948,'1000','121672912586','2023-01-05 12:57:23',3260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20949,'4000','121672912586','2023-01-05 12:57:23',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(20950,'4000','121672912586','2023-01-05 12:57:23',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(20951,'1110','121672922627','2023-01-05 15:43:57',NULL,390.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20952,'5500','121672922627','2023-01-05 15:43:57',390.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20953,'1000','121672922627','2023-01-05 15:43:57',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20954,'4000','121672922627','2023-01-05 15:43:57',NULL,540.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20955,'1110','121672922641','2023-01-05 16:31:33',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20956,'5500','121672922641','2023-01-05 16:31:33',308.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20957,'1000','121672922641','2023-01-05 16:31:33',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20958,'4000','121672922641','2023-01-05 16:31:33',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(20959,'1110','121672932233','2023-01-05 18:24:06',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20960,'5500','121672932233','2023-01-05 18:24:06',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20961,'1000','121672932233','2023-01-05 18:24:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20962,'4000','121672932233','2023-01-05 18:24:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20963,'1110','121672932251','2023-01-05 18:37:57',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20964,'1110','121672932251','2023-01-05 18:37:57',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(20965,'1110','121672932251','2023-01-05 18:37:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(20966,'1110','121672932251','2023-01-05 18:37:57',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20967,'5500','121672932251','2023-01-05 18:37:57',856.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20968,'1000','121672932251','2023-01-05 18:37:57',1290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20969,'4000','121672932251','2023-01-05 18:37:57',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20970,'4000','121672932251','2023-01-05 18:37:57',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(20971,'4000','121672932251','2023-01-05 18:37:57',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(20972,'4000','121672932251','2023-01-05 18:37:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(20973,'1110','121672940543','2023-01-05 20:43:58',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(20974,'1110','121672940543','2023-01-05 20:43:58',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20975,'5500','121672940543','2023-01-05 20:43:58',980.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20976,'1000','121672940543','2023-01-05 20:43:58',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20977,'4000','121672940543','2023-01-05 20:43:58',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(20978,'4000','121672940543','2023-01-05 20:43:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(20979,'1110','121672940720','2023-01-05 21:13:02',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20980,'1110','121672940720','2023-01-05 21:13:02',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20981,'5500','121672940720','2023-01-05 21:13:02',1132.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20982,'1000','121672940720','2023-01-05 21:13:02',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20983,'4000','121672940720','2023-01-05 21:13:02',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(20984,'4000','121672940720','2023-01-05 21:13:02',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(20985,'1110','121672953553','2023-01-06 00:21:44',NULL,2834.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(20986,'5500','121672953553','2023-01-06 00:21:44',2834.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20987,'1000','121672953553','2023-01-06 00:21:44',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20988,'4000','121672953553','2023-01-06 00:21:44',NULL,3800.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(20989,'1110','121672953710','2023-01-06 00:22:31',NULL,1088.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20990,'5500','121672953710','2023-01-06 00:22:31',1088.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20991,'1000','121672953710','2023-01-06 00:22:31',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20992,'4000','121672953710','2023-01-06 00:22:31',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(20993,'1110','121672953945','2023-01-06 00:34:30',NULL,708.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(20994,'1110','121672953945','2023-01-06 00:34:30',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(20995,'1110','121672953945','2023-01-06 00:34:30',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(20996,'1110','121672953945','2023-01-06 00:34:30',NULL,184.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(20997,'5500','121672953945','2023-01-06 00:34:30',2424.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(20998,'1000','121672953945','2023-01-06 00:34:30',3760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(20999,'4000','121672953945','2023-01-06 00:34:30',NULL,1000.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(21000,'4000','121672953945','2023-01-06 00:34:30',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21001,'4000','121672953945','2023-01-06 00:34:30',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(21002,'4000','121672953945','2023-01-06 00:34:30',NULL,360.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(21003,'1110','121672955239','2023-01-06 01:05:58',NULL,3015.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(21004,'5500','121672955239','2023-01-06 01:05:58',3015.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21005,'1000','121672955239','2023-01-06 01:05:58',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21006,'4000','121672955239','2023-01-06 01:05:58',NULL,4500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(21007,'1110','121672956372','2023-01-06 01:06:38',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21008,'1110','121672956372','2023-01-06 01:06:38',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21009,'5500','121672956372','2023-01-06 01:06:38',394.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21010,'1000','121672956372','2023-01-06 01:06:38',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21011,'4000','121672956372','2023-01-06 01:06:38',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21012,'4000','121672956372','2023-01-06 01:06:38',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21013,'1110','121672956485','2023-01-06 01:22:08',NULL,1959.00,'','12','1','Inventory sold','1','','sales','6161101604994','','No',NULL,NULL,''),(21014,'1110','121672956485','2023-01-06 01:22:08',NULL,1976.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21015,'5500','121672956485','2023-01-06 01:22:08',3935.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21016,'1000','121672956485','2023-01-06 01:22:08',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21017,'4000','121672956485','2023-01-06 01:22:08',NULL,3300.00,'','12','1','Good sold','1','','sales','6161101604994','','No',NULL,NULL,''),(21018,'4000','121672956485','2023-01-06 01:22:08',NULL,3200.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21019,'1110','121672960892','2023-01-06 02:22:00',NULL,2640.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(21020,'5500','121672960892','2023-01-06 02:22:00',2640.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21021,'1000','121672960892','2023-01-06 02:22:00',3600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21022,'4000','121672960892','2023-01-06 02:22:00',NULL,3600.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(21023,'1110','121672961044','2023-01-06 02:24:28',NULL,1136.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(21024,'5500','121672961044','2023-01-06 02:24:28',1136.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21025,'1000','121672961044','2023-01-06 02:24:28',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21026,'4000','121672961044','2023-01-06 02:24:28',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(21027,'1110','121672961212','2023-01-06 02:27:10',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(21028,'5500','121672961212','2023-01-06 02:27:10',787.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21029,'1000','121672961212','2023-01-06 02:27:10',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21030,'4000','121672961212','2023-01-06 02:27:10',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(21031,'1110','121672961315','2023-01-06 02:29:06',NULL,1318.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(21032,'5500','121672961315','2023-01-06 02:29:06',1318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21033,'1000','121672961315','2023-01-06 02:29:06',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21034,'4000','121672961315','2023-01-06 02:29:06',NULL,2000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(21035,'1110','121672961495','2023-01-06 02:31:55',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(21036,'5500','121672961495','2023-01-06 02:31:55',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21037,'1000','121672961495','2023-01-06 02:31:55',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21038,'4000','121672961495','2023-01-06 02:31:55',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(21039,'1110','121672961557','2023-01-06 02:32:52',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(21040,'5500','121672961557','2023-01-06 02:32:52',719.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21041,'1000','121672961557','2023-01-06 02:32:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21042,'4000','121672961557','2023-01-06 02:32:52',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(21043,'1110','121672961921','2023-01-06 02:39:16',NULL,1905.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(21044,'5500','121672961921','2023-01-06 02:39:16',1905.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21045,'1000','121672961921','2023-01-06 02:39:16',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21046,'4000','121672961921','2023-01-06 02:39:16',NULL,2550.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(21047,'1110','121672961962','2023-01-06 02:39:50',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(21048,'5500','121672961962','2023-01-06 02:39:50',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21049,'1000','121672961962','2023-01-06 02:39:50',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21050,'4000','121672961962','2023-01-06 02:39:50',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(21051,'1110','121672962032','2023-01-06 02:41:00',NULL,1329.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(21052,'5500','121672962032','2023-01-06 02:41:00',1329.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21053,'1000','121672962032','2023-01-06 02:41:00',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21054,'4000','121672962032','2023-01-06 02:41:00',NULL,2250.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(21055,'1110','121672962264','2023-01-06 02:44:38',NULL,4500.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(21056,'5500','121672962264','2023-01-06 02:44:38',4500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21057,'1000','121672962264','2023-01-06 02:44:38',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21058,'4000','121672962264','2023-01-06 02:44:38',NULL,6000.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(21059,'1110','121672962764','2023-01-06 02:52:58',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001274','','No',NULL,NULL,''),(21060,'5500','121672962764','2023-01-06 02:52:58',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21061,'1000','121672962764','2023-01-06 02:52:58',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21062,'4000','121672962764','2023-01-06 02:52:58',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001274','','No',NULL,NULL,''),(21063,'1110','121672962786','2023-01-06 02:53:21',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001182','','No',NULL,NULL,''),(21064,'5500','121672962786','2023-01-06 02:53:21',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21065,'1000','121672962786','2023-01-06 02:53:21',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21066,'4000','121672962786','2023-01-06 02:53:21',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001182','','No',NULL,NULL,''),(21067,'1110','121672962847','2023-01-06 02:54:56',NULL,931.00,'','12','1','Inventory sold','1','','sales','4820000946902','','No',NULL,NULL,''),(21068,'5500','121672962847','2023-01-06 02:54:56',931.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21069,'1000','121672962847','2023-01-06 02:54:56',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21070,'4000','121672962847','2023-01-06 02:54:56',NULL,1700.00,'','12','1','Good sold','1','','sales','4820000946902','','No',NULL,NULL,''),(21071,'1110','121672962928','2023-01-06 02:55:51',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(21072,'5500','121672962928','2023-01-06 02:55:51',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21073,'1000','121672962928','2023-01-06 02:55:51',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21074,'4000','121672962928','2023-01-06 02:55:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(21075,'1110','121672962996','2023-01-06 02:57:38',NULL,2100.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(21076,'5500','121672962996','2023-01-06 02:57:38',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21077,'1000','121672962996','2023-01-06 02:57:38',4200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21078,'4000','121672962996','2023-01-06 02:57:38',NULL,4200.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(21079,'1110','121672963534','2023-01-06 03:07:00',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323413530','','No',NULL,NULL,''),(21080,'5500','121672963534','2023-01-06 03:07:00',1325.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21081,'1000','121672963534','2023-01-06 03:07:00',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21082,'4000','121672963534','2023-01-06 03:07:00',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323413530','','No',NULL,NULL,''),(21083,'1110','121672963811','2023-01-06 03:10:34',NULL,865.00,'','12','1','Inventory sold','1','','sales','6001506908146','','No',NULL,NULL,''),(21084,'5500','121672963811','2023-01-06 03:10:34',865.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21085,'1000','121672963811','2023-01-06 03:10:34',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21086,'4000','121672963811','2023-01-06 03:10:34',NULL,1500.00,'','12','1','Good sold','1','','sales','6001506908146','','No',NULL,NULL,''),(21087,'1110','121672963838','2023-01-06 03:11:18',NULL,4440.00,'','12','1','Inventory sold','1','','sales','6002886000277','','No',NULL,NULL,''),(21088,'5500','121672963838','2023-01-06 03:11:18',4440.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21089,'1000','121672963838','2023-01-06 03:11:18',7600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21090,'4000','121672963838','2023-01-06 03:11:18',NULL,7600.00,'','12','1','Good sold','1','','sales','6002886000277','','No',NULL,NULL,''),(21091,'1110','121672963884','2023-01-06 03:12:07',NULL,2300.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(21092,'5500','121672963884','2023-01-06 03:12:07',2300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21093,'1000','121672963884','2023-01-06 03:12:07',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21094,'4000','121672963884','2023-01-06 03:12:07',NULL,3200.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(21095,'1110','121672963992','2023-01-06 03:13:45',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(21096,'5500','121672963992','2023-01-06 03:13:45',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21097,'1000','121672963992','2023-01-06 03:13:45',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21098,'4000','121672963992','2023-01-06 03:13:45',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(21099,'1110','121672964430','2023-01-06 03:20:52',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4820071841168','','No',NULL,NULL,''),(21100,'5500','121672964430','2023-01-06 03:20:52',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21101,'1000','121672964430','2023-01-06 03:20:52',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21102,'4000','121672964430','2023-01-06 03:20:52',NULL,2200.00,'','12','1','Good sold','1','','sales','4820071841168','','No',NULL,NULL,''),(21103,'1110','121672964942','2023-01-06 03:31:15',NULL,1780.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(21104,'5500','121672964942','2023-01-06 03:31:15',1780.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21105,'1000','121672964942','2023-01-06 03:31:15',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21106,'4000','121672964942','2023-01-06 03:31:15',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(21107,'1110','121672965145','2023-01-06 03:33:04',NULL,11370.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(21108,'5500','121672965145','2023-01-06 03:33:04',11370.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21109,'1000','121672965145','2023-01-06 03:33:04',15400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21110,'4000','121672965145','2023-01-06 03:33:04',NULL,15400.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(21111,'1110','121672965193','2023-01-06 03:33:39',NULL,9168.00,'','12','1','Inventory sold','1','','sales','5000267173139','','No',NULL,NULL,''),(21112,'5500','121672965193','2023-01-06 03:33:39',9168.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21113,'1000','121672965193','2023-01-06 03:33:39',13500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21114,'4000','121672965193','2023-01-06 03:33:39',NULL,13500.00,'','12','1','Good sold','1','','sales','5000267173139','','No',NULL,NULL,''),(21115,'1110','121672965225','2023-01-06 03:36:03',NULL,5900.00,'','12','1','Inventory sold','1','','sales','082184087008','','No',NULL,NULL,''),(21116,'5500','121672965225','2023-01-06 03:36:03',5900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21117,'1000','121672965225','2023-01-06 03:36:03',8000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21118,'4000','121672965225','2023-01-06 03:36:03',NULL,8000.00,'','12','1','Good sold','1','','sales','082184087008','','No',NULL,NULL,''),(21119,'1110','121672965366','2023-01-06 03:37:10',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(21120,'5500','121672965366','2023-01-06 03:37:10',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21121,'1000','121672965366','2023-01-06 03:37:10',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21122,'4000','121672965366','2023-01-06 03:37:10',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(21123,'1110','121672965434','2023-01-06 03:37:40',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(21124,'5500','121672965434','2023-01-06 03:37:40',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21125,'1000','121672965434','2023-01-06 03:37:40',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21126,'4000','121672965434','2023-01-06 03:37:40',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(21127,'1110','121672965464','2023-01-06 03:40:11',NULL,3250.00,'','12','1','Inventory sold','1','','sales','080432400432','','No',NULL,NULL,''),(21128,'5500','121672965464','2023-01-06 03:40:11',3250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21129,'1000','121672965464','2023-01-06 03:40:11',4800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21130,'4000','121672965464','2023-01-06 03:40:11',NULL,4800.00,'','12','1','Good sold','1','','sales','080432400432','','No',NULL,NULL,''),(21131,'1110','121672965730','2023-01-06 03:42:29',NULL,3104.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(21132,'5500','121672965730','2023-01-06 03:42:29',3104.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21133,'1000','121672965730','2023-01-06 03:42:29',4200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21134,'4000','121672965730','2023-01-06 03:42:29',NULL,4200.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(21135,'1110','121672966287','2023-01-06 03:51:55',NULL,22250.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(21136,'5500','121672966287','2023-01-06 03:51:55',22250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21137,'1000','121672966287','2023-01-06 03:51:55',32500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21138,'4000','121672966287','2023-01-06 03:51:55',NULL,32500.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(21139,'1110','121672967013','2023-01-06 04:04:01',NULL,732.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(21140,'5500','121672967013','2023-01-06 04:04:01',732.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21141,'1000','121672967013','2023-01-06 04:04:01',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21142,'4000','121672967013','2023-01-06 04:04:01',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(21143,'1110','121672967413','2023-01-06 04:10:41',NULL,999.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(21144,'1110','121672967413','2023-01-06 04:10:41',NULL,1916.00,'','12','1','Inventory sold','1','','sales','5011013100132','','No',NULL,NULL,''),(21145,'5500','121672967413','2023-01-06 04:10:41',2915.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21146,'1000','121672967413','2023-01-06 04:10:41',4150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21147,'4000','121672967413','2023-01-06 04:10:41',NULL,1350.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(21148,'4000','121672967413','2023-01-06 04:10:41',NULL,2800.00,'','12','1','Good sold','1','','sales','5011013100132','','No',NULL,NULL,''),(21149,'1110','121672967469','2023-01-06 04:11:27',NULL,1440.00,'','12','1','Inventory sold','1','','sales','7174000401020','','No',NULL,NULL,''),(21150,'5500','121672967469','2023-01-06 04:11:27',1440.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21151,'1000','121672967469','2023-01-06 04:11:27',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21152,'4000','121672967469','2023-01-06 04:11:27',NULL,3000.00,'','12','1','Good sold','1','','sales','7174000401020','','No',NULL,NULL,''),(21153,'1110','121672967656','2023-01-06 04:15:02',NULL,2004.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(21154,'5500','121672967656','2023-01-06 04:15:02',2004.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21155,'1000','121672967656','2023-01-06 04:15:02',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21156,'4000','121672967656','2023-01-06 04:15:02',NULL,3200.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(21157,'1110','121672967776','2023-01-06 04:16:39',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(21158,'5500','121672967776','2023-01-06 04:16:39',1002.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21159,'1000','121672967776','2023-01-06 04:16:39',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21160,'4000','121672967776','2023-01-06 04:16:39',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(21161,'1110','121672967973','2023-01-06 04:19:44',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(21162,'5500','121672967973','2023-01-06 04:19:44',3850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21163,'1000','121672967973','2023-01-06 04:19:44',5600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21164,'4000','121672967973','2023-01-06 04:19:44',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(21165,'1110','121672968096','2023-01-06 04:22:00',NULL,1940.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21166,'5500','121672968096','2023-01-06 04:22:00',1940.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21167,'1000','121672968096','2023-01-06 04:22:00',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21168,'4000','121672968096','2023-01-06 04:22:00',NULL,2750.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21169,'1110','121672968240','2023-01-06 04:24:17',NULL,2344.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(21170,'5500','121672968240','2023-01-06 04:24:17',2344.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21171,'1000','121672968240','2023-01-06 04:24:17',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21172,'4000','121672968240','2023-01-06 04:24:17',NULL,3400.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(21173,'1110','121672968347','2023-01-06 04:26:04',NULL,4440.00,'','12','1','Inventory sold','1','','sales','5000291025930','','No',NULL,NULL,''),(21174,'5500','121672968347','2023-01-06 04:26:04',4440.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21175,'1000','121672968347','2023-01-06 04:26:04',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21176,'4000','121672968347','2023-01-06 04:26:04',NULL,6000.00,'','12','1','Good sold','1','','sales','5000291025930','','No',NULL,NULL,''),(21177,'1110','121672968439','2023-01-06 04:27:42',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(21178,'5500','121672968439','2023-01-06 04:27:42',2760.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21179,'1000','121672968439','2023-01-06 04:27:42',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21180,'4000','121672968439','2023-01-06 04:27:42',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(21181,'1110','121672968606','2023-01-06 04:30:40',NULL,16000.00,'','12','1','Inventory sold','1','','sales','5000281016689','','No',NULL,NULL,''),(21182,'1110','121672968606','2023-01-06 04:30:40',NULL,6762.00,'','12','1','Inventory sold','1','','sales','5000291021925','','No',NULL,NULL,''),(21183,'5500','121672968606','2023-01-06 04:30:40',22762.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21184,'1000','121672968606','2023-01-06 04:30:40',30600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21185,'4000','121672968606','2023-01-06 04:30:40',NULL,21600.00,'','12','1','Good sold','1','','sales','5000281016689','','No',NULL,NULL,''),(21186,'4000','121672968606','2023-01-06 04:30:40',NULL,9000.00,'','12','1','Good sold','1','','sales','5000291021925','','No',NULL,NULL,''),(21187,'1110','121672968647','2023-01-06 04:31:41',NULL,250.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(21188,'5500','121672968647','2023-01-06 04:31:41',250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21189,'1000','121672968647','2023-01-06 04:31:41',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21190,'4000','121672968647','2023-01-06 04:31:41',NULL,400.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(21191,'1110','121672968706','2023-01-06 04:32:25',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(21192,'1110','121672968706','2023-01-06 04:32:25',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(21193,'5500','121672968706','2023-01-06 04:32:25',193.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21194,'1000','121672968706','2023-01-06 04:32:25',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21195,'4000','121672968706','2023-01-06 04:32:25',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(21196,'4000','121672968706','2023-01-06 04:32:25',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(21197,'1110','121672969311','2023-01-06 04:42:13',NULL,590.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(21198,'5500','121672969311','2023-01-06 04:42:13',590.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21199,'1000','121672969311','2023-01-06 04:42:13',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21200,'4000','121672969311','2023-01-06 04:42:13',NULL,900.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(21201,'1110','121672969466','2023-01-06 04:44:41',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(21202,'5500','121672969466','2023-01-06 04:44:41',354.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21203,'1000','121672969466','2023-01-06 04:44:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21204,'4000','121672969466','2023-01-06 04:44:41',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(21205,'1110','121672969548','2023-01-06 04:46:09',NULL,954.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(21206,'5500','121672969548','2023-01-06 04:46:09',954.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21207,'1000','121672969548','2023-01-06 04:46:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21208,'4000','121672969548','2023-01-06 04:46:09',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(21209,'1110','121672970750','2023-01-06 05:06:09',NULL,632.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(21210,'5500','121672970750','2023-01-06 05:06:09',632.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21211,'1000','121672970750','2023-01-06 05:06:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21212,'4000','121672970750','2023-01-06 05:06:09',NULL,1000.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(21213,'1110','121672970790','2023-01-06 05:06:52',NULL,128.00,'','12','1','Inventory sold','1','','sales','5449000014535','','No',NULL,NULL,''),(21214,'5500','121672970790','2023-01-06 05:06:52',128.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21215,'1000','121672970790','2023-01-06 05:06:52',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21216,'4000','121672970790','2023-01-06 05:06:52',NULL,240.00,'','12','1','Good sold','1','','sales','5449000014535','','No',NULL,NULL,''),(21217,'1110','121672971045','2023-01-06 05:11:02',NULL,1380.00,'','12','1','Inventory sold','1','','sales','6008835000947','','No',NULL,NULL,''),(21218,'5500','121672971045','2023-01-06 05:11:02',1380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21219,'1000','121672971045','2023-01-06 05:11:02',2280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21220,'4000','121672971045','2023-01-06 05:11:02',NULL,2280.00,'','12','1','Good sold','1','','sales','6008835000947','','No',NULL,NULL,''),(21221,'1110','121672971067','2023-01-06 05:11:35',NULL,276.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(21222,'5500','121672971067','2023-01-06 05:11:35',276.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21223,'1000','121672971067','2023-01-06 05:11:35',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21224,'4000','121672971067','2023-01-06 05:11:35',NULL,540.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(21225,'1110','121672971099','2023-01-06 05:13:56',NULL,138.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(21226,'1110','121672971099','2023-01-06 05:13:56',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(21227,'1110','121672971099','2023-01-06 05:13:56',NULL,252.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(21228,'5500','121672971099','2023-01-06 05:13:56',439.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21229,'1000','121672971099','2023-01-06 05:13:56',1140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21230,'4000','121672971099','2023-01-06 05:13:56',NULL,480.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(21231,'4000','121672971099','2023-01-06 05:13:56',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(21232,'4000','121672971099','2023-01-06 05:13:56',NULL,560.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(21233,'1110','121673001460','2023-01-06 15:22:23',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21234,'1110','121673001460','2023-01-06 15:22:23',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(21235,'1110','121673001460','2023-01-06 15:22:23',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21236,'5500','121673001460','2023-01-06 15:22:23',1080.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21237,'1000','121673001460','2023-01-06 15:22:23',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21238,'4000','121673001460','2023-01-06 15:22:23',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21239,'4000','121673001460','2023-01-06 15:22:23',NULL,300.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(21240,'4000','121673001460','2023-01-06 15:22:23',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21241,'1110','121673007771','2023-01-06 15:23:03',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21242,'5500','121673007771','2023-01-06 15:23:03',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21243,'1000','121673007771','2023-01-06 15:23:03',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21244,'4000','121673007771','2023-01-06 15:23:03',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21245,'1110','121673007793','2023-01-06 15:23:33',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21246,'5500','121673007793','2023-01-06 15:23:33',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21247,'1000','121673007793','2023-01-06 15:23:33',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21248,'4000','121673007793','2023-01-06 15:23:33',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21249,'1110','121673007817','2023-01-06 15:24:15',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(21250,'1110','121673007817','2023-01-06 15:24:15',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(21251,'5500','121673007817','2023-01-06 15:24:15',751.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21252,'1000','121673007817','2023-01-06 15:24:15',1460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21253,'4000','121673007817','2023-01-06 15:24:15',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(21254,'4000','121673007817','2023-01-06 15:24:15',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(21255,'1110','121673007862','2023-01-06 16:05:27',NULL,2500.00,'','12','1','Inventory sold','1','','sales','6974929192181','','No',NULL,NULL,''),(21256,'5500','121673007862','2023-01-06 16:05:27',2500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21257,'1000','121673007862','2023-01-06 16:05:27',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21258,'4000','121673007862','2023-01-06 16:05:27',NULL,3250.00,'','12','1','Good sold','1','','sales','6974929192181','','No',NULL,NULL,''),(21259,'1110','121673010333','2023-01-06 16:41:55',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21260,'5500','121673010333','2023-01-06 16:41:55',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21261,'1000','121673010333','2023-01-06 16:41:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21262,'4000','121673010333','2023-01-06 16:41:55',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21263,'1110','121673012520','2023-01-06 16:55:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21264,'5500','121673012520','2023-01-06 16:55:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21265,'1000','121673012520','2023-01-06 16:55:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21266,'4000','121673012520','2023-01-06 16:55:53',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21267,'1110','121673013360','2023-01-06 17:22:26',NULL,741.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21268,'1110','121673013360','2023-01-06 17:22:26',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21269,'5500','121673013360','2023-01-06 17:22:26',815.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21270,'1000','121673013360','2023-01-06 17:22:26',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21271,'4000','121673013360','2023-01-06 17:22:26',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21272,'4000','121673013360','2023-01-06 17:22:26',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21273,'1110','121673015184','2023-01-06 17:27:31',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21274,'5500','121673015184','2023-01-06 17:27:31',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21275,'1000','121673015184','2023-01-06 17:27:31',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21276,'4000','121673015184','2023-01-06 17:27:31',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21277,'1110','121673015255','2023-01-06 17:41:31',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(21278,'5500','121673015255','2023-01-06 17:41:31',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21279,'1000','121673015255','2023-01-06 17:41:31',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21280,'4000','121673015255','2023-01-06 17:41:31',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(21281,'4000','121673015255','2023-01-06 17:43:02',200.00,NULL,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(21282,'1000','121673015255','2023-01-06 17:43:02',NULL,200.00,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(21283,'5500','121673015255','2023-01-06 17:43:02',NULL,150.45,'','12','1','Cost of goods returned','1','','sales','6161101602433','','No',NULL,NULL,''),(21284,'1110','121673015255','2023-01-06 17:43:02',150.45,NULL,'','12','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(21285,'1110','121673016382','2023-01-06 17:49:33',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21286,'5500','121673016382','2023-01-06 17:49:33',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21287,'1000','121673016382','2023-01-06 17:49:33',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21288,'4000','121673016382','2023-01-06 17:49:33',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21289,'1110','121673016577','2023-01-06 18:09:08',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(21290,'5500','121673016577','2023-01-06 18:09:08',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21291,'1000','121673016577','2023-01-06 18:09:08',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21292,'4000','121673016577','2023-01-06 18:09:08',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(21293,'1110','121673017753','2023-01-06 19:10:43',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21294,'5500','121673017753','2023-01-06 19:10:43',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21295,'1000','121673017753','2023-01-06 19:10:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21296,'4000','121673017753','2023-01-06 19:10:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21297,'1110','121673021866','2023-01-06 20:02:37',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21298,'1110','121673021866','2023-01-06 20:02:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(21299,'5500','121673021866','2023-01-06 20:02:37',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21300,'1000','121673021866','2023-01-06 20:02:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21301,'4000','121673021866','2023-01-06 20:02:37',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21302,'4000','121673021866','2023-01-06 20:02:37',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(21303,'1110','121673024710','2023-01-06 20:18:35',NULL,1050.00,'','12','1','Inventory sold','1','','sales','4058387004605','','No',NULL,NULL,''),(21304,'5500','121673024710','2023-01-06 20:18:35',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21305,'1000','121673024710','2023-01-06 20:18:35',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21306,'4000','121673024710','2023-01-06 20:18:35',NULL,1400.00,'','12','1','Good sold','1','','sales','4058387004605','','No',NULL,NULL,''),(21307,'1110','121673025521','2023-01-06 20:36:32',NULL,885.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(21308,'1110','121673025521','2023-01-06 20:36:32',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21309,'5500','121673025521','2023-01-06 20:36:32',1611.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21310,'1000','121673025521','2023-01-06 20:36:32',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21311,'4000','121673025521','2023-01-06 20:36:32',NULL,1350.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(21312,'4000','121673025521','2023-01-06 20:36:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21313,'1110','121673026684','2023-01-06 20:38:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21314,'5500','121673026684','2023-01-06 20:38:42',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21315,'1000','121673026684','2023-01-06 20:38:42',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21316,'4000','121673026684','2023-01-06 20:38:42',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21317,'1110','121673026791','2023-01-06 21:40:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21318,'1110','121673026791','2023-01-06 21:40:25',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21319,'5500','121673026791','2023-01-06 21:40:25',211.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21320,'1000','121673026791','2023-01-06 21:40:25',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21321,'4000','121673026791','2023-01-06 21:40:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21322,'4000','121673026791','2023-01-06 21:40:25',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21323,'1110','121673030429','2023-01-06 21:44:27',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21324,'1110','121673030429','2023-01-06 21:44:27',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21325,'1110','121673030429','2023-01-06 21:44:27',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21326,'1110','121673030429','2023-01-06 21:44:27',NULL,72.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(21327,'5500','121673030429','2023-01-06 21:44:27',683.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21328,'1000','121673030429','2023-01-06 21:44:27',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21329,'4000','121673030429','2023-01-06 21:44:27',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21330,'4000','121673030429','2023-01-06 21:44:27',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21331,'4000','121673030429','2023-01-06 21:44:27',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21332,'4000','121673030429','2023-01-06 21:44:27',NULL,160.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(21333,'1110','121673030814','2023-01-06 21:58:34',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21334,'5500','121673030814','2023-01-06 21:58:34',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21335,'1000','121673030814','2023-01-06 21:58:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21336,'4000','121673030814','2023-01-06 21:58:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21337,'1110','121673031519','2023-01-06 22:06:29',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(21338,'1110','121673031519','2023-01-06 22:06:29',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21339,'1110','121673031519','2023-01-06 22:06:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21340,'5500','121673031519','2023-01-06 22:06:29',997.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21341,'1000','121673031519','2023-01-06 22:06:29',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21342,'4000','121673031519','2023-01-06 22:06:29',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(21343,'4000','121673031519','2023-01-06 22:06:29',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21344,'4000','121673031519','2023-01-06 22:06:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21345,'1110','121673031998','2023-01-06 22:15:43',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21346,'5500','121673031998','2023-01-06 22:15:43',93.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21347,'1000','121673031998','2023-01-06 22:15:43',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21348,'4000','121673031998','2023-01-06 22:15:43',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21349,'1110','121673032556','2023-01-06 22:18:04',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(21350,'5500','121673032556','2023-01-06 22:18:04',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21351,'1000','121673032556','2023-01-06 22:18:04',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21352,'4000','121673032556','2023-01-06 22:18:04',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(21353,'1110','121673032849','2023-01-06 22:31:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21354,'1110','121673032849','2023-01-06 22:31:17',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21355,'5500','121673032849','2023-01-06 22:31:17',555.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21356,'1000','121673032849','2023-01-06 22:31:17',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21357,'4000','121673032849','2023-01-06 22:31:17',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21358,'4000','121673032849','2023-01-06 22:31:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21359,'1110','121673036501','2023-01-06 23:24:24',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21360,'1110','121673036501','2023-01-06 23:24:24',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21361,'5500','121673036501','2023-01-06 23:24:24',802.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21362,'1000','121673036501','2023-01-06 23:24:24',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21363,'4000','121673036501','2023-01-06 23:24:24',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21364,'4000','121673036501','2023-01-06 23:24:24',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21365,'1110','121673036671','2023-01-06 23:29:55',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21366,'1110','121673036671','2023-01-06 23:29:55',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(21367,'5500','121673036671','2023-01-06 23:29:55',317.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21368,'1000','121673036671','2023-01-06 23:29:55',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21369,'4000','121673036671','2023-01-06 23:29:55',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21370,'4000','121673036671','2023-01-06 23:29:55',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(21371,'1110','121673037319','2023-01-06 23:36:18',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(21372,'1110','121673037319','2023-01-06 23:36:18',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21373,'5500','121673037319','2023-01-06 23:36:18',774.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21374,'1000','121673037319','2023-01-06 23:36:18',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21375,'4000','121673037319','2023-01-06 23:36:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(21376,'4000','121673037319','2023-01-06 23:36:18',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21377,'1110','121673037445','2023-01-06 23:45:57',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21378,'1110','121673037445','2023-01-06 23:45:57',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21379,'5500','121673037445','2023-01-06 23:45:57',511.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21380,'1000','121673037445','2023-01-06 23:45:57',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21381,'4000','121673037445','2023-01-06 23:45:57',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21382,'4000','121673037445','2023-01-06 23:45:57',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21383,'1110','121673038014','2023-01-07 00:25:11',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(21384,'5500','121673038014','2023-01-07 00:25:11',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21385,'1000','121673038014','2023-01-07 00:25:11',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21386,'4000','121673038014','2023-01-07 00:25:11',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(21387,'1110','121673040435','2023-01-07 00:36:25',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(21388,'5500','121673040435','2023-01-07 00:36:25',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21389,'1000','121673040435','2023-01-07 00:36:25',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21390,'4000','121673040435','2023-01-07 00:36:25',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(21391,'1110','121673041131','2023-01-07 00:49:02',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(21392,'1110','121673041131','2023-01-07 00:49:02',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21393,'1110','121673041131','2023-01-07 00:49:02',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21394,'5500','121673041131','2023-01-07 00:49:02',721.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21395,'1000','121673041131','2023-01-07 00:49:02',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21396,'4000','121673041131','2023-01-07 00:49:02',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(21397,'4000','121673041131','2023-01-07 00:49:02',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21398,'4000','121673041131','2023-01-07 00:49:02',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21399,'1110','121673041826','2023-01-07 01:07:10',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(21400,'5500','121673041826','2023-01-07 01:07:10',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21401,'1000','121673041826','2023-01-07 01:07:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21402,'4000','121673041826','2023-01-07 01:07:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(21403,'1110','121673043328','2023-01-07 01:43:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(21404,'5500','121673043328','2023-01-07 01:43:52',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21405,'1000','121673043328','2023-01-07 01:43:52',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21406,'4000','121673043328','2023-01-07 01:43:52',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(21407,'1110','121673045045','2023-01-07 01:53:23',NULL,970.00,'','12','1','Inventory sold','1','','sales','8906120780179','','No',NULL,NULL,''),(21408,'1110','121673045045','2023-01-07 01:53:23',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21409,'5500','121673045045','2023-01-07 01:53:23',1011.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21410,'1000','121673045045','2023-01-07 01:53:23',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21411,'4000','121673045045','2023-01-07 01:53:23',NULL,1600.00,'','12','1','Good sold','1','','sales','8906120780179','','No',NULL,NULL,''),(21412,'4000','121673045045','2023-01-07 01:53:23',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21413,'1110','121673045610','2023-01-07 02:31:08',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(21414,'1110','121673045610','2023-01-07 02:31:08',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21415,'5500','121673045610','2023-01-07 02:31:08',1520.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21416,'1000','121673045610','2023-01-07 02:31:08',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21417,'4000','121673045610','2023-01-07 02:31:08',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(21418,'4000','121673045610','2023-01-07 02:31:08',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21419,'1110','121673047879','2023-01-07 02:33:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21420,'5500','121673047879','2023-01-07 02:33:08',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21421,'1000','121673047879','2023-01-07 02:33:08',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21422,'4000','121673047879','2023-01-07 02:33:08',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21423,'1110','121673047992','2023-01-07 03:10:50',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(21424,'5500','121673047992','2023-01-07 03:10:50',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21425,'1000','121673047992','2023-01-07 03:10:50',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21426,'4000','121673047992','2023-01-07 03:10:50',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(21427,'1110','121673052520','2023-01-07 03:50:02',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(21428,'1110','121673052520','2023-01-07 03:50:02',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21429,'1110','121673052520','2023-01-07 03:50:02',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(21430,'1110','121673052520','2023-01-07 03:50:02',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21431,'5500','121673052520','2023-01-07 03:50:02',3151.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21432,'1000','121673052520','2023-01-07 03:50:02',5020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21433,'4000','121673052520','2023-01-07 03:50:02',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(21434,'4000','121673052520','2023-01-07 03:50:02',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21435,'4000','121673052520','2023-01-07 03:50:02',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(21436,'4000','121673052520','2023-01-07 03:50:02',NULL,750.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21437,'1110','121673053762','2023-01-07 04:09:56',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(21438,'1110','121673053762','2023-01-07 04:09:56',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(21439,'5500','121673053762','2023-01-07 04:09:56',1308.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21440,'1000','121673053762','2023-01-07 04:09:56',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21441,'4000','121673053762','2023-01-07 04:09:56',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(21442,'4000','121673053762','2023-01-07 04:09:56',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(21443,'1110','121673056721','2023-01-07 04:59:30',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(21444,'1110','121673056721','2023-01-07 04:59:30',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21445,'1110','121673056721','2023-01-07 04:59:30',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21446,'5500','121673056721','2023-01-07 04:59:30',580.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21447,'1000','121673056721','2023-01-07 04:59:30',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21448,'4000','121673056721','2023-01-07 04:59:30',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(21449,'4000','121673056721','2023-01-07 04:59:30',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21450,'4000','121673056721','2023-01-07 04:59:30',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21451,'1110','121673056776','2023-01-07 05:25:00',NULL,1300.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(21452,'5500','121673056776','2023-01-07 05:25:00',1300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21453,'1000','121673056776','2023-01-07 05:25:00',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21454,'4000','121673056776','2023-01-07 05:25:00',NULL,1800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(21455,'1110','121673058317','2023-01-07 05:26:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21456,'5500','121673058317','2023-01-07 05:26:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21457,'1000','121673058317','2023-01-07 05:26:04',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21458,'4000','121673058317','2023-01-07 05:26:04',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21459,'1110','121673058386','2023-01-07 05:26:41',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21460,'5500','121673058386','2023-01-07 05:26:41',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21461,'1000','121673058386','2023-01-07 05:26:41',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21462,'4000','121673058386','2023-01-07 05:26:41',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21463,'1110','121673058588','2023-01-07 06:48:32',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21464,'5500','121673058588','2023-01-07 06:48:32',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21465,'1000','121673058588','2023-01-07 06:48:32',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21466,'4000','121673058588','2023-01-07 06:48:32',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21467,'1110','121673069845','2023-01-07 08:38:12',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21468,'1110','121673069845','2023-01-07 08:38:12',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21469,'1110','121673069845','2023-01-07 08:38:12',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21470,'5500','121673069845','2023-01-07 08:38:12',869.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21471,'1000','121673069845','2023-01-07 08:38:12',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21472,'4000','121673069845','2023-01-07 08:38:12',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21473,'4000','121673069845','2023-01-07 08:38:12',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21474,'4000','121673069845','2023-01-07 08:38:12',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21475,'1110','121673087307','2023-01-07 13:28:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21476,'5500','121673087307','2023-01-07 13:28:45',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21477,'1000','121673087307','2023-01-07 13:28:45',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21478,'4000','121673087307','2023-01-07 13:28:45',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21479,'1110','121673087330','2023-01-07 13:29:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21480,'5500','121673087330','2023-01-07 13:29:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21481,'1000','121673087330','2023-01-07 13:29:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21482,'4000','121673087330','2023-01-07 13:29:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21483,'1110','121673087359','2023-01-07 13:52:48',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21484,'1110','121673087359','2023-01-07 13:52:48',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(21485,'5500','121673087359','2023-01-07 13:52:48',517.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21486,'1000','121673087359','2023-01-07 13:52:48',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21487,'4000','121673087359','2023-01-07 13:52:48',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(21488,'4000','121673087359','2023-01-07 13:52:48',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(21489,'1110','121673088950','2023-01-07 13:57:43',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(21490,'1110','121673088950','2023-01-07 13:57:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21491,'5500','121673088950','2023-01-07 13:57:43',325.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21492,'1000','121673088950','2023-01-07 13:57:43',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21493,'4000','121673088950','2023-01-07 13:57:43',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(21494,'4000','121673088950','2023-01-07 13:57:43',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21495,'1110','121673092270','2023-01-07 15:37:06',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(21496,'5500','121673092270','2023-01-07 15:37:06',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21497,'1000','121673092270','2023-01-07 15:37:06',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21498,'4000','121673092270','2023-01-07 15:37:06',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(21499,'1110','121673095032','2023-01-07 15:40:33',NULL,5200.00,'','12','1','Inventory sold','1','','sales','080432402825','','No',NULL,NULL,''),(21500,'5500','121673095032','2023-01-07 15:40:33',5200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21501,'1000','121673095032','2023-01-07 15:40:33',7500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21502,'4000','121673095032','2023-01-07 15:40:33',NULL,7500.00,'','12','1','Good sold','1','','sales','080432402825','','No',NULL,NULL,''),(21503,'1110','121673106846','2023-01-07 19:09:07',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21504,'5500','121673106846','2023-01-07 19:09:07',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21505,'1000','121673106846','2023-01-07 19:09:07',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21506,'4000','121673106846','2023-01-07 19:09:07',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21507,'1110','121673107753','2023-01-07 19:55:38',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21508,'1110','121673107753','2023-01-07 19:55:38',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21509,'5500','121673107753','2023-01-07 19:55:38',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21510,'1000','121673107753','2023-01-07 19:55:38',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21511,'4000','121673107753','2023-01-07 19:55:38',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(21512,'4000','121673107753','2023-01-07 19:55:38',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21513,'1110','121673110605','2023-01-07 20:05:43',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(21514,'5500','121673110605','2023-01-07 20:05:43',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21515,'1000','121673110605','2023-01-07 20:05:43',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21516,'4000','121673110605','2023-01-07 20:05:43',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(21517,'1110','121673111149','2023-01-07 21:09:32',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(21518,'5500','121673111149','2023-01-07 21:09:32',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21519,'1000','121673111149','2023-01-07 21:09:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21520,'4000','121673111149','2023-01-07 21:09:32',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(21521,'1110','121673115194','2023-01-07 21:24:44',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(21522,'5500','121673115194','2023-01-07 21:24:44',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21523,'1000','121673115194','2023-01-07 21:24:44',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21524,'4000','121673115194','2023-01-07 21:24:44',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(21525,'1110','121673115927','2023-01-07 22:09:50',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21526,'5500','121673115927','2023-01-07 22:09:50',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21527,'1000','121673115927','2023-01-07 22:09:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21528,'4000','121673115927','2023-01-07 22:09:50',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21529,'1110','121673118595','2023-01-07 22:39:48',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(21530,'1110','121673118595','2023-01-07 22:39:48',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(21531,'1110','121673118595','2023-01-07 22:39:48',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21532,'5500','121673118595','2023-01-07 22:39:48',802.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21533,'1000','121673118595','2023-01-07 22:39:48',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21534,'4000','121673118595','2023-01-07 22:39:48',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(21535,'4000','121673118595','2023-01-07 22:39:48',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(21536,'4000','121673118595','2023-01-07 22:39:48',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21537,'1110','121673120594','2023-01-07 23:00:32',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21538,'5500','121673120594','2023-01-07 23:00:32',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21539,'1000','121673120594','2023-01-07 23:00:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21540,'4000','121673120594','2023-01-07 23:00:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21541,'1110','121673121637','2023-01-07 23:02:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21542,'5500','121673121637','2023-01-07 23:02:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21543,'1000','121673121637','2023-01-07 23:02:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21544,'4000','121673121637','2023-01-07 23:02:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21545,'1110','121673121771','2023-01-07 23:06:53',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21546,'5500','121673121771','2023-01-07 23:06:53',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21547,'1000','121673121771','2023-01-07 23:06:53',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21548,'4000','121673121771','2023-01-07 23:06:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21549,'1110','121673122048','2023-01-07 23:25:46',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21550,'5500','121673122048','2023-01-07 23:25:46',93.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21551,'1000','121673122048','2023-01-07 23:25:46',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21552,'4000','121673122048','2023-01-07 23:25:46',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21553,'1110','121673123153','2023-01-07 23:35:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21554,'5500','121673123153','2023-01-07 23:35:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21555,'1000','121673123153','2023-01-07 23:35:24',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21556,'4000','121673123153','2023-01-07 23:35:24',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21557,'1110','121673123728','2023-01-07 23:51:19',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(21558,'1110','121673123728','2023-01-07 23:51:19',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(21559,'5500','121673123728','2023-01-07 23:51:19',3698.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21560,'1000','121673123728','2023-01-07 23:51:19',5550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21561,'4000','121673123728','2023-01-07 23:51:19',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(21562,'4000','121673123728','2023-01-07 23:51:19',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(21563,'1110','121673124686','2023-01-08 00:35:54',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21564,'1110','121673124686','2023-01-08 00:35:54',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21565,'5500','121673124686','2023-01-08 00:35:54',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21566,'1000','121673124686','2023-01-08 00:35:54',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21567,'4000','121673124686','2023-01-08 00:35:54',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21568,'4000','121673124686','2023-01-08 00:35:54',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21569,'1110','121673127362','2023-01-08 01:03:44',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21570,'1110','121673127362','2023-01-08 01:03:44',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21571,'1110','121673127362','2023-01-08 01:03:44',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21572,'5500','121673127362','2023-01-08 01:03:44',552.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21573,'1000','121673127362','2023-01-08 01:03:44',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21574,'4000','121673127362','2023-01-08 01:03:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21575,'4000','121673127362','2023-01-08 01:03:44',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21576,'4000','121673127362','2023-01-08 01:03:44',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21577,'1110','121673129130','2023-01-08 01:27:15',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21578,'5500','121673129130','2023-01-08 01:27:15',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21579,'1000','121673129130','2023-01-08 01:27:15',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21580,'4000','121673129130','2023-01-08 01:27:15',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21581,'1110','121673130440','2023-01-08 01:29:43',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21582,'1110','121673130440','2023-01-08 01:29:43',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21583,'5500','121673130440','2023-01-08 01:29:43',256.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21584,'1000','121673130440','2023-01-08 01:29:43',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21585,'4000','121673130440','2023-01-08 01:29:43',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21586,'4000','121673130440','2023-01-08 01:29:43',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21587,'1110','121673130920','2023-01-08 01:46:46',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21588,'5500','121673130920','2023-01-08 01:46:46',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21589,'1000','121673130920','2023-01-08 01:46:46',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21590,'4000','121673130920','2023-01-08 01:46:46',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21591,'1110','121673131619','2023-01-08 01:55:18',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291025930','','No',NULL,NULL,''),(21592,'1110','121673131619','2023-01-08 01:55:18',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21593,'1110','121673131619','2023-01-08 01:55:18',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21594,'5500','121673131619','2023-01-08 01:55:18',2447.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21595,'1000','121673131619','2023-01-08 01:55:18',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21596,'4000','121673131619','2023-01-08 01:55:18',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025930','','No',NULL,NULL,''),(21597,'4000','121673131619','2023-01-08 01:55:18',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21598,'4000','121673131619','2023-01-08 01:55:18',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21599,'1110','121673132409','2023-01-08 02:10:38',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(21600,'5500','121673132409','2023-01-08 02:10:38',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21601,'1000','121673132409','2023-01-08 02:10:38',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21602,'4000','121673132409','2023-01-08 02:10:38',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(21603,'1110','121673133042','2023-01-08 02:24:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21604,'1110','121673133042','2023-01-08 02:24:12',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21605,'5500','121673133042','2023-01-08 02:24:12',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21606,'1000','121673133042','2023-01-08 02:24:12',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21607,'4000','121673133042','2023-01-08 02:24:12',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21608,'4000','121673133042','2023-01-08 02:24:12',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21609,'1110','121673133857','2023-01-08 02:31:07',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(21610,'5500','121673133857','2023-01-08 02:31:07',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21611,'1000','121673133857','2023-01-08 02:31:07',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21612,'4000','121673133857','2023-01-08 02:31:07',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(21613,'1110','121673134272','2023-01-08 02:32:52',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(21614,'5500','121673134272','2023-01-08 02:32:52',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21615,'1000','121673134272','2023-01-08 02:32:52',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21616,'4000','121673134272','2023-01-08 02:32:52',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(21617,'1110','121673134380','2023-01-08 02:59:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21618,'5500','121673134380','2023-01-08 02:59:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21619,'1000','121673134380','2023-01-08 02:59:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21620,'4000','121673134380','2023-01-08 02:59:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21621,'1110','121673135947','2023-01-08 03:08:15',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(21622,'5500','121673135947','2023-01-08 03:08:15',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21623,'1000','121673135947','2023-01-08 03:08:15',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21624,'4000','121673135947','2023-01-08 03:08:15',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(21625,'1110','121673136499','2023-01-08 03:18:02',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21626,'1110','121673136499','2023-01-08 03:18:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21627,'1110','121673136499','2023-01-08 03:18:02',NULL,308.50,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(21628,'1110','121673136499','2023-01-08 03:18:02',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21629,'5500','121673136499','2023-01-08 03:18:02',1146.81,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21630,'1000','121673136499','2023-01-08 03:18:02',1620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21631,'4000','121673136499','2023-01-08 03:18:02',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21632,'4000','121673136499','2023-01-08 03:18:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21633,'4000','121673136499','2023-01-08 03:18:02',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(21634,'4000','121673136499','2023-01-08 03:18:02',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(21635,'1110','121673137166','2023-01-08 03:23:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21636,'5500','121673137166','2023-01-08 03:23:45',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21637,'1000','121673137166','2023-01-08 03:23:45',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21638,'4000','121673137166','2023-01-08 03:23:45',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21639,'1110','121673137429','2023-01-08 03:28:52',NULL,1320.00,'','12','1','Inventory sold','1','','sales','087000006928','','No',NULL,NULL,''),(21640,'1110','121673137429','2023-01-08 03:28:52',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21641,'1110','121673137429','2023-01-08 03:28:52',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21642,'5500','121673137429','2023-01-08 03:28:52',1511.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21643,'1000','121673137429','2023-01-08 03:28:52',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21644,'4000','121673137429','2023-01-08 03:28:52',NULL,1800.00,'','12','1','Good sold','1','','sales','087000006928','','No',NULL,NULL,''),(21645,'4000','121673137429','2023-01-08 03:28:52',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21646,'4000','121673137429','2023-01-08 03:28:52',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21647,'1110','121673137965','2023-01-08 03:32:57',NULL,372.90,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21648,'5500','121673137965','2023-01-08 03:32:57',372.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21649,'1000','121673137965','2023-01-08 03:32:57',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21650,'4000','121673137965','2023-01-08 03:32:57',NULL,750.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21651,'1110','121673138055','2023-01-08 04:12:24',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(21652,'1110','121673138055','2023-01-08 04:12:24',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21653,'5500','121673138055','2023-01-08 04:12:24',1568.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21654,'1000','121673138055','2023-01-08 04:12:24',2650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21655,'4000','121673138055','2023-01-08 04:12:24',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(21656,'4000','121673138055','2023-01-08 04:12:24',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21657,'1110','121673169741','2023-01-08 12:22:44',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21658,'5500','121673169741','2023-01-08 12:22:44',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21659,'1000','121673169741','2023-01-08 12:22:44',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21660,'4000','121673169741','2023-01-08 12:22:44',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21661,'1110','121673169772','2023-01-08 12:23:12',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21662,'5500','121673169772','2023-01-08 12:23:12',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21663,'1000','121673169772','2023-01-08 12:23:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21664,'4000','121673169772','2023-01-08 12:23:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21665,'1110','121673169800','2023-01-08 12:23:44',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21666,'5500','121673169800','2023-01-08 12:23:44',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21667,'1000','121673169800','2023-01-08 12:23:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21668,'4000','121673169800','2023-01-08 12:23:44',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21669,'1110','121673169833','2023-01-08 13:45:59',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21670,'5500','121673169833','2023-01-08 13:45:59',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21671,'1000','121673169833','2023-01-08 13:45:59',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21672,'4000','121673169833','2023-01-08 13:45:59',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21673,'1110','121673174765','2023-01-08 14:21:44',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21674,'1110','121673174765','2023-01-08 14:21:44',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21675,'5500','121673174765','2023-01-08 14:21:44',966.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21676,'1000','121673174765','2023-01-08 14:21:44',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21677,'4000','121673174765','2023-01-08 14:21:44',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21678,'4000','121673174765','2023-01-08 14:21:44',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(21679,'1110','121673176910','2023-01-08 16:52:41',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(21680,'5500','121673176910','2023-01-08 16:52:41',18500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21681,'1000','121673176910','2023-01-08 16:52:41',28500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21682,'4000','121673176910','2023-01-08 16:52:41',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(21683,'1110','121673194621','2023-01-08 19:19:29',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21684,'5500','121673194621','2023-01-08 19:19:29',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21685,'1000','121673194621','2023-01-08 19:19:29',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21686,'4000','121673194621','2023-01-08 19:19:29',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21687,'1110','121673194774','2023-01-08 20:42:27',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(21688,'1110','121673194774','2023-01-08 20:42:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21689,'5500','121673194774','2023-01-08 20:42:27',499.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21690,'1000','121673194774','2023-01-08 20:42:27',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21691,'4000','121673194774','2023-01-08 20:42:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(21692,'4000','121673194774','2023-01-08 20:42:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21693,'1110','121673199752','2023-01-08 21:02:33',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(21694,'5500','121673199752','2023-01-08 21:02:33',244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21695,'1000','121673199752','2023-01-08 21:02:33',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21696,'4000','121673199752','2023-01-08 21:02:33',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(21697,'1110','121673200998','2023-01-08 21:09:22',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21698,'5500','121673200998','2023-01-08 21:09:22',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21699,'1000','121673200998','2023-01-08 21:09:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21700,'4000','121673200998','2023-01-08 21:09:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21701,'1110','121673201374','2023-01-08 22:15:47',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(21702,'5500','121673201374','2023-01-08 22:15:47',125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21703,'1000','121673201374','2023-01-08 22:15:47',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21704,'4000','121673201374','2023-01-08 22:15:47',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(21705,'1110','121673205354','2023-01-08 22:23:01',NULL,18500.00,'','12','1','Inventory sold','1','','sales','5000267114293','','No',NULL,NULL,''),(21706,'5500','121673205354','2023-01-08 22:23:01',18500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21707,'1000','121673205354','2023-01-08 22:23:01',28500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21708,'4000','121673205354','2023-01-08 22:23:01',NULL,28500.00,'','12','1','Good sold','1','','sales','5000267114293','','No',NULL,NULL,''),(21709,'1110','121673205787','2023-01-08 22:54:04',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(21710,'5500','121673205787','2023-01-08 22:54:04',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21711,'1000','121673205787','2023-01-08 22:54:04',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21712,'4000','121673205787','2023-01-08 22:54:04',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(21713,'1110','121673207796','2023-01-08 22:56:58',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21714,'5500','121673207796','2023-01-08 22:56:58',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21715,'1000','121673207796','2023-01-08 22:56:58',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21716,'4000','121673207796','2023-01-08 22:56:58',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21717,'1110','121673207823','2023-01-09 00:08:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21718,'5500','121673207823','2023-01-09 00:08:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21719,'1000','121673207823','2023-01-09 00:08:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21720,'4000','121673207823','2023-01-09 00:08:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21721,'1110','121673212146','2023-01-09 00:50:31',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21722,'5500','121673212146','2023-01-09 00:50:31',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21723,'1000','121673212146','2023-01-09 00:50:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21724,'4000','121673212146','2023-01-09 00:50:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21725,'1110','121673214636','2023-01-09 01:48:51',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21726,'5500','121673214636','2023-01-09 01:48:51',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21727,'1000','121673214636','2023-01-09 01:48:51',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21728,'4000','121673214636','2023-01-09 01:48:51',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21729,'1110','121673218138','2023-01-09 02:12:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21730,'1110','121673218138','2023-01-09 02:12:13',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21731,'5500','121673218138','2023-01-09 02:12:13',266.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21732,'1000','121673218138','2023-01-09 02:12:13',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21733,'4000','121673218138','2023-01-09 02:12:13',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21734,'4000','121673218138','2023-01-09 02:12:13',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21735,'1110','121673227608','2023-01-09 04:27:09',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(21736,'1110','121673227608','2023-01-09 04:27:09',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21737,'5500','121673227608','2023-01-09 04:27:09',415.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21738,'1000','121673227608','2023-01-09 04:27:09',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21739,'4000','121673227608','2023-01-09 04:27:09',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(21740,'4000','121673227608','2023-01-09 04:27:09',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(21741,'1110','121673227638','2023-01-09 04:28:02',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21742,'1110','121673227638','2023-01-09 04:28:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21743,'5500','121673227638','2023-01-09 04:28:02',553.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21744,'1000','121673227638','2023-01-09 04:28:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21745,'4000','121673227638','2023-01-09 04:28:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21746,'4000','121673227638','2023-01-09 04:28:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21747,'1110','121673230906','2023-01-09 05:21:58',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21748,'5500','121673230906','2023-01-09 05:21:58',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21749,'1000','121673230906','2023-01-09 05:21:58',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21750,'4000','121673230906','2023-01-09 05:21:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21751,'1110','121673262052','2023-01-09 14:01:35',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(21752,'1110','121673262052','2023-01-09 14:01:35',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21753,'5500','121673262052','2023-01-09 14:01:35',509.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21754,'1000','121673262052','2023-01-09 14:01:35',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21755,'4000','121673262052','2023-01-09 14:01:35',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(21756,'4000','121673262052','2023-01-09 14:01:35',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21757,'1110','121673272397','2023-01-09 16:53:34',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21758,'5500','121673272397','2023-01-09 16:53:34',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21759,'1000','121673272397','2023-01-09 16:53:34',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21760,'4000','121673272397','2023-01-09 16:53:34',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21761,'1110','121673277925','2023-01-09 19:42:25',NULL,880.00,'','12','1','Inventory sold','1','','sales','6161100421882','','No',NULL,NULL,''),(21762,'5500','121673277925','2023-01-09 19:42:25',880.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21763,'1000','121673277925','2023-01-09 19:42:25',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21764,'4000','121673277925','2023-01-09 19:42:25',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421882','','No',NULL,NULL,''),(21765,'1110','121673282575','2023-01-09 19:43:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21766,'1110','121673282575','2023-01-09 19:43:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21767,'5500','121673282575','2023-01-09 19:43:58',266.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21768,'1000','121673282575','2023-01-09 19:43:58',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21769,'4000','121673282575','2023-01-09 19:43:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21770,'4000','121673282575','2023-01-09 19:43:58',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(21771,'1110','121673282646','2023-01-09 19:44:41',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21772,'1110','121673282646','2023-01-09 19:44:41',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(21773,'5500','121673282646','2023-01-09 19:44:41',82.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21774,'1000','121673282646','2023-01-09 19:44:41',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21775,'4000','121673282646','2023-01-09 19:44:41',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21776,'4000','121673282646','2023-01-09 19:44:41',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(21777,'1110','121673282692','2023-01-09 19:48:12',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(21778,'5500','121673282692','2023-01-09 19:48:12',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21779,'1000','121673282692','2023-01-09 19:48:12',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21780,'4000','121673282692','2023-01-09 19:48:12',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(21781,'1110','121673282899','2023-01-09 19:48:30',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21782,'5500','121673282899','2023-01-09 19:48:30',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21783,'1000','121673282899','2023-01-09 19:48:30',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21784,'4000','121673282899','2023-01-09 19:48:30',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(21785,'1110','121673283607','2023-01-09 20:06:35',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21786,'5500','121673283607','2023-01-09 20:06:35',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21787,'1000','121673283607','2023-01-09 20:06:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21788,'4000','121673283607','2023-01-09 20:06:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21789,'1110','121673287666','2023-01-09 21:07:51',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(21790,'5500','121673287666','2023-01-09 21:07:51',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21791,'1000','121673287666','2023-01-09 21:07:51',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21792,'4000','121673287666','2023-01-09 21:07:51',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(21793,'1110','121673287772','2023-01-09 21:11:31',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(21794,'5500','121673287772','2023-01-09 21:11:31',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21795,'1000','121673287772','2023-01-09 21:11:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21796,'4000','121673287772','2023-01-09 21:11:31',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(21797,'1110','121673288837','2023-01-09 21:27:35',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21798,'1110','121673288837','2023-01-09 21:27:35',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21799,'5500','121673288837','2023-01-09 21:27:35',345.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21800,'1000','121673288837','2023-01-09 21:27:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21801,'4000','121673288837','2023-01-09 21:27:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21802,'4000','121673288837','2023-01-09 21:27:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21803,'1110','121673288859','2023-01-09 22:49:04',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(21804,'5500','121673288859','2023-01-09 22:49:04',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21805,'1000','121673288859','2023-01-09 22:49:04',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21806,'4000','121673288859','2023-01-09 22:49:04',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(21807,'1110','121673293751','2023-01-09 22:51:48',NULL,1231.00,'','12','1','Inventory sold','1','','sales','7794450091604','','No',NULL,NULL,''),(21808,'5500','121673293751','2023-01-09 22:51:48',1231.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21809,'1000','121673293751','2023-01-09 22:51:48',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21810,'4000','121673293751','2023-01-09 22:51:48',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091604','','No',NULL,NULL,''),(21811,'1110','121673293914','2023-01-09 22:52:57',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(21812,'5500','121673293914','2023-01-09 22:52:57',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21813,'1000','121673293914','2023-01-09 22:52:57',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21814,'4000','121673293914','2023-01-09 22:52:57',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(21815,'1110','121673294069','2023-01-09 23:03:08',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21816,'5500','121673294069','2023-01-09 23:03:08',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21817,'1000','121673294069','2023-01-09 23:03:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21818,'4000','121673294069','2023-01-09 23:03:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21819,'1110','121673295294','2023-01-09 23:15:05',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21820,'5500','121673295294','2023-01-09 23:15:05',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21821,'1000','121673295294','2023-01-09 23:15:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21822,'4000','121673295294','2023-01-09 23:15:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21823,'1110','121673295310','2023-01-09 23:52:20',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21824,'1110','121673295310','2023-01-09 23:52:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21825,'5500','121673295310','2023-01-09 23:52:20',219.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21826,'1000','121673295310','2023-01-09 23:52:20',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21827,'4000','121673295310','2023-01-09 23:52:20',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21828,'4000','121673295310','2023-01-09 23:52:20',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21829,'1110','121673297546','2023-01-10 00:02:04',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(21830,'1110','121673297546','2023-01-10 00:02:04',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21831,'5500','121673297546','2023-01-10 00:02:04',1266.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21832,'1000','121673297546','2023-01-10 00:02:04',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21833,'4000','121673297546','2023-01-10 00:02:04',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(21834,'4000','121673297546','2023-01-10 00:02:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(21835,'1110','121673298194','2023-01-10 00:16:30',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21836,'1110','121673298194','2023-01-10 00:16:30',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(21837,'5500','121673298194','2023-01-10 00:16:30',375.06,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21838,'1000','121673298194','2023-01-10 00:16:30',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21839,'4000','121673298194','2023-01-10 00:16:30',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21840,'4000','121673298194','2023-01-10 00:16:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(21841,'1110','121673323543','2023-01-10 07:24:23',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(21842,'5500','121673323543','2023-01-10 07:24:23',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21843,'1000','121673323543','2023-01-10 07:24:23',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21844,'4000','121673323543','2023-01-10 07:24:23',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(21845,'1110','121673334348','2023-01-10 10:06:05',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21846,'5500','121673334348','2023-01-10 10:06:05',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21847,'1000','121673334348','2023-01-10 10:06:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21848,'4000','121673334348','2023-01-10 10:06:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21849,'1110','121673340254','2023-01-10 11:44:53',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21850,'1110','121673340254','2023-01-10 11:44:53',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21851,'5500','121673340254','2023-01-10 11:44:53',1140.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21852,'1000','121673340254','2023-01-10 11:44:53',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21853,'4000','121673340254','2023-01-10 11:44:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21854,'4000','121673340254','2023-01-10 11:44:53',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21855,'1110','121673352797','2023-01-10 15:39:07',NULL,970.00,'','12','1','Inventory sold','1','','sales','8906120780179','','No',NULL,NULL,''),(21856,'1110','121673352797','2023-01-10 15:39:07',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(21857,'5500','121673352797','2023-01-10 15:39:07',1100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21858,'1000','121673352797','2023-01-10 15:39:07',1780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21859,'4000','121673352797','2023-01-10 15:39:07',NULL,1600.00,'','12','1','Good sold','1','','sales','8906120780179','','No',NULL,NULL,''),(21860,'4000','121673352797','2023-01-10 15:39:07',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(21861,'1110','121673354352','2023-01-10 15:39:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21862,'5500','121673354352','2023-01-10 15:39:21',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21863,'1000','121673354352','2023-01-10 15:39:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21864,'4000','121673354352','2023-01-10 15:39:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(21865,'1110','121673361827','2023-01-10 19:36:35',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(21866,'1110','121673361827','2023-01-10 19:36:35',NULL,260.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(21867,'5500','121673361827','2023-01-10 19:36:35',1910.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21868,'1000','121673361827','2023-01-10 19:36:35',2660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21869,'4000','121673361827','2023-01-10 19:36:35',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(21870,'4000','121673361827','2023-01-10 19:36:35',NULL,360.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(21871,'1110','121673369041','2023-01-10 19:44:39',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(21872,'1110','121673369041','2023-01-10 19:44:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21873,'5500','121673369041','2023-01-10 19:44:39',582.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21874,'1000','121673369041','2023-01-10 19:44:39',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21875,'4000','121673369041','2023-01-10 19:44:39',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(21876,'4000','121673369041','2023-01-10 19:44:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21877,'1110','121673369103','2023-01-10 21:22:11',NULL,220.00,'','12','1','Inventory sold','1','','sales','6161100421882','','No',NULL,NULL,''),(21878,'1110','121673369103','2023-01-10 21:22:11',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21879,'5500','121673369103','2023-01-10 21:22:11',258.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21880,'1000','121673369103','2023-01-10 21:22:11',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21881,'4000','121673369103','2023-01-10 21:22:11',NULL,350.00,'','12','1','Good sold','1','','sales','6161100421882','','No',NULL,NULL,''),(21882,'4000','121673369103','2023-01-10 21:22:11',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(21883,'1110','121673374936','2023-01-10 22:01:44',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21884,'5500','121673374936','2023-01-10 22:01:44',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21885,'1000','121673374936','2023-01-10 22:01:44',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21886,'4000','121673374936','2023-01-10 22:01:44',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21887,'1110','121673377309','2023-01-10 22:12:52',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(21888,'5500','121673377309','2023-01-10 22:12:52',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21889,'1000','121673377309','2023-01-10 22:12:52',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21890,'4000','121673377309','2023-01-10 22:12:52',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(21891,'1110','121673377976','2023-01-10 22:20:58',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(21892,'1110','121673377976','2023-01-10 22:20:58',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21893,'5500','121673377976','2023-01-10 22:20:58',440.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21894,'1000','121673377976','2023-01-10 22:20:58',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21895,'4000','121673377976','2023-01-10 22:20:58',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(21896,'4000','121673377976','2023-01-10 22:20:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21897,'1110','121673378463','2023-01-10 22:40:46',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21898,'1110','121673378463','2023-01-10 22:40:46',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21899,'5500','121673378463','2023-01-10 22:40:46',562.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21900,'1000','121673378463','2023-01-10 22:40:46',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21901,'4000','121673378463','2023-01-10 22:40:46',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(21902,'4000','121673378463','2023-01-10 22:40:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(21903,'1110','121673379692','2023-01-10 22:43:33',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(21904,'5500','121673379692','2023-01-10 22:43:33',1098.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21905,'1000','121673379692','2023-01-10 22:43:33',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21906,'4000','121673379692','2023-01-10 22:43:33',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(21907,'1110','121673379835','2023-01-10 22:44:45',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21908,'5500','121673379835','2023-01-10 22:44:45',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21909,'1000','121673379835','2023-01-10 22:44:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21910,'4000','121673379835','2023-01-10 22:44:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(21911,'1110','121673379889','2023-01-10 22:52:18',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21912,'5500','121673379889','2023-01-10 22:52:18',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21913,'1000','121673379889','2023-01-10 22:52:18',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21914,'4000','121673379889','2023-01-10 22:52:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(21915,'1110','121673382115','2023-01-10 23:22:31',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(21916,'1110','121673382115','2023-01-10 23:22:31',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21917,'5500','121673382115','2023-01-10 23:22:31',297.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21918,'1000','121673382115','2023-01-10 23:22:31',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21919,'4000','121673382115','2023-01-10 23:22:31',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(21920,'4000','121673382115','2023-01-10 23:22:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21921,'1110','121673382376','2023-01-10 23:27:53',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(21922,'1110','121673382376','2023-01-10 23:27:53',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21923,'1110','121673382376','2023-01-10 23:27:53',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(21924,'5500','121673382376','2023-01-10 23:27:53',543.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21925,'1000','121673382376','2023-01-10 23:27:53',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21926,'4000','121673382376','2023-01-10 23:27:53',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(21927,'4000','121673382376','2023-01-10 23:27:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21928,'4000','121673382376','2023-01-10 23:27:53',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(21929,'1110','121673383106','2023-01-10 23:44:18',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(21930,'5500','121673383106','2023-01-10 23:44:18',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21931,'1000','121673383106','2023-01-10 23:44:18',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21932,'4000','121673383106','2023-01-10 23:44:18',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(21933,'1110','121673383463','2023-01-11 00:38:16',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21934,'5500','121673383463','2023-01-11 00:38:16',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21935,'1000','121673383463','2023-01-11 00:38:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21936,'4000','121673383463','2023-01-11 00:38:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(21937,'1110','121673386703','2023-01-11 01:11:41',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(21938,'1110','121673386703','2023-01-11 01:11:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(21939,'1110','121673386703','2023-01-11 01:11:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(21940,'5500','121673386703','2023-01-11 01:11:41',650.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21941,'1000','121673386703','2023-01-11 01:11:41',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21942,'4000','121673386703','2023-01-11 01:11:41',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(21943,'4000','121673386703','2023-01-11 01:11:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(21944,'4000','121673386703','2023-01-11 01:11:41',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(21945,'1110','121673388739','2023-01-11 01:12:27',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(21946,'5500','121673388739','2023-01-11 01:12:27',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21947,'1000','121673388739','2023-01-11 01:12:27',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21948,'4000','121673388739','2023-01-11 01:12:27',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(21949,'1110','121673388753','2023-01-11 01:28:41',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(21950,'1110','121673388753','2023-01-11 01:28:41',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21951,'1110','121673388753','2023-01-11 01:28:41',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21952,'1110','121673388753','2023-01-11 01:28:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(21953,'5500','121673388753','2023-01-11 01:28:41',1538.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21954,'1000','121673388753','2023-01-11 01:28:41',2280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21955,'4000','121673388753','2023-01-11 01:28:41',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(21956,'4000','121673388753','2023-01-11 01:28:41',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(21957,'4000','121673388753','2023-01-11 01:28:41',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(21958,'4000','121673388753','2023-01-11 01:28:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(21959,'1110','121673389973','2023-01-11 02:27:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21960,'5500','121673389973','2023-01-11 02:27:17',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21961,'1000','121673389973','2023-01-11 02:27:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21962,'4000','121673389973','2023-01-11 02:27:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21963,'1110','121673402113','2023-01-11 04:55:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21964,'1110','121673402113','2023-01-11 04:55:37',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21965,'5500','121673402113','2023-01-11 04:55:37',364.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21966,'1000','121673402113','2023-01-11 04:55:37',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21967,'4000','121673402113','2023-01-11 04:55:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21968,'4000','121673402113','2023-01-11 04:55:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(21969,'1110','121673451797','2023-01-11 18:45:18',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(21970,'5500','121673451797','2023-01-11 18:45:18',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21971,'1000','121673451797','2023-01-11 18:45:18',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21972,'4000','121673451797','2023-01-11 18:45:18',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(21973,'1110','121673452623','2023-01-11 18:57:29',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(21974,'1110','121673452623','2023-01-11 18:57:29',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(21975,'5500','121673452623','2023-01-11 18:57:29',1458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21976,'1000','121673452623','2023-01-11 18:57:29',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21977,'4000','121673452623','2023-01-11 18:57:29',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(21978,'4000','121673452623','2023-01-11 18:57:29',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(21979,'1110','121673456672','2023-01-11 20:05:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(21980,'1110','121673456672','2023-01-11 20:05:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(21981,'5500','121673456672','2023-01-11 20:05:18',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21982,'1000','121673456672','2023-01-11 20:05:18',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21983,'4000','121673456672','2023-01-11 20:05:18',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(21984,'4000','121673456672','2023-01-11 20:05:18',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(21985,'1110','121673457349','2023-01-11 21:31:42',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(21986,'5500','121673457349','2023-01-11 21:31:42',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21987,'1000','121673457349','2023-01-11 21:31:42',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21988,'4000','121673457349','2023-01-11 21:31:42',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(21989,'1110','121673461960','2023-01-11 21:34:37',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21990,'1110','121673461960','2023-01-11 21:34:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(21991,'5500','121673461960','2023-01-11 21:34:37',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21992,'1000','121673461960','2023-01-11 21:34:37',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21993,'4000','121673461960','2023-01-11 21:34:37',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(21994,'4000','121673461960','2023-01-11 21:34:37',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(21995,'1110','121673462081','2023-01-11 21:36:31',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(21996,'1110','121673462081','2023-01-11 21:36:31',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(21997,'5500','121673462081','2023-01-11 21:36:31',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(21998,'1000','121673462081','2023-01-11 21:36:31',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(21999,'4000','121673462081','2023-01-11 21:36:31',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22000,'4000','121673462081','2023-01-11 21:36:31',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22001,'1110','121673463250','2023-01-11 21:55:19',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22002,'1110','121673463250','2023-01-11 21:55:19',NULL,160.00,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22003,'5500','121673463250','2023-01-11 21:55:19',611.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22004,'1000','121673463250','2023-01-11 21:55:19',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22005,'4000','121673463250','2023-01-11 21:55:19',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22006,'4000','121673463250','2023-01-11 21:55:19',NULL,240.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22007,'1110','121673466603','2023-01-11 23:31:46',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(22008,'1110','121673466603','2023-01-11 23:31:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22009,'1110','121673466603','2023-01-11 23:31:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22010,'5500','121673466603','2023-01-11 23:31:46',768.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22011,'1000','121673466603','2023-01-11 23:31:46',1530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22012,'4000','121673466603','2023-01-11 23:31:46',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(22013,'4000','121673466603','2023-01-11 23:31:46',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22014,'4000','121673466603','2023-01-11 23:31:46',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22015,'1110','121673469240','2023-01-12 00:14:12',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(22016,'5500','121673469240','2023-01-12 00:14:12',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22017,'1000','121673469240','2023-01-12 00:14:12',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22018,'4000','121673469240','2023-01-12 00:14:12',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(22019,'1110','121673471657','2023-01-12 00:23:22',NULL,860.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(22020,'1110','121673471657','2023-01-12 00:23:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22021,'1110','121673471657','2023-01-12 00:23:22',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(22022,'5500','121673471657','2023-01-12 00:23:22',955.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22023,'1000','121673471657','2023-01-12 00:23:22',1370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22024,'4000','121673471657','2023-01-12 00:23:22',NULL,1200.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(22025,'4000','121673471657','2023-01-12 00:23:22',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22026,'4000','121673471657','2023-01-12 00:23:22',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(22027,'1110','121673472212','2023-01-12 00:28:12',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(22028,'5500','121673472212','2023-01-12 00:28:12',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22029,'1000','121673472212','2023-01-12 00:28:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22030,'4000','121673472212','2023-01-12 00:28:12',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(22031,'1110','121673472812','2023-01-12 00:33:42',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22032,'5500','121673472812','2023-01-12 00:33:42',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22033,'1000','121673472812','2023-01-12 00:33:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22034,'4000','121673472812','2023-01-12 00:33:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22035,'1110','121673472826','2023-01-12 01:24:45',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22036,'1110','121673472826','2023-01-12 01:24:45',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(22037,'1110','121673472826','2023-01-12 01:24:45',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(22038,'1110','121673472826','2023-01-12 01:24:45',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(22039,'5500','121673472826','2023-01-12 01:24:45',1470.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22040,'1000','121673472826','2023-01-12 01:24:45',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22041,'4000','121673472826','2023-01-12 01:24:45',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22042,'4000','121673472826','2023-01-12 01:24:45',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(22043,'4000','121673472826','2023-01-12 01:24:45',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(22044,'4000','121673472826','2023-01-12 01:24:45',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(22045,'1110','121673477553','2023-01-12 01:52:47',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(22046,'5500','121673477553','2023-01-12 01:52:47',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22047,'1000','121673477553','2023-01-12 01:52:47',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22048,'4000','121673477553','2023-01-12 01:52:47',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(22049,'1110','121673477578','2023-01-12 01:58:00',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(22050,'5500','121673477578','2023-01-12 01:58:00',2070.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22051,'1000','121673477578','2023-01-12 01:58:00',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22052,'4000','121673477578','2023-01-12 01:58:00',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(22053,'1110','121673502837','2023-01-12 08:54:39',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22054,'5500','121673502837','2023-01-12 08:54:39',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22055,'1000','121673502837','2023-01-12 08:54:39',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22056,'4000','121673502837','2023-01-12 08:54:39',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22057,'1110','121673536849','2023-01-12 18:22:42',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22058,'1110','121673536849','2023-01-12 18:22:42',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(22059,'5500','121673536849','2023-01-12 18:22:42',977.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22060,'1000','121673536849','2023-01-12 18:22:42',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22061,'4000','121673536849','2023-01-12 18:22:42',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22062,'4000','121673536849','2023-01-12 18:22:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(22063,'1110','121673536972','2023-01-12 18:35:45',NULL,1018.00,'','12','1','Inventory sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22064,'1110','121673536972','2023-01-12 18:35:45',NULL,1018.00,'','12','1','Inventory sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22065,'1110','121673536972','2023-01-12 18:35:45',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22066,'1110','121673536972','2023-01-12 18:35:45',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22067,'5500','121673536972','2023-01-12 18:35:45',2459.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22068,'1000','121673536972','2023-01-12 18:35:45',4050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22069,'4000','121673536972','2023-01-12 18:35:45',NULL,1700.00,'','12','1','Good sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22070,'4000','121673536972','2023-01-12 18:35:45',NULL,1700.00,'','12','1','Good sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22071,'4000','121673536972','2023-01-12 18:35:45',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22072,'4000','121673536972','2023-01-12 18:35:45',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22073,'1110','121673540241','2023-01-12 19:25:17',NULL,670.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(22074,'5500','121673540241','2023-01-12 19:25:17',670.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22075,'1000','121673540241','2023-01-12 19:25:17',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22076,'4000','121673540241','2023-01-12 19:25:17',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(22077,'1110','121673541040','2023-01-12 19:31:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22078,'1110','121673541040','2023-01-12 19:31:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22079,'1110','121673541040','2023-01-12 19:31:49',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22080,'1110','121673541040','2023-01-12 19:31:49',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22081,'5500','121673541040','2023-01-12 19:31:49',449.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22082,'1000','121673541040','2023-01-12 19:31:49',710.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22083,'4000','121673541040','2023-01-12 19:31:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22084,'4000','121673541040','2023-01-12 19:31:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22085,'4000','121673541040','2023-01-12 19:31:49',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22086,'4000','121673541040','2023-01-12 19:31:49',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22087,'1110','121673541118','2023-01-12 21:31:08',NULL,440.00,'','12','1','Inventory sold','1','','sales','6161100421882','','No',NULL,NULL,''),(22088,'1110','121673541118','2023-01-12 21:31:08',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22089,'1110','121673541118','2023-01-12 21:31:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22090,'5500','121673541118','2023-01-12 21:31:08',512.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22091,'1000','121673541118','2023-01-12 21:31:08',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22092,'4000','121673541118','2023-01-12 21:31:08',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421882','','No',NULL,NULL,''),(22093,'4000','121673541118','2023-01-12 21:31:08',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22094,'4000','121673541118','2023-01-12 21:31:08',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22095,'1110','121673548396','2023-01-12 22:19:51',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(22096,'1110','121673548396','2023-01-12 22:19:51',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22097,'1110','121673548396','2023-01-12 22:19:51',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22098,'1110','121673548396','2023-01-12 22:19:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(22099,'5500','121673548396','2023-01-12 22:19:51',942.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22100,'1000','121673548396','2023-01-12 22:19:51',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22101,'4000','121673548396','2023-01-12 22:19:51',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(22102,'4000','121673548396','2023-01-12 22:19:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22103,'4000','121673548396','2023-01-12 22:19:51',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22104,'4000','121673548396','2023-01-12 22:19:51',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(22105,'1110','121673551487','2023-01-12 22:55:45',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22106,'1110','121673551487','2023-01-12 22:55:45',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22107,'5500','121673551487','2023-01-12 22:55:45',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22108,'1000','121673551487','2023-01-12 22:55:45',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22109,'4000','121673551487','2023-01-12 22:55:45',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22110,'4000','121673551487','2023-01-12 22:55:45',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22111,'1110','121673553352','2023-01-12 23:14:18',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(22112,'5500','121673553352','2023-01-12 23:14:18',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22113,'1000','121673553352','2023-01-12 23:14:18',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22114,'4000','121673553352','2023-01-12 23:14:18',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(22115,'1110','121673554539','2023-01-12 23:46:03',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22116,'5500','121673554539','2023-01-12 23:46:03',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22117,'1000','121673554539','2023-01-12 23:46:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22118,'4000','121673554539','2023-01-12 23:46:03',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22119,'1110','121673556369','2023-01-12 23:58:54',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22120,'5500','121673556369','2023-01-12 23:58:54',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22121,'1000','121673556369','2023-01-12 23:58:54',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22122,'4000','121673556369','2023-01-12 23:58:54',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22123,'1110','121673557286','2023-01-13 00:01:50',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22124,'5500','121673557286','2023-01-13 00:01:50',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22125,'1000','121673557286','2023-01-13 00:01:50',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22126,'4000','121673557286','2023-01-13 00:01:50',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22127,'1110','121673557315','2023-01-13 00:07:55',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22128,'1110','121673557315','2023-01-13 00:07:55',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(22129,'1110','121673557315','2023-01-13 00:07:55',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(22130,'1110','121673557315','2023-01-13 00:07:55',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150053','','No',NULL,NULL,''),(22131,'1110','121673557315','2023-01-13 00:07:55',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22132,'5500','121673557315','2023-01-13 00:07:55',954.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22133,'1000','121673557315','2023-01-13 00:07:55',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22134,'4000','121673557315','2023-01-13 00:07:55',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22135,'4000','121673557315','2023-01-13 00:07:55',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(22136,'4000','121673557315','2023-01-13 00:07:55',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(22137,'4000','121673557315','2023-01-13 00:07:55',NULL,300.00,'','12','1','Good sold','1','','sales','024000150053','','No',NULL,NULL,''),(22138,'4000','121673557315','2023-01-13 00:07:55',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22139,'1110','121673557794','2023-01-13 00:17:57',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(22140,'5500','121673557794','2023-01-13 00:17:57',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22141,'1000','121673557794','2023-01-13 00:17:57',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22142,'4000','121673557794','2023-01-13 00:17:57',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(22143,'1110','121673558295','2023-01-13 01:12:10',NULL,3100.00,'','12','1','Inventory sold','1','','sales','5099873046968','','No',NULL,NULL,''),(22144,'1110','121673558295','2023-01-13 01:12:10',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22145,'1110','121673558295','2023-01-13 01:12:10',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22146,'1110','121673558295','2023-01-13 01:12:10',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(22147,'5500','121673558295','2023-01-13 01:12:10',3689.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22148,'1000','121673558295','2023-01-13 01:12:10',5670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22149,'4000','121673558295','2023-01-13 01:12:10',NULL,4700.00,'','12','1','Good sold','1','','sales','5099873046968','','No',NULL,NULL,''),(22150,'4000','121673558295','2023-01-13 01:12:10',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22151,'4000','121673558295','2023-01-13 01:12:10',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22152,'4000','121673558295','2023-01-13 01:12:10',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(22153,'1110','121673561626','2023-01-13 02:46:07',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22154,'5500','121673561626','2023-01-13 02:46:07',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22155,'1000','121673561626','2023-01-13 02:46:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22156,'4000','121673561626','2023-01-13 02:46:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22157,'1110','121673567176','2023-01-13 04:28:08',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(22158,'5500','121673567176','2023-01-13 04:28:08',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22159,'1000','121673567176','2023-01-13 04:28:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22160,'4000','121673567176','2023-01-13 04:28:08',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(22161,'1110','121673573297','2023-01-13 04:28:52',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22162,'5500','121673573297','2023-01-13 04:28:52',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22163,'1000','121673573297','2023-01-13 04:28:52',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22164,'4000','121673573297','2023-01-13 04:28:52',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22165,'1110','121673616225','2023-01-13 16:24:24',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(22166,'1110','121673616225','2023-01-13 16:24:24',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(22167,'1110','121673616225','2023-01-13 16:24:24',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(22168,'5500','121673616225','2023-01-13 16:24:24',3790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22169,'1000','121673616225','2023-01-13 16:24:24',5680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22170,'4000','121673616225','2023-01-13 16:24:24',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(22171,'4000','121673616225','2023-01-13 16:24:24',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(22172,'4000','121673616225','2023-01-13 16:24:24',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(22173,'1110','121673620224','2023-01-13 17:30:49',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(22174,'1110','121673620224','2023-01-13 17:30:49',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22175,'5500','121673620224','2023-01-13 17:30:49',694.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22176,'1000','121673620224','2023-01-13 17:30:49',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22177,'4000','121673620224','2023-01-13 17:30:49',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(22178,'4000','121673620224','2023-01-13 17:30:49',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22179,'1110','121673624109','2023-01-13 18:51:01',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22180,'1110','121673624109','2023-01-13 18:51:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22181,'5500','121673624109','2023-01-13 18:51:01',504.68,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22182,'1000','121673624109','2023-01-13 18:51:01',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22183,'4000','121673624109','2023-01-13 18:51:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22184,'4000','121673624109','2023-01-13 18:51:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22185,'1110','121673625068','2023-01-13 19:03:49',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22186,'1110','121673625068','2023-01-13 19:03:49',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22187,'5500','121673625068','2023-01-13 19:03:49',1458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22188,'1000','121673625068','2023-01-13 19:03:49',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22189,'4000','121673625068','2023-01-13 19:03:49',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22190,'4000','121673625068','2023-01-13 19:03:49',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22191,'1110','121673625977','2023-01-13 19:29:34',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(22192,'5500','121673625977','2023-01-13 19:29:34',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22193,'1000','121673625977','2023-01-13 19:29:34',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22194,'4000','121673625977','2023-01-13 19:29:34',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(22195,'1110','121673627405','2023-01-13 19:35:56',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(22196,'5500','121673627405','2023-01-13 19:35:56',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22197,'1000','121673627405','2023-01-13 19:35:56',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22198,'4000','121673627405','2023-01-13 19:35:56',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(22199,'1110','121673628923','2023-01-13 19:57:47',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(22200,'5500','121673628923','2023-01-13 19:57:47',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22201,'1000','121673628923','2023-01-13 19:57:47',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22202,'4000','121673628923','2023-01-13 19:57:47',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(22203,'1110','121673629072','2023-01-13 19:58:56',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(22204,'5500','121673629072','2023-01-13 19:58:56',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22205,'1000','121673629072','2023-01-13 19:58:56',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22206,'4000','121673629072','2023-01-13 19:58:56',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(22207,'1110','121673629364','2023-01-13 20:03:18',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(22208,'1110','121673629364','2023-01-13 20:03:18',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22209,'5500','121673629364','2023-01-13 20:03:18',2242.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22210,'1000','121673629364','2023-01-13 20:03:18',3050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22211,'4000','121673629364','2023-01-13 20:03:18',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(22212,'4000','121673629364','2023-01-13 20:03:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22213,'1110','121673629441','2023-01-13 20:09:12',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(22214,'1110','121673629441','2023-01-13 20:09:12',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22215,'5500','121673629441','2023-01-13 20:09:12',411.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22216,'1000','121673629441','2023-01-13 20:09:12',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22217,'4000','121673629441','2023-01-13 20:09:12',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(22218,'4000','121673629441','2023-01-13 20:09:12',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22219,'1110','121673629864','2023-01-13 20:12:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22220,'1110','121673629864','2023-01-13 20:12:17',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(22221,'5500','121673629864','2023-01-13 20:12:17',327.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22222,'1000','121673629864','2023-01-13 20:12:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22223,'4000','121673629864','2023-01-13 20:12:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22224,'4000','121673629864','2023-01-13 20:12:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(22225,'1110','121673629941','2023-01-13 21:29:29',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22226,'5500','121673629941','2023-01-13 21:29:29',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22227,'1000','121673629941','2023-01-13 21:29:29',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22228,'4000','121673629941','2023-01-13 21:29:29',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22229,'1110','121673634964','2023-01-13 21:36:27',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22230,'1110','121673634964','2023-01-13 21:36:27',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22231,'5500','121673634964','2023-01-13 21:36:27',1467.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22232,'1000','121673634964','2023-01-13 21:36:27',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22233,'4000','121673634964','2023-01-13 21:36:27',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22234,'4000','121673634964','2023-01-13 21:36:27',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22235,'1110','121673634991','2023-01-13 22:23:25',NULL,1284.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22236,'5500','121673634991','2023-01-13 22:23:25',1284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22237,'1000','121673634991','2023-01-13 22:23:25',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22238,'4000','121673634991','2023-01-13 22:23:25',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22239,'1110','121673638098','2023-01-13 22:53:57',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(22240,'5500','121673638098','2023-01-13 22:53:57',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22241,'1000','121673638098','2023-01-13 22:53:57',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22242,'4000','121673638098','2023-01-13 22:53:57',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(22243,'1110','121673640053','2023-01-13 23:01:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22244,'5500','121673640053','2023-01-13 23:01:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22245,'1000','121673640053','2023-01-13 23:01:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22246,'4000','121673640053','2023-01-13 23:01:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22247,'1110','121673640078','2023-01-13 23:07:45',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22248,'5500','121673640078','2023-01-13 23:07:45',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22249,'1000','121673640078','2023-01-13 23:07:45',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22250,'4000','121673640078','2023-01-13 23:07:45',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22251,'1110','121673640533','2023-01-13 23:24:15',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22252,'5500','121673640533','2023-01-13 23:24:15',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22253,'1000','121673640533','2023-01-13 23:24:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22254,'4000','121673640533','2023-01-13 23:24:15',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22255,'1110','121673641460','2023-01-13 23:24:31',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22256,'5500','121673641460','2023-01-13 23:24:31',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22257,'1000','121673641460','2023-01-13 23:24:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22258,'4000','121673641460','2023-01-13 23:24:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22259,'1110','121673641477','2023-01-13 23:31:16',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22260,'1110','121673641477','2023-01-13 23:31:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22261,'5500','121673641477','2023-01-13 23:31:16',604.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22262,'1000','121673641477','2023-01-13 23:31:16',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22263,'4000','121673641477','2023-01-13 23:31:16',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22264,'4000','121673641477','2023-01-13 23:31:16',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22265,'1110','121673642253','2023-01-13 23:38:48',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(22266,'1110','121673642253','2023-01-13 23:38:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22267,'1110','121673642253','2023-01-13 23:38:48',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22268,'1110','121673642253','2023-01-13 23:38:48',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(22269,'5500','121673642253','2023-01-13 23:38:48',783.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22270,'1000','121673642253','2023-01-13 23:38:48',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22271,'4000','121673642253','2023-01-13 23:38:48',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(22272,'4000','121673642253','2023-01-13 23:38:48',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22273,'4000','121673642253','2023-01-13 23:38:48',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(22274,'4000','121673642253','2023-01-13 23:38:48',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(22275,'1110','121673642448','2023-01-13 23:49:28',NULL,92.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(22276,'5500','121673642448','2023-01-13 23:49:28',92.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22277,'1000','121673642448','2023-01-13 23:49:28',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22278,'4000','121673642448','2023-01-13 23:49:28',NULL,300.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(22279,'1110','121673642973','2023-01-14 00:11:28',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22280,'1110','121673642973','2023-01-14 00:11:28',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22281,'5500','121673642973','2023-01-14 00:11:28',777.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22282,'1000','121673642973','2023-01-14 00:11:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22283,'4000','121673642973','2023-01-14 00:11:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22284,'4000','121673642973','2023-01-14 00:11:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22285,'1110','121673646400','2023-01-14 00:47:19',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(22286,'5500','121673646400','2023-01-14 00:47:19',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22287,'1000','121673646400','2023-01-14 00:47:19',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22288,'4000','121673646400','2023-01-14 00:47:19',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(22289,'1110','121673646469','2023-01-14 00:49:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22290,'5500','121673646469','2023-01-14 00:49:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22291,'1000','121673646469','2023-01-14 00:49:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22292,'4000','121673646469','2023-01-14 00:49:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22293,'1110','121673646593','2023-01-14 00:58:36',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22294,'1110','121673646593','2023-01-14 00:58:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22295,'1110','121673646593','2023-01-14 00:58:36',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22296,'1110','121673646593','2023-01-14 00:58:36',NULL,93.86,'','12','1','Inventory sold','1','','sales','3086120600020','','No',NULL,NULL,''),(22297,'1110','121673646593','2023-01-14 00:58:36',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22298,'5500','121673646593','2023-01-14 00:58:36',1522.02,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22299,'1000','121673646593','2023-01-14 00:58:36',2460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22300,'4000','121673646593','2023-01-14 00:58:36',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22301,'4000','121673646593','2023-01-14 00:58:36',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22302,'4000','121673646593','2023-01-14 00:58:36',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22303,'4000','121673646593','2023-01-14 00:58:36',NULL,120.00,'','12','1','Good sold','1','','sales','3086120600020','','No',NULL,NULL,''),(22304,'4000','121673646593','2023-01-14 00:58:36',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22305,'1110','121673647226','2023-01-14 01:03:22',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22306,'1110','121673647226','2023-01-14 01:03:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22307,'1110','121673647226','2023-01-14 01:03:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22308,'5500','121673647226','2023-01-14 01:03:22',1773.68,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22309,'1000','121673647226','2023-01-14 01:03:22',2570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22310,'4000','121673647226','2023-01-14 01:03:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22311,'4000','121673647226','2023-01-14 01:03:22',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22312,'4000','121673647226','2023-01-14 01:03:22',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22313,'1110','121673647494','2023-01-14 01:13:41',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22314,'1110','121673647494','2023-01-14 01:13:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22315,'5500','121673647494','2023-01-14 01:13:41',337.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22316,'1000','121673647494','2023-01-14 01:13:41',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22317,'4000','121673647494','2023-01-14 01:13:41',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22318,'4000','121673647494','2023-01-14 01:13:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22319,'1110','121673648079','2023-01-14 01:24:57',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22320,'1110','121673648079','2023-01-14 01:24:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22321,'1110','121673648079','2023-01-14 01:24:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22322,'5500','121673648079','2023-01-14 01:24:57',435.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22323,'1000','121673648079','2023-01-14 01:24:57',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22324,'4000','121673648079','2023-01-14 01:24:57',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22325,'4000','121673648079','2023-01-14 01:24:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22326,'4000','121673648079','2023-01-14 01:24:57',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22327,'1110','121673648751','2023-01-14 01:40:31',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(22328,'1110','121673648751','2023-01-14 01:40:31',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22329,'1110','121673648751','2023-01-14 01:40:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22330,'5500','121673648751','2023-01-14 01:40:31',725.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22331,'1000','121673648751','2023-01-14 01:40:31',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22332,'4000','121673648751','2023-01-14 01:40:31',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(22333,'4000','121673648751','2023-01-14 01:40:31',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22334,'4000','121673648751','2023-01-14 01:40:31',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22335,'1110','121673649638','2023-01-14 01:47:35',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(22336,'5500','121673649638','2023-01-14 01:47:35',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22337,'1000','121673649638','2023-01-14 01:47:35',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22338,'4000','121673649638','2023-01-14 01:47:35',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(22339,'1110','121673650067','2023-01-14 01:50:32',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22340,'5500','121673650067','2023-01-14 01:50:32',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22341,'1000','121673650067','2023-01-14 01:50:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22342,'4000','121673650067','2023-01-14 01:50:32',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22343,'1110','121673650237','2023-01-14 01:52:40',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22344,'5500','121673650237','2023-01-14 01:52:40',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22345,'1000','121673650237','2023-01-14 01:52:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22346,'4000','121673650237','2023-01-14 01:52:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22347,'1110','121673650398','2023-01-14 02:00:09',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22348,'5500','121673650398','2023-01-14 02:00:09',428.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22349,'1000','121673650398','2023-01-14 02:00:09',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22350,'4000','121673650398','2023-01-14 02:00:09',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22351,'1110','121673650815','2023-01-14 02:51:54',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(22352,'1110','121673650815','2023-01-14 02:51:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22353,'5500','121673650815','2023-01-14 02:51:54',297.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22354,'1000','121673650815','2023-01-14 02:51:54',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22355,'4000','121673650815','2023-01-14 02:51:54',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(22356,'4000','121673650815','2023-01-14 02:51:54',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22357,'1110','121673653979','2023-01-14 03:15:05',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22358,'1110','121673653979','2023-01-14 03:15:05',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(22359,'5500','121673653979','2023-01-14 03:15:05',565.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22360,'1000','121673653979','2023-01-14 03:15:05',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22361,'4000','121673653979','2023-01-14 03:15:05',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22362,'4000','121673653979','2023-01-14 03:15:05',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(22363,'1110','121673655335','2023-01-14 03:42:23',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22364,'5500','121673655335','2023-01-14 03:42:23',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22365,'1000','121673655335','2023-01-14 03:42:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22366,'4000','121673655335','2023-01-14 03:42:23',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22367,'1110','121673656952','2023-01-14 04:11:25',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161100421561','','No',NULL,NULL,''),(22368,'1110','121673656952','2023-01-14 04:11:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(22369,'5500','121673656952','2023-01-14 04:11:25',748.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22370,'1000','121673656952','2023-01-14 04:11:25',1450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22371,'4000','121673656952','2023-01-14 04:11:25',NULL,1300.00,'','12','1','Good sold','1','','sales','6161100421561','','No',NULL,NULL,''),(22372,'4000','121673656952','2023-01-14 04:11:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(22373,'1110','121673668284','2023-01-14 06:54:02',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(22374,'1110','121673668284','2023-01-14 06:54:02',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22375,'1110','121673668284','2023-01-14 06:54:02',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22376,'5500','121673668284','2023-01-14 06:54:02',2794.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22377,'1000','121673668284','2023-01-14 06:54:02',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22378,'4000','121673668284','2023-01-14 06:54:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(22379,'4000','121673668284','2023-01-14 06:54:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22380,'4000','121673668284','2023-01-14 06:54:02',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22381,'1110','121673692414','2023-01-14 13:35:58',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(22382,'1110','121673692414','2023-01-14 13:35:58',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22383,'1110','121673692414','2023-01-14 13:35:58',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22384,'1110','121673692414','2023-01-14 13:35:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22385,'5500','121673692414','2023-01-14 13:35:58',2579.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22386,'1000','121673692414','2023-01-14 13:35:58',4080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22387,'4000','121673692414','2023-01-14 13:35:58',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(22388,'4000','121673692414','2023-01-14 13:35:58',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22389,'4000','121673692414','2023-01-14 13:35:58',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22390,'4000','121673692414','2023-01-14 13:35:58',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22391,'1110','121673692562','2023-01-14 13:43:49',NULL,230.00,'','12','1','Inventory sold','1','','sales','6008835000947','','No',NULL,NULL,''),(22392,'5500','121673692562','2023-01-14 13:43:49',230.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22393,'1000','121673692562','2023-01-14 13:43:49',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22394,'4000','121673692562','2023-01-14 13:43:49',NULL,380.00,'','12','1','Good sold','1','','sales','6008835000947','','No',NULL,NULL,''),(22395,'1110','121673702872','2023-01-14 16:29:38',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(22396,'5500','121673702872','2023-01-14 16:29:38',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22397,'1000','121673702872','2023-01-14 16:29:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22398,'4000','121673702872','2023-01-14 16:29:38',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(22399,'1110','121673705635','2023-01-14 17:14:12',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22400,'5500','121673705635','2023-01-14 17:14:12',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22401,'1000','121673705635','2023-01-14 17:14:12',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22402,'4000','121673705635','2023-01-14 17:14:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22403,'1110','121673721232','2023-01-14 21:34:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22404,'5500','121673721232','2023-01-14 21:34:45',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22405,'1000','121673721232','2023-01-14 21:34:45',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22406,'4000','121673721232','2023-01-14 21:34:45',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22407,'1110','121673721290','2023-01-14 21:44:38',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22408,'5500','121673721290','2023-01-14 21:44:38',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22409,'1000','121673721290','2023-01-14 21:44:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22410,'4000','121673721290','2023-01-14 21:44:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22411,'1110','121673721883','2023-01-14 22:52:36',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22412,'1110','121673721883','2023-01-14 22:52:36',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22413,'5500','121673721883','2023-01-14 22:52:36',579.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22414,'1000','121673721883','2023-01-14 22:52:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22415,'4000','121673721883','2023-01-14 22:52:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22416,'4000','121673721883','2023-01-14 22:52:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22417,'1110','121673725961','2023-01-14 23:16:28',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(22418,'1110','121673725961','2023-01-14 23:16:28',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(22419,'5500','121673725961','2023-01-14 23:16:28',1196.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22420,'1000','121673725961','2023-01-14 23:16:28',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22421,'4000','121673725961','2023-01-14 23:16:28',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(22422,'4000','121673725961','2023-01-14 23:16:28',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(22423,'1110','121673727430','2023-01-14 23:22:15',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22424,'5500','121673727430','2023-01-14 23:22:15',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22425,'1000','121673727430','2023-01-14 23:22:15',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22426,'4000','121673727430','2023-01-14 23:22:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22427,'1110','121673727830','2023-01-14 23:24:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22428,'5500','121673727830','2023-01-14 23:24:45',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22429,'1000','121673727830','2023-01-14 23:24:45',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22430,'4000','121673727830','2023-01-14 23:24:45',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22431,'1110','121673729044','2023-01-15 00:09:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22432,'1110','121673729044','2023-01-15 00:09:43',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22433,'1110','121673729044','2023-01-15 00:09:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22434,'5500','121673729044','2023-01-15 00:09:43',287.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22435,'1000','121673729044','2023-01-15 00:09:43',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22436,'4000','121673729044','2023-01-15 00:09:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22437,'4000','121673729044','2023-01-15 00:09:43',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22438,'4000','121673729044','2023-01-15 00:09:43',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22439,'1110','121673730595','2023-01-15 00:11:20',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(22440,'5500','121673730595','2023-01-15 00:11:20',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22441,'1000','121673730595','2023-01-15 00:11:20',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22442,'4000','121673730595','2023-01-15 00:11:20',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(22443,'1110','121673730686','2023-01-15 00:11:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22444,'5500','121673730686','2023-01-15 00:11:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22445,'1000','121673730686','2023-01-15 00:11:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22446,'4000','121673730686','2023-01-15 00:11:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22447,'1110','121673730725','2023-01-15 00:21:39',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(22448,'1110','121673730725','2023-01-15 00:21:39',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22449,'5500','121673730725','2023-01-15 00:21:39',521.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22450,'1000','121673730725','2023-01-15 00:21:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22451,'4000','121673730725','2023-01-15 00:21:39',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(22452,'4000','121673730725','2023-01-15 00:21:39',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22453,'1110','121673731546','2023-01-15 00:26:20',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22454,'1110','121673731546','2023-01-15 00:26:20',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22455,'5500','121673731546','2023-01-15 00:26:20',496.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22456,'1000','121673731546','2023-01-15 00:26:20',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22457,'4000','121673731546','2023-01-15 00:26:20',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22458,'4000','121673731546','2023-01-15 00:26:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22459,'1110','121673731662','2023-01-15 00:32:54',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22460,'1110','121673731662','2023-01-15 00:32:54',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22461,'5500','121673731662','2023-01-15 00:32:54',1886.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22462,'1000','121673731662','2023-01-15 00:32:54',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22463,'4000','121673731662','2023-01-15 00:32:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22464,'4000','121673731662','2023-01-15 00:32:54',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22465,'1110','121673731979','2023-01-15 00:33:36',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(22466,'5500','121673731979','2023-01-15 00:33:36',1098.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22467,'1000','121673731979','2023-01-15 00:33:36',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22468,'4000','121673731979','2023-01-15 00:33:36',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(22469,'1110','121673732042','2023-01-15 00:36:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22470,'5500','121673732042','2023-01-15 00:36:20',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22471,'1000','121673732042','2023-01-15 00:36:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22472,'4000','121673732042','2023-01-15 00:36:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22473,'1110','121673732185','2023-01-15 00:39:28',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(22474,'5500','121673732185','2023-01-15 00:39:28',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22475,'1000','121673732185','2023-01-15 00:39:28',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22476,'4000','121673732185','2023-01-15 00:39:28',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(22477,'1110','121673732435','2023-01-15 00:44:28',NULL,660.00,'','12','1','Inventory sold','1','','sales','8906125990009','','No',NULL,NULL,''),(22478,'5500','121673732435','2023-01-15 00:44:28',660.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22479,'1000','121673732435','2023-01-15 00:44:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22480,'4000','121673732435','2023-01-15 00:44:28',NULL,1000.00,'','12','1','Good sold','1','','sales','8906125990009','','No',NULL,NULL,''),(22481,'1110','121673732800','2023-01-15 00:51:55',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22482,'5500','121673732800','2023-01-15 00:51:55',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22483,'1000','121673732800','2023-01-15 00:51:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22484,'4000','121673732800','2023-01-15 00:51:55',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22485,'1110','121673733123','2023-01-15 00:53:40',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22486,'1110','121673733123','2023-01-15 00:53:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22487,'5500','121673733123','2023-01-15 00:53:40',321.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22488,'1000','121673733123','2023-01-15 00:53:40',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22489,'4000','121673733123','2023-01-15 00:53:40',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22490,'4000','121673733123','2023-01-15 00:53:40',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22491,'1110','121673733231','2023-01-15 01:02:02',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(22492,'1110','121673733231','2023-01-15 01:02:02',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22493,'1110','121673733231','2023-01-15 01:02:02',NULL,111.24,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22494,'5500','121673733231','2023-01-15 01:02:02',1383.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22495,'1000','121673733231','2023-01-15 01:02:02',2190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22496,'4000','121673733231','2023-01-15 01:02:02',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(22497,'4000','121673733231','2023-01-15 01:02:02',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22498,'4000','121673733231','2023-01-15 01:02:02',NULL,210.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22499,'1110','121673733763','2023-01-15 01:06:43',NULL,948.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22500,'1110','121673733763','2023-01-15 01:06:43',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22501,'1110','121673733763','2023-01-15 01:06:43',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22502,'5500','121673733763','2023-01-15 01:06:43',2272.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22503,'1000','121673733763','2023-01-15 01:06:43',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22504,'4000','121673733763','2023-01-15 01:06:43',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22505,'4000','121673733763','2023-01-15 01:06:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22506,'4000','121673733763','2023-01-15 01:06:43',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22507,'1110','121673734062','2023-01-15 01:08:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22508,'5500','121673734062','2023-01-15 01:08:32',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22509,'1000','121673734062','2023-01-15 01:08:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22510,'4000','121673734062','2023-01-15 01:08:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22511,'1110','121673734117','2023-01-15 01:14:13',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(22512,'5500','121673734117','2023-01-15 01:14:13',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22513,'1000','121673734117','2023-01-15 01:14:13',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22514,'4000','121673734117','2023-01-15 01:14:13',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(22515,'1110','121673734552','2023-01-15 01:25:20',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22516,'1110','121673734552','2023-01-15 01:25:20',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22517,'1110','121673734552','2023-01-15 01:25:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22518,'1110','121673734552','2023-01-15 01:25:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22519,'5500','121673734552','2023-01-15 01:25:20',777.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22520,'1000','121673734552','2023-01-15 01:25:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22521,'4000','121673734552','2023-01-15 01:25:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22522,'4000','121673734552','2023-01-15 01:25:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22523,'4000','121673734552','2023-01-15 01:25:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22524,'4000','121673734552','2023-01-15 01:25:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22525,'1110','121673735131','2023-01-15 01:39:15',NULL,885.00,'','12','1','Inventory sold','1','','sales','4820163121956','','No',NULL,NULL,''),(22526,'5500','121673735131','2023-01-15 01:39:15',885.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22527,'1000','121673735131','2023-01-15 01:39:15',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22528,'4000','121673735131','2023-01-15 01:39:15',NULL,1500.00,'','12','1','Good sold','1','','sales','4820163121956','','No',NULL,NULL,''),(22529,'1110','121673735960','2023-01-15 01:59:57',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22530,'5500','121673735960','2023-01-15 01:59:57',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22531,'1000','121673735960','2023-01-15 01:59:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22532,'4000','121673735960','2023-01-15 01:59:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22533,'1110','121673737839','2023-01-15 02:12:04',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22534,'1110','121673737839','2023-01-15 02:12:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22535,'5500','121673737839','2023-01-15 02:12:04',341.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22536,'1000','121673737839','2023-01-15 02:12:04',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22537,'4000','121673737839','2023-01-15 02:12:04',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22538,'4000','121673737839','2023-01-15 02:12:04',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22539,'1110','121673737975','2023-01-15 02:53:11',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22540,'5500','121673737975','2023-01-15 02:53:11',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22541,'1000','121673737975','2023-01-15 02:53:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22542,'4000','121673737975','2023-01-15 02:53:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22543,'1110','121673740398','2023-01-15 03:01:29',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22544,'1110','121673740398','2023-01-15 03:01:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22545,'1110','121673740398','2023-01-15 03:01:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22546,'1110','121673740398','2023-01-15 03:01:29',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22547,'1110','121673740398','2023-01-15 03:01:29',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22548,'5500','121673740398','2023-01-15 03:01:29',1288.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22549,'1000','121673740398','2023-01-15 03:01:29',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22550,'4000','121673740398','2023-01-15 03:01:29',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(22551,'4000','121673740398','2023-01-15 03:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22552,'4000','121673740398','2023-01-15 03:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22553,'4000','121673740398','2023-01-15 03:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22554,'4000','121673740398','2023-01-15 03:01:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22555,'1110','121673740897','2023-01-15 03:05:52',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(22556,'1110','121673740897','2023-01-15 03:05:52',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(22557,'1110','121673740897','2023-01-15 03:05:52',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22558,'5500','121673740897','2023-01-15 03:05:52',854.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22559,'1000','121673740897','2023-01-15 03:05:52',1190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22560,'4000','121673740897','2023-01-15 03:05:52',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(22561,'4000','121673740897','2023-01-15 03:05:52',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(22562,'4000','121673740897','2023-01-15 03:05:52',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22563,'1110','121673741203','2023-01-15 03:21:04',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22564,'1110','121673741203','2023-01-15 03:21:04',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22565,'5500','121673741203','2023-01-15 03:21:04',590.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22566,'1000','121673741203','2023-01-15 03:21:04',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22567,'4000','121673741203','2023-01-15 03:21:04',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(22568,'4000','121673741203','2023-01-15 03:21:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22569,'1110','121673742096','2023-01-15 04:09:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22570,'1110','121673742096','2023-01-15 04:09:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22571,'1110','121673742096','2023-01-15 04:09:02',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22572,'5500','121673742096','2023-01-15 04:09:02',438.72,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22573,'1000','121673742096','2023-01-15 04:09:02',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22574,'4000','121673742096','2023-01-15 04:09:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22575,'4000','121673742096','2023-01-15 04:09:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(22576,'4000','121673742096','2023-01-15 04:09:02',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22577,'1110','121673746449','2023-01-15 04:39:15',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22578,'1110','121673746449','2023-01-15 04:39:15',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22579,'5500','121673746449','2023-01-15 04:39:15',441.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22580,'1000','121673746449','2023-01-15 04:39:15',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22581,'4000','121673746449','2023-01-15 04:39:15',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22582,'4000','121673746449','2023-01-15 04:39:15',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22583,'1110','121673747307','2023-01-15 04:50:31',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22584,'1110','121673747307','2023-01-15 04:50:31',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22585,'5500','121673747307','2023-01-15 04:50:31',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22586,'1000','121673747307','2023-01-15 04:50:31',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22587,'4000','121673747307','2023-01-15 04:50:31',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22588,'4000','121673747307','2023-01-15 04:50:31',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22589,'1110','121673748100','2023-01-15 05:44:49',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22590,'1110','121673748100','2023-01-15 05:44:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22591,'1110','121673748100','2023-01-15 05:44:49',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(22592,'5500','121673748100','2023-01-15 05:44:49',502.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22593,'1000','121673748100','2023-01-15 05:44:49',790.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22594,'4000','121673748100','2023-01-15 05:44:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22595,'4000','121673748100','2023-01-15 05:44:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22596,'4000','121673748100','2023-01-15 05:44:49',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(22597,'1110','121673765821','2023-01-15 09:57:10',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22598,'5500','121673765821','2023-01-15 09:57:10',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22599,'1000','121673765821','2023-01-15 09:57:10',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22600,'4000','121673765821','2023-01-15 09:57:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22601,'1110','121673774880','2023-01-15 12:28:13',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(22602,'5500','121673774880','2023-01-15 12:28:13',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22603,'1000','121673774880','2023-01-15 12:28:13',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22604,'4000','121673774880','2023-01-15 12:28:13',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(22605,'1110','121673774900','2023-01-15 12:37:59',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(22606,'5500','121673774900','2023-01-15 12:37:59',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22607,'1000','121673774900','2023-01-15 12:37:59',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22608,'4000','121673774900','2023-01-15 12:37:59',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(22609,'1110','121673778654','2023-01-15 15:32:40',NULL,5458.00,'','12','1','Inventory sold','1','','sales','5000267134338','','No',NULL,NULL,''),(22610,'5500','121673778654','2023-01-15 15:32:40',5458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22611,'1000','121673778654','2023-01-15 15:32:40',7300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22612,'4000','121673778654','2023-01-15 15:32:40',NULL,7300.00,'','12','1','Good sold','1','','sales','5000267134338','','No',NULL,NULL,''),(22613,'1110','121673786098','2023-01-15 16:18:19',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(22614,'1110','121673786098','2023-01-15 16:18:19',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22615,'5500','121673786098','2023-01-15 16:18:19',866.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22616,'1000','121673786098','2023-01-15 16:18:19',1470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22617,'4000','121673786098','2023-01-15 16:18:19',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(22618,'4000','121673786098','2023-01-15 16:18:19',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22619,'1110','121673799006','2023-01-15 19:11:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22620,'1110','121673799006','2023-01-15 19:11:31',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22621,'1110','121673799006','2023-01-15 19:11:31',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(22622,'5500','121673799006','2023-01-15 19:11:31',467.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22623,'1000','121673799006','2023-01-15 19:11:31',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22624,'4000','121673799006','2023-01-15 19:11:31',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22625,'4000','121673799006','2023-01-15 19:11:31',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(22626,'4000','121673799006','2023-01-15 19:11:31',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(22627,'1110','121673799341','2023-01-15 19:21:13',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(22628,'1110','121673799341','2023-01-15 19:21:13',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22629,'5500','121673799341','2023-01-15 19:21:13',472.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22630,'1000','121673799341','2023-01-15 19:21:13',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22631,'4000','121673799341','2023-01-15 19:21:13',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(22632,'4000','121673799341','2023-01-15 19:21:13',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(22633,'1110','121673799701','2023-01-15 20:51:23',NULL,1552.00,'','12','1','Inventory sold','1','','sales','5010314750008','','No',NULL,NULL,''),(22634,'5500','121673799701','2023-01-15 20:51:23',1552.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22635,'1000','121673799701','2023-01-15 20:51:23',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22636,'4000','121673799701','2023-01-15 20:51:23',NULL,2100.00,'','12','1','Good sold','1','','sales','5010314750008','','No',NULL,NULL,''),(22637,'1110','121673805128','2023-01-15 21:26:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22638,'5500','121673805128','2023-01-15 21:26:38',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22639,'1000','121673805128','2023-01-15 21:26:38',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22640,'4000','121673805128','2023-01-15 21:26:38',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22641,'1110','121673807268','2023-01-15 21:32:33',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22642,'1110','121673807268','2023-01-15 21:32:33',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22643,'5500','121673807268','2023-01-15 21:32:33',220.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22644,'1000','121673807268','2023-01-15 21:32:33',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22645,'4000','121673807268','2023-01-15 21:32:33',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22646,'4000','121673807268','2023-01-15 21:32:33',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22647,'1110','121673807564','2023-01-15 21:41:06',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22648,'5500','121673807564','2023-01-15 21:41:06',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22649,'1000','121673807564','2023-01-15 21:41:06',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22650,'4000','121673807564','2023-01-15 21:41:06',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22651,'1110','121673808148','2023-01-15 21:42:46',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22652,'5500','121673808148','2023-01-15 21:42:46',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22653,'1000','121673808148','2023-01-15 21:42:46',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22654,'4000','121673808148','2023-01-15 21:42:46',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22655,'1110','121673808728','2023-01-15 21:52:21',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22656,'5500','121673808728','2023-01-15 21:52:21',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22657,'1000','121673808728','2023-01-15 21:52:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22658,'4000','121673808728','2023-01-15 21:52:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22659,'1110','121673808745','2023-01-15 22:15:07',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22660,'5500','121673808745','2023-01-15 22:15:07',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22661,'1000','121673808745','2023-01-15 22:15:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22662,'4000','121673808745','2023-01-15 22:15:07',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22663,'1110','121673810121','2023-01-15 22:29:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22664,'1110','121673810121','2023-01-15 22:29:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22665,'5500','121673810121','2023-01-15 22:29:17',323.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22666,'1000','121673810121','2023-01-15 22:29:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22667,'4000','121673810121','2023-01-15 22:29:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22668,'4000','121673810121','2023-01-15 22:29:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22669,'1110','121673811673','2023-01-15 22:41:24',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(22670,'5500','121673811673','2023-01-15 22:41:24',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22671,'1000','121673811673','2023-01-15 22:41:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22672,'4000','121673811673','2023-01-15 22:41:24',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(22673,'1110','121673811690','2023-01-15 22:43:39',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22674,'1110','121673811690','2023-01-15 22:43:39',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22675,'5500','121673811690','2023-01-15 22:43:39',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22676,'1000','121673811690','2023-01-15 22:43:39',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22677,'4000','121673811690','2023-01-15 22:43:39',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22678,'4000','121673811690','2023-01-15 22:43:39',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(22679,'1110','121673811969','2023-01-15 23:41:38',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(22680,'5500','121673811969','2023-01-15 23:41:38',710.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22681,'1000','121673811969','2023-01-15 23:41:38',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22682,'4000','121673811969','2023-01-15 23:41:38',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(22683,'1110','121673816449','2023-01-16 00:01:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22684,'1110','121673816449','2023-01-16 00:01:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22685,'5500','121673816449','2023-01-16 00:01:13',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22686,'1000','121673816449','2023-01-16 00:01:13',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22687,'4000','121673816449','2023-01-16 00:01:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22688,'4000','121673816449','2023-01-16 00:01:13',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22689,'1110','121673816480','2023-01-16 00:34:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22690,'5500','121673816480','2023-01-16 00:34:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22691,'1000','121673816480','2023-01-16 00:34:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22692,'4000','121673816480','2023-01-16 00:34:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22693,'1110','121673818476','2023-01-16 00:35:50',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22694,'1110','121673818476','2023-01-16 00:35:50',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22695,'5500','121673818476','2023-01-16 00:35:50',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22696,'1000','121673818476','2023-01-16 00:35:50',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22697,'4000','121673818476','2023-01-16 00:35:50',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22698,'4000','121673818476','2023-01-16 00:35:50',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(22699,'1110','121673818554','2023-01-16 01:00:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22700,'5500','121673818554','2023-01-16 01:00:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22701,'1000','121673818554','2023-01-16 01:00:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22702,'4000','121673818554','2023-01-16 01:00:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22703,'1110','121673828055','2023-01-16 07:19:53',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22704,'5500','121673828055','2023-01-16 07:19:53',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22705,'1000','121673828055','2023-01-16 07:19:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22706,'4000','121673828055','2023-01-16 07:19:53',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22707,'1110','121673842802','2023-01-16 07:20:15',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22708,'5500','121673842802','2023-01-16 07:20:15',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22709,'1000','121673842802','2023-01-16 07:20:15',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22710,'4000','121673842802','2023-01-16 07:20:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22711,'1110','121673848599','2023-01-16 09:26:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22712,'5500','121673848599','2023-01-16 09:26:41',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22713,'1000','121673848599','2023-01-16 09:26:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22714,'4000','121673848599','2023-01-16 09:26:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22715,'1110','121673864944','2023-01-16 13:41:58',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22716,'5500','121673864944','2023-01-16 13:41:58',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22717,'1000','121673864944','2023-01-16 13:41:58',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22718,'4000','121673864944','2023-01-16 13:41:58',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22719,'1110','121673865724','2023-01-16 13:52:20',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22720,'5500','121673865724','2023-01-16 13:52:20',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22721,'1000','121673865724','2023-01-16 13:52:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22722,'4000','121673865724','2023-01-16 13:52:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22723,'1110','121673866345','2023-01-16 14:58:22',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(22724,'1110','121673866345','2023-01-16 14:58:22',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(22725,'5500','121673866345','2023-01-16 14:58:22',2106.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22726,'1000','121673866345','2023-01-16 14:58:22',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22727,'4000','121673866345','2023-01-16 14:58:22',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(22728,'4000','121673866345','2023-01-16 14:58:22',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(22729,'1110','121673870318','2023-01-16 15:24:00',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22730,'5500','121673870318','2023-01-16 15:24:00',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22731,'1000','121673870318','2023-01-16 15:24:00',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22732,'4000','121673870318','2023-01-16 15:24:00',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22733,'1110','121673875726','2023-01-16 16:30:33',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(22734,'1110','121673875726','2023-01-16 16:30:33',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22735,'5500','121673875726','2023-01-16 16:30:33',1357.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22736,'1000','121673875726','2023-01-16 16:30:33',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22737,'4000','121673875726','2023-01-16 16:30:33',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(22738,'4000','121673875726','2023-01-16 16:30:33',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(22739,'1110','121673885035','2023-01-16 19:42:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22740,'5500','121673885035','2023-01-16 19:42:02',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22741,'1000','121673885035','2023-01-16 19:42:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22742,'4000','121673885035','2023-01-16 19:42:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22743,'1110','121673896740','2023-01-16 22:28:57',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''); INSERT INTO `debitcredit` VALUES (22744,'5500','121673896740','2023-01-16 22:28:57',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22745,'1000','121673896740','2023-01-16 22:28:57',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22746,'4000','121673896740','2023-01-16 22:28:57',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22747,'1110','121673897343','2023-01-16 22:41:05',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(22748,'1110','121673897343','2023-01-16 22:41:05',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(22749,'1110','121673897343','2023-01-16 22:41:05',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(22750,'1110','121673897343','2023-01-16 22:41:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22751,'1110','121673897343','2023-01-16 22:41:05',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22752,'5500','121673897343','2023-01-16 22:41:05',6452.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22753,'1000','121673897343','2023-01-16 22:41:05',9250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22754,'4000','121673897343','2023-01-16 22:41:05',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(22755,'4000','121673897343','2023-01-16 22:41:05',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(22756,'4000','121673897343','2023-01-16 22:41:05',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(22757,'4000','121673897343','2023-01-16 22:41:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22758,'4000','121673897343','2023-01-16 22:41:05',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22759,'1110','121673898216','2023-01-16 22:43:53',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22760,'5500','121673898216','2023-01-16 22:43:53',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22761,'1000','121673898216','2023-01-16 22:43:53',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22762,'4000','121673898216','2023-01-16 22:43:53',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22763,'1110','121673903421','2023-01-17 00:10:54',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(22764,'1110','121673903421','2023-01-17 00:10:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22765,'5500','121673903421','2023-01-17 00:10:54',349.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22766,'1000','121673903421','2023-01-17 00:10:54',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22767,'4000','121673903421','2023-01-17 00:10:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(22768,'4000','121673903421','2023-01-17 00:10:54',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(22769,'1110','121673904260','2023-01-17 00:24:28',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22770,'5500','121673904260','2023-01-17 00:24:28',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22771,'1000','121673904260','2023-01-17 00:24:28',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22772,'4000','121673904260','2023-01-17 00:24:28',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22773,'1110','121673904273','2023-01-17 01:33:53',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22774,'5500','121673904273','2023-01-17 01:33:53',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22775,'1000','121673904273','2023-01-17 01:33:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22776,'4000','121673904273','2023-01-17 01:33:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22777,'1110','121673908440','2023-01-17 01:47:03',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22778,'1110','121673908440','2023-01-17 01:47:03',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22779,'1110','121673908440','2023-01-17 01:47:03',NULL,612.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22780,'1110','121673908440','2023-01-17 01:47:03',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22781,'1110','121673908440','2023-01-17 01:47:03',NULL,72.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(22782,'1110','121673908440','2023-01-17 01:47:03',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(22783,'5500','121673908440','2023-01-17 01:47:03',2869.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22784,'1000','121673908440','2023-01-17 01:47:03',4660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22785,'4000','121673908440','2023-01-17 01:47:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22786,'4000','121673908440','2023-01-17 01:47:03',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22787,'4000','121673908440','2023-01-17 01:47:03',NULL,1000.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22788,'4000','121673908440','2023-01-17 01:47:03',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22789,'4000','121673908440','2023-01-17 01:47:03',NULL,160.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(22790,'4000','121673908440','2023-01-17 01:47:03',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(22791,'1110','121673909413','2023-01-17 01:51:40',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22792,'1110','121673909413','2023-01-17 01:51:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22793,'5500','121673909413','2023-01-17 01:51:40',526.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22794,'1000','121673909413','2023-01-17 01:51:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22795,'4000','121673909413','2023-01-17 01:51:40',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(22796,'4000','121673909413','2023-01-17 01:51:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22797,'1110','121673909590','2023-01-17 02:42:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22798,'5500','121673909590','2023-01-17 02:42:55',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22799,'1000','121673909590','2023-01-17 02:42:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22800,'4000','121673909590','2023-01-17 02:42:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22801,'1110','121673912580','2023-01-17 02:43:13',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22802,'5500','121673912580','2023-01-17 02:43:13',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22803,'1000','121673912580','2023-01-17 02:43:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22804,'4000','121673912580','2023-01-17 02:43:13',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22805,'1110','121673912783','2023-01-17 03:33:57',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22806,'5500','121673912783','2023-01-17 03:33:57',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22807,'1000','121673912783','2023-01-17 03:33:57',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22808,'4000','121673912783','2023-01-17 03:33:57',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22809,'1110','121673942367','2023-01-17 11:37:59',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22810,'1110','121673942367','2023-01-17 11:37:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22811,'5500','121673942367','2023-01-17 11:37:59',337.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22812,'1000','121673942367','2023-01-17 11:37:59',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22813,'4000','121673942367','2023-01-17 11:37:59',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(22814,'4000','121673942367','2023-01-17 11:37:59',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(22815,'1110','121673954627','2023-01-17 14:23:57',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(22816,'5500','121673954627','2023-01-17 14:23:57',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22817,'1000','121673954627','2023-01-17 14:23:57',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22818,'4000','121673954627','2023-01-17 14:23:57',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(22819,'1110','121673954645','2023-01-17 15:31:19',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22820,'5500','121673954645','2023-01-17 15:31:19',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22821,'1000','121673954645','2023-01-17 15:31:19',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22822,'4000','121673954645','2023-01-17 15:31:19',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22823,'1110','121673958686','2023-01-17 15:44:04',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22824,'1110','121673958686','2023-01-17 15:44:04',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22825,'1110','121673958686','2023-01-17 15:44:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22826,'5500','121673958686','2023-01-17 15:44:04',1858.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22827,'1000','121673958686','2023-01-17 15:44:04',3030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22828,'4000','121673958686','2023-01-17 15:44:04',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22829,'4000','121673958686','2023-01-17 15:44:04',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(22830,'4000','121673958686','2023-01-17 15:44:04',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22831,'1110','121673959629','2023-01-17 16:48:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22832,'5500','121673959629','2023-01-17 16:48:24',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22833,'1000','121673959629','2023-01-17 16:48:24',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22834,'4000','121673959629','2023-01-17 16:48:24',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(22835,'1110','121673963438','2023-01-17 17:11:28',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22836,'5500','121673963438','2023-01-17 17:11:28',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22837,'1000','121673963438','2023-01-17 17:11:28',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22838,'4000','121673963438','2023-01-17 17:11:28',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22839,'1110','121673964898','2023-01-17 17:15:28',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22840,'1110','121673964898','2023-01-17 17:15:28',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(22841,'5500','121673964898','2023-01-17 17:15:28',839.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22842,'1000','121673964898','2023-01-17 17:15:28',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22843,'4000','121673964898','2023-01-17 17:15:28',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22844,'4000','121673964898','2023-01-17 17:15:28',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(22845,'1110','121673965026','2023-01-17 17:38:06',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22846,'5500','121673965026','2023-01-17 17:38:06',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22847,'1000','121673965026','2023-01-17 17:38:06',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22848,'4000','121673965026','2023-01-17 17:38:06',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22849,'1110','121673966291','2023-01-17 17:38:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(22850,'5500','121673966291','2023-01-17 17:38:31',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22851,'1000','121673966291','2023-01-17 17:38:31',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22852,'4000','121673966291','2023-01-17 17:38:31',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(22853,'1110','121673966319','2023-01-17 18:06:00',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22854,'5500','121673966319','2023-01-17 18:06:00',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22855,'1000','121673966319','2023-01-17 18:06:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22856,'4000','121673966319','2023-01-17 18:06:00',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22857,'1110','121673967966','2023-01-17 18:58:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(22858,'5500','121673967966','2023-01-17 18:58:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22859,'1000','121673967966','2023-01-17 18:58:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22860,'4000','121673967966','2023-01-17 18:58:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(22861,'1110','121673971132','2023-01-17 19:19:58',NULL,1018.00,'','12','1','Inventory sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22862,'1110','121673971132','2023-01-17 19:19:58',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(22863,'1110','121673971132','2023-01-17 19:19:58',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(22864,'5500','121673971132','2023-01-17 19:19:58',1413.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22865,'1000','121673971132','2023-01-17 19:19:58',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22866,'4000','121673971132','2023-01-17 19:19:58',NULL,1700.00,'','12','1','Good sold','1','','sales','3800032010568','','No',NULL,NULL,''),(22867,'4000','121673971132','2023-01-17 19:19:58',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(22868,'4000','121673971132','2023-01-17 19:19:58',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(22869,'1110','121673972925','2023-01-17 19:34:09',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22870,'5500','121673972925','2023-01-17 19:34:09',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22871,'1000','121673972925','2023-01-17 19:34:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22872,'4000','121673972925','2023-01-17 19:34:09',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(22873,'1110','121673973255','2023-01-17 20:08:41',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22874,'1110','121673973255','2023-01-17 20:08:41',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22875,'5500','121673973255','2023-01-17 20:08:41',983.55,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22876,'1000','121673973255','2023-01-17 20:08:41',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22877,'4000','121673973255','2023-01-17 20:08:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(22878,'4000','121673973255','2023-01-17 20:08:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22879,'1110','121673975329','2023-01-17 21:10:14',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(22880,'1110','121673975329','2023-01-17 21:10:14',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(22881,'5500','121673975329','2023-01-17 21:10:14',2189.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22882,'1000','121673975329','2023-01-17 21:10:14',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22883,'4000','121673975329','2023-01-17 21:10:14',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(22884,'4000','121673975329','2023-01-17 21:10:14',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(22885,'1110','121673979070','2023-01-17 21:12:35',NULL,4022.00,'','12','1','Inventory sold','1','','sales','6001495062508','','No',NULL,NULL,''),(22886,'1110','121673979070','2023-01-17 21:12:35',NULL,1382.66,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22887,'1110','121673979070','2023-01-17 21:12:35',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22888,'5500','121673979070','2023-01-17 21:12:35',6156.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22889,'1000','121673979070','2023-01-17 21:12:35',8850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22890,'4000','121673979070','2023-01-17 21:12:35',NULL,5600.00,'','12','1','Good sold','1','','sales','6001495062508','','No',NULL,NULL,''),(22891,'4000','121673979070','2023-01-17 21:12:35',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22892,'4000','121673979070','2023-01-17 21:12:35',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(22893,'1110','121673979174','2023-01-17 21:15:06',NULL,3200.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(22894,'1110','121673979174','2023-01-17 21:15:06',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22895,'5500','121673979174','2023-01-17 21:15:06',3274.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22896,'1000','121673979174','2023-01-17 21:15:06',4500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22897,'4000','121673979174','2023-01-17 21:15:06',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(22898,'4000','121673979174','2023-01-17 21:15:06',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(22899,'1110','121673979311','2023-01-17 21:19:52',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22900,'5500','121673979311','2023-01-17 21:19:52',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22901,'1000','121673979311','2023-01-17 21:19:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22902,'4000','121673979311','2023-01-17 21:19:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22903,'1110','121673979645','2023-01-17 22:33:10',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(22904,'1110','121673979645','2023-01-17 22:33:10',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22905,'5500','121673979645','2023-01-17 22:33:10',585.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22906,'1000','121673979645','2023-01-17 22:33:10',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22907,'4000','121673979645','2023-01-17 22:33:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(22908,'4000','121673979645','2023-01-17 22:33:10',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(22909,'1110','121673984015','2023-01-17 22:41:28',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22910,'5500','121673984015','2023-01-17 22:41:28',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22911,'1000','121673984015','2023-01-17 22:41:28',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22912,'4000','121673984015','2023-01-17 22:41:28',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22913,'1110','121673984949','2023-01-17 22:53:05',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(22914,'1110','121673984949','2023-01-17 22:53:05',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22915,'5500','121673984949','2023-01-17 22:53:05',986.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22916,'1000','121673984949','2023-01-17 22:53:05',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22917,'4000','121673984949','2023-01-17 22:53:05',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(22918,'4000','121673984949','2023-01-17 22:53:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22919,'1110','121673985192','2023-01-17 22:59:32',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22920,'1110','121673985192','2023-01-17 22:59:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22921,'5500','121673985192','2023-01-17 22:59:32',340.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22922,'1000','121673985192','2023-01-17 22:59:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22923,'4000','121673985192','2023-01-17 22:59:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22924,'4000','121673985192','2023-01-17 22:59:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22925,'1110','121673985579','2023-01-17 23:17:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22926,'1110','121673985579','2023-01-17 23:17:21',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22927,'1110','121673985579','2023-01-17 23:17:21',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22928,'5500','121673985579','2023-01-17 23:17:21',390.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22929,'1000','121673985579','2023-01-17 23:17:21',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22930,'4000','121673985579','2023-01-17 23:17:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22931,'4000','121673985579','2023-01-17 23:17:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(22932,'4000','121673985579','2023-01-17 23:17:21',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(22933,'1110','121673986647','2023-01-17 23:34:13',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22934,'5500','121673986647','2023-01-17 23:34:13',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22935,'1000','121673986647','2023-01-17 23:34:13',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22936,'4000','121673986647','2023-01-17 23:34:13',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(22937,'1110','121673987665','2023-01-17 23:49:44',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22938,'5500','121673987665','2023-01-17 23:49:44',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22939,'1000','121673987665','2023-01-17 23:49:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22940,'4000','121673987665','2023-01-17 23:49:44',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(22941,'1110','121673988651','2023-01-18 00:03:51',NULL,603.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(22942,'1110','121673988651','2023-01-18 00:03:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22943,'1110','121673988651','2023-01-18 00:03:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(22944,'1110','121673988651','2023-01-18 00:03:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(22945,'1110','121673988651','2023-01-18 00:03:51',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(22946,'5500','121673988651','2023-01-18 00:03:51',831.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22947,'1000','121673988651','2023-01-18 00:03:51',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22948,'4000','121673988651','2023-01-18 00:03:51',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(22949,'4000','121673988651','2023-01-18 00:03:51',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22950,'4000','121673988651','2023-01-18 00:03:51',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(22951,'4000','121673988651','2023-01-18 00:03:51',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(22952,'4000','121673988651','2023-01-18 00:03:51',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(22953,'1110','121673989691','2023-01-18 00:21:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22954,'1110','121673989691','2023-01-18 00:21:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22955,'5500','121673989691','2023-01-18 00:21:17',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22956,'1000','121673989691','2023-01-18 00:21:17',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22957,'4000','121673989691','2023-01-18 00:21:17',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(22958,'4000','121673989691','2023-01-18 00:21:17',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(22959,'1110','121673990486','2023-01-18 00:37:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22960,'5500','121673990486','2023-01-18 00:37:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22961,'1000','121673990486','2023-01-18 00:37:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22962,'4000','121673990486','2023-01-18 00:37:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(22963,'1110','121673995064','2023-01-18 01:38:20',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22964,'1110','121673995064','2023-01-18 01:38:20',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22965,'5500','121673995064','2023-01-18 01:38:20',717.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22966,'1000','121673995064','2023-01-18 01:38:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22967,'4000','121673995064','2023-01-18 01:38:20',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22968,'4000','121673995064','2023-01-18 01:38:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22969,'1110','121674005887','2023-01-18 04:41:04',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(22970,'1110','121674005887','2023-01-18 04:41:04',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(22971,'5500','121674005887','2023-01-18 04:41:04',1571.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22972,'1000','121674005887','2023-01-18 04:41:04',2660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22973,'4000','121674005887','2023-01-18 04:41:04',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(22974,'4000','121674005887','2023-01-18 04:41:04',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(22975,'1110','121674026752','2023-01-18 11:02:41',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22976,'5500','121674026752','2023-01-18 11:02:41',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22977,'1000','121674026752','2023-01-18 11:02:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22978,'4000','121674026752','2023-01-18 11:02:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22979,'1110','121674028969','2023-01-18 11:09:08',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22980,'5500','121674028969','2023-01-18 11:09:08',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22981,'1000','121674028969','2023-01-18 11:09:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22982,'4000','121674028969','2023-01-18 11:09:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22983,'1110','121674050561','2023-01-18 17:02:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22984,'5500','121674050561','2023-01-18 17:02:57',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22985,'1000','121674050561','2023-01-18 17:02:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22986,'4000','121674050561','2023-01-18 17:02:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(22987,'1110','121674050583','2023-01-18 18:59:51',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22988,'1110','121674050583','2023-01-18 18:59:51',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22989,'5500','121674050583','2023-01-18 18:59:51',691.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22990,'1000','121674050583','2023-01-18 18:59:51',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22991,'4000','121674050583','2023-01-18 18:59:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(22992,'4000','121674050583','2023-01-18 18:59:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(22993,'1110','121674059813','2023-01-18 19:37:07',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22994,'5500','121674059813','2023-01-18 19:37:07',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(22995,'1000','121674059813','2023-01-18 19:37:07',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22996,'4000','121674059813','2023-01-18 19:37:07',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(22997,'1110','121674059833','2023-01-18 21:31:34',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(22998,'1110','121674059833','2023-01-18 21:31:34',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(22999,'1110','121674059833','2023-01-18 21:31:34',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23000,'5500','121674059833','2023-01-18 21:31:34',1991.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23001,'1000','121674059833','2023-01-18 21:31:34',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23002,'4000','121674059833','2023-01-18 21:31:34',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(23003,'4000','121674059833','2023-01-18 21:31:34',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23004,'4000','121674059833','2023-01-18 21:31:34',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23005,'1110','121674066923','2023-01-18 21:48:06',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23006,'5500','121674066923','2023-01-18 21:48:06',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23007,'1000','121674066923','2023-01-18 21:48:06',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23008,'4000','121674066923','2023-01-18 21:48:06',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23009,'1110','121674072082','2023-01-18 23:05:48',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23010,'5500','121674072082','2023-01-18 23:05:48',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23011,'1000','121674072082','2023-01-18 23:05:48',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23012,'4000','121674072082','2023-01-18 23:05:48',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23013,'1110','121674072492','2023-01-18 23:22:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23014,'5500','121674072492','2023-01-18 23:22:54',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23015,'1000','121674072492','2023-01-18 23:22:54',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23016,'4000','121674072492','2023-01-18 23:22:54',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23017,'1110','121674073379','2023-01-18 23:49:19',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23018,'1110','121674073379','2023-01-18 23:49:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23019,'5500','121674073379','2023-01-18 23:49:19',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23020,'1000','121674073379','2023-01-18 23:49:19',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23021,'4000','121674073379','2023-01-18 23:49:19',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23022,'4000','121674073379','2023-01-18 23:49:19',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23023,'1110','121674074995','2023-01-19 01:11:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(23024,'5500','121674074995','2023-01-19 01:11:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23025,'1000','121674074995','2023-01-19 01:11:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23026,'4000','121674074995','2023-01-19 01:11:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(23027,'1110','121674082360','2023-01-19 01:53:14',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23028,'1110','121674082360','2023-01-19 01:53:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(23029,'1110','121674082360','2023-01-19 01:53:14',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23030,'5500','121674082360','2023-01-19 01:53:14',730.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23031,'1000','121674082360','2023-01-19 01:53:14',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23032,'4000','121674082360','2023-01-19 01:53:14',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23033,'4000','121674082360','2023-01-19 01:53:14',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(23034,'4000','121674082360','2023-01-19 01:53:14',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23035,'1110','121674142528','2023-01-19 18:35:38',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23036,'5500','121674142528','2023-01-19 18:35:38',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23037,'1000','121674142528','2023-01-19 18:35:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23038,'4000','121674142528','2023-01-19 18:35:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23039,'1110','121674142546','2023-01-19 18:42:49',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(23040,'1110','121674142546','2023-01-19 18:42:49',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(23041,'1110','121674142546','2023-01-19 18:42:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(23042,'5500','121674142546','2023-01-19 18:42:49',542.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23043,'1000','121674142546','2023-01-19 18:42:49',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23044,'4000','121674142546','2023-01-19 18:42:49',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(23045,'4000','121674142546','2023-01-19 18:42:49',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(23046,'4000','121674142546','2023-01-19 18:42:49',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(23047,'1110','121674143107','2023-01-19 19:42:39',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23048,'5500','121674143107','2023-01-19 19:42:39',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23049,'1000','121674143107','2023-01-19 19:42:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23050,'4000','121674143107','2023-01-19 19:42:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23051,'1110','121674146568','2023-01-19 20:16:10',NULL,5200.00,'','12','1','Inventory sold','1','','sales','080432402825','','No',NULL,NULL,''),(23052,'5500','121674146568','2023-01-19 20:16:10',5200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23053,'1000','121674146568','2023-01-19 20:16:10',7500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23054,'4000','121674146568','2023-01-19 20:16:10',NULL,7500.00,'','12','1','Good sold','1','','sales','080432402825','','No',NULL,NULL,''),(23055,'1110','121674148590','2023-01-19 20:36:32',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(23056,'5500','121674148590','2023-01-19 20:36:32',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23057,'1000','121674148590','2023-01-19 20:36:32',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23058,'4000','121674148590','2023-01-19 20:36:32',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(23059,'1110','121674149799','2023-01-19 20:49:26',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23060,'5500','121674149799','2023-01-19 20:49:26',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23061,'1000','121674149799','2023-01-19 20:49:26',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23062,'4000','121674149799','2023-01-19 20:49:26',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23063,'1110','121674150747','2023-01-19 21:24:16',NULL,1846.00,'','12','1','Inventory sold','1','','sales','080480280024','','No',NULL,NULL,''),(23064,'1110','121674150747','2023-01-19 21:24:16',NULL,735.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23065,'5500','121674150747','2023-01-19 21:24:16',2581.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23066,'1000','121674150747','2023-01-19 21:24:16',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23067,'4000','121674150747','2023-01-19 21:24:16',NULL,2600.00,'','12','1','Good sold','1','','sales','080480280024','','No',NULL,NULL,''),(23068,'4000','121674150747','2023-01-19 21:24:16',NULL,1150.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23069,'1110','121674152758','2023-01-19 21:47:23',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(23070,'1110','121674152758','2023-01-19 21:47:23',NULL,895.00,'','12','1','Inventory sold','1','','sales','7798039597570','','No',NULL,NULL,''),(23071,'5500','121674152758','2023-01-19 21:47:23',1595.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23072,'1000','121674152758','2023-01-19 21:47:23',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23073,'4000','121674152758','2023-01-19 21:47:23',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(23074,'4000','121674152758','2023-01-19 21:47:23',NULL,1600.00,'','12','1','Good sold','1','','sales','7798039597570','','No',NULL,NULL,''),(23075,'1110','121674154103','2023-01-19 22:28:04',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23076,'5500','121674154103','2023-01-19 22:28:04',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23077,'1000','121674154103','2023-01-19 22:28:04',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23078,'4000','121674154103','2023-01-19 22:28:04',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23079,'1110','121674156490','2023-01-19 23:24:11',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23080,'5500','121674156490','2023-01-19 23:24:11',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23081,'1000','121674156490','2023-01-19 23:24:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23082,'4000','121674156490','2023-01-19 23:24:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23083,'1110','121674159874','2023-01-20 00:14:57',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23084,'5500','121674159874','2023-01-20 00:14:57',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23085,'1000','121674159874','2023-01-20 00:14:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23086,'4000','121674159874','2023-01-20 00:14:57',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23087,'1110','121674162932','2023-01-20 00:19:05',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23088,'1110','121674162932','2023-01-20 00:19:05',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(23089,'1110','121674162932','2023-01-20 00:19:05',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(23090,'5500','121674162932','2023-01-20 00:19:05',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23091,'1000','121674162932','2023-01-20 00:19:05',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23092,'4000','121674162932','2023-01-20 00:19:05',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23093,'4000','121674162932','2023-01-20 00:19:05',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(23094,'4000','121674162932','2023-01-20 00:19:05',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(23095,'1110','121674163177','2023-01-20 00:39:42',NULL,210.00,'','12','1','Inventory sold','1','','sales','6161101561020','','No',NULL,NULL,''),(23096,'1110','121674163177','2023-01-20 00:39:42',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23097,'5500','121674163177','2023-01-20 00:39:42',398.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23098,'1000','121674163177','2023-01-20 00:39:42',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23099,'4000','121674163177','2023-01-20 00:39:42',NULL,400.00,'','12','1','Good sold','1','','sales','6161101561020','','No',NULL,NULL,''),(23100,'4000','121674163177','2023-01-20 00:39:42',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23101,'1110','121674164395','2023-01-20 00:40:08',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23102,'5500','121674164395','2023-01-20 00:40:08',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23103,'1000','121674164395','2023-01-20 00:40:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23104,'4000','121674164395','2023-01-20 00:40:08',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23105,'1110','121674164413','2023-01-20 00:43:58',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23106,'5500','121674164413','2023-01-20 00:43:58',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23107,'1000','121674164413','2023-01-20 00:43:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23108,'4000','121674164413','2023-01-20 00:43:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23109,'1110','121674164656','2023-01-20 00:50:23',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23110,'5500','121674164656','2023-01-20 00:50:23',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23111,'1000','121674164656','2023-01-20 00:50:23',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23112,'4000','121674164656','2023-01-20 00:50:23',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23113,'1110','121674165483','2023-01-20 00:58:12',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(23114,'1110','121674165483','2023-01-20 00:58:12',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23115,'5500','121674165483','2023-01-20 00:58:12',217.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23116,'1000','121674165483','2023-01-20 00:58:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23117,'4000','121674165483','2023-01-20 00:58:12',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(23118,'4000','121674165483','2023-01-20 00:58:12',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23119,'1110','121674165569','2023-01-20 01:06:16',NULL,1231.00,'','12','1','Inventory sold','1','','sales','7794450091604','','No',NULL,NULL,''),(23120,'1110','121674165569','2023-01-20 01:06:16',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23121,'5500','121674165569','2023-01-20 01:06:16',1922.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23122,'1000','121674165569','2023-01-20 01:06:16',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23123,'4000','121674165569','2023-01-20 01:06:16',NULL,2000.00,'','12','1','Good sold','1','','sales','7794450091604','','No',NULL,NULL,''),(23124,'4000','121674165569','2023-01-20 01:06:16',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23125,'1110','121674165981','2023-01-20 01:39:06',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23126,'1110','121674165981','2023-01-20 01:39:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23127,'5500','121674165981','2023-01-20 01:39:06',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23128,'1000','121674165981','2023-01-20 01:39:06',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23129,'4000','121674165981','2023-01-20 01:39:06',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23130,'4000','121674165981','2023-01-20 01:39:06',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23131,'1110','121674167955','2023-01-20 01:42:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(23132,'1110','121674167955','2023-01-20 01:42:05',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23133,'5500','121674167955','2023-01-20 01:42:05',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23134,'1000','121674167955','2023-01-20 01:42:05',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23135,'4000','121674167955','2023-01-20 01:42:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(23136,'4000','121674167955','2023-01-20 01:42:05',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23137,'1110','121674168436','2023-01-20 01:47:29',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23138,'5500','121674168436','2023-01-20 01:47:29',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23139,'1000','121674168436','2023-01-20 01:47:29',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23140,'4000','121674168436','2023-01-20 01:47:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23141,'1110','121674169410','2023-01-20 02:29:39',NULL,588.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23142,'5500','121674169410','2023-01-20 02:29:39',588.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23143,'1000','121674169410','2023-01-20 02:29:39',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23144,'4000','121674169410','2023-01-20 02:29:39',NULL,920.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23145,'1110','121674171009','2023-01-20 02:34:52',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23146,'1110','121674171009','2023-01-20 02:34:52',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23147,'5500','121674171009','2023-01-20 02:34:52',1984.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23148,'1000','121674171009','2023-01-20 02:34:52',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23149,'4000','121674171009','2023-01-20 02:34:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23150,'4000','121674171009','2023-01-20 02:34:52',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23151,'1110','121674171297','2023-01-20 03:33:41',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(23152,'1110','121674171297','2023-01-20 03:33:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23153,'5500','121674171297','2023-01-20 03:33:41',651.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23154,'1000','121674171297','2023-01-20 03:33:41',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23155,'4000','121674171297','2023-01-20 03:33:41',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(23156,'4000','121674171297','2023-01-20 03:33:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23157,'1110','121674190789','2023-01-20 08:03:07',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(23158,'1110','121674190789','2023-01-20 08:03:07',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23159,'5500','121674190789','2023-01-20 08:03:07',415.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23160,'1000','121674190789','2023-01-20 08:03:07',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23161,'4000','121674190789','2023-01-20 08:03:07',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(23162,'4000','121674190789','2023-01-20 08:03:07',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23163,'1110','121674190998','2023-01-20 09:25:44',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(23164,'5500','121674190998','2023-01-20 09:25:44',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23165,'1000','121674190998','2023-01-20 09:25:44',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23166,'4000','121674190998','2023-01-20 09:25:44',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(23167,'1110','121674195962','2023-01-20 09:26:58',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(23168,'5500','121674195962','2023-01-20 09:26:58',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23169,'1000','121674195962','2023-01-20 09:26:58',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23170,'4000','121674195962','2023-01-20 09:26:58',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(23171,'1110','121674196027','2023-01-20 10:24:23',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23172,'5500','121674196027','2023-01-20 10:24:23',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23173,'1000','121674196027','2023-01-20 10:24:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23174,'4000','121674196027','2023-01-20 10:24:23',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23175,'1110','121674230076','2023-01-20 19:10:17',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(23176,'5500','121674230076','2023-01-20 19:10:17',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23177,'1000','121674230076','2023-01-20 19:10:17',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23178,'4000','121674230076','2023-01-20 19:10:17',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(23179,'1110','121674231112','2023-01-20 19:12:12',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23180,'5500','121674231112','2023-01-20 19:12:12',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23181,'1000','121674231112','2023-01-20 19:12:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23182,'4000','121674231112','2023-01-20 19:12:12',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23183,'1110','121674235659','2023-01-20 20:27:51',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5010327605005','','No',NULL,NULL,''),(23184,'5500','121674235659','2023-01-20 20:27:51',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23185,'1000','121674235659','2023-01-20 20:27:51',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23186,'4000','121674235659','2023-01-20 20:27:51',NULL,1600.00,'','12','1','Good sold','1','','sales','5010327605005','','No',NULL,NULL,''),(23187,'1110','121674235679','2023-01-20 20:45:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23188,'5500','121674235679','2023-01-20 20:45:34',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23189,'1000','121674235679','2023-01-20 20:45:34',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23190,'4000','121674235679','2023-01-20 20:45:34',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23191,'1110','121674236955','2023-01-20 20:51:14',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(23192,'5500','121674236955','2023-01-20 20:51:14',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23193,'1000','121674236955','2023-01-20 20:51:14',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23194,'4000','121674236955','2023-01-20 20:51:14',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(23195,'1110','121674237397','2023-01-20 22:02:37',NULL,2300.00,'','12','1','Inventory sold','1','','sales','6001452301862','','No',NULL,NULL,''),(23196,'5500','121674237397','2023-01-20 22:02:37',2300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23197,'1000','121674237397','2023-01-20 22:02:37',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23198,'4000','121674237397','2023-01-20 22:02:37',NULL,3200.00,'','12','1','Good sold','1','','sales','6001452301862','','No',NULL,NULL,''),(23199,'1110','121674241364','2023-01-20 22:06:00',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(23200,'5500','121674241364','2023-01-20 22:06:00',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23201,'1000','121674241364','2023-01-20 22:06:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23202,'4000','121674241364','2023-01-20 22:06:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(23203,'1110','121674241564','2023-01-20 23:17:06',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23204,'5500','121674241564','2023-01-20 23:17:06',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23205,'1000','121674241564','2023-01-20 23:17:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23206,'4000','121674241564','2023-01-20 23:17:06',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23207,'1110','121674248285','2023-01-20 23:58:34',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(23208,'1110','121674248285','2023-01-20 23:58:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23209,'5500','121674248285','2023-01-20 23:58:34',784.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23210,'1000','121674248285','2023-01-20 23:58:34',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23211,'4000','121674248285','2023-01-20 23:58:34',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(23212,'4000','121674248285','2023-01-20 23:58:34',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23213,'1110','121674250309','2023-01-21 00:32:09',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23214,'1110','121674250309','2023-01-21 00:32:09',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(23215,'5500','121674250309','2023-01-21 00:32:09',1825.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23216,'1000','121674250309','2023-01-21 00:32:09',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23217,'4000','121674250309','2023-01-21 00:32:09',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23218,'4000','121674250309','2023-01-21 00:32:09',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(23219,'1110','121674250583','2023-01-21 01:32:19',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(23220,'1110','121674250583','2023-01-21 01:32:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23221,'1110','121674250583','2023-01-21 01:32:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23222,'5500','121674250583','2023-01-21 01:32:19',650.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23223,'1000','121674250583','2023-01-21 01:32:19',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23224,'4000','121674250583','2023-01-21 01:32:19',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(23225,'4000','121674250583','2023-01-21 01:32:19',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23226,'4000','121674250583','2023-01-21 01:32:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23227,'1110','121674254093','2023-01-21 01:43:16',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(23228,'1110','121674254093','2023-01-21 01:43:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23229,'1110','121674254093','2023-01-21 01:43:16',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(23230,'1110','121674254093','2023-01-21 01:43:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23231,'1110','121674254093','2023-01-21 01:43:16',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(23232,'1110','121674254093','2023-01-21 01:43:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23233,'1110','121674254093','2023-01-21 01:43:16',NULL,2665.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23234,'1110','121674254093','2023-01-21 01:43:16',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23235,'1110','121674254093','2023-01-21 01:43:16',NULL,1456.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23236,'1110','121674254093','2023-01-21 01:43:16',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23237,'1110','121674254093','2023-01-21 01:43:16',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23238,'5500','121674254093','2023-01-21 01:43:16',10171.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23239,'1000','121674254093','2023-01-21 01:43:16',15480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23240,'4000','121674254093','2023-01-21 01:43:16',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(23241,'4000','121674254093','2023-01-21 01:43:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23242,'4000','121674254093','2023-01-21 01:43:16',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(23243,'4000','121674254093','2023-01-21 01:43:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23244,'4000','121674254093','2023-01-21 01:43:16',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(23245,'4000','121674254093','2023-01-21 01:43:16',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23246,'4000','121674254093','2023-01-21 01:43:16',NULL,3500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23247,'4000','121674254093','2023-01-21 01:43:16',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23248,'4000','121674254093','2023-01-21 01:43:16',NULL,2400.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23249,'4000','121674254093','2023-01-21 01:43:16',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23250,'4000','121674254093','2023-01-21 01:43:16',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23251,'1110','121674254607','2023-01-21 02:41:05',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23252,'1110','121674254607','2023-01-21 02:41:05',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421271','','No',NULL,NULL,''),(23253,'1110','121674254607','2023-01-21 02:41:05',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23254,'5500','121674254607','2023-01-21 02:41:05',876.27,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23255,'1000','121674254607','2023-01-21 02:41:05',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23256,'4000','121674254607','2023-01-21 02:41:05',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23257,'4000','121674254607','2023-01-21 02:41:05',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421271','','No',NULL,NULL,''),(23258,'4000','121674254607','2023-01-21 02:41:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23259,'1110','121674259828','2023-01-21 03:10:52',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23260,'5500','121674259828','2023-01-21 03:10:52',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23261,'1000','121674259828','2023-01-21 03:10:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23262,'4000','121674259828','2023-01-21 03:10:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23263,'1110','121674265044','2023-01-21 04:38:16',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23264,'5500','121674265044','2023-01-21 04:38:16',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23265,'1000','121674265044','2023-01-21 04:38:16',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23266,'4000','121674265044','2023-01-21 04:38:16',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(23267,'1110','121674265330','2023-01-21 04:43:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23268,'1110','121674265330','2023-01-21 04:43:11',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23269,'1110','121674265330','2023-01-21 04:43:11',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23270,'5500','121674265330','2023-01-21 04:43:11',1424.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23271,'1000','121674265330','2023-01-21 04:43:11',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23272,'4000','121674265330','2023-01-21 04:43:11',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23273,'4000','121674265330','2023-01-21 04:43:11',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23274,'4000','121674265330','2023-01-21 04:43:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23275,'1110','121674265426','2023-01-21 04:45:22',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(23276,'5500','121674265426','2023-01-21 04:45:22',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23277,'1000','121674265426','2023-01-21 04:45:22',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23278,'4000','121674265426','2023-01-21 04:45:22',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(23279,'1110','121674295260','2023-01-21 13:01:09',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23280,'5500','121674295260','2023-01-21 13:01:09',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23281,'1000','121674295260','2023-01-21 13:01:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23282,'4000','121674295260','2023-01-21 13:01:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23283,'1110','121674295275','2023-01-21 13:06:42',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5010327605005','','No',NULL,NULL,''),(23284,'1110','121674295275','2023-01-21 13:06:42',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23285,'5500','121674295275','2023-01-21 13:06:42',1076.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23286,'1000','121674295275','2023-01-21 13:06:42',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23287,'4000','121674295275','2023-01-21 13:06:42',NULL,1600.00,'','12','1','Good sold','1','','sales','5010327605005','','No',NULL,NULL,''),(23288,'4000','121674295275','2023-01-21 13:06:42',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23289,'1110','121674295609','2023-01-21 13:07:41',NULL,220.00,'','12','1','Inventory sold','1','','sales','6161100421882','','No',NULL,NULL,''),(23290,'1110','121674295609','2023-01-21 13:07:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23291,'1110','121674295609','2023-01-21 13:07:41',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23292,'1110','121674295609','2023-01-21 13:07:41',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23293,'5500','121674295609','2023-01-21 13:07:41',740.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23294,'1000','121674295609','2023-01-21 13:07:41',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23295,'4000','121674295609','2023-01-21 13:07:41',NULL,350.00,'','12','1','Good sold','1','','sales','6161100421882','','No',NULL,NULL,''),(23296,'4000','121674295609','2023-01-21 13:07:41',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23297,'4000','121674295609','2023-01-21 13:07:41',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23298,'4000','121674295609','2023-01-21 13:07:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23299,'1110','121674295854','2023-01-21 15:35:27',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(23300,'1110','121674295854','2023-01-21 15:35:27',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23301,'5500','121674295854','2023-01-21 15:35:27',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23302,'1000','121674295854','2023-01-21 15:35:27',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23303,'4000','121674295854','2023-01-21 15:35:27',NULL,1100.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(23304,'4000','121674295854','2023-01-21 15:35:27',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23305,'1110','121674304533','2023-01-21 16:55:19',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23306,'1110','121674304533','2023-01-21 16:55:19',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23307,'5500','121674304533','2023-01-21 16:55:19',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23308,'1000','121674304533','2023-01-21 16:55:19',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23309,'4000','121674304533','2023-01-21 16:55:19',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23310,'4000','121674304533','2023-01-21 16:55:19',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23311,'1110','121674309326','2023-01-21 16:58:24',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23312,'5500','121674309326','2023-01-21 16:58:24',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23313,'1000','121674309326','2023-01-21 16:58:24',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23314,'4000','121674309326','2023-01-21 16:58:24',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23315,'1110','121674309984','2023-01-21 17:06:34',NULL,2002.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23316,'5500','121674309984','2023-01-21 17:06:34',2002.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23317,'1000','121674309984','2023-01-21 17:06:34',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23318,'4000','121674309984','2023-01-21 17:06:34',NULL,3300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23319,'1110','121674310072','2023-01-21 17:17:02',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23320,'5500','121674310072','2023-01-21 17:17:02',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23321,'1000','121674310072','2023-01-21 17:17:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23322,'4000','121674310072','2023-01-21 17:17:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23323,'1110','121674310627','2023-01-21 17:30:58',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23324,'1110','121674310627','2023-01-21 17:30:58',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23325,'1110','121674310627','2023-01-21 17:30:58',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23326,'5500','121674310627','2023-01-21 17:30:58',390.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23327,'1000','121674310627','2023-01-21 17:30:58',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23328,'4000','121674310627','2023-01-21 17:30:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23329,'4000','121674310627','2023-01-21 17:30:58',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23330,'4000','121674310627','2023-01-21 17:30:58',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23331,'1110','121674311464','2023-01-21 18:11:58',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23332,'5500','121674311464','2023-01-21 18:11:58',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23333,'1000','121674311464','2023-01-21 18:11:58',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23334,'4000','121674311464','2023-01-21 18:11:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23335,'1110','121674313943','2023-01-21 19:58:02',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23336,'5500','121674313943','2023-01-21 19:58:02',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23337,'1000','121674313943','2023-01-21 19:58:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23338,'4000','121674313943','2023-01-21 19:58:02',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23339,'1110','121674320369','2023-01-21 19:59:38',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(23340,'5500','121674320369','2023-01-21 19:59:38',2000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23341,'1000','121674320369','2023-01-21 19:59:38',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23342,'4000','121674320369','2023-01-21 19:59:38',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(23343,'1110','121674320561','2023-01-21 20:31:45',NULL,295.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(23344,'1110','121674320561','2023-01-21 20:31:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23345,'5500','121674320561','2023-01-21 20:31:45',348.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23346,'1000','121674320561','2023-01-21 20:31:45',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23347,'4000','121674320561','2023-01-21 20:31:45',NULL,450.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(23348,'4000','121674320561','2023-01-21 20:31:45',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23349,'1110','121674322339','2023-01-21 20:43:48',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23350,'1110','121674322339','2023-01-21 20:43:48',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23351,'5500','121674322339','2023-01-21 20:43:48',1011.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23352,'1000','121674322339','2023-01-21 20:43:48',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23353,'4000','121674322339','2023-01-21 20:43:48',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23354,'4000','121674322339','2023-01-21 20:43:48',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23355,'1110','121674326971','2023-01-21 21:49:44',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23356,'5500','121674326971','2023-01-21 21:49:44',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23357,'1000','121674326971','2023-01-21 21:49:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23358,'4000','121674326971','2023-01-21 21:49:44',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(23359,'1110','121674327521','2023-01-21 21:59:15',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23360,'1110','121674327521','2023-01-21 21:59:15',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23361,'1110','121674327521','2023-01-21 21:59:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23362,'5500','121674327521','2023-01-21 21:59:15',1105.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23363,'1000','121674327521','2023-01-21 21:59:15',1880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23364,'4000','121674327521','2023-01-21 21:59:15',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23365,'4000','121674327521','2023-01-21 21:59:15',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23366,'4000','121674327521','2023-01-21 21:59:15',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23367,'1110','121674327599','2023-01-21 22:09:23',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23368,'5500','121674327599','2023-01-21 22:09:23',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23369,'1000','121674327599','2023-01-21 22:09:23',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23370,'4000','121674327599','2023-01-21 22:09:23',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23371,'1110','121674328167','2023-01-21 22:13:16',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(23372,'1110','121674328167','2023-01-21 22:13:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23373,'1110','121674328167','2023-01-21 22:13:16',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23374,'5500','121674328167','2023-01-21 22:13:16',631.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23375,'1000','121674328167','2023-01-21 22:13:16',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23376,'4000','121674328167','2023-01-21 22:13:16',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(23377,'4000','121674328167','2023-01-21 22:13:16',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23378,'4000','121674328167','2023-01-21 22:13:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23379,'1110','121674328763','2023-01-21 22:19:40',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23380,'1110','121674328763','2023-01-21 22:19:40',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23381,'5500','121674328763','2023-01-21 22:19:40',1163.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23382,'1000','121674328763','2023-01-21 22:19:40',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23383,'4000','121674328763','2023-01-21 22:19:40',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23384,'4000','121674328763','2023-01-21 22:19:40',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23385,'1110','121674328796','2023-01-21 22:35:03',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23386,'5500','121674328796','2023-01-21 22:35:03',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23387,'1000','121674328796','2023-01-21 22:35:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23388,'4000','121674328796','2023-01-21 22:35:03',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23389,'1110','121674329711','2023-01-21 23:03:14',NULL,92.00,'','12','1','Inventory sold','1','','sales','6009627080246','','No',NULL,NULL,''),(23390,'1110','121674329711','2023-01-21 23:03:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(23391,'1110','121674329711','2023-01-21 23:03:14',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23392,'5500','121674329711','2023-01-21 23:03:14',524.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23393,'1000','121674329711','2023-01-21 23:03:14',760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23394,'4000','121674329711','2023-01-21 23:03:14',NULL,180.00,'','12','1','Good sold','1','','sales','6009627080246','','No',NULL,NULL,''),(23395,'4000','121674329711','2023-01-21 23:03:14',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(23396,'4000','121674329711','2023-01-21 23:03:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23397,'1110','121674331400','2023-01-21 23:14:37',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23398,'5500','121674331400','2023-01-21 23:14:37',428.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23399,'1000','121674331400','2023-01-21 23:14:37',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23400,'4000','121674331400','2023-01-21 23:14:37',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23401,'1110','121674332087','2023-01-21 23:59:37',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23402,'5500','121674332087','2023-01-21 23:59:37',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23403,'1000','121674332087','2023-01-21 23:59:37',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23404,'4000','121674332087','2023-01-21 23:59:37',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23405,'1110','121674334782','2023-01-22 00:07:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23406,'5500','121674334782','2023-01-22 00:07:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23407,'1000','121674334782','2023-01-22 00:07:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23408,'4000','121674334782','2023-01-22 00:07:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23409,'1110','121674335475','2023-01-22 00:11:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23410,'5500','121674335475','2023-01-22 00:11:44',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23411,'1000','121674335475','2023-01-22 00:11:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23412,'4000','121674335475','2023-01-22 00:11:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23413,'1110','121674335508','2023-01-22 00:12:00',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(23414,'5500','121674335508','2023-01-22 00:12:00',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23415,'1000','121674335508','2023-01-22 00:12:00',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23416,'4000','121674335508','2023-01-22 00:12:00',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(23417,'1110','121674335525','2023-01-22 00:54:03',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(23418,'1110','121674335525','2023-01-22 00:54:03',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23419,'5500','121674335525','2023-01-22 00:54:03',1050.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23420,'1000','121674335525','2023-01-22 00:54:03',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23421,'4000','121674335525','2023-01-22 00:54:03',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(23422,'4000','121674335525','2023-01-22 00:54:03',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23423,'1110','121674338209','2023-01-22 00:56:57',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23424,'5500','121674338209','2023-01-22 00:56:57',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23425,'1000','121674338209','2023-01-22 00:56:57',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23426,'4000','121674338209','2023-01-22 00:56:57',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23427,'1110','121674338276','2023-01-22 01:18:59',NULL,1072.00,'','12','1','Inventory sold','1','','sales','6001496011796','','No',NULL,NULL,''),(23428,'5500','121674338276','2023-01-22 01:18:59',1072.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23429,'1000','121674338276','2023-01-22 01:18:59',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23430,'4000','121674338276','2023-01-22 01:18:59',NULL,1700.00,'','12','1','Good sold','1','','sales','6001496011796','','No',NULL,NULL,''),(23431,'1110','121674339543','2023-01-22 01:26:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(23432,'5500','121674339543','2023-01-22 01:26:36',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23433,'1000','121674339543','2023-01-22 01:26:36',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23434,'4000','121674339543','2023-01-22 01:26:36',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(23435,'1110','121674340071','2023-01-22 01:28:03',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23436,'5500','121674340071','2023-01-22 01:28:03',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23437,'1000','121674340071','2023-01-22 01:28:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23438,'4000','121674340071','2023-01-22 01:28:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23439,'1110','121674340088','2023-01-22 01:36:01',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23440,'5500','121674340088','2023-01-22 01:36:01',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23441,'1000','121674340088','2023-01-22 01:36:01',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23442,'4000','121674340088','2023-01-22 01:36:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23443,'1110','121674340578','2023-01-22 01:45:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23444,'5500','121674340578','2023-01-22 01:45:04',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23445,'1000','121674340578','2023-01-22 01:45:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23446,'4000','121674340578','2023-01-22 01:45:04',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23447,'1110','121674342139','2023-01-22 02:02:32',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23448,'5500','121674342139','2023-01-22 02:02:32',1092.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23449,'1000','121674342139','2023-01-22 02:02:32',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23450,'4000','121674342139','2023-01-22 02:02:32',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23451,'1110','121674342203','2023-01-22 02:05:46',NULL,1018.00,'','12','1','Inventory sold','1','','sales','3800032010568','','No',NULL,NULL,''),(23452,'5500','121674342203','2023-01-22 02:05:46',1018.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23453,'1000','121674342203','2023-01-22 02:05:46',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23454,'4000','121674342203','2023-01-22 02:05:46',NULL,1700.00,'','12','1','Good sold','1','','sales','3800032010568','','No',NULL,NULL,''),(23455,'1110','121674342630','2023-01-22 02:10:50',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23456,'1110','121674342630','2023-01-22 02:10:50',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23457,'5500','121674342630','2023-01-22 02:10:50',641.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23458,'1000','121674342630','2023-01-22 02:10:50',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23459,'4000','121674342630','2023-01-22 02:10:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23460,'4000','121674342630','2023-01-22 02:10:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23461,'1110','121674342654','2023-01-22 03:27:56',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23462,'5500','121674342654','2023-01-22 03:27:56',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23463,'1000','121674342654','2023-01-22 03:27:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23464,'4000','121674342654','2023-01-22 03:27:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23465,'1110','121674347293','2023-01-22 03:41:20',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23466,'5500','121674347293','2023-01-22 03:41:20',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23467,'1000','121674347293','2023-01-22 03:41:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23468,'4000','121674347293','2023-01-22 03:41:20',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23469,'1110','121674348085','2023-01-22 03:47:09',NULL,250.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(23470,'1110','121674348085','2023-01-22 03:47:09',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23471,'5500','121674348085','2023-01-22 03:47:09',397.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23472,'1000','121674348085','2023-01-22 03:47:09',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23473,'4000','121674348085','2023-01-22 03:47:09',NULL,400.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(23474,'4000','121674348085','2023-01-22 03:47:09',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23475,'1110','121674348434','2023-01-22 04:11:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23476,'5500','121674348434','2023-01-22 04:11:21',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23477,'1000','121674348434','2023-01-22 04:11:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23478,'4000','121674348434','2023-01-22 04:11:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23479,'1110','121674349886','2023-01-22 04:37:33',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(23480,'1110','121674349886','2023-01-22 04:37:33',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23481,'5500','121674349886','2023-01-22 04:37:33',1769.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23482,'1000','121674349886','2023-01-22 04:37:33',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23483,'4000','121674349886','2023-01-22 04:37:33',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(23484,'4000','121674349886','2023-01-22 04:37:33',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23485,'1110','121674351530','2023-01-22 04:51:05',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23486,'5500','121674351530','2023-01-22 04:51:05',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23487,'1000','121674351530','2023-01-22 04:51:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23488,'4000','121674351530','2023-01-22 04:51:05',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23489,'1110','121674352730','2023-01-22 04:59:18',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(23490,'5500','121674352730','2023-01-22 04:59:18',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23491,'1000','121674352730','2023-01-22 04:59:18',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23492,'4000','121674352730','2023-01-22 04:59:18',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(23493,'1110','121674352768','2023-01-22 06:04:21',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(23494,'1110','121674352768','2023-01-22 06:04:21',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23495,'1110','121674352768','2023-01-22 06:04:21',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(23496,'1110','121674352768','2023-01-22 06:04:21',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23497,'5500','121674352768','2023-01-22 06:04:21',2101.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23498,'1000','121674352768','2023-01-22 06:04:21',3120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23499,'4000','121674352768','2023-01-22 06:04:21',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(23500,'4000','121674352768','2023-01-22 06:04:21',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23501,'4000','121674352768','2023-01-22 06:04:21',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(23502,'4000','121674352768','2023-01-22 06:04:21',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23503,'1110','121674357142','2023-01-22 06:12:42',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23504,'5500','121674357142','2023-01-22 06:12:42',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23505,'1000','121674357142','2023-01-22 06:12:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23506,'4000','121674357142','2023-01-22 06:12:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23507,'1110','121674369017','2023-01-22 09:30:44',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602143','','No',NULL,NULL,''),(23508,'5500','121674369017','2023-01-22 09:30:44',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23509,'1000','121674369017','2023-01-22 09:30:44',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23510,'4000','121674369017','2023-01-22 09:30:44',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602143','','No',NULL,NULL,''),(23511,'1110','121674369134','2023-01-22 10:51:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(23512,'5500','121674369134','2023-01-22 10:51:33',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23513,'1000','121674369134','2023-01-22 10:51:33',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23514,'4000','121674369134','2023-01-22 10:51:33',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(23515,'1110','121674380802','2023-01-22 12:46:54',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23516,'5500','121674380802','2023-01-22 12:46:54',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23517,'1000','121674380802','2023-01-22 12:46:54',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23518,'4000','121674380802','2023-01-22 12:46:54',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23519,'1110','121674391438','2023-01-22 15:44:18',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23520,'5500','121674391438','2023-01-22 15:44:18',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23521,'1000','121674391438','2023-01-22 15:44:18',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23522,'4000','121674391438','2023-01-22 15:44:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23523,'1110','121674391471','2023-01-22 16:35:40',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23524,'5500','121674391471','2023-01-22 16:35:40',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23525,'1000','121674391471','2023-01-22 16:35:40',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23526,'4000','121674391471','2023-01-22 16:35:40',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23527,'1110','121674401797','2023-01-22 18:49:26',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(23528,'5500','121674401797','2023-01-22 18:49:26',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23529,'1000','121674401797','2023-01-22 18:49:26',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23530,'4000','121674401797','2023-01-22 18:49:26',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(23531,'1110','121674410356','2023-01-22 21:00:38',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23532,'1110','121674410356','2023-01-22 21:00:38',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23533,'5500','121674410356','2023-01-22 21:00:38',974.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23534,'1000','121674410356','2023-01-22 21:00:38',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23535,'4000','121674410356','2023-01-22 21:00:38',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23536,'4000','121674410356','2023-01-22 21:00:38',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23537,'1110','121674410519','2023-01-22 21:17:57',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23538,'1110','121674410519','2023-01-22 21:17:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23539,'5500','121674410519','2023-01-22 21:17:57',348.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23540,'1000','121674410519','2023-01-22 21:17:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23541,'4000','121674410519','2023-01-22 21:17:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23542,'4000','121674410519','2023-01-22 21:17:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23543,'1110','121674411493','2023-01-22 23:10:16',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(23544,'5500','121674411493','2023-01-22 23:10:16',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23545,'1000','121674411493','2023-01-22 23:10:16',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23546,'4000','121674411493','2023-01-22 23:10:16',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(23547,'1110','121674418255','2023-01-22 23:42:08',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23548,'5500','121674418255','2023-01-22 23:42:08',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23549,'1000','121674418255','2023-01-22 23:42:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23550,'4000','121674418255','2023-01-22 23:42:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23551,'1110','121674420136','2023-01-23 01:03:08',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23552,'5500','121674420136','2023-01-23 01:03:08',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23553,'1000','121674420136','2023-01-23 01:03:08',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23554,'4000','121674420136','2023-01-23 01:03:08',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23555,'1110','121674425001','2023-01-23 02:01:23',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23556,'1110','121674425001','2023-01-23 02:01:23',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23557,'1110','121674425001','2023-01-23 02:01:23',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23558,'5500','121674425001','2023-01-23 02:01:23',875.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23559,'1000','121674425001','2023-01-23 02:01:23',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23560,'4000','121674425001','2023-01-23 02:01:23',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23561,'4000','121674425001','2023-01-23 02:01:23',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23562,'4000','121674425001','2023-01-23 02:01:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23563,'1110','121674428495','2023-01-23 02:33:00',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(23564,'5500','121674428495','2023-01-23 02:33:00',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23565,'1000','121674428495','2023-01-23 02:33:00',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23566,'4000','121674428495','2023-01-23 02:33:00',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(23567,'1110','121674430660','2023-01-23 02:39:15',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23568,'1110','121674430660','2023-01-23 02:39:15',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23569,'1110','121674430660','2023-01-23 02:39:15',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(23570,'1110','121674430660','2023-01-23 02:39:15',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23571,'5500','121674430660','2023-01-23 02:39:15',2268.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23572,'1000','121674430660','2023-01-23 02:39:15',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23573,'4000','121674430660','2023-01-23 02:39:15',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23574,'4000','121674430660','2023-01-23 02:39:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23575,'4000','121674430660','2023-01-23 02:39:15',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(23576,'4000','121674430660','2023-01-23 02:39:15',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23577,'1110','121674430828','2023-01-23 03:01:38',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(23578,'1110','121674430828','2023-01-23 03:01:38',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(23579,'5500','121674430828','2023-01-23 03:01:38',181.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23580,'1000','121674430828','2023-01-23 03:01:38',280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23581,'4000','121674430828','2023-01-23 03:01:38',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(23582,'4000','121674430828','2023-01-23 03:01:38',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(23583,'1110','121674436660','2023-01-23 04:39:56',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23584,'1110','121674436660','2023-01-23 04:39:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23585,'1110','121674436660','2023-01-23 04:39:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23586,'1110','121674436660','2023-01-23 04:39:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23587,'1110','121674436660','2023-01-23 04:39:56',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23588,'1110','121674436660','2023-01-23 04:39:56',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(23589,'5500','121674436660','2023-01-23 04:39:56',1128.61,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23590,'1000','121674436660','2023-01-23 04:39:56',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23591,'4000','121674436660','2023-01-23 04:39:56',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(23592,'4000','121674436660','2023-01-23 04:39:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23593,'4000','121674436660','2023-01-23 04:39:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23594,'4000','121674436660','2023-01-23 04:39:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23595,'4000','121674436660','2023-01-23 04:39:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23596,'4000','121674436660','2023-01-23 04:39:56',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(23597,'1110','121674439346','2023-01-23 05:18:58',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23598,'5500','121674439346','2023-01-23 05:18:58',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23599,'1000','121674439346','2023-01-23 05:18:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23600,'4000','121674439346','2023-01-23 05:18:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23601,'1110','121674474943','2023-01-23 16:51:18',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291025930','','No',NULL,NULL,''),(23602,'5500','121674474943','2023-01-23 16:51:18',2220.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23603,'1000','121674474943','2023-01-23 16:51:18',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23604,'4000','121674474943','2023-01-23 16:51:18',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025930','','No',NULL,NULL,''),(23605,'1110','121674482103','2023-01-23 17:11:40',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23606,'5500','121674482103','2023-01-23 17:11:40',2250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23607,'1000','121674482103','2023-01-23 17:11:40',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23608,'4000','121674482103','2023-01-23 17:11:40',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23609,'1110','121674484019','2023-01-23 17:27:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23610,'5500','121674484019','2023-01-23 17:27:13',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23611,'1000','121674484019','2023-01-23 17:27:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23612,'4000','121674484019','2023-01-23 17:27:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23613,'1110','121674496343','2023-01-23 20:52:44',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23614,'5500','121674496343','2023-01-23 20:52:44',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23615,'1000','121674496343','2023-01-23 20:52:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23616,'4000','121674496343','2023-01-23 20:52:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23617,'1110','121674496373','2023-01-23 21:58:09',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(23618,'5500','121674496373','2023-01-23 21:58:09',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23619,'1000','121674496373','2023-01-23 21:58:09',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23620,'4000','121674496373','2023-01-23 21:58:09',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(23621,'1110','121674500308','2023-01-23 22:21:17',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23622,'5500','121674500308','2023-01-23 22:21:17',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23623,'1000','121674500308','2023-01-23 22:21:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23624,'4000','121674500308','2023-01-23 22:21:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23625,'1110','121674501687','2023-01-23 22:56:54',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23626,'5500','121674501687','2023-01-23 22:56:54',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23627,'1000','121674501687','2023-01-23 22:56:54',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23628,'4000','121674501687','2023-01-23 22:56:54',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23629,'1110','121674503825','2023-01-23 23:21:26',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(23630,'5500','121674503825','2023-01-23 23:21:26',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23631,'1000','121674503825','2023-01-23 23:21:26',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23632,'4000','121674503825','2023-01-23 23:21:26',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(23633,'1110','121674505710','2023-01-23 23:29:16',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23634,'5500','121674505710','2023-01-23 23:29:16',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23635,'1000','121674505710','2023-01-23 23:29:16',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23636,'4000','121674505710','2023-01-23 23:29:16',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(23637,'1110','121674505768','2023-01-23 23:38:08',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23638,'5500','121674505768','2023-01-23 23:38:08',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23639,'1000','121674505768','2023-01-23 23:38:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23640,'4000','121674505768','2023-01-23 23:38:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23641,'1110','121674506296','2023-01-23 23:58:29',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23642,'1110','121674506296','2023-01-23 23:58:29',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(23643,'5500','121674506296','2023-01-23 23:58:29',3956.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23644,'1000','121674506296','2023-01-23 23:58:29',5760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23645,'4000','121674506296','2023-01-23 23:58:29',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23646,'4000','121674506296','2023-01-23 23:58:29',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(23647,'1110','121674507515','2023-01-24 00:25:54',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23648,'5500','121674507515','2023-01-24 00:25:54',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23649,'1000','121674507515','2023-01-24 00:25:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23650,'4000','121674507515','2023-01-24 00:25:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23651,'1110','121674509383','2023-01-24 00:29:54',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(23652,'5500','121674509383','2023-01-24 00:29:54',641.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23653,'1000','121674509383','2023-01-24 00:29:54',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23654,'4000','121674509383','2023-01-24 00:29:54',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(23655,'1110','121674509413','2023-01-24 00:50:41',NULL,1820.00,'','12','1','Inventory sold','1','','sales','7640175740047','','No',NULL,NULL,''),(23656,'1110','121674509413','2023-01-24 00:50:41',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23657,'5500','121674509413','2023-01-24 00:50:41',1894.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23658,'1000','121674509413','2023-01-24 00:50:41',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23659,'4000','121674509413','2023-01-24 00:50:41',NULL,2700.00,'','12','1','Good sold','1','','sales','7640175740047','','No',NULL,NULL,''),(23660,'4000','121674509413','2023-01-24 00:50:41',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23661,'1110','121674512205','2023-01-24 01:17:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(23662,'5500','121674512205','2023-01-24 01:17:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23663,'1000','121674512205','2023-01-24 01:17:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23664,'4000','121674512205','2023-01-24 01:17:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(23665,'1110','121674512281','2023-01-24 01:47:30',NULL,1854.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(23666,'1110','121674512281','2023-01-24 01:47:30',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23667,'5500','121674512281','2023-01-24 01:47:30',1960.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23668,'1000','121674512281','2023-01-24 01:47:30',2760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23669,'4000','121674512281','2023-01-24 01:47:30',NULL,2600.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(23670,'4000','121674512281','2023-01-24 01:47:30',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23671,'1110','121674514062','2023-01-24 02:19:01',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23672,'5500','121674514062','2023-01-24 02:19:01',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23673,'1000','121674514062','2023-01-24 02:19:01',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23674,'4000','121674514062','2023-01-24 02:19:01',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23675,'1110','121674559810','2023-01-24 14:48:47',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(23676,'1110','121674559810','2023-01-24 14:48:47',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(23677,'5500','121674559810','2023-01-24 14:48:47',313.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23678,'1000','121674559810','2023-01-24 14:48:47',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23679,'4000','121674559810','2023-01-24 14:48:47',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(23680,'4000','121674559810','2023-01-24 14:48:47',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(23681,'1110','121674561225','2023-01-24 15:03:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23682,'1110','121674561225','2023-01-24 15:03:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23683,'5500','121674561225','2023-01-24 15:03:34',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23684,'1000','121674561225','2023-01-24 15:03:34',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23685,'4000','121674561225','2023-01-24 15:03:34',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23686,'4000','121674561225','2023-01-24 15:03:34',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23687,'1110','121674561871','2023-01-24 15:33:36',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23688,'5500','121674561871','2023-01-24 15:33:36',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23689,'1000','121674561871','2023-01-24 15:33:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23690,'4000','121674561871','2023-01-24 15:33:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23691,'1110','121674564247','2023-01-24 16:15:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23692,'5500','121674564247','2023-01-24 16:15:19',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23693,'1000','121674564247','2023-01-24 16:15:19',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23694,'4000','121674564247','2023-01-24 16:15:19',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23695,'1110','121674574608','2023-01-24 18:39:53',NULL,2760.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(23696,'5500','121674574608','2023-01-24 18:39:53',2760.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23697,'1000','121674574608','2023-01-24 18:39:53',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23698,'4000','121674574608','2023-01-24 18:39:53',NULL,3750.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(23699,'1110','121674574861','2023-01-24 18:43:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23700,'5500','121674574861','2023-01-24 18:43:16',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23701,'1000','121674574861','2023-01-24 18:43:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23702,'4000','121674574861','2023-01-24 18:43:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23703,'1110','121674575004','2023-01-24 19:10:41',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(23704,'1110','121674575004','2023-01-24 19:10:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23705,'5500','121674575004','2023-01-24 19:10:41',337.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23706,'1000','121674575004','2023-01-24 19:10:41',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23707,'4000','121674575004','2023-01-24 19:10:41',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(23708,'4000','121674575004','2023-01-24 19:10:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23709,'1110','121674576646','2023-01-24 19:13:30',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(23710,'5500','121674576646','2023-01-24 19:13:30',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23711,'1000','121674576646','2023-01-24 19:13:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23712,'4000','121674576646','2023-01-24 19:13:30',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(23713,'1110','121674576822','2023-01-24 19:29:16',NULL,790.00,'','12','1','Inventory sold','1','','sales','8005415049608','','No',NULL,NULL,''),(23714,'5500','121674576822','2023-01-24 19:29:16',790.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23715,'1000','121674576822','2023-01-24 19:29:16',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23716,'4000','121674576822','2023-01-24 19:29:16',NULL,1550.00,'','12','1','Good sold','1','','sales','8005415049608','','No',NULL,NULL,''),(23717,'1110','121674577849','2023-01-24 19:56:36',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23718,'5500','121674577849','2023-01-24 19:56:36',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23719,'1000','121674577849','2023-01-24 19:56:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23720,'4000','121674577849','2023-01-24 19:56:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23721,'1110','121674582972','2023-01-24 20:56:38',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(23722,'5500','121674582972','2023-01-24 20:56:38',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23723,'1000','121674582972','2023-01-24 20:56:38',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23724,'4000','121674582972','2023-01-24 20:56:38',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(23725,'1110','121674583058','2023-01-24 21:37:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(23726,'5500','121674583058','2023-01-24 21:37:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23727,'1000','121674583058','2023-01-24 21:37:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23728,'4000','121674583058','2023-01-24 21:37:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(23729,'1110','121674585434','2023-01-24 22:00:55',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23730,'5500','121674585434','2023-01-24 22:00:55',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23731,'1000','121674585434','2023-01-24 22:00:55',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23732,'4000','121674585434','2023-01-24 22:00:55',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23733,'1110','121674586860','2023-01-24 22:01:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23734,'5500','121674586860','2023-01-24 22:01:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23735,'1000','121674586860','2023-01-24 22:01:58',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23736,'4000','121674586860','2023-01-24 22:01:58',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23737,'1110','121674586924','2023-01-24 22:05:13',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(23738,'1110','121674586924','2023-01-24 22:05:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23739,'1110','121674586924','2023-01-24 22:05:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23740,'5500','121674586924','2023-01-24 22:05:13',601.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23741,'1000','121674586924','2023-01-24 22:05:13',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23742,'4000','121674586924','2023-01-24 22:05:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(23743,'4000','121674586924','2023-01-24 22:05:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23744,'4000','121674586924','2023-01-24 22:05:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23745,'1110','121674587161','2023-01-24 22:07:16',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23746,'5500','121674587161','2023-01-24 22:07:16',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23747,'1000','121674587161','2023-01-24 22:07:16',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23748,'4000','121674587161','2023-01-24 22:07:16',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23749,'1110','121674587289','2023-01-24 22:48:32',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23750,'5500','121674587289','2023-01-24 22:48:32',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23751,'1000','121674587289','2023-01-24 22:48:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23752,'4000','121674587289','2023-01-24 22:48:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23753,'1110','121674589725','2023-01-24 22:56:10',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(23754,'5500','121674589725','2023-01-24 22:56:10',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23755,'1000','121674589725','2023-01-24 22:56:10',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23756,'4000','121674589725','2023-01-24 22:56:10',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(23757,'1110','121674590177','2023-01-24 23:29:32',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23758,'5500','121674590177','2023-01-24 23:29:32',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23759,'1000','121674590177','2023-01-24 23:29:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23760,'4000','121674590177','2023-01-24 23:29:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23761,'1110','121674592177','2023-01-25 00:22:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23762,'1110','121674592177','2023-01-25 00:22:25',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(23763,'5500','121674592177','2023-01-25 00:22:25',542.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23764,'1000','121674592177','2023-01-25 00:22:25',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23765,'4000','121674592177','2023-01-25 00:22:25',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23766,'4000','121674592177','2023-01-25 00:22:25',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(23767,'1110','121674595351','2023-01-25 00:50:46',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23768,'5500','121674595351','2023-01-25 00:50:46',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23769,'1000','121674595351','2023-01-25 00:50:46',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23770,'4000','121674595351','2023-01-25 00:50:46',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(23771,'1110','121674597062','2023-01-25 00:52:01',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23772,'5500','121674597062','2023-01-25 00:52:01',106.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23773,'1000','121674597062','2023-01-25 00:52:01',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23774,'4000','121674597062','2023-01-25 00:52:01',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23775,'1110','121674600789','2023-01-25 01:53:30',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(23776,'1110','121674600789','2023-01-25 01:53:30',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23777,'5500','121674600789','2023-01-25 01:53:30',1350.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23778,'1000','121674600789','2023-01-25 01:53:30',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23779,'4000','121674600789','2023-01-25 01:53:30',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(23780,'4000','121674600789','2023-01-25 01:53:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23781,'1110','121674600852','2023-01-25 03:28:36',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23782,'5500','121674600852','2023-01-25 03:28:36',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23783,'1000','121674600852','2023-01-25 03:28:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23784,'4000','121674600852','2023-01-25 03:28:36',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23785,'1110','121674606537','2023-01-25 03:50:05',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(23786,'1110','121674606537','2023-01-25 03:50:05',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23787,'1110','121674606537','2023-01-25 03:50:05',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23788,'5500','121674606537','2023-01-25 03:50:05',861.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23789,'1000','121674606537','2023-01-25 03:50:05',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23790,'4000','121674606537','2023-01-25 03:50:05',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(23791,'4000','121674606537','2023-01-25 03:50:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23792,'4000','121674606537','2023-01-25 03:50:05',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23793,'1110','121674651567','2023-01-25 16:00:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23794,'1110','121674651567','2023-01-25 16:00:39',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23795,'5500','121674651567','2023-01-25 16:00:39',577.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23796,'1000','121674651567','2023-01-25 16:00:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23797,'4000','121674651567','2023-01-25 16:00:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23798,'4000','121674651567','2023-01-25 16:00:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23799,'1110','121674651647','2023-01-25 16:37:30',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(23800,'1110','121674651647','2023-01-25 16:37:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23801,'5500','121674651647','2023-01-25 16:37:30',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23802,'1000','121674651647','2023-01-25 16:37:30',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23803,'4000','121674651647','2023-01-25 16:37:30',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(23804,'4000','121674651647','2023-01-25 16:37:30',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23805,'1110','121674653936','2023-01-25 16:56:18',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23806,'5500','121674653936','2023-01-25 16:56:18',1600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23807,'1000','121674653936','2023-01-25 16:56:18',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23808,'4000','121674653936','2023-01-25 16:56:18',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23809,'1110','121674663901','2023-01-25 19:25:24',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(23810,'5500','121674663901','2023-01-25 19:25:24',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23811,'1000','121674663901','2023-01-25 19:25:24',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23812,'4000','121674663901','2023-01-25 19:25:24',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(23813,'1110','121674664433','2023-01-25 20:03:58',NULL,2074.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23814,'5500','121674664433','2023-01-25 20:03:58',2074.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23815,'1000','121674664433','2023-01-25 20:03:58',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23816,'4000','121674664433','2023-01-25 20:03:58',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23817,'1110','121674666245','2023-01-25 20:04:38',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23818,'5500','121674666245','2023-01-25 20:04:38',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23819,'1000','121674666245','2023-01-25 20:04:38',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23820,'4000','121674666245','2023-01-25 20:04:38',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23821,'1110','121674666375','2023-01-25 21:10:41',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23822,'1110','121674666375','2023-01-25 21:10:41',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23823,'5500','121674666375','2023-01-25 21:10:41',830.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23824,'1000','121674666375','2023-01-25 21:10:41',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23825,'4000','121674666375','2023-01-25 21:10:41',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(23826,'4000','121674666375','2023-01-25 21:10:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23827,'1110','121674671535','2023-01-25 21:34:50',NULL,7071.00,'','12','1','Inventory sold','1','','sales','5000281028620','','No',NULL,NULL,''),(23828,'5500','121674671535','2023-01-25 21:34:50',7071.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23829,'1000','121674671535','2023-01-25 21:34:50',9500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23830,'4000','121674671535','2023-01-25 21:34:50',NULL,9500.00,'','12','1','Good sold','1','','sales','5000281028620','','No',NULL,NULL,''),(23831,'1110','121674671787','2023-01-25 22:08:43',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23832,'1110','121674671787','2023-01-25 22:08:43',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23833,'1110','121674671787','2023-01-25 22:08:43',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23834,'5500','121674671787','2023-01-25 22:08:43',1858.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23835,'1000','121674671787','2023-01-25 22:08:43',2670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23836,'4000','121674671787','2023-01-25 22:08:43',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(23837,'4000','121674671787','2023-01-25 22:08:43',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23838,'4000','121674671787','2023-01-25 22:08:43',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(23839,'1110','121674674110','2023-01-25 22:16:52',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23840,'5500','121674674110','2023-01-25 22:16:52',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23841,'1000','121674674110','2023-01-25 22:16:52',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23842,'4000','121674674110','2023-01-25 22:16:52',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23843,'1110','121674674217','2023-01-25 23:33:29',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23844,'5500','121674674217','2023-01-25 23:33:29',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23845,'1000','121674674217','2023-01-25 23:33:29',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23846,'4000','121674674217','2023-01-25 23:33:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23847,'1110','121674678913','2023-01-25 23:35:56',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(23848,'1110','121674678913','2023-01-25 23:35:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23849,'1110','121674678913','2023-01-25 23:35:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23850,'5500','121674678913','2023-01-25 23:35:56',458.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23851,'1000','121674678913','2023-01-25 23:35:56',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23852,'4000','121674678913','2023-01-25 23:35:56',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(23853,'4000','121674678913','2023-01-25 23:35:56',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(23854,'4000','121674678913','2023-01-25 23:35:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23855,'1110','121674679626','2023-01-25 23:47:33',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(23856,'5500','121674679626','2023-01-25 23:47:33',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23857,'1000','121674679626','2023-01-25 23:47:33',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23858,'4000','121674679626','2023-01-25 23:47:33',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(23859,'1110','121674679663','2023-01-25 23:51:35',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23860,'5500','121674679663','2023-01-25 23:51:35',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23861,'1000','121674679663','2023-01-25 23:51:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23862,'4000','121674679663','2023-01-25 23:51:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23863,'1110','121674680008','2023-01-25 23:59:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23864,'5500','121674680008','2023-01-25 23:59:58',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23865,'1000','121674680008','2023-01-25 23:59:58',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23866,'4000','121674680008','2023-01-25 23:59:58',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23867,'1110','121674680403','2023-01-26 01:00:18',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23868,'1110','121674680403','2023-01-26 01:00:18',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23869,'5500','121674680403','2023-01-26 01:00:18',718.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23870,'1000','121674680403','2023-01-26 01:00:18',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23871,'4000','121674680403','2023-01-26 01:00:18',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23872,'4000','121674680403','2023-01-26 01:00:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(23873,'1110','121674684169','2023-01-26 03:14:51',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23874,'1110','121674684169','2023-01-26 03:14:51',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23875,'5500','121674684169','2023-01-26 03:14:51',240.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23876,'1000','121674684169','2023-01-26 03:14:51',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23877,'4000','121674684169','2023-01-26 03:14:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23878,'4000','121674684169','2023-01-26 03:14:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23879,'1110','121674692100','2023-01-26 03:15:23',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23880,'5500','121674692100','2023-01-26 03:15:23',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23881,'1000','121674692100','2023-01-26 03:15:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23882,'4000','121674692100','2023-01-26 03:15:23',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(23883,'1110','121674692128','2023-01-26 03:17:06',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(23884,'5500','121674692128','2023-01-26 03:17:06',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23885,'1000','121674692128','2023-01-26 03:17:06',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23886,'4000','121674692128','2023-01-26 03:17:06',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(23887,'1110','121674692246','2023-01-26 03:33:16',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23888,'1110','121674692246','2023-01-26 03:33:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23889,'1110','121674692246','2023-01-26 03:33:16',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23890,'1110','121674692246','2023-01-26 03:33:16',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(23891,'5500','121674692246','2023-01-26 03:33:16',1180.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23892,'1000','121674692246','2023-01-26 03:33:16',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23893,'4000','121674692246','2023-01-26 03:33:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23894,'4000','121674692246','2023-01-26 03:33:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(23895,'4000','121674692246','2023-01-26 03:33:16',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23896,'4000','121674692246','2023-01-26 03:33:16',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(23897,'1110','121674694217','2023-01-26 03:50:57',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23898,'1110','121674694217','2023-01-26 03:50:57',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(23899,'5500','121674694217','2023-01-26 03:50:57',1060.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23900,'1000','121674694217','2023-01-26 03:50:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23901,'4000','121674694217','2023-01-26 03:50:57',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(23902,'4000','121674694217','2023-01-26 03:50:57',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(23903,'1110','121674694264','2023-01-26 04:45:19',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(23904,'1110','121674694264','2023-01-26 04:45:19',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23905,'1110','121674694264','2023-01-26 04:45:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23906,'1110','121674694264','2023-01-26 04:45:19',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23907,'5500','121674694264','2023-01-26 04:45:19',3603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23908,'1000','121674694264','2023-01-26 04:45:19',5600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23909,'4000','121674694264','2023-01-26 04:45:19',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(23910,'4000','121674694264','2023-01-26 04:45:19',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(23911,'4000','121674694264','2023-01-26 04:45:19',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23912,'4000','121674694264','2023-01-26 04:45:19',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(23913,'1110','121674697814','2023-01-26 05:30:18',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23914,'5500','121674697814','2023-01-26 05:30:18',1090.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23915,'1000','121674697814','2023-01-26 05:30:18',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23916,'4000','121674697814','2023-01-26 05:30:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(23917,'1110','121674725207','2023-01-26 12:54:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(23918,'5500','121674725207','2023-01-26 12:54:57',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23919,'1000','121674725207','2023-01-26 12:54:57',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23920,'4000','121674725207','2023-01-26 12:54:57',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(23921,'1110','121674733383','2023-01-26 14:47:57',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23922,'1110','121674733383','2023-01-26 14:47:57',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23923,'5500','121674733383','2023-01-26 14:47:57',1452.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23924,'1000','121674733383','2023-01-26 14:47:57',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23925,'4000','121674733383','2023-01-26 14:47:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23926,'4000','121674733383','2023-01-26 14:47:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23927,'1110','121674737075','2023-01-26 15:46:03',NULL,4049.00,'','12','1','Inventory sold','1','','sales','5011013500604','','No',NULL,NULL,''),(23928,'5500','121674737075','2023-01-26 15:46:03',4049.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23929,'1000','121674737075','2023-01-26 15:46:03',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23930,'4000','121674737075','2023-01-26 15:46:03',NULL,5500.00,'','12','1','Good sold','1','','sales','5011013500604','','No',NULL,NULL,''),(23931,'1110','121674752575','2023-01-26 20:03:23',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23932,'5500','121674752575','2023-01-26 20:03:23',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23933,'1000','121674752575','2023-01-26 20:03:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23934,'4000','121674752575','2023-01-26 20:03:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(23935,'1110','121674754569','2023-01-26 20:42:07',NULL,1800.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(23936,'1110','121674754569','2023-01-26 20:42:07',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23937,'1110','121674754569','2023-01-26 20:42:07',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23938,'1110','121674754569','2023-01-26 20:42:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23939,'1110','121674754569','2023-01-26 20:42:07',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23940,'5500','121674754569','2023-01-26 20:42:07',3192.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23941,'1000','121674754569','2023-01-26 20:42:07',5450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23942,'4000','121674754569','2023-01-26 20:42:07',NULL,3600.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(23943,'4000','121674754569','2023-01-26 20:42:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23944,'4000','121674754569','2023-01-26 20:42:07',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23945,'4000','121674754569','2023-01-26 20:42:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(23946,'4000','121674754569','2023-01-26 20:42:07',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(23947,'1110','121674754940','2023-01-26 20:48:38',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23948,'1110','121674754940','2023-01-26 20:48:38',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23949,'5500','121674754940','2023-01-26 20:48:38',753.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23950,'1000','121674754940','2023-01-26 20:48:38',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23951,'4000','121674754940','2023-01-26 20:48:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(23952,'4000','121674754940','2023-01-26 20:48:38',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(23953,'1110','121674755333','2023-01-26 21:14:05',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(23954,'5500','121674755333','2023-01-26 21:14:05',674.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23955,'1000','121674755333','2023-01-26 21:14:05',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23956,'4000','121674755333','2023-01-26 21:14:05',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(23957,'1110','121674756910','2023-01-26 21:31:23',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(23958,'5500','121674756910','2023-01-26 21:31:23',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23959,'1000','121674756910','2023-01-26 21:31:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23960,'4000','121674756910','2023-01-26 21:31:23',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(23961,'1110','121674761010','2023-01-26 22:23:37',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23962,'5500','121674761010','2023-01-26 22:23:37',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23963,'1000','121674761010','2023-01-26 22:23:37',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23964,'4000','121674761010','2023-01-26 22:23:37',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(23965,'1110','121674761021','2023-01-26 22:48:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23966,'1110','121674761021','2023-01-26 22:48:48',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23967,'1110','121674761021','2023-01-26 22:48:48',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(23968,'5500','121674761021','2023-01-26 22:48:48',269.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23969,'1000','121674761021','2023-01-26 22:48:48',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23970,'4000','121674761021','2023-01-26 22:48:48',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(23971,'4000','121674761021','2023-01-26 22:48:48',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(23972,'4000','121674761021','2023-01-26 22:48:48',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(23973,'1110','121674762639','2023-01-26 22:58:18',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23974,'5500','121674762639','2023-01-26 22:58:18',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23975,'1000','121674762639','2023-01-26 22:58:18',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23976,'4000','121674762639','2023-01-26 22:58:18',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(23977,'1110','121674763104','2023-01-26 23:27:59',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(23978,'1110','121674763104','2023-01-26 23:27:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(23979,'1110','121674763104','2023-01-26 23:27:59',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23980,'5500','121674763104','2023-01-26 23:27:59',639.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23981,'1000','121674763104','2023-01-26 23:27:59',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23982,'4000','121674763104','2023-01-26 23:27:59',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(23983,'4000','121674763104','2023-01-26 23:27:59',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(23984,'4000','121674763104','2023-01-26 23:27:59',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(23985,'1110','121674764978','2023-01-27 00:07:40',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23986,'5500','121674764978','2023-01-27 00:07:40',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23987,'1000','121674764978','2023-01-27 00:07:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23988,'4000','121674764978','2023-01-27 00:07:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23989,'1110','121674767388','2023-01-27 00:48:43',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23990,'5500','121674767388','2023-01-27 00:48:43',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23991,'1000','121674767388','2023-01-27 00:48:43',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23992,'4000','121674767388','2023-01-27 00:48:43',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(23993,'1110','121674769742','2023-01-27 00:49:50',NULL,84.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23994,'1110','121674769742','2023-01-27 00:49:50',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(23995,'5500','121674769742','2023-01-27 00:49:50',137.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(23996,'1000','121674769742','2023-01-27 00:49:50',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(23997,'4000','121674769742','2023-01-27 00:49:50',NULL,200.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(23998,'4000','121674769742','2023-01-27 00:49:50',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(23999,'1110','121674769828','2023-01-27 01:34:39',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24000,'5500','121674769828','2023-01-27 01:34:39',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24001,'1000','121674769828','2023-01-27 01:34:39',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24002,'4000','121674769828','2023-01-27 01:34:39',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24003,'1110','121674772485','2023-01-27 01:38:14',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(24004,'1110','121674772485','2023-01-27 01:38:14',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24005,'5500','121674772485','2023-01-27 01:38:14',1163.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24006,'1000','121674772485','2023-01-27 01:38:14',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24007,'4000','121674772485','2023-01-27 01:38:14',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(24008,'4000','121674772485','2023-01-27 01:38:14',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24009,'1110','121674773937','2023-01-27 01:59:32',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(24010,'5500','121674773937','2023-01-27 01:59:32',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24011,'1000','121674773937','2023-01-27 01:59:32',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24012,'4000','121674773937','2023-01-27 01:59:32',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(24013,'1110','121674779438','2023-01-27 04:08:33',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(24014,'1110','121674779438','2023-01-27 04:08:33',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24015,'1110','121674779438','2023-01-27 04:08:33',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24016,'1110','121674779438','2023-01-27 04:08:33',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(24017,'5500','121674779438','2023-01-27 04:08:33',2611.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24018,'1000','121674779438','2023-01-27 04:08:33',3740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24019,'4000','121674779438','2023-01-27 04:08:33',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(24020,'4000','121674779438','2023-01-27 04:08:33',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24021,'4000','121674779438','2023-01-27 04:08:33',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24022,'4000','121674779438','2023-01-27 04:08:33',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(24023,'1110','121674781919','2023-01-27 04:12:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24024,'1110','121674781919','2023-01-27 04:12:24',NULL,295.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(24025,'5500','121674781919','2023-01-27 04:12:24',477.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24026,'1000','121674781919','2023-01-27 04:12:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24027,'4000','121674781919','2023-01-27 04:12:24',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24028,'4000','121674781919','2023-01-27 04:12:24',NULL,450.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(24029,'1110','121674782012','2023-01-27 04:39:20',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(24030,'1110','121674782012','2023-01-27 04:39:20',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24031,'1110','121674782012','2023-01-27 04:39:20',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24032,'5500','121674782012','2023-01-27 04:39:20',4470.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24033,'1000','121674782012','2023-01-27 04:39:20',6700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24034,'4000','121674782012','2023-01-27 04:39:20',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(24035,'4000','121674782012','2023-01-27 04:39:20',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24036,'4000','121674782012','2023-01-27 04:39:20',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24037,'1110','121674783806','2023-01-27 05:03:27',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24038,'5500','121674783806','2023-01-27 05:03:27',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24039,'1000','121674783806','2023-01-27 05:03:27',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24040,'4000','121674783806','2023-01-27 05:03:27',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24041,'1110','121674785036','2023-01-27 05:04:05',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24042,'5500','121674785036','2023-01-27 05:04:05',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24043,'1000','121674785036','2023-01-27 05:04:05',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24044,'4000','121674785036','2023-01-27 05:04:05',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24045,'1110','121674824804','2023-01-27 16:07:28',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(24046,'1110','121674824804','2023-01-27 16:07:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24047,'5500','121674824804','2023-01-27 16:07:28',595.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24048,'1000','121674824804','2023-01-27 16:07:28',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24049,'4000','121674824804','2023-01-27 16:07:28',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(24050,'4000','121674824804','2023-01-27 16:07:28',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24051,'1110','121674826030','2023-01-27 16:45:49',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24052,'1110','121674826030','2023-01-27 16:45:49',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24053,'5500','121674826030','2023-01-27 16:45:49',967.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24054,'1000','121674826030','2023-01-27 16:45:49',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24055,'4000','121674826030','2023-01-27 16:45:49',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24056,'4000','121674826030','2023-01-27 16:45:49',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24057,'1110','121674827419','2023-01-27 17:48:21',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24058,'5500','121674827419','2023-01-27 17:48:21',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24059,'1000','121674827419','2023-01-27 17:48:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24060,'4000','121674827419','2023-01-27 17:48:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24061,'1110','121674834754','2023-01-27 18:53:53',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24062,'1110','121674834754','2023-01-27 18:53:53',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24063,'1110','121674834754','2023-01-27 18:53:53',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323413530','','No',NULL,NULL,''),(24064,'1110','121674834754','2023-01-27 18:53:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24065,'1110','121674834754','2023-01-27 18:53:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24066,'1110','121674834754','2023-01-27 18:53:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24067,'1110','121674834754','2023-01-27 18:53:53',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24068,'5500','121674834754','2023-01-27 18:53:53',2733.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24069,'1000','121674834754','2023-01-27 18:53:53',5150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24070,'4000','121674834754','2023-01-27 18:53:53',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24071,'4000','121674834754','2023-01-27 18:53:53',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24072,'4000','121674834754','2023-01-27 18:53:53',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323413530','','No',NULL,NULL,''),(24073,'4000','121674834754','2023-01-27 18:53:53',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24074,'4000','121674834754','2023-01-27 18:53:53',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24075,'4000','121674834754','2023-01-27 18:53:53',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24076,'4000','121674834754','2023-01-27 18:53:53',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24077,'1110','121674834945','2023-01-27 19:02:46',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(24078,'1110','121674834945','2023-01-27 19:02:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24079,'5500','121674834945','2023-01-27 19:02:46',297.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24080,'1000','121674834945','2023-01-27 19:02:46',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24081,'4000','121674834945','2023-01-27 19:02:46',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(24082,'4000','121674834945','2023-01-27 19:02:46',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24083,'1110','121674835372','2023-01-27 21:14:19',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(24084,'1110','121674835372','2023-01-27 21:14:19',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24085,'5500','121674835372','2023-01-27 21:14:19',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24086,'1000','121674835372','2023-01-27 21:14:19',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24087,'4000','121674835372','2023-01-27 21:14:19',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(24088,'4000','121674835372','2023-01-27 21:14:19',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24089,'1110','121674843311','2023-01-27 21:50:14',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(24090,'1110','121674843311','2023-01-27 21:50:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(24091,'5500','121674843311','2023-01-27 21:50:14',441.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24092,'1000','121674843311','2023-01-27 21:50:14',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24093,'4000','121674843311','2023-01-27 21:50:14',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(24094,'4000','121674843311','2023-01-27 21:50:14',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(24095,'1110','121674845512','2023-01-27 23:50:30',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(24096,'1110','121674845512','2023-01-27 23:50:30',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010106111451','','No',NULL,NULL,''),(24097,'1110','121674845512','2023-01-27 23:50:30',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24098,'1110','121674845512','2023-01-27 23:50:30',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(24099,'1110','121674845512','2023-01-27 23:50:30',NULL,590.00,'','12','1','Inventory sold','1','','sales','75032814','','No',NULL,NULL,''),(24100,'1110','121674845512','2023-01-27 23:50:30',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24101,'5500','121674845512','2023-01-27 23:50:30',3350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24102,'1000','121674845512','2023-01-27 23:50:30',6600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24103,'4000','121674845512','2023-01-27 23:50:30',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(24104,'4000','121674845512','2023-01-27 23:50:30',NULL,2200.00,'','12','1','Good sold','1','','sales','5010106111451','','No',NULL,NULL,''),(24105,'4000','121674845512','2023-01-27 23:50:30',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24106,'4000','121674845512','2023-01-27 23:50:30',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(24107,'4000','121674845512','2023-01-27 23:50:30',NULL,900.00,'','12','1','Good sold','1','','sales','75032814','','No',NULL,NULL,''),(24108,'4000','121674845512','2023-01-27 23:50:30',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24109,'1110','121674852692','2023-01-28 00:09:32',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24110,'5500','121674852692','2023-01-28 00:09:32',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24111,'1000','121674852692','2023-01-28 00:09:32',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24112,'4000','121674852692','2023-01-28 00:09:32',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24113,'1110','121674853988','2023-01-28 00:14:05',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24114,'1110','121674853988','2023-01-28 00:14:05',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24115,'5500','121674853988','2023-01-28 00:14:05',1327.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24116,'1000','121674853988','2023-01-28 00:14:05',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24117,'4000','121674853988','2023-01-28 00:14:05',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24118,'4000','121674853988','2023-01-28 00:14:05',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24119,'1110','121674854314','2023-01-28 00:32:22',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24120,'5500','121674854314','2023-01-28 00:32:22',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24121,'1000','121674854314','2023-01-28 00:32:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24122,'4000','121674854314','2023-01-28 00:32:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24123,'1110','121674855349','2023-01-28 00:57:23',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(24124,'1110','121674855349','2023-01-28 00:57:23',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24125,'5500','121674855349','2023-01-28 00:57:23',1768.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24126,'1000','121674855349','2023-01-28 00:57:23',2660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24127,'4000','121674855349','2023-01-28 00:57:23',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(24128,'4000','121674855349','2023-01-28 00:57:23',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24129,'1110','121674856819','2023-01-28 01:45:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24130,'1110','121674856819','2023-01-28 01:45:56',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24131,'5500','121674856819','2023-01-28 01:45:56',323.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24132,'1000','121674856819','2023-01-28 01:45:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24133,'4000','121674856819','2023-01-28 01:45:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24134,'4000','121674856819','2023-01-28 01:45:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24135,'1110','121674859665','2023-01-28 02:00:19',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24136,'5500','121674859665','2023-01-28 02:00:19',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24137,'1000','121674859665','2023-01-28 02:00:19',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24138,'4000','121674859665','2023-01-28 02:00:19',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24139,'1110','121674860425','2023-01-28 02:16:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24140,'5500','121674860425','2023-01-28 02:16:04',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24141,'1000','121674860425','2023-01-28 02:16:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24142,'4000','121674860425','2023-01-28 02:16:04',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24143,'1110','121674861373','2023-01-28 02:52:31',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24144,'5500','121674861373','2023-01-28 02:52:31',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24145,'1000','121674861373','2023-01-28 02:52:31',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24146,'4000','121674861373','2023-01-28 02:52:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24147,'1110','121674863566','2023-01-28 03:35:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24148,'1110','121674863566','2023-01-28 03:35:49',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24149,'5500','121674863566','2023-01-28 03:35:49',340.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24150,'1000','121674863566','2023-01-28 03:35:49',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24151,'4000','121674863566','2023-01-28 03:35:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24152,'4000','121674863566','2023-01-28 03:35:49',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24153,'1110','121674866302','2023-01-28 03:38:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(24154,'1110','121674866302','2023-01-28 03:38:53',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24155,'5500','121674866302','2023-01-28 03:38:53',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24156,'1000','121674866302','2023-01-28 03:38:53',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24157,'4000','121674866302','2023-01-28 03:38:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(24158,'4000','121674866302','2023-01-28 03:38:53',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24159,'1110','121674870451','2023-01-28 04:48:16',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(24160,'1110','121674870451','2023-01-28 04:48:16',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24161,'5500','121674870451','2023-01-28 04:48:16',3393.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24162,'1000','121674870451','2023-01-28 04:48:16',5000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24163,'4000','121674870451','2023-01-28 04:48:16',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(24164,'4000','121674870451','2023-01-28 04:48:16',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24165,'1110','121674870561','2023-01-28 04:50:43',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24166,'1110','121674870561','2023-01-28 04:50:43',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24167,'5500','121674870561','2023-01-28 04:50:43',982.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24168,'1000','121674870561','2023-01-28 04:50:43',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24169,'4000','121674870561','2023-01-28 04:50:43',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24170,'4000','121674870561','2023-01-28 04:50:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24171,'1110','121674872735','2023-01-28 05:26:13',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24172,'5500','121674872735','2023-01-28 05:26:13',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24173,'1000','121674872735','2023-01-28 05:26:13',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24174,'4000','121674872735','2023-01-28 05:26:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24175,'1110','121674872814','2023-01-28 05:27:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24176,'1110','121674872814','2023-01-28 05:27:41',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24177,'5500','121674872814','2023-01-28 05:27:41',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24178,'1000','121674872814','2023-01-28 05:27:41',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24179,'4000','121674872814','2023-01-28 05:27:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24180,'4000','121674872814','2023-01-28 05:27:41',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24181,'1110','121674874429','2023-01-28 05:54:31',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(24182,'5500','121674874429','2023-01-28 05:54:31',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24183,'1000','121674874429','2023-01-28 05:54:31',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24184,'4000','121674874429','2023-01-28 05:54:31',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(24185,'1110','121674874523','2023-01-28 06:25:22',NULL,136.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(24186,'1110','121674874523','2023-01-28 06:25:22',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24187,'1110','121674874523','2023-01-28 06:25:22',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24188,'5500','121674874523','2023-01-28 06:25:22',308.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24189,'1000','121674874523','2023-01-28 06:25:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24190,'4000','121674874523','2023-01-28 06:25:22',NULL,200.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(24191,'4000','121674874523','2023-01-28 06:25:22',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24192,'4000','121674874523','2023-01-28 06:25:22',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24193,'1110','121674901335','2023-01-28 13:22:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24194,'5500','121674901335','2023-01-28 13:22:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24195,'1000','121674901335','2023-01-28 13:22:26',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24196,'4000','121674901335','2023-01-28 13:22:26',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24197,'1110','121674901352','2023-01-28 13:23:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24198,'1110','121674901352','2023-01-28 13:23:21',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24199,'5500','121674901352','2023-01-28 13:23:21',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24200,'1000','121674901352','2023-01-28 13:23:21',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24201,'4000','121674901352','2023-01-28 13:23:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24202,'4000','121674901352','2023-01-28 13:23:21',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24203,'1110','121674901406','2023-01-28 13:39:26',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(24204,'1110','121674901406','2023-01-28 13:39:26',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24205,'5500','121674901406','2023-01-28 13:39:26',115.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24206,'1000','121674901406','2023-01-28 13:39:26',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24207,'4000','121674901406','2023-01-28 13:39:26',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(24208,'4000','121674901406','2023-01-28 13:39:26',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24209,'1110','121674902712','2023-01-28 13:45:21',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24210,'5500','121674902712','2023-01-28 13:45:21',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24211,'1000','121674902712','2023-01-28 13:45:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24212,'4000','121674902712','2023-01-28 13:45:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24213,'1110','121674903824','2023-01-28 14:03:53',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24214,'5500','121674903824','2023-01-28 14:03:53',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24215,'1000','121674903824','2023-01-28 14:03:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24216,'4000','121674903824','2023-01-28 14:03:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24217,'1110','121674903839','2023-01-28 15:40:43',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(24218,'1110','121674903839','2023-01-28 15:40:43',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24219,'1110','121674903839','2023-01-28 15:40:43',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24220,'5500','121674903839','2023-01-28 15:40:43',1087.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24221,'1000','121674903839','2023-01-28 15:40:43',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24222,'4000','121674903839','2023-01-28 15:40:43',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(24223,'4000','121674903839','2023-01-28 15:40:43',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24224,'4000','121674903839','2023-01-28 15:40:43',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24225,'1110','121674919048','2023-01-28 18:40:01',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24226,'5500','121674919048','2023-01-28 18:40:01',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24227,'1000','121674919048','2023-01-28 18:40:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24228,'4000','121674919048','2023-01-28 18:40:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24229,'1110','121674924291','2023-01-28 19:45:36',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24230,'1110','121674924291','2023-01-28 19:45:36',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(24231,'1110','121674924291','2023-01-28 19:45:36',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24232,'1110','121674924291','2023-01-28 19:45:36',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24233,'5500','121674924291','2023-01-28 19:45:36',1902.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24234,'1000','121674924291','2023-01-28 19:45:36',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24235,'4000','121674924291','2023-01-28 19:45:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24236,'4000','121674924291','2023-01-28 19:45:36',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(24237,'4000','121674924291','2023-01-28 19:45:36',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24238,'4000','121674924291','2023-01-28 19:45:36',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24239,'1110','121674924341','2023-01-28 22:29:20',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(24240,'1110','121674924341','2023-01-28 22:29:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(24241,'5500','121674924341','2023-01-28 22:29:20',298.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24242,'1000','121674924341','2023-01-28 22:29:20',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24243,'4000','121674924341','2023-01-28 22:29:20',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(24244,'4000','121674924341','2023-01-28 22:29:20',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(24245,'1110','121674934185','2023-01-28 22:30:49',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(24246,'5500','121674934185','2023-01-28 22:30:49',628.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24247,'1000','121674934185','2023-01-28 22:30:49',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24248,'4000','121674934185','2023-01-28 22:30:49',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(24249,'1110','121674934406','2023-01-28 22:35:34',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24250,'5500','121674934406','2023-01-28 22:35:34',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24251,'1000','121674934406','2023-01-28 22:35:34',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24252,'4000','121674934406','2023-01-28 22:35:34',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24253,'1110','121674934540','2023-01-28 22:39:41',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24254,'1110','121674934540','2023-01-28 22:39:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24255,'5500','121674934540','2023-01-28 22:39:41',513.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24256,'1000','121674934540','2023-01-28 22:39:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24257,'4000','121674934540','2023-01-28 22:39:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24258,'4000','121674934540','2023-01-28 22:39:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24259,'1110','121674934787','2023-01-28 22:44:38',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24260,'1110','121674934787','2023-01-28 22:44:38',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(24261,'1110','121674934787','2023-01-28 22:44:38',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24262,'1110','121674934787','2023-01-28 22:44:38',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(24263,'5500','121674934787','2023-01-28 22:44:38',2261.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24264,'1000','121674934787','2023-01-28 22:44:38',3180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24265,'4000','121674934787','2023-01-28 22:44:38',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24266,'4000','121674934787','2023-01-28 22:44:38',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(24267,'4000','121674934787','2023-01-28 22:44:38',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24268,'4000','121674934787','2023-01-28 22:44:38',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(24269,'1110','121674935164','2023-01-28 22:48:51',NULL,384.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24270,'5500','121674935164','2023-01-28 22:48:51',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24271,'1000','121674935164','2023-01-28 22:48:51',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24272,'4000','121674935164','2023-01-28 22:48:51',NULL,540.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24273,'1110','121674935966','2023-01-28 23:01:23',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24274,'1110','121674935966','2023-01-28 23:01:23',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24275,'5500','121674935966','2023-01-28 23:01:23',1094.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24276,'1000','121674935966','2023-01-28 23:01:23',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24277,'4000','121674935966','2023-01-28 23:01:23',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24278,'4000','121674935966','2023-01-28 23:01:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24279,'1110','121674936134','2023-01-28 23:15:05',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24280,'1110','121674936134','2023-01-28 23:15:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24281,'5500','121674936134','2023-01-28 23:15:05',473.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24282,'1000','121674936134','2023-01-28 23:15:05',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24283,'4000','121674936134','2023-01-28 23:15:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24284,'4000','121674936134','2023-01-28 23:15:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24285,'1110','121674936911','2023-01-28 23:16:15',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(24286,'1110','121674936911','2023-01-28 23:16:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24287,'1110','121674936911','2023-01-28 23:16:15',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24288,'5500','121674936911','2023-01-28 23:16:15',512.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24289,'1000','121674936911','2023-01-28 23:16:15',740.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24290,'4000','121674936911','2023-01-28 23:16:15',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(24291,'4000','121674936911','2023-01-28 23:16:15',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24292,'4000','121674936911','2023-01-28 23:16:15',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24293,'1110','121674937170','2023-01-28 23:19:44',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(24294,'1110','121674937170','2023-01-28 23:19:44',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24295,'5500','121674937170','2023-01-28 23:19:44',2758.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24296,'1000','121674937170','2023-01-28 23:19:44',4250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24297,'4000','121674937170','2023-01-28 23:19:44',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(24298,'4000','121674937170','2023-01-28 23:19:44',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24299,'1110','121674937236','2023-01-28 23:22:19',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(24300,'5500','121674937236','2023-01-28 23:22:19',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24301,'1000','121674937236','2023-01-28 23:22:19',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24302,'4000','121674937236','2023-01-28 23:22:19',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(24303,'1110','121674937740','2023-01-28 23:29:22',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24304,'1110','121674937740','2023-01-28 23:29:22',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24305,'5500','121674937740','2023-01-28 23:29:22',804.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24306,'1000','121674937740','2023-01-28 23:29:22',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24307,'4000','121674937740','2023-01-28 23:29:22',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24308,'4000','121674937740','2023-01-28 23:29:22',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24309,'1110','121674937815','2023-01-28 23:40:27',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(24310,'1110','121674937815','2023-01-28 23:40:27',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24311,'5500','121674937815','2023-01-28 23:40:27',291.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24312,'1000','121674937815','2023-01-28 23:40:27',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24313,'4000','121674937815','2023-01-28 23:40:27',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(24314,'4000','121674937815','2023-01-28 23:40:27',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24315,'1110','121674938517','2023-01-28 23:59:11',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(24316,'5500','121674938517','2023-01-28 23:59:11',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24317,'1000','121674938517','2023-01-28 23:59:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24318,'4000','121674938517','2023-01-28 23:59:11',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(24319,'1110','121674939585','2023-01-29 00:30:56',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(24320,'1110','121674939585','2023-01-29 00:30:56',NULL,160.00,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(24321,'5500','121674939585','2023-01-29 00:30:56',795.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24322,'1000','121674939585','2023-01-29 00:30:56',1090.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24323,'4000','121674939585','2023-01-29 00:30:56',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(24324,'4000','121674939585','2023-01-29 00:30:56',NULL,240.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(24325,'1110','121674941538','2023-01-29 01:00:15',NULL,1128.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24326,'1110','121674941538','2023-01-29 01:00:15',NULL,804.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24327,'1110','121674941538','2023-01-29 01:00:15',NULL,2000.00,'','12','1','Inventory sold','1','','sales','5011007003029','','No',NULL,NULL,''),(24328,'5500','121674941538','2023-01-29 01:00:15',3932.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24329,'1000','121674941538','2023-01-29 01:00:15',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24330,'4000','121674941538','2023-01-29 01:00:15',NULL,1500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24331,'4000','121674941538','2023-01-29 01:00:15',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(24332,'4000','121674941538','2023-01-29 01:00:15',NULL,2700.00,'','12','1','Good sold','1','','sales','5011007003029','','No',NULL,NULL,''),(24333,'1110','121674943419','2023-01-29 01:12:51',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24334,'5500','121674943419','2023-01-29 01:12:51',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24335,'1000','121674943419','2023-01-29 01:12:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24336,'4000','121674943419','2023-01-29 01:12:51',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24337,'1110','121674944217','2023-01-29 01:47:47',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24338,'1110','121674944217','2023-01-29 01:47:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24339,'1110','121674944217','2023-01-29 01:47:47',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24340,'5500','121674944217','2023-01-29 01:47:47',1018.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24341,'1000','121674944217','2023-01-29 01:47:47',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24342,'4000','121674944217','2023-01-29 01:47:47',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24343,'4000','121674944217','2023-01-29 01:47:47',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24344,'4000','121674944217','2023-01-29 01:47:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24345,'1110','121674946123','2023-01-29 01:49:00',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(24346,'5500','121674946123','2023-01-29 01:49:00',1474.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24347,'1000','121674946123','2023-01-29 01:49:00',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24348,'4000','121674946123','2023-01-29 01:49:00',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(24349,'1110','121674947506','2023-01-29 02:12:16',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24350,'1110','121674947506','2023-01-29 02:12:16',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24351,'5500','121674947506','2023-01-29 02:12:16',420.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24352,'1000','121674947506','2023-01-29 02:12:16',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24353,'4000','121674947506','2023-01-29 02:12:16',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24354,'4000','121674947506','2023-01-29 02:12:16',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24355,'1110','121674947553','2023-01-29 02:40:59',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24356,'1110','121674947553','2023-01-29 02:40:59',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24357,'1110','121674947553','2023-01-29 02:40:59',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24358,'5500','121674947553','2023-01-29 02:40:59',1398.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24359,'1000','121674947553','2023-01-29 02:40:59',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24360,'4000','121674947553','2023-01-29 02:40:59',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24361,'4000','121674947553','2023-01-29 02:40:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24362,'4000','121674947553','2023-01-29 02:40:59',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24363,'1110','121674949273','2023-01-29 02:47:23',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24364,'1110','121674949273','2023-01-29 02:47:23',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24365,'1110','121674949273','2023-01-29 02:47:23',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24366,'5500','121674949273','2023-01-29 02:47:23',823.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24367,'1000','121674949273','2023-01-29 02:47:23',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24368,'4000','121674949273','2023-01-29 02:47:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24369,'4000','121674949273','2023-01-29 02:47:23',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24370,'4000','121674949273','2023-01-29 02:47:23',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24371,'1110','121674949648','2023-01-29 03:52:39',NULL,12500.00,'','12','1','Inventory sold','1','','sales','5000281026626','','No',NULL,NULL,''),(24372,'1110','121674949648','2023-01-29 03:52:39',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24373,'1110','121674949648','2023-01-29 03:52:39',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24374,'1110','121674949648','2023-01-29 03:52:39',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24375,'5500','121674949648','2023-01-29 03:52:39',13622.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24376,'1000','121674949648','2023-01-29 03:52:39',19800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24377,'4000','121674949648','2023-01-29 03:52:39',NULL,17600.00,'','12','1','Good sold','1','','sales','5000281026626','','No',NULL,NULL,''),(24378,'4000','121674949648','2023-01-29 03:52:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24379,'4000','121674949648','2023-01-29 03:52:39',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495201501','','No',NULL,NULL,''),(24380,'4000','121674949648','2023-01-29 03:52:39',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24381,'1110','121674953569','2023-01-29 03:59:15',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24382,'5500','121674953569','2023-01-29 03:59:15',80.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24383,'1000','121674953569','2023-01-29 03:59:15',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24384,'4000','121674953569','2023-01-29 03:59:15',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24385,'1110','121674954226','2023-01-29 04:18:22',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24386,'1110','121674954226','2023-01-29 04:18:22',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24387,'5500','121674954226','2023-01-29 04:18:22',1293.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24388,'1000','121674954226','2023-01-29 04:18:22',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24389,'4000','121674954226','2023-01-29 04:18:22',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24390,'4000','121674954226','2023-01-29 04:18:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24391,'1110','121674955505','2023-01-29 04:25:52',NULL,95.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24392,'5500','121674955505','2023-01-29 04:25:52',95.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24393,'1000','121674955505','2023-01-29 04:25:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24394,'4000','121674955505','2023-01-29 04:25:52',NULL,250.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24395,'1110','121674957311','2023-01-29 04:55:31',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24396,'1110','121674957311','2023-01-29 04:55:31',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(24397,'5500','121674957311','2023-01-29 04:55:31',1994.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24398,'1000','121674957311','2023-01-29 04:55:31',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24399,'4000','121674957311','2023-01-29 04:55:31',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24400,'4000','121674957311','2023-01-29 04:55:31',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(24401,'1110','121674957336','2023-01-29 05:48:04',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24402,'1110','121674957336','2023-01-29 05:48:04',NULL,152.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24403,'1110','121674957336','2023-01-29 05:48:04',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24404,'1110','121674957336','2023-01-29 05:48:04',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24405,'1110','121674957336','2023-01-29 05:48:04',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24406,'1110','121674957336','2023-01-29 05:48:04',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24407,'1110','121674957336','2023-01-29 05:48:04',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(24408,'1110','121674957336','2023-01-29 05:48:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24409,'5500','121674957336','2023-01-29 05:48:04',3234.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24410,'1000','121674957336','2023-01-29 05:48:04',5080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24411,'4000','121674957336','2023-01-29 05:48:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24412,'4000','121674957336','2023-01-29 05:48:04',NULL,400.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24413,'4000','121674957336','2023-01-29 05:48:04',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24414,'4000','121674957336','2023-01-29 05:48:04',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24415,'4000','121674957336','2023-01-29 05:48:04',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(24416,'4000','121674957336','2023-01-29 05:48:04',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24417,'4000','121674957336','2023-01-29 05:48:04',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(24418,'4000','121674957336','2023-01-29 05:48:04',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24419,'1110','121674961397','2023-01-29 06:30:47',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(24420,'1110','121674961397','2023-01-29 06:30:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24421,'1110','121674961397','2023-01-29 06:30:47',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24422,'5500','121674961397','2023-01-29 06:30:47',485.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24423,'1000','121674961397','2023-01-29 06:30:47',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24424,'4000','121674961397','2023-01-29 06:30:47',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(24425,'4000','121674961397','2023-01-29 06:30:47',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24426,'4000','121674961397','2023-01-29 06:30:47',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(24427,'1110','121674963645','2023-01-29 07:39:29',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24428,'1110','121674963645','2023-01-29 07:39:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24429,'1110','121674963645','2023-01-29 07:39:29',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(24430,'5500','121674963645','2023-01-29 07:39:29',291.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24431,'1000','121674963645','2023-01-29 07:39:29',490.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24432,'4000','121674963645','2023-01-29 07:39:29',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24433,'4000','121674963645','2023-01-29 07:39:29',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24434,'4000','121674963645','2023-01-29 07:39:29',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(24435,'1110','121674967234','2023-01-29 08:25:08',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(24436,'5500','121674967234','2023-01-29 08:25:08',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24437,'1000','121674967234','2023-01-29 08:25:08',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24438,'4000','121674967234','2023-01-29 08:25:08',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(24439,'1110','121674975604','2023-01-29 10:00:51',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(24440,'1110','121674975604','2023-01-29 10:00:51',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24441,'5500','121674975604','2023-01-29 10:00:51',115.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24442,'1000','121674975604','2023-01-29 10:00:51',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24443,'4000','121674975604','2023-01-29 10:00:51',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(24444,'4000','121674975604','2023-01-29 10:00:51',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24445,'1110','121674980685','2023-01-29 11:27:39',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24446,'1110','121674980685','2023-01-29 11:27:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24447,'5500','121674980685','2023-01-29 11:27:39',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24448,'1000','121674980685','2023-01-29 11:27:39',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24449,'4000','121674980685','2023-01-29 11:27:39',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24450,'4000','121674980685','2023-01-29 11:27:39',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24451,'1110','121674980865','2023-01-29 12:05:23',NULL,1300.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(24452,'5500','121674980865','2023-01-29 12:05:23',1300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24453,'1000','121674980865','2023-01-29 12:05:23',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24454,'4000','121674980865','2023-01-29 12:05:23',NULL,1800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(24455,'1110','121674985351','2023-01-29 12:43:36',NULL,3708.00,'','12','1','Inventory sold','1','','sales','5010314101015','','No',NULL,NULL,''),(24456,'5500','121674985351','2023-01-29 12:43:36',3708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24457,'1000','121674985351','2023-01-29 12:43:36',5200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24458,'4000','121674985351','2023-01-29 12:43:36',NULL,5200.00,'','12','1','Good sold','1','','sales','5010314101015','','No',NULL,NULL,''),(24459,'1110','121674997760','2023-01-29 16:09:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24460,'5500','121674997760','2023-01-29 16:09:39',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24461,'1000','121674997760','2023-01-29 16:09:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24462,'4000','121674997760','2023-01-29 16:09:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24463,'1110','121674997792','2023-01-29 16:48:26',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24464,'5500','121674997792','2023-01-29 16:48:26',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24465,'1000','121674997792','2023-01-29 16:48:26',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24466,'4000','121674997792','2023-01-29 16:48:26',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24467,'1110','121675000116','2023-01-29 17:43:32',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24468,'5500','121675000116','2023-01-29 17:43:32',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24469,'1000','121675000116','2023-01-29 17:43:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24470,'4000','121675000116','2023-01-29 17:43:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24471,'1110','121675003421','2023-01-29 18:28:09',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24472,'5500','121675003421','2023-01-29 18:28:09',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24473,'1000','121675003421','2023-01-29 18:28:09',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24474,'4000','121675003421','2023-01-29 18:28:09',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(24475,'1110','121675006098','2023-01-29 19:27:10',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24476,'5500','121675006098','2023-01-29 19:27:10',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24477,'1000','121675006098','2023-01-29 19:27:10',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24478,'4000','121675006098','2023-01-29 19:27:10',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24479,'1110','121675009646','2023-01-29 19:59:01',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24480,'1110','121675009646','2023-01-29 19:59:01',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24481,'5500','121675009646','2023-01-29 19:59:01',417.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24482,'1000','121675009646','2023-01-29 19:59:01',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24483,'4000','121675009646','2023-01-29 19:59:01',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24484,'4000','121675009646','2023-01-29 19:59:01',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24485,'1110','121675015459','2023-01-29 21:04:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24486,'5500','121675015459','2023-01-29 21:04:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24487,'1000','121675015459','2023-01-29 21:04:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24488,'4000','121675015459','2023-01-29 21:04:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24489,'1110','121675015677','2023-01-29 22:12:10',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24490,'1110','121675015677','2023-01-29 22:12:10',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24491,'5500','121675015677','2023-01-29 22:12:10',432.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24492,'1000','121675015677','2023-01-29 22:12:10',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24493,'4000','121675015677','2023-01-29 22:12:10',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24494,'4000','121675015677','2023-01-29 22:12:10',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24495,'1110','121675019603','2023-01-29 23:04:40',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(24496,'5500','121675019603','2023-01-29 23:04:40',68.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24497,'1000','121675019603','2023-01-29 23:04:40',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24498,'4000','121675019603','2023-01-29 23:04:40',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(24499,'1110','121675022688','2023-01-29 23:05:33',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24500,'5500','121675022688','2023-01-29 23:05:33',89.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24501,'1000','121675022688','2023-01-29 23:05:33',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24502,'4000','121675022688','2023-01-29 23:05:33',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24503,'1110','121675022751','2023-01-29 23:11:33',NULL,711.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(24504,'5500','121675022751','2023-01-29 23:11:33',711.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24505,'1000','121675022751','2023-01-29 23:11:33',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24506,'4000','121675022751','2023-01-29 23:11:33',NULL,1300.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(24507,'1110','121675023701','2023-01-29 23:23:50',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(24508,'5500','121675023701','2023-01-29 23:23:50',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24509,'1000','121675023701','2023-01-29 23:23:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24510,'4000','121675023701','2023-01-29 23:23:50',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(24511,'1110','121675023885','2023-01-30 00:20:40',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24512,'1110','121675023885','2023-01-30 00:20:40',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24513,'5500','121675023885','2023-01-30 00:20:40',380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24514,'1000','121675023885','2023-01-30 00:20:40',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24515,'4000','121675023885','2023-01-30 00:20:40',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(24516,'4000','121675023885','2023-01-30 00:20:40',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24517,'1110','121675027247','2023-01-30 00:50:34',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(24518,'5500','121675027247','2023-01-30 00:50:34',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24519,'1000','121675027247','2023-01-30 00:50:34',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24520,'4000','121675027247','2023-01-30 00:50:34',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(24521,'1110','121675029045','2023-01-30 01:42:48',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(24522,'1110','121675029045','2023-01-30 01:42:48',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(24523,'5500','121675029045','2023-01-30 01:42:48',677.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24524,'1000','121675029045','2023-01-30 01:42:48',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24525,'4000','121675029045','2023-01-30 01:42:48',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(24526,'4000','121675029045','2023-01-30 01:42:48',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(24527,'1110','121675056772','2023-01-30 11:24:07',NULL,3398.00,'','12','1','Inventory sold','1','','sales','5010103800457','','No',NULL,NULL,''),(24528,'5500','121675056772','2023-01-30 11:24:07',3398.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24529,'1000','121675056772','2023-01-30 11:24:07',4600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24530,'4000','121675056772','2023-01-30 11:24:07',NULL,4600.00,'','12','1','Good sold','1','','sales','5010103800457','','No',NULL,NULL,''),(24531,'1110','121675075302','2023-01-30 13:42:14',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(24532,'5500','121675075302','2023-01-30 13:42:14',125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24533,'1000','121675075302','2023-01-30 13:42:14',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24534,'4000','121675075302','2023-01-30 13:42:14',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(24535,'1110','121675076484','2023-01-30 14:01:31',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24536,'5500','121675076484','2023-01-30 14:01:31',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24537,'1000','121675076484','2023-01-30 14:01:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24538,'4000','121675076484','2023-01-30 14:01:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24539,'1110','121675076511','2023-01-30 14:21:58',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(24540,'1110','121675076511','2023-01-30 14:21:58',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24541,'5500','121675076511','2023-01-30 14:21:58',87.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24542,'1000','121675076511','2023-01-30 14:21:58',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24543,'4000','121675076511','2023-01-30 14:21:58',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(24544,'4000','121675076511','2023-01-30 14:21:58',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24545,'1110','121675077731','2023-01-30 15:22:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24546,'5500','121675077731','2023-01-30 15:22:38',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24547,'1000','121675077731','2023-01-30 15:22:38',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24548,'4000','121675077731','2023-01-30 15:22:38',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24549,'1110','121675081369','2023-01-30 16:04:36',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24550,'1110','121675081369','2023-01-30 16:04:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24551,'5500','121675081369','2023-01-30 16:04:36',445.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24552,'1000','121675081369','2023-01-30 16:04:36',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24553,'4000','121675081369','2023-01-30 16:04:36',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24554,'4000','121675081369','2023-01-30 16:04:36',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24555,'1110','121675083929','2023-01-30 16:05:57',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24556,'5500','121675083929','2023-01-30 16:05:57',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24557,'1000','121675083929','2023-01-30 16:05:57',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24558,'4000','121675083929','2023-01-30 16:05:57',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(24559,'1110','121675083963','2023-01-30 16:08:45',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24560,'5500','121675083963','2023-01-30 16:08:45',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24561,'1000','121675083963','2023-01-30 16:08:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24562,'4000','121675083963','2023-01-30 16:08:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24563,'1110','121675084183','2023-01-30 16:47:14',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24564,'5500','121675084183','2023-01-30 16:47:14',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24565,'1000','121675084183','2023-01-30 16:47:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24566,'4000','121675084183','2023-01-30 16:47:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24567,'1110','121675098744','2023-01-30 20:13:53',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24568,'1110','121675098744','2023-01-30 20:13:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(24569,'5500','121675098744','2023-01-30 20:13:53',451.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24570,'1000','121675098744','2023-01-30 20:13:53',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24571,'4000','121675098744','2023-01-30 20:13:53',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(24572,'4000','121675098744','2023-01-30 20:13:53',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(24573,'1110','121675098844','2023-01-30 20:57:48',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24574,'1110','121675098844','2023-01-30 20:57:48',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24575,'1110','121675098844','2023-01-30 20:57:48',NULL,220.00,'','12','1','Inventory sold','1','','sales','6161100421882','','No',NULL,NULL,''),(24576,'1110','121675098844','2023-01-30 20:57:48',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24577,'1110','121675098844','2023-01-30 20:57:48',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24578,'1110','121675098844','2023-01-30 20:57:48',NULL,57.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24579,'5500','121675098844','2023-01-30 20:57:48',1530.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24580,'1000','121675098844','2023-01-30 20:57:48',2290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24581,'4000','121675098844','2023-01-30 20:57:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24582,'4000','121675098844','2023-01-30 20:57:48',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24583,'4000','121675098844','2023-01-30 20:57:48',NULL,350.00,'','12','1','Good sold','1','','sales','6161100421882','','No',NULL,NULL,''),(24584,'4000','121675098844','2023-01-30 20:57:48',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24585,'4000','121675098844','2023-01-30 20:57:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24586,'4000','121675098844','2023-01-30 20:57:48',NULL,150.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24587,'1110','121675104636','2023-01-30 21:50:51',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24588,'5500','121675104636','2023-01-30 21:50:51',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24589,'1000','121675104636','2023-01-30 21:50:51',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24590,'4000','121675104636','2023-01-30 21:50:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24591,'1110','121675104657','2023-01-30 22:14:27',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(24592,'1110','121675104657','2023-01-30 22:14:27',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(24593,'5500','121675104657','2023-01-30 22:14:27',479.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24594,'1000','121675104657','2023-01-30 22:14:27',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24595,'4000','121675104657','2023-01-30 22:14:27',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(24596,'4000','121675104657','2023-01-30 22:14:27',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(24597,'1110','121675106073','2023-01-30 22:14:56',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24598,'1110','121675106073','2023-01-30 22:14:56',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24599,'5500','121675106073','2023-01-30 22:14:56',386.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24600,'1000','121675106073','2023-01-30 22:14:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24601,'4000','121675106073','2023-01-30 22:14:56',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24602,'4000','121675106073','2023-01-30 22:14:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24603,'1110','121675106102','2023-01-30 22:46:01',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24604,'5500','121675106102','2023-01-30 22:46:01',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24605,'1000','121675106102','2023-01-30 22:46:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24606,'4000','121675106102','2023-01-30 22:46:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24607,'1110','121675108114','2023-01-30 23:17:41',NULL,225.00,'','12','1','Inventory sold','1','','sales','024000224532','','No',NULL,NULL,''),(24608,'1110','121675108114','2023-01-30 23:17:41',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24609,'1110','121675108114','2023-01-30 23:17:41',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24610,'1110','121675108114','2023-01-30 23:17:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24611,'5500','121675108114','2023-01-30 23:17:41',737.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24612,'1000','121675108114','2023-01-30 23:17:41',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24613,'4000','121675108114','2023-01-30 23:17:41',NULL,300.00,'','12','1','Good sold','1','','sales','024000224532','','No',NULL,NULL,''),(24614,'4000','121675108114','2023-01-30 23:17:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24615,'4000','121675108114','2023-01-30 23:17:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24616,'4000','121675108114','2023-01-30 23:17:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24617,'1110','121675145805','2023-01-31 10:46:40',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(24618,'5500','121675145805','2023-01-31 10:46:40',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24619,'1000','121675145805','2023-01-31 10:46:40',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24620,'4000','121675145805','2023-01-31 10:46:40',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(24621,'1110','121675161268','2023-01-31 13:51:38',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24622,'5500','121675161268','2023-01-31 13:51:38',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24623,'1000','121675161268','2023-01-31 13:51:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24624,'4000','121675161268','2023-01-31 13:51:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24625,'1110','121675162367','2023-01-31 15:57:59',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24626,'5500','121675162367','2023-01-31 15:57:59',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24627,'1000','121675162367','2023-01-31 15:57:59',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24628,'4000','121675162367','2023-01-31 15:57:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24629,'1110','121675178950','2023-01-31 18:29:57',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(24630,'1110','121675178950','2023-01-31 18:29:57',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24631,'1110','121675178950','2023-01-31 18:29:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24632,'5500','121675178950','2023-01-31 18:29:57',3818.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24633,'1000','121675178950','2023-01-31 18:29:57',5910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24634,'4000','121675178950','2023-01-31 18:29:57',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(24635,'4000','121675178950','2023-01-31 18:29:57',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24636,'4000','121675178950','2023-01-31 18:29:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24637,'1110','121675179083','2023-01-31 18:50:07',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(24638,'1110','121675179083','2023-01-31 18:50:07',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24639,'1110','121675179083','2023-01-31 18:50:07',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24640,'5500','121675179083','2023-01-31 18:50:07',987.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24641,'1000','121675179083','2023-01-31 18:50:07',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24642,'4000','121675179083','2023-01-31 18:50:07',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(24643,'4000','121675179083','2023-01-31 18:50:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24644,'4000','121675179083','2023-01-31 18:50:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24645,'1110','121675180996','2023-01-31 19:03:30',NULL,160.00,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(24646,'5500','121675180996','2023-01-31 19:03:30',160.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24647,'1000','121675180996','2023-01-31 19:03:30',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24648,'4000','121675180996','2023-01-31 19:03:30',NULL,240.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(24649,'1110','121675183104','2023-01-31 19:39:04',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(24650,'5500','121675183104','2023-01-31 19:39:04',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24651,'1000','121675183104','2023-01-31 19:39:04',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24652,'4000','121675183104','2023-01-31 19:39:04',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(24653,'1110','121675183433','2023-01-31 19:44:04',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24654,'5500','121675183433','2023-01-31 19:44:04',726.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24655,'1000','121675183433','2023-01-31 19:44:04',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24656,'4000','121675183433','2023-01-31 19:44:04',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24657,'1110','121675183449','2023-01-31 20:37:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(24658,'1110','121675183449','2023-01-31 20:37:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24659,'1110','121675183449','2023-01-31 20:37:16',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24660,'5500','121675183449','2023-01-31 20:37:16',1336.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24661,'1000','121675183449','2023-01-31 20:37:16',2070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24662,'4000','121675183449','2023-01-31 20:37:16',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(24663,'4000','121675183449','2023-01-31 20:37:16',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(24664,'4000','121675183449','2023-01-31 20:37:16',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(24665,'1110','121675186762','2023-01-31 21:38:04',NULL,1650.00,'','12','1','Inventory sold','1','','sales','1210000100511','','No',NULL,NULL,''),(24666,'1110','121675186762','2023-01-31 21:38:04',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(24667,'1110','121675186762','2023-01-31 21:38:04',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24668,'5500','121675186762','2023-01-31 21:38:04',1869.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24669,'1000','121675186762','2023-01-31 21:38:04',2680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24670,'4000','121675186762','2023-01-31 21:38:04',NULL,2300.00,'','12','1','Good sold','1','','sales','1210000100511','','No',NULL,NULL,''),(24671,'4000','121675186762','2023-01-31 21:38:04',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(24672,'4000','121675186762','2023-01-31 21:38:04',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24673,'1110','121675190295','2023-01-31 22:16:20',NULL,680.00,'','12','1','Inventory sold','1','','sales','6002269000566','','No',NULL,NULL,''),(24674,'5500','121675190295','2023-01-31 22:16:20',680.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24675,'1000','121675190295','2023-01-31 22:16:20',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24676,'4000','121675190295','2023-01-31 22:16:20',NULL,1200.00,'','12','1','Good sold','1','','sales','6002269000566','','No',NULL,NULL,''),(24677,'1110','121675196179','2023-02-01 00:41:43',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24678,'1110','121675196179','2023-02-01 00:41:43',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24679,'5500','121675196179','2023-02-01 00:41:43',1054.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24680,'1000','121675196179','2023-02-01 00:41:43',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24681,'4000','121675196179','2023-02-01 00:41:43',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24682,'4000','121675196179','2023-02-01 00:41:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24683,'1110','121675201313','2023-02-01 01:51:22',NULL,7900.00,'','12','1','Inventory sold','1','','sales','5010327325125','','No',NULL,NULL,''),(24684,'1110','121675201313','2023-02-01 01:51:22',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24685,'5500','121675201313','2023-02-01 01:51:22',8003.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24686,'1000','121675201313','2023-02-01 01:51:22',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24687,'4000','121675201313','2023-02-01 01:51:22',NULL,1100.00,'','12','1','Good sold','1','','sales','5010327325125','','No',NULL,NULL,''),(24688,'4000','121675201313','2023-02-01 01:51:22',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24689,'1110','121675205860','2023-02-01 02:10:13',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24690,'5500','121675205860','2023-02-01 02:10:13',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24691,'1000','121675205860','2023-02-01 02:10:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24692,'4000','121675205860','2023-02-01 02:10:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24693,'1110','121675206624','2023-02-01 02:13:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24694,'1110','121675206624','2023-02-01 02:13:45',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24695,'1110','121675206624','2023-02-01 02:13:45',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24696,'1110','121675206624','2023-02-01 02:13:45',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24697,'5500','121675206624','2023-02-01 02:13:45',607.86,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24698,'1000','121675206624','2023-02-01 02:13:45',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24699,'4000','121675206624','2023-02-01 02:13:45',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24700,'4000','121675206624','2023-02-01 02:13:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24701,'4000','121675206624','2023-02-01 02:13:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24702,'4000','121675206624','2023-02-01 02:13:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24703,'1110','121675206835','2023-02-01 02:17:56',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24704,'5500','121675206835','2023-02-01 02:17:56',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24705,'1000','121675206835','2023-02-01 02:17:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24706,'4000','121675206835','2023-02-01 02:17:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24707,'1110','121675207091','2023-02-01 02:31:13',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24708,'5500','121675207091','2023-02-01 02:31:13',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24709,'1000','121675207091','2023-02-01 02:31:13',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24710,'4000','121675207091','2023-02-01 02:31:13',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24711,'1110','121675207885','2023-02-01 02:45:01',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24712,'1110','121675207885','2023-02-01 02:45:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24713,'5500','121675207885','2023-02-01 02:45:01',587.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24714,'1000','121675207885','2023-02-01 02:45:01',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24715,'4000','121675207885','2023-02-01 02:45:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24716,'4000','121675207885','2023-02-01 02:45:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24717,'1110','121675208708','2023-02-01 03:53:05',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24718,'1110','121675208708','2023-02-01 03:53:05',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24719,'1110','121675208708','2023-02-01 03:53:05',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24720,'1110','121675208708','2023-02-01 03:53:05',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(24721,'5500','121675208708','2023-02-01 03:53:05',1569.93,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24722,'1000','121675208708','2023-02-01 03:53:05',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24723,'4000','121675208708','2023-02-01 03:53:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(24724,'4000','121675208708','2023-02-01 03:53:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24725,'4000','121675208708','2023-02-01 03:53:05',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24726,'4000','121675208708','2023-02-01 03:53:05',NULL,300.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(24727,'1110','121675212791','2023-02-01 03:56:14',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24728,'5500','121675212791','2023-02-01 03:56:14',428.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24729,'1000','121675212791','2023-02-01 03:56:14',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24730,'4000','121675212791','2023-02-01 03:56:14',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24731,'1110','121675213413','2023-02-01 04:45:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24732,'1110','121675213413','2023-02-01 04:45:51',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24733,'5500','121675213413','2023-02-01 04:45:51',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24734,'1000','121675213413','2023-02-01 04:45:51',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24735,'4000','121675213413','2023-02-01 04:45:51',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24736,'4000','121675213413','2023-02-01 04:45:51',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24737,'1110','121675221564','2023-02-01 06:21:21',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24738,'1110','121675221564','2023-02-01 06:21:21',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24739,'5500','121675221564','2023-02-01 06:21:21',579.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24740,'1000','121675221564','2023-02-01 06:21:21',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24741,'4000','121675221564','2023-02-01 06:21:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24742,'4000','121675221564','2023-02-01 06:21:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24743,'1110','121675248025','2023-02-01 13:40:51',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24744,'5500','121675248025','2023-02-01 13:40:51',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24745,'1000','121675248025','2023-02-01 13:40:51',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24746,'4000','121675248025','2023-02-01 13:40:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24747,'1110','121675248072','2023-02-01 13:55:06',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24748,'1110','121675248072','2023-02-01 13:55:06',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24749,'5500','121675248072','2023-02-01 13:55:06',230.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24750,'1000','121675248072','2023-02-01 13:55:06',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24751,'4000','121675248072','2023-02-01 13:55:06',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24752,'4000','121675248072','2023-02-01 13:55:06',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24753,'1110','121675264473','2023-02-01 19:11:57',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24754,'5500','121675264473','2023-02-01 19:11:57',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24755,'1000','121675264473','2023-02-01 19:11:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24756,'4000','121675264473','2023-02-01 19:11:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24757,'1110','121675267923','2023-02-01 19:41:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24758,'5500','121675267923','2023-02-01 19:41:27',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24759,'1000','121675267923','2023-02-01 19:41:27',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24760,'4000','121675267923','2023-02-01 19:41:27',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24761,'1110','121675269693','2023-02-01 20:52:44',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24762,'5500','121675269693','2023-02-01 20:52:44',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24763,'1000','121675269693','2023-02-01 20:52:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24764,'4000','121675269693','2023-02-01 20:52:44',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24765,'1110','121675273974','2023-02-01 20:53:35',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24766,'1110','121675273974','2023-02-01 20:53:35',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24767,'5500','121675273974','2023-02-01 20:53:35',466.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24768,'1000','121675273974','2023-02-01 20:53:35',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24769,'4000','121675273974','2023-02-01 20:53:35',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24770,'4000','121675273974','2023-02-01 20:53:35',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24771,'1110','121675276419','2023-02-01 21:53:22',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24772,'5500','121675276419','2023-02-01 21:53:22',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24773,'1000','121675276419','2023-02-01 21:53:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24774,'4000','121675276419','2023-02-01 21:53:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24775,'1110','121675277610','2023-02-01 21:53:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(24776,'5500','121675277610','2023-02-01 21:53:47',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24777,'1000','121675277610','2023-02-01 21:53:47',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24778,'4000','121675277610','2023-02-01 21:53:47',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(24779,'1110','121675278984','2023-02-01 22:16:31',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24780,'5500','121675278984','2023-02-01 22:16:31',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24781,'1000','121675278984','2023-02-01 22:16:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24782,'4000','121675278984','2023-02-01 22:16:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24783,'1110','121675278996','2023-02-01 23:09:12',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24784,'5500','121675278996','2023-02-01 23:09:12',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24785,'1000','121675278996','2023-02-01 23:09:12',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24786,'4000','121675278996','2023-02-01 23:09:12',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24787,'1110','121675282157','2023-02-01 23:23:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24788,'1110','121675282157','2023-02-01 23:23:36',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24789,'5500','121675282157','2023-02-01 23:23:36',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24790,'1000','121675282157','2023-02-01 23:23:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24791,'4000','121675282157','2023-02-01 23:23:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24792,'4000','121675282157','2023-02-01 23:23:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(24793,'1110','121675283027','2023-02-01 23:36:13',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24794,'5500','121675283027','2023-02-01 23:36:13',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24795,'1000','121675283027','2023-02-01 23:36:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24796,'4000','121675283027','2023-02-01 23:36:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(24797,'1110','121675283777','2023-02-01 23:39:21',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24798,'5500','121675283777','2023-02-01 23:39:21',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24799,'1000','121675283777','2023-02-01 23:39:21',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24800,'4000','121675283777','2023-02-01 23:39:21',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(24801,'1110','121675283969','2023-02-02 00:03:13',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24802,'1110','121675283969','2023-02-02 00:03:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(24803,'1110','121675283969','2023-02-02 00:03:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24804,'5500','121675283969','2023-02-02 00:03:13',458.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24805,'1000','121675283969','2023-02-02 00:03:13',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24806,'4000','121675283969','2023-02-02 00:03:13',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24807,'4000','121675283969','2023-02-02 00:03:13',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(24808,'4000','121675283969','2023-02-02 00:03:13',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24809,'1110','121675286184','2023-02-02 00:16:45',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24810,'1110','121675286184','2023-02-02 00:16:45',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24811,'5500','121675286184','2023-02-02 00:16:45',327.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24812,'1000','121675286184','2023-02-02 00:16:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24813,'4000','121675286184','2023-02-02 00:16:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24814,'4000','121675286184','2023-02-02 00:16:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(24815,'1110','121675286211','2023-02-02 00:21:59',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24816,'1110','121675286211','2023-02-02 00:21:59',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24817,'5500','121675286211','2023-02-02 00:21:59',393.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24818,'1000','121675286211','2023-02-02 00:21:59',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24819,'4000','121675286211','2023-02-02 00:21:59',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(24820,'4000','121675286211','2023-02-02 00:21:59',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24821,'1110','121675286523','2023-02-02 00:41:23',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24822,'1110','121675286523','2023-02-02 00:41:23',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24823,'1110','121675286523','2023-02-02 00:41:23',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24824,'5500','121675286523','2023-02-02 00:41:23',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24825,'1000','121675286523','2023-02-02 00:41:23',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24826,'4000','121675286523','2023-02-02 00:41:23',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24827,'4000','121675286523','2023-02-02 00:41:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24828,'4000','121675286523','2023-02-02 00:41:23',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24829,'1110','121675287766','2023-02-02 00:54:57',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24830,'1110','121675287766','2023-02-02 00:54:57',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24831,'1110','121675287766','2023-02-02 00:54:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24832,'1110','121675287766','2023-02-02 00:54:57',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24833,'5500','121675287766','2023-02-02 00:54:57',773.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24834,'1000','121675287766','2023-02-02 00:54:57',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24835,'4000','121675287766','2023-02-02 00:54:57',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24836,'4000','121675287766','2023-02-02 00:54:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(24837,'4000','121675287766','2023-02-02 00:54:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24838,'4000','121675287766','2023-02-02 00:54:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(24839,'1110','121675288503','2023-02-02 01:46:07',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(24840,'1110','121675288503','2023-02-02 01:46:07',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(24841,'5500','121675288503','2023-02-02 01:46:07',482.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24842,'1000','121675288503','2023-02-02 01:46:07',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24843,'4000','121675288503','2023-02-02 01:46:07',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(24844,'4000','121675288503','2023-02-02 01:46:07',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(24845,'1110','121675303627','2023-02-02 05:07:20',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24846,'5500','121675303627','2023-02-02 05:07:20',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24847,'1000','121675303627','2023-02-02 05:07:20',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24848,'4000','121675303627','2023-02-02 05:07:20',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24849,'1110','121675317942','2023-02-02 09:06:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24850,'1110','121675317942','2023-02-02 09:06:04',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24851,'5500','121675317942','2023-02-02 09:06:04',371.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24852,'1000','121675317942','2023-02-02 09:06:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24853,'4000','121675317942','2023-02-02 09:06:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24854,'4000','121675317942','2023-02-02 09:06:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24855,'1110','121675317974','2023-02-02 10:12:03',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24856,'5500','121675317974','2023-02-02 10:12:03',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24857,'1000','121675317974','2023-02-02 10:12:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24858,'4000','121675317974','2023-02-02 10:12:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24859,'1110','121675330134','2023-02-02 12:29:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24860,'5500','121675330134','2023-02-02 12:29:02',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24861,'1000','121675330134','2023-02-02 12:29:02',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24862,'4000','121675330134','2023-02-02 12:29:02',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24863,'1110','121675344240','2023-02-02 16:42:41',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24864,'5500','121675344240','2023-02-02 16:42:41',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24865,'1000','121675344240','2023-02-02 16:42:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24866,'4000','121675344240','2023-02-02 16:42:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(24867,'1110','121675345369','2023-02-02 16:55:47',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602143','','No',NULL,NULL,''),(24868,'5500','121675345369','2023-02-02 16:55:47',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24869,'1000','121675345369','2023-02-02 16:55:47',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24870,'4000','121675345369','2023-02-02 16:55:47',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602143','','No',NULL,NULL,''),(24871,'1110','121675346152','2023-02-02 18:52:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24872,'5500','121675346152','2023-02-02 18:52:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24873,'1000','121675346152','2023-02-02 18:52:58',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24874,'4000','121675346152','2023-02-02 18:52:58',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24875,'1110','121675353187','2023-02-02 19:26:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24876,'5500','121675353187','2023-02-02 19:26:56',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24877,'1000','121675353187','2023-02-02 19:26:56',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24878,'4000','121675353187','2023-02-02 19:26:56',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24879,'1110','121675363666','2023-02-02 21:48:27',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24880,'5500','121675363666','2023-02-02 21:48:27',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24881,'1000','121675363666','2023-02-02 21:48:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24882,'4000','121675363666','2023-02-02 21:48:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24883,'1110','121675363718','2023-02-02 22:45:04',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24884,'5500','121675363718','2023-02-02 22:45:04',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24885,'1000','121675363718','2023-02-02 22:45:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24886,'4000','121675363718','2023-02-02 22:45:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(24887,'1110','121675367119','2023-02-02 22:51:06',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24888,'1110','121675367119','2023-02-02 22:51:06',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(24889,'1110','121675367119','2023-02-02 22:51:06',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24890,'1110','121675367119','2023-02-02 22:51:06',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24891,'1110','121675367119','2023-02-02 22:51:06',NULL,544.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(24892,'1110','121675367119','2023-02-02 22:51:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24893,'1110','121675367119','2023-02-02 22:51:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24894,'5500','121675367119','2023-02-02 22:51:06',3547.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24895,'1000','121675367119','2023-02-02 22:51:06',5500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24896,'4000','121675367119','2023-02-02 22:51:06',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24897,'4000','121675367119','2023-02-02 22:51:06',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(24898,'4000','121675367119','2023-02-02 22:51:06',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24899,'4000','121675367119','2023-02-02 22:51:06',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(24900,'4000','121675367119','2023-02-02 22:51:06',NULL,800.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(24901,'4000','121675367119','2023-02-02 22:51:06',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(24902,'4000','121675367119','2023-02-02 22:51:06',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24903,'1110','121675367475','2023-02-02 22:52:32',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24904,'1110','121675367475','2023-02-02 22:52:32',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24905,'5500','121675367475','2023-02-02 22:52:32',558.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24906,'1000','121675367475','2023-02-02 22:52:32',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24907,'4000','121675367475','2023-02-02 22:52:32',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(24908,'4000','121675367475','2023-02-02 22:52:32',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24909,'1110','121675368722','2023-02-02 23:16:37',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(24910,'1110','121675368722','2023-02-02 23:16:37',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24911,'5500','121675368722','2023-02-02 23:16:37',740.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24912,'1000','121675368722','2023-02-02 23:16:37',1620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24913,'4000','121675368722','2023-02-02 23:16:37',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(24914,'4000','121675368722','2023-02-02 23:16:37',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(24915,'1110','121675369006','2023-02-02 23:20:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24916,'1110','121675369006','2023-02-02 23:20:17',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24917,'1110','121675369006','2023-02-02 23:20:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24918,'5500','121675369006','2023-02-02 23:20:17',287.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24919,'1000','121675369006','2023-02-02 23:20:17',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24920,'4000','121675369006','2023-02-02 23:20:17',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(24921,'4000','121675369006','2023-02-02 23:20:17',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24922,'4000','121675369006','2023-02-02 23:20:17',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24923,'1110','121675369325','2023-02-02 23:37:37',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(24924,'1110','121675369325','2023-02-02 23:37:37',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24925,'1110','121675369325','2023-02-02 23:37:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24926,'5500','121675369325','2023-02-02 23:37:37',3702.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24927,'1000','121675369325','2023-02-02 23:37:37',5750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24928,'4000','121675369325','2023-02-02 23:37:37',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(24929,'4000','121675369325','2023-02-02 23:37:37',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24930,'4000','121675369325','2023-02-02 23:37:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(24931,'1110','121675370273','2023-02-02 23:45:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(24932,'1110','121675370273','2023-02-02 23:45:10',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24933,'5500','121675370273','2023-02-02 23:45:10',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24934,'1000','121675370273','2023-02-02 23:45:10',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24935,'4000','121675370273','2023-02-02 23:45:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(24936,'4000','121675370273','2023-02-02 23:45:10',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24937,'1110','121675370858','2023-02-02 23:49:51',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(24938,'1110','121675370858','2023-02-02 23:49:51',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(24939,'1110','121675370858','2023-02-02 23:49:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24940,'1110','121675370858','2023-02-02 23:49:51',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24941,'5500','121675370858','2023-02-02 23:49:51',1707.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24942,'1000','121675370858','2023-02-02 23:49:51',2930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24943,'4000','121675370858','2023-02-02 23:49:51',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(24944,'4000','121675370858','2023-02-02 23:49:51',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(24945,'4000','121675370858','2023-02-02 23:49:51',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(24946,'4000','121675370858','2023-02-02 23:49:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(24947,'1110','121675371094','2023-02-02 23:51:53',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24948,'1110','121675371094','2023-02-02 23:51:53',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24949,'5500','121675371094','2023-02-02 23:51:53',408.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24950,'1000','121675371094','2023-02-02 23:51:53',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24951,'4000','121675371094','2023-02-02 23:51:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24952,'4000','121675371094','2023-02-02 23:51:53',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(24953,'1110','121675393243','2023-02-03 06:01:46',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24954,'1110','121675393243','2023-02-03 06:01:46',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(24955,'5500','121675393243','2023-02-03 06:01:46',311.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24956,'1000','121675393243','2023-02-03 06:01:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24957,'4000','121675393243','2023-02-03 06:01:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(24958,'4000','121675393243','2023-02-03 06:01:46',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(24959,'1110','121675393346','2023-02-03 06:02:49',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24960,'1110','121675393346','2023-02-03 06:02:49',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24961,'5500','121675393346','2023-02-03 06:02:49',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24962,'1000','121675393346','2023-02-03 06:02:49',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24963,'4000','121675393346','2023-02-03 06:02:49',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24964,'4000','121675393346','2023-02-03 06:02:49',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24965,'1110','121675410477','2023-02-03 10:48:11',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24966,'5500','121675410477','2023-02-03 10:48:11',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24967,'1000','121675410477','2023-02-03 10:48:11',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24968,'4000','121675410477','2023-02-03 10:48:11',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24969,'1110','121675414635','2023-02-03 12:58:16',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24970,'1110','121675414635','2023-02-03 12:58:16',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(24971,'5500','121675414635','2023-02-03 12:58:16',87.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24972,'1000','121675414635','2023-02-03 12:58:16',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24973,'4000','121675414635','2023-02-03 12:58:16',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24974,'4000','121675414635','2023-02-03 12:58:16',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(24975,'1110','121675418303','2023-02-03 15:17:23',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(24976,'5500','121675418303','2023-02-03 15:17:23',170.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24977,'1000','121675418303','2023-02-03 15:17:23',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24978,'4000','121675418303','2023-02-03 15:17:23',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(24979,'1110','121675426650','2023-02-03 15:22:03',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24980,'5500','121675426650','2023-02-03 15:22:03',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24981,'1000','121675426650','2023-02-03 15:22:03',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24982,'4000','121675426650','2023-02-03 15:22:03',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(24983,'1110','121675426928','2023-02-03 16:46:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24984,'1110','121675426928','2023-02-03 16:46:42',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24985,'5500','121675426928','2023-02-03 16:46:42',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24986,'1000','121675426928','2023-02-03 16:46:42',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24987,'4000','121675426928','2023-02-03 16:46:42',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(24988,'4000','121675426928','2023-02-03 16:46:42',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(24989,'1110','121675435654','2023-02-03 17:47:44',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24990,'5500','121675435654','2023-02-03 17:47:44',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24991,'1000','121675435654','2023-02-03 17:47:44',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24992,'4000','121675435654','2023-02-03 17:47:44',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(24993,'1110','121675435671','2023-02-03 18:09:48',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(24994,'1110','121675435671','2023-02-03 18:09:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(24995,'5500','121675435671','2023-02-03 18:09:48',297.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(24996,'1000','121675435671','2023-02-03 18:09:48',530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(24997,'4000','121675435671','2023-02-03 18:09:48',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(24998,'4000','121675435671','2023-02-03 18:09:48',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(24999,'1110','121675445799','2023-02-03 20:36:50',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25000,'5500','121675445799','2023-02-03 20:36:50',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25001,'1000','121675445799','2023-02-03 20:36:50',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25002,'4000','121675445799','2023-02-03 20:36:50',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25003,'1110','121675445821','2023-02-03 22:35:02',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25004,'5500','121675445821','2023-02-03 22:35:02',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25005,'1000','121675445821','2023-02-03 22:35:02',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25006,'4000','121675445821','2023-02-03 22:35:02',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25007,'1110','121675452911','2023-02-04 00:53:05',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(25008,'1110','121675452911','2023-02-04 00:53:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25009,'5500','121675452911','2023-02-04 00:53:05',262.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25010,'1000','121675452911','2023-02-04 00:53:05',360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25011,'4000','121675452911','2023-02-04 00:53:05',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(25012,'4000','121675452911','2023-02-04 00:53:05',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25013,'1110','121675461646','2023-02-04 01:01:57',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25014,'1110','121675461646','2023-02-04 01:01:57',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25015,'1110','121675461646','2023-02-04 01:01:57',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25016,'1110','121675461646','2023-02-04 01:01:57',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25017,'1110','121675461646','2023-02-04 01:01:57',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(25018,'5500','121675461646','2023-02-04 01:01:57',3097.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25019,'1000','121675461646','2023-02-04 01:01:57',5010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25020,'4000','121675461646','2023-02-04 01:01:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25021,'4000','121675461646','2023-02-04 01:01:57',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25022,'4000','121675461646','2023-02-04 01:01:57',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25023,'4000','121675461646','2023-02-04 01:01:57',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25024,'4000','121675461646','2023-02-04 01:01:57',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(25025,'1110','121675461818','2023-02-04 01:12:22',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(25026,'5500','121675461818','2023-02-04 01:12:22',1670.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25027,'1000','121675461818','2023-02-04 01:12:22',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25028,'4000','121675461818','2023-02-04 01:12:22',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(25029,'1110','121675462348','2023-02-04 01:14:03',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25030,'1110','121675462348','2023-02-04 01:14:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25031,'5500','121675462348','2023-02-04 01:14:03',582.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25032,'1000','121675462348','2023-02-04 01:14:03',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25033,'4000','121675462348','2023-02-04 01:14:03',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25034,'4000','121675462348','2023-02-04 01:14:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25035,'1110','121675462563','2023-02-04 01:28:00',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(25036,'5500','121675462563','2023-02-04 01:28:00',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25037,'1000','121675462563','2023-02-04 01:28:00',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25038,'4000','121675462563','2023-02-04 01:28:00',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(25039,'1110','121675474879','2023-02-04 05:02:20',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25040,'5500','121675474879','2023-02-04 05:02:20',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25041,'1000','121675474879','2023-02-04 05:02:20',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25042,'4000','121675474879','2023-02-04 05:02:20',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25043,'1110','121675476160','2023-02-04 05:07:59',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(25044,'1110','121675476160','2023-02-04 05:07:59',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(25045,'1110','121675476160','2023-02-04 05:07:59',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25046,'1110','121675476160','2023-02-04 05:07:59',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25047,'1110','121675476160','2023-02-04 05:07:59',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25048,'5500','121675476160','2023-02-04 05:07:59',1018.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25049,'1000','121675476160','2023-02-04 05:07:59',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25050,'4000','121675476160','2023-02-04 05:07:59',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(25051,'4000','121675476160','2023-02-04 05:07:59',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(25052,'4000','121675476160','2023-02-04 05:07:59',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25053,'4000','121675476160','2023-02-04 05:07:59',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25054,'4000','121675476160','2023-02-04 05:07:59',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25055,'1110','121675476738','2023-02-04 05:13:03',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25056,'1110','121675476738','2023-02-04 05:13:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(25057,'1110','121675476738','2023-02-04 05:13:03',NULL,125.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(25058,'5500','121675476738','2023-02-04 05:13:03',826.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25059,'1000','121675476738','2023-02-04 05:13:03',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25060,'4000','121675476738','2023-02-04 05:13:03',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25061,'4000','121675476738','2023-02-04 05:13:03',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(25062,'4000','121675476738','2023-02-04 05:13:03',NULL,200.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(25063,'1110','121675476792','2023-02-04 05:15:01',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(25064,'1110','121675476792','2023-02-04 05:15:01',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25065,'5500','121675476792','2023-02-04 05:15:01',928.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25066,'1000','121675476792','2023-02-04 05:15:01',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25067,'4000','121675476792','2023-02-04 05:15:01',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(25068,'4000','121675476792','2023-02-04 05:15:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25069,'1110','121675476908','2023-02-04 05:17:18',NULL,1284.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25070,'5500','121675476908','2023-02-04 05:17:18',1284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25071,'1000','121675476908','2023-02-04 05:17:18',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25072,'4000','121675476908','2023-02-04 05:17:18',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25073,'1110','121675485406','2023-02-04 10:01:55',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(25074,'5500','121675485406','2023-02-04 10:01:55',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25075,'1000','121675485406','2023-02-04 10:01:55',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25076,'4000','121675485406','2023-02-04 10:01:55',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(25077,'1110','121675511281','2023-02-04 14:50:24',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25078,'5500','121675511281','2023-02-04 14:50:24',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25079,'1000','121675511281','2023-02-04 14:50:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25080,'4000','121675511281','2023-02-04 14:50:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25081,'1110','121675513605','2023-02-04 15:26:56',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25082,'5500','121675513605','2023-02-04 15:26:56',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25083,'1000','121675513605','2023-02-04 15:26:56',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25084,'4000','121675513605','2023-02-04 15:26:56',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25085,'1110','121675515317','2023-02-04 15:55:30',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25086,'5500','121675515317','2023-02-04 15:55:30',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25087,'1000','121675515317','2023-02-04 15:55:30',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25088,'4000','121675515317','2023-02-04 15:55:30',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25089,'1110','121675515340','2023-02-04 17:30:53',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25090,'5500','121675515340','2023-02-04 17:30:53',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25091,'1000','121675515340','2023-02-04 17:30:53',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25092,'4000','121675515340','2023-02-04 17:30:53',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25093,'1110','121675521062','2023-02-04 19:13:55',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25094,'1110','121675521062','2023-02-04 19:13:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25095,'5500','121675521062','2023-02-04 19:13:55',298.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25096,'1000','121675521062','2023-02-04 19:13:55',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25097,'4000','121675521062','2023-02-04 19:13:55',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25098,'4000','121675521062','2023-02-04 19:13:55',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25099,'1110','121675527244','2023-02-04 19:18:11',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25100,'1110','121675527244','2023-02-04 19:18:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25101,'5500','121675527244','2023-02-04 19:18:11',298.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25102,'1000','121675527244','2023-02-04 19:18:11',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25103,'4000','121675527244','2023-02-04 19:18:11',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25104,'4000','121675527244','2023-02-04 19:18:11',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25105,'1110','121675530642','2023-02-04 20:10:53',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(25106,'5500','121675530642','2023-02-04 20:10:53',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25107,'1000','121675530642','2023-02-04 20:10:53',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25108,'4000','121675530642','2023-02-04 20:10:53',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(25109,'1110','121675533002','2023-02-04 20:50:16',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25110,'5500','121675533002','2023-02-04 20:50:16',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25111,'1000','121675533002','2023-02-04 20:50:16',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25112,'4000','121675533002','2023-02-04 20:50:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25113,'1110','121675533021','2023-02-04 21:05:21',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25114,'5500','121675533021','2023-02-04 21:05:21',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25115,'1000','121675533021','2023-02-04 21:05:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25116,'4000','121675533021','2023-02-04 21:05:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25117,'1110','121675533926','2023-02-04 21:19:25',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25118,'5500','121675533926','2023-02-04 21:19:25',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25119,'1000','121675533926','2023-02-04 21:19:25',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25120,'4000','121675533926','2023-02-04 21:19:25',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25121,'1110','121675534775','2023-02-04 21:38:50',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(25122,'5500','121675534775','2023-02-04 21:38:50',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25123,'1000','121675534775','2023-02-04 21:38:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25124,'4000','121675534775','2023-02-04 21:38:50',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(25125,'1110','121675535941','2023-02-04 21:59:09',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25126,'1110','121675535941','2023-02-04 21:59:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25127,'5500','121675535941','2023-02-04 21:59:09',728.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25128,'1000','121675535941','2023-02-04 21:59:09',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25129,'4000','121675535941','2023-02-04 21:59:09',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(25130,'4000','121675535941','2023-02-04 21:59:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25131,'1110','121675537410','2023-02-04 22:03:38',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25132,'5500','121675537410','2023-02-04 22:03:38',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25133,'1000','121675537410','2023-02-04 22:03:38',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25134,'4000','121675537410','2023-02-04 22:03:38',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25135,'1110','121675539425','2023-02-04 22:37:15',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(25136,'5500','121675539425','2023-02-04 22:37:15',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25137,'1000','121675539425','2023-02-04 22:37:15',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25138,'4000','121675539425','2023-02-04 22:37:15',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(25139,'1110','121675540915','2023-02-04 23:02:05',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25140,'5500','121675540915','2023-02-04 23:02:05',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25141,'1000','121675540915','2023-02-04 23:02:05',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25142,'4000','121675540915','2023-02-04 23:02:05',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25143,'1110','121675543426','2023-02-04 23:44:26',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25144,'1110','121675543426','2023-02-04 23:44:26',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25145,'5500','121675543426','2023-02-04 23:44:26',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25146,'1000','121675543426','2023-02-04 23:44:26',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25147,'4000','121675543426','2023-02-04 23:44:26',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25148,'4000','121675543426','2023-02-04 23:44:26',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25149,'1110','121675543472','2023-02-04 23:50:18',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25150,'1110','121675543472','2023-02-04 23:50:18',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(25151,'5500','121675543472','2023-02-04 23:50:18',240.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25152,'1000','121675543472','2023-02-04 23:50:18',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25153,'4000','121675543472','2023-02-04 23:50:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25154,'4000','121675543472','2023-02-04 23:50:18',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(25155,'1110','121675543823','2023-02-04 23:59:01',NULL,1380.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(25156,'1110','121675543823','2023-02-04 23:59:01',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25157,'5500','121675543823','2023-02-04 23:59:01',1533.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25158,'1000','121675543823','2023-02-04 23:59:01',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25159,'4000','121675543823','2023-02-04 23:59:01',NULL,2200.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(25160,'4000','121675543823','2023-02-04 23:59:01',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25161,'1110','121675545263','2023-02-05 00:14:31',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25162,'5500','121675545263','2023-02-05 00:14:31',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25163,'1000','121675545263','2023-02-05 00:14:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25164,'4000','121675545263','2023-02-05 00:14:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25165,'1110','121675545276','2023-02-05 00:20:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25166,'5500','121675545276','2023-02-05 00:20:16',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25167,'1000','121675545276','2023-02-05 00:20:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25168,'4000','121675545276','2023-02-05 00:20:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25169,'1110','121675545621','2023-02-05 00:29:04',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25170,'5500','121675545621','2023-02-05 00:29:04',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25171,'1000','121675545621','2023-02-05 00:29:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25172,'4000','121675545621','2023-02-05 00:29:04',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25173,'1110','121675547762','2023-02-05 00:56:46',NULL,576.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25174,'1110','121675547762','2023-02-05 00:56:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25175,'1110','121675547762','2023-02-05 00:56:46',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25176,'5500','121675547762','2023-02-05 00:56:46',667.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25177,'1000','121675547762','2023-02-05 00:56:46',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25178,'4000','121675547762','2023-02-05 00:56:46',NULL,810.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25179,'4000','121675547762','2023-02-05 00:56:46',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25180,'4000','121675547762','2023-02-05 00:56:46',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25181,'1110','121675547877','2023-02-05 00:58:29',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25182,'5500','121675547877','2023-02-05 00:58:29',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25183,'1000','121675547877','2023-02-05 00:58:29',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25184,'4000','121675547877','2023-02-05 00:58:29',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25185,'1110','121675549185','2023-02-05 01:19:56',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25186,'5500','121675549185','2023-02-05 01:19:56',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25187,'1000','121675549185','2023-02-05 01:19:56',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25188,'4000','121675549185','2023-02-05 01:19:56',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25189,'1110','121675549201','2023-02-05 01:24:10',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(25190,'5500','121675549201','2023-02-05 01:24:10',2200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25191,'1000','121675549201','2023-02-05 01:24:10',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25192,'4000','121675549201','2023-02-05 01:24:10',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(25193,'1110','121675549502','2023-02-05 01:47:12',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25194,'1110','121675549502','2023-02-05 01:47:12',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25195,'5500','121675549502','2023-02-05 01:47:12',697.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25196,'1000','121675549502','2023-02-05 01:47:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25197,'4000','121675549502','2023-02-05 01:47:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25198,'4000','121675549502','2023-02-05 01:47:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25199,'1110','121675550911','2023-02-05 01:48:41',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25200,'5500','121675550911','2023-02-05 01:48:41',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25201,'1000','121675550911','2023-02-05 01:48:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25202,'4000','121675550911','2023-02-05 01:48:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25203,'1110','121675550963','2023-02-05 01:49:42',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25204,'1110','121675550963','2023-02-05 01:49:42',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25205,'5500','121675550963','2023-02-05 01:49:42',838.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25206,'1000','121675550963','2023-02-05 01:49:42',1230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25207,'4000','121675550963','2023-02-05 01:49:42',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25208,'4000','121675550963','2023-02-05 01:49:42',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25209,'1110','121675551006','2023-02-05 01:57:24',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25210,'5500','121675551006','2023-02-05 01:57:24',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25211,'1000','121675551006','2023-02-05 01:57:24',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25212,'4000','121675551006','2023-02-05 01:57:24',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25213,'1110','121675551457','2023-02-05 02:03:44',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(25214,'5500','121675551457','2023-02-05 02:03:44',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25215,'1000','121675551457','2023-02-05 02:03:44',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25216,'4000','121675551457','2023-02-05 02:03:44',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(25217,'1110','121675551829','2023-02-05 02:34:52',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25218,'1110','121675551829','2023-02-05 02:34:52',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25219,'5500','121675551829','2023-02-05 02:34:52',217.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25220,'1000','121675551829','2023-02-05 02:34:52',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25221,'4000','121675551829','2023-02-05 02:34:52',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25222,'4000','121675551829','2023-02-05 02:34:52',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25223,'1110','121675553697','2023-02-05 02:36:40',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(25224,'1110','121675553697','2023-02-05 02:36:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25225,'5500','121675553697','2023-02-05 02:36:40',281.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25226,'1000','121675553697','2023-02-05 02:36:40',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25227,'4000','121675553697','2023-02-05 02:36:40',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(25228,'4000','121675553697','2023-02-05 02:36:40',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25229,'1110','121675553888','2023-02-05 02:50:33',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(25230,'5500','121675553888','2023-02-05 02:50:33',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25231,'1000','121675553888','2023-02-05 02:50:33',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25232,'4000','121675553888','2023-02-05 02:50:33',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(25233,'1110','121675554639','2023-02-05 02:55:03',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25234,'1110','121675554639','2023-02-05 02:55:03',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25235,'1110','121675554639','2023-02-05 02:55:03',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25236,'5500','121675554639','2023-02-05 02:55:03',1246.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25237,'1000','121675554639','2023-02-05 02:55:03',2010.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25238,'4000','121675554639','2023-02-05 02:55:03',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25239,'4000','121675554639','2023-02-05 02:55:03',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25240,'4000','121675554639','2023-02-05 02:55:03',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25241,'1110','121675555095','2023-02-05 03:09:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25242,'1110','121675555095','2023-02-05 03:09:04',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25243,'5500','121675555095','2023-02-05 03:09:04',251.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25244,'1000','121675555095','2023-02-05 03:09:04',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25245,'4000','121675555095','2023-02-05 03:09:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25246,'4000','121675555095','2023-02-05 03:09:04',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25247,'1110','121675555784','2023-02-05 03:10:01',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25248,'5500','121675555784','2023-02-05 03:10:01',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25249,'1000','121675555784','2023-02-05 03:10:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25250,'4000','121675555784','2023-02-05 03:10:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25251,'1110','121675555805','2023-02-05 03:38:28',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25252,'1110','121675555805','2023-02-05 03:38:28',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25253,'5500','121675555805','2023-02-05 03:38:28',1167.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25254,'1000','121675555805','2023-02-05 03:38:28',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25255,'4000','121675555805','2023-02-05 03:38:28',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25256,'4000','121675555805','2023-02-05 03:38:28',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25257,'1110','121675557549','2023-02-05 04:11:12',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(25258,'1110','121675557549','2023-02-05 04:11:12',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(25259,'1110','121675557549','2023-02-05 04:11:12',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25260,'5500','121675557549','2023-02-05 04:11:12',4243.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25261,'1000','121675557549','2023-02-05 04:11:12',6500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25262,'4000','121675557549','2023-02-05 04:11:12',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(25263,'4000','121675557549','2023-02-05 04:11:12',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(25264,'4000','121675557549','2023-02-05 04:11:12',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25265,'1110','121675560106','2023-02-05 04:22:21',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(25266,'1110','121675560106','2023-02-05 04:22:21',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25267,'5500','121675560106','2023-02-05 04:22:21',441.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25268,'1000','121675560106','2023-02-05 04:22:21',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25269,'4000','121675560106','2023-02-05 04:22:21',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(25270,'4000','121675560106','2023-02-05 04:22:21',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25271,'1110','121675560183','2023-02-05 04:23:12',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25272,'5500','121675560183','2023-02-05 04:23:12',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25273,'1000','121675560183','2023-02-05 04:23:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25274,'4000','121675560183','2023-02-05 04:23:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25275,'1110','121675560196','2023-02-05 04:23:35',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(25276,'5500','121675560196','2023-02-05 04:23:35',80.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25277,'1000','121675560196','2023-02-05 04:23:35',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25278,'4000','121675560196','2023-02-05 04:23:35',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(25279,'1110','121675560224','2023-02-05 04:42:39',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25280,'5500','121675560224','2023-02-05 04:42:39',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25281,'1000','121675560224','2023-02-05 04:42:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25282,'4000','121675560224','2023-02-05 04:42:39',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25283,'1110','121675561387','2023-02-05 04:48:33',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25284,'5500','121675561387','2023-02-05 04:48:33',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25285,'1000','121675561387','2023-02-05 04:48:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25286,'4000','121675561387','2023-02-05 04:48:33',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25287,'1110','121675561726','2023-02-05 04:49:56',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25288,'5500','121675561726','2023-02-05 04:49:56',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25289,'1000','121675561726','2023-02-05 04:49:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25290,'4000','121675561726','2023-02-05 04:49:56',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25291,'1110','121675562495','2023-02-05 05:04:17',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25292,'1110','121675562495','2023-02-05 05:04:17',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25293,'5500','121675562495','2023-02-05 05:04:17',143.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25294,'1000','121675562495','2023-02-05 05:04:17',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25295,'4000','121675562495','2023-02-05 05:04:17',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25296,'4000','121675562495','2023-02-05 05:04:17',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25297,'1110','121675563962','2023-02-05 05:26:14',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25298,'5500','121675563962','2023-02-05 05:26:14',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25299,'1000','121675563962','2023-02-05 05:26:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25300,'4000','121675563962','2023-02-05 05:26:14',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25301,'1110','121675563982','2023-02-05 05:43:15',NULL,603.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(25302,'1110','121675563982','2023-02-05 05:43:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25303,'5500','121675563982','2023-02-05 05:43:15',656.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25304,'1000','121675563982','2023-02-05 05:43:15',970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25305,'4000','121675563982','2023-02-05 05:43:15',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(25306,'4000','121675563982','2023-02-05 05:43:15',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25307,'1110','121675565209','2023-02-05 05:48:02',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25308,'5500','121675565209','2023-02-05 05:48:02',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25309,'1000','121675565209','2023-02-05 05:48:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25310,'4000','121675565209','2023-02-05 05:48:02',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25311,'1110','121675565288','2023-02-05 05:53:05',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25312,'5500','121675565288','2023-02-05 05:53:05',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25313,'1000','121675565288','2023-02-05 05:53:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25314,'4000','121675565288','2023-02-05 05:53:05',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25315,'1110','121675566621','2023-02-05 06:24:51',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25316,'5500','121675566621','2023-02-05 06:24:51',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25317,'1000','121675566621','2023-02-05 06:24:51',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25318,'4000','121675566621','2023-02-05 06:24:51',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25319,'1110','121675567497','2023-02-05 06:51:32',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25320,'5500','121675567497','2023-02-05 06:51:32',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25321,'1000','121675567497','2023-02-05 06:51:32',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25322,'4000','121675567497','2023-02-05 06:51:32',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25323,'1110','121675570322','2023-02-05 07:12:16',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25324,'5500','121675570322','2023-02-05 07:12:16',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25325,'1000','121675570322','2023-02-05 07:12:16',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25326,'4000','121675570322','2023-02-05 07:12:16',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25327,'1110','121675570344','2023-02-05 07:50:52',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25328,'1110','121675570344','2023-02-05 07:50:52',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25329,'5500','121675570344','2023-02-05 07:50:52',354.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25330,'1000','121675570344','2023-02-05 07:50:52',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25331,'4000','121675570344','2023-02-05 07:50:52',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25332,'4000','121675570344','2023-02-05 07:50:52',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25333,'1110','121675572657','2023-02-05 08:16:37',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25334,'1110','121675572657','2023-02-05 08:16:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25335,'5500','121675572657','2023-02-05 08:16:37',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25336,'1000','121675572657','2023-02-05 08:16:37',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25337,'4000','121675572657','2023-02-05 08:16:37',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25338,'4000','121675572657','2023-02-05 08:16:37',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25339,'1110','121675581348','2023-02-05 10:16:49',NULL,948.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25340,'1110','121675581348','2023-02-05 10:16:49',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25341,'5500','121675581348','2023-02-05 10:16:49',1099.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25342,'1000','121675581348','2023-02-05 10:16:49',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25343,'4000','121675581348','2023-02-05 10:16:49',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25344,'4000','121675581348','2023-02-05 10:16:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25345,'1110','121675614880','2023-02-05 19:35:02',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25346,'5500','121675614880','2023-02-05 19:35:02',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25347,'1000','121675614880','2023-02-05 19:35:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25348,'4000','121675614880','2023-02-05 19:35:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25349,'1110','121675614917','2023-02-05 21:19:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25350,'5500','121675614917','2023-02-05 21:19:41',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25351,'1000','121675614917','2023-02-05 21:19:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25352,'4000','121675614917','2023-02-05 21:19:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25353,'1110','121675621186','2023-02-05 21:20:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25354,'5500','121675621186','2023-02-05 21:20:03',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25355,'1000','121675621186','2023-02-05 21:20:03',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25356,'4000','121675621186','2023-02-05 21:20:03',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25357,'1110','121675621211','2023-02-05 21:34:27',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25358,'5500','121675621211','2023-02-05 21:34:27',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25359,'1000','121675621211','2023-02-05 21:34:27',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25360,'4000','121675621211','2023-02-05 21:34:27',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25361,'1110','121675622076','2023-02-05 22:02:43',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25362,'1110','121675622076','2023-02-05 22:02:43',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25363,'5500','121675622076','2023-02-05 22:02:43',372.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25364,'1000','121675622076','2023-02-05 22:02:43',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25365,'4000','121675622076','2023-02-05 22:02:43',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(25366,'4000','121675622076','2023-02-05 22:02:43',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25367,'1110','121675623767','2023-02-05 22:33:52',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(25368,'1110','121675623767','2023-02-05 22:33:52',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(25369,'5500','121675623767','2023-02-05 22:33:52',358.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25370,'1000','121675623767','2023-02-05 22:33:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25371,'4000','121675623767','2023-02-05 22:33:52',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(25372,'4000','121675623767','2023-02-05 22:33:52',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(25373,'1110','121675626405','2023-02-05 22:46:57',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25374,'5500','121675626405','2023-02-05 22:46:57',752.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25375,'1000','121675626405','2023-02-05 22:46:57',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25376,'4000','121675626405','2023-02-05 22:46:57',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25377,'1110','121675629351','2023-02-05 23:36:13',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25378,'5500','121675629351','2023-02-05 23:36:13',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25379,'1000','121675629351','2023-02-05 23:36:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25380,'4000','121675629351','2023-02-05 23:36:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25381,'1110','121675630409','2023-02-05 23:53:44',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25382,'5500','121675630409','2023-02-05 23:53:44',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25383,'1000','121675630409','2023-02-05 23:53:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25384,'4000','121675630409','2023-02-05 23:53:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25385,'1110','121675631704','2023-02-06 00:15:15',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25386,'5500','121675631704','2023-02-06 00:15:15',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25387,'1000','121675631704','2023-02-06 00:15:15',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25388,'4000','121675631704','2023-02-06 00:15:15',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25389,'1110','121675633463','2023-02-06 00:45:32',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25390,'1110','121675633463','2023-02-06 00:45:32',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25391,'1110','121675633463','2023-02-06 00:45:32',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(25392,'5500','121675633463','2023-02-06 00:45:32',745.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25393,'1000','121675633463','2023-02-06 00:45:32',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25394,'4000','121675633463','2023-02-06 00:45:32',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(25395,'4000','121675633463','2023-02-06 00:45:32',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25396,'4000','121675633463','2023-02-06 00:45:32',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(25397,'1110','121675637433','2023-02-06 01:50:45',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25398,'5500','121675637433','2023-02-06 01:50:45',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25399,'1000','121675637433','2023-02-06 01:50:45',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25400,'4000','121675637433','2023-02-06 01:50:45',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25401,'1110','121675637650','2023-02-06 01:54:41',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25402,'5500','121675637650','2023-02-06 01:54:41',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25403,'1000','121675637650','2023-02-06 01:54:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25404,'4000','121675637650','2023-02-06 01:54:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25405,'1110','121675637685','2023-02-06 01:58:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25406,'1110','121675637685','2023-02-06 01:58:22',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25407,'5500','121675637685','2023-02-06 01:58:22',229.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25408,'1000','121675637685','2023-02-06 01:58:22',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25409,'4000','121675637685','2023-02-06 01:58:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25410,'4000','121675637685','2023-02-06 01:58:22',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25411,'1110','121675637909','2023-02-06 02:00:17',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25412,'5500','121675637909','2023-02-06 02:00:17',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25413,'1000','121675637909','2023-02-06 02:00:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25414,'4000','121675637909','2023-02-06 02:00:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25415,'1110','121675705953','2023-02-06 20:53:49',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25416,'1110','121675705953','2023-02-06 20:53:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25417,'1110','121675705953','2023-02-06 20:53:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(25418,'5500','121675705953','2023-02-06 20:53:49',458.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25419,'1000','121675705953','2023-02-06 20:53:49',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25420,'4000','121675705953','2023-02-06 20:53:49',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25421,'4000','121675705953','2023-02-06 20:53:49',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25422,'4000','121675705953','2023-02-06 20:53:49',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(25423,'1110','121675706373','2023-02-06 20:59:55',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25424,'5500','121675706373','2023-02-06 20:59:55',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25425,'1000','121675706373','2023-02-06 20:59:55',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25426,'4000','121675706373','2023-02-06 20:59:55',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25427,'1110','121675709524','2023-02-06 21:52:15',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25428,'5500','121675709524','2023-02-06 21:52:15',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25429,'1000','121675709524','2023-02-06 21:52:15',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25430,'4000','121675709524','2023-02-06 21:52:15',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25431,'1110','121675709540','2023-02-06 22:00:27',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(25432,'1110','121675709540','2023-02-06 22:00:27',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(25433,'5500','121675709540','2023-02-06 22:00:27',965.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25434,'1000','121675709540','2023-02-06 22:00:27',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25435,'4000','121675709540','2023-02-06 22:00:27',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(25436,'4000','121675709540','2023-02-06 22:00:27',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(25437,'1110','121675710100','2023-02-06 22:05:13',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25438,'1110','121675710100','2023-02-06 22:05:13',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25439,'1110','121675710100','2023-02-06 22:05:13',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(25440,'5500','121675710100','2023-02-06 22:05:13',804.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25441,'1000','121675710100','2023-02-06 22:05:13',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25442,'4000','121675710100','2023-02-06 22:05:13',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25443,'4000','121675710100','2023-02-06 22:05:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25444,'4000','121675710100','2023-02-06 22:05:13',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(25445,'1110','121675710465','2023-02-06 22:44:39',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25446,'5500','121675710465','2023-02-06 22:44:39',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25447,'1000','121675710465','2023-02-06 22:44:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25448,'4000','121675710465','2023-02-06 22:44:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25449,'1110','121675712688','2023-02-06 23:21:16',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25450,'5500','121675712688','2023-02-06 23:21:16',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25451,'1000','121675712688','2023-02-06 23:21:16',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25452,'4000','121675712688','2023-02-06 23:21:16',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25453,'1110','121675715565','2023-02-06 23:33:05',NULL,1138.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25454,'1110','121675715565','2023-02-06 23:33:05',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25455,'5500','121675715565','2023-02-06 23:33:05',1175.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25456,'1000','121675715565','2023-02-06 23:33:05',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25457,'4000','121675715565','2023-02-06 23:33:05',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25458,'4000','121675715565','2023-02-06 23:33:05',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25459,'1110','121675715963','2023-02-07 01:12:45',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(25460,'1110','121675715963','2023-02-07 01:12:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25461,'5500','121675715963','2023-02-07 01:12:45',113.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25462,'1000','121675715963','2023-02-07 01:12:45',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25463,'4000','121675715963','2023-02-07 01:12:45',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(25464,'4000','121675715963','2023-02-07 01:12:45',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25465,'1110','121675722027','2023-02-07 01:23:45',NULL,576.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25466,'5500','121675722027','2023-02-07 01:23:45',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25467,'1000','121675722027','2023-02-07 01:23:45',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25468,'4000','121675722027','2023-02-07 01:23:45',NULL,810.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25469,'1110','121675722231','2023-02-07 03:05:15',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25470,'5500','121675722231','2023-02-07 03:05:15',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25471,'1000','121675722231','2023-02-07 03:05:15',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25472,'4000','121675722231','2023-02-07 03:05:15',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25473,'1110','121675732734','2023-02-07 04:19:27',NULL,1382.66,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25474,'1110','121675732734','2023-02-07 04:19:27',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25475,'1110','121675732734','2023-02-07 04:19:27',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25476,'5500','121675732734','2023-02-07 04:19:27',1901.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25477,'1000','121675732734','2023-02-07 04:19:27',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25478,'4000','121675732734','2023-02-07 04:19:27',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25479,'4000','121675732734','2023-02-07 04:19:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25480,'4000','121675732734','2023-02-07 04:19:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25481,'1110','121675733449','2023-02-07 04:31:34',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25482,'1110','121675733449','2023-02-07 04:31:34',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25483,'1110','121675733449','2023-02-07 04:31:34',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25484,'1110','121675733449','2023-02-07 04:31:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25485,'1110','121675733449','2023-02-07 04:31:34',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(25486,'5500','121675733449','2023-02-07 04:31:34',1768.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25487,'1000','121675733449','2023-02-07 04:31:34',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25488,'4000','121675733449','2023-02-07 04:31:34',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25489,'4000','121675733449','2023-02-07 04:31:34',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25490,'4000','121675733449','2023-02-07 04:31:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25491,'4000','121675733449','2023-02-07 04:31:34',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(25492,'4000','121675733449','2023-02-07 04:31:34',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(25493,'1110','121675785187','2023-02-07 18:53:20',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25494,'5500','121675785187','2023-02-07 18:53:20',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25495,'1000','121675785187','2023-02-07 18:53:20',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25496,'4000','121675785187','2023-02-07 18:53:20',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25497,'1110','121675785385','2023-02-07 18:56:57',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25498,'5500','121675785385','2023-02-07 18:56:57',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25499,'1000','121675785385','2023-02-07 18:56:57',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25500,'4000','121675785385','2023-02-07 18:56:57',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25501,'1110','121675785485','2023-02-07 18:58:29',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25502,'5500','121675785485','2023-02-07 18:58:29',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25503,'1000','121675785485','2023-02-07 18:58:29',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25504,'4000','121675785485','2023-02-07 18:58:29',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25505,'1110','121675785639','2023-02-07 19:01:32',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25506,'5500','121675785639','2023-02-07 19:01:32',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25507,'1000','121675785639','2023-02-07 19:01:32',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25508,'4000','121675785639','2023-02-07 19:01:32',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25509,'1110','121675785734','2023-02-07 19:04:08',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25510,'5500','121675785734','2023-02-07 19:04:08',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25511,'1000','121675785734','2023-02-07 19:04:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25512,'4000','121675785734','2023-02-07 19:04:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25513,'1110','121675794515','2023-02-07 21:37:33',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(25514,'1110','121675794515','2023-02-07 21:37:33',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25515,'1110','121675794515','2023-02-07 21:37:33',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25516,'5500','121675794515','2023-02-07 21:37:33',1531.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25517,'1000','121675794515','2023-02-07 21:37:33',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25518,'4000','121675794515','2023-02-07 21:37:33',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(25519,'4000','121675794515','2023-02-07 21:37:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25520,'4000','121675794515','2023-02-07 21:37:33',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25521,'1110','121675795058','2023-02-07 21:37:59',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25522,'5500','121675795058','2023-02-07 21:37:59',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25523,'1000','121675795058','2023-02-07 21:37:59',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25524,'4000','121675795058','2023-02-07 21:37:59',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25525,'1110','121675795084','2023-02-07 21:54:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25526,'5500','121675795084','2023-02-07 21:54:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25527,'1000','121675795084','2023-02-07 21:54:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25528,'4000','121675795084','2023-02-07 21:54:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25529,'1110','121675796079','2023-02-07 22:01:41',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(25530,'1110','121675796079','2023-02-07 22:01:41',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25531,'5500','121675796079','2023-02-07 22:01:41',838.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25532,'1000','121675796079','2023-02-07 22:01:41',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25533,'4000','121675796079','2023-02-07 22:01:41',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(25534,'4000','121675796079','2023-02-07 22:01:41',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25535,'1110','121675796505','2023-02-07 22:48:36',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(25536,'1110','121675796505','2023-02-07 22:48:36',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25537,'1110','121675796505','2023-02-07 22:48:36',NULL,267.48,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25538,'5500','121675796505','2023-02-07 22:48:36',4191.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25539,'1000','121675796505','2023-02-07 22:48:36',6340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25540,'4000','121675796505','2023-02-07 22:48:36',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(25541,'4000','121675796505','2023-02-07 22:48:36',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25542,'4000','121675796505','2023-02-07 22:48:36',NULL,600.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25543,'1110','121675802557','2023-02-07 23:42:51',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25544,'5500','121675802557','2023-02-07 23:42:51',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25545,'1000','121675802557','2023-02-07 23:42:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25546,'4000','121675802557','2023-02-07 23:42:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25547,'1110','121675804785','2023-02-08 00:19:55',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25548,'5500','121675804785','2023-02-08 00:19:55',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25549,'1000','121675804785','2023-02-08 00:19:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25550,'4000','121675804785','2023-02-08 00:19:55',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25551,'1110','121675807512','2023-02-08 01:05:23',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25552,'5500','121675807512','2023-02-08 01:05:23',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25553,'1000','121675807512','2023-02-08 01:05:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25554,'4000','121675807512','2023-02-08 01:05:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25555,'1110','121675807528','2023-02-08 01:21:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25556,'5500','121675807528','2023-02-08 01:21:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25557,'1000','121675807528','2023-02-08 01:21:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25558,'4000','121675807528','2023-02-08 01:21:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25559,'1110','121675814902','2023-02-08 03:08:49',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25560,'5500','121675814902','2023-02-08 03:08:49',759.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25561,'1000','121675814902','2023-02-08 03:08:49',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25562,'4000','121675814902','2023-02-08 03:08:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25563,'1110','121675814937','2023-02-08 03:21:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25564,'5500','121675814937','2023-02-08 03:21:13',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25565,'1000','121675814937','2023-02-08 03:21:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25566,'4000','121675814937','2023-02-08 03:21:13',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25567,'1110','121675815683','2023-02-08 03:40:56',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(25568,'5500','121675815683','2023-02-08 03:40:56',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25569,'1000','121675815683','2023-02-08 03:40:56',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25570,'4000','121675815683','2023-02-08 03:40:56',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(25571,'1110','121675833490','2023-02-08 08:19:07',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25572,'1110','121675833490','2023-02-08 08:19:07',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25573,'5500','121675833490','2023-02-08 08:19:07',490.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25574,'1000','121675833490','2023-02-08 08:19:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25575,'4000','121675833490','2023-02-08 08:19:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25576,'4000','121675833490','2023-02-08 08:19:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25577,'1110','121675851452','2023-02-08 14:52:38',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(25578,'1110','121675851452','2023-02-08 14:52:38',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25579,'5500','121675851452','2023-02-08 14:52:38',685.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25580,'1000','121675851452','2023-02-08 14:52:38',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25581,'4000','121675851452','2023-02-08 14:52:38',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(25582,'4000','121675851452','2023-02-08 14:52:38',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25583,'1110','121675857165','2023-02-08 16:37:02',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25584,'5500','121675857165','2023-02-08 16:37:02',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25585,'1000','121675857165','2023-02-08 16:37:02',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25586,'4000','121675857165','2023-02-08 16:37:02',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25587,'1110','121675863433','2023-02-08 16:37:36',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25588,'5500','121675863433','2023-02-08 16:37:36',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25589,'1000','121675863433','2023-02-08 16:37:36',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25590,'4000','121675863433','2023-02-08 16:37:36',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25591,'1110','121675877033','2023-02-08 22:11:35',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25592,'1110','121675877033','2023-02-08 22:11:35',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25593,'5500','121675877033','2023-02-08 22:11:35',348.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25594,'1000','121675877033','2023-02-08 22:11:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25595,'4000','121675877033','2023-02-08 22:11:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25596,'4000','121675877033','2023-02-08 22:11:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25597,'1110','121675884270','2023-02-08 22:24:49',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(25598,'1110','121675884270','2023-02-08 22:24:49',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25599,'5500','121675884270','2023-02-08 22:24:49',240.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25600,'1000','121675884270','2023-02-08 22:24:49',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25601,'4000','121675884270','2023-02-08 22:24:49',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(25602,'4000','121675884270','2023-02-08 22:24:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25603,'1110','121675884293','2023-02-08 23:18:21',NULL,900.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25604,'5500','121675884293','2023-02-08 23:18:21',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25605,'1000','121675884293','2023-02-08 23:18:21',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25606,'4000','121675884293','2023-02-08 23:18:21',NULL,1200.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25607,'1110','121675887795','2023-02-08 23:23:38',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25608,'1110','121675887795','2023-02-08 23:23:38',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25609,'5500','121675887795','2023-02-08 23:23:38',1798.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25610,'1000','121675887795','2023-02-08 23:23:38',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25611,'4000','121675887795','2023-02-08 23:23:38',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25612,'4000','121675887795','2023-02-08 23:23:38',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25613,'1110','121675890136','2023-02-09 00:03:50',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25614,'1110','121675890136','2023-02-09 00:03:50',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25615,'1110','121675890136','2023-02-09 00:03:50',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25616,'1110','121675890136','2023-02-09 00:03:50',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(25617,'5500','121675890136','2023-02-09 00:03:50',1757.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25618,'1000','121675890136','2023-02-09 00:03:50',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25619,'4000','121675890136','2023-02-09 00:03:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25620,'4000','121675890136','2023-02-09 00:03:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25621,'4000','121675890136','2023-02-09 00:03:50',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25622,'4000','121675890136','2023-02-09 00:03:50',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(25623,'1110','121675890418','2023-02-09 00:08:02',NULL,794.00,'','12','1','Inventory sold','1','','sales','5000267014609','','No',NULL,NULL,''),(25624,'1110','121675890418','2023-02-09 00:08:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25625,'5500','121675890418','2023-02-09 00:08:02',847.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25626,'1000','121675890418','2023-02-09 00:08:02',1580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25627,'4000','121675890418','2023-02-09 00:08:02',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267014609','','No',NULL,NULL,''),(25628,'4000','121675890418','2023-02-09 00:08:02',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25629,'1110','121675890528','2023-02-09 00:11:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(25630,'5500','121675890528','2023-02-09 00:11:18',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25631,'1000','121675890528','2023-02-09 00:11:18',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25632,'4000','121675890528','2023-02-09 00:11:18',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(25633,'1110','121675890970','2023-02-09 00:16:22',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25634,'5500','121675890970','2023-02-09 00:16:22',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25635,'1000','121675890970','2023-02-09 00:16:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25636,'4000','121675890970','2023-02-09 00:16:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25637,'1110','121675891170','2023-02-09 00:30:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25638,'5500','121675891170','2023-02-09 00:30:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25639,'1000','121675891170','2023-02-09 00:30:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25640,'4000','121675891170','2023-02-09 00:30:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25641,'1110','121675892001','2023-02-09 00:37:33',NULL,5200.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(25642,'1110','121675892001','2023-02-09 00:37:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25643,'1110','121675892001','2023-02-09 00:37:33',NULL,228.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25644,'1110','121675892001','2023-02-09 00:37:33',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25645,'1110','121675892001','2023-02-09 00:37:33',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25646,'1110','121675892001','2023-02-09 00:37:33',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(25647,'1110','121675892001','2023-02-09 00:37:33',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25648,'1110','121675892001','2023-02-09 00:37:33',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(25649,'1110','121675892001','2023-02-09 00:37:33',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25650,'1110','121675892001','2023-02-09 00:37:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25651,'1110','121675892001','2023-02-09 00:37:33',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(25652,'1110','121675892001','2023-02-09 00:37:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25653,'5500','121675892001','2023-02-09 00:37:33',7384.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25654,'1000','121675892001','2023-02-09 00:37:33',11470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25655,'4000','121675892001','2023-02-09 00:37:33',NULL,8000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(25656,'4000','121675892001','2023-02-09 00:37:33',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25657,'4000','121675892001','2023-02-09 00:37:33',NULL,600.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25658,'4000','121675892001','2023-02-09 00:37:33',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25659,'4000','121675892001','2023-02-09 00:37:33',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(25660,'4000','121675892001','2023-02-09 00:37:33',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(25661,'4000','121675892001','2023-02-09 00:37:33',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25662,'4000','121675892001','2023-02-09 00:37:33',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(25663,'4000','121675892001','2023-02-09 00:37:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25664,'4000','121675892001','2023-02-09 00:37:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(25665,'4000','121675892001','2023-02-09 00:37:33',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(25666,'4000','121675892001','2023-02-09 00:37:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25667,'1110','121675893399','2023-02-09 01:01:23',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(25668,'5500','121675893399','2023-02-09 01:01:23',719.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25669,'1000','121675893399','2023-02-09 01:01:23',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25670,'4000','121675893399','2023-02-09 01:01:23',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(25671,'1110','121675893734','2023-02-09 01:21:20',NULL,603.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(25672,'5500','121675893734','2023-02-09 01:21:20',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25673,'1000','121675893734','2023-02-09 01:21:20',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25674,'4000','121675893734','2023-02-09 01:21:20',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(25675,'1110','121675894970','2023-02-09 01:24:48',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25676,'5500','121675894970','2023-02-09 01:24:48',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25677,'1000','121675894970','2023-02-09 01:24:48',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25678,'4000','121675894970','2023-02-09 01:24:48',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25679,'1110','121675895092','2023-02-09 01:33:33',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25680,'1110','121675895092','2023-02-09 01:33:33',NULL,177.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(25681,'1110','121675895092','2023-02-09 01:33:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25682,'5500','121675895092','2023-02-09 01:33:33',724.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25683,'1000','121675895092','2023-02-09 01:33:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25684,'4000','121675895092','2023-02-09 01:33:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25685,'4000','121675895092','2023-02-09 01:33:33',NULL,250.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(25686,'4000','121675895092','2023-02-09 01:33:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25687,'1110','121675895804','2023-02-09 02:06:41',NULL,6313.00,'','12','1','Inventory sold','1','','sales','5000281003641','','No',NULL,NULL,''),(25688,'1110','121675895804','2023-02-09 02:06:41',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25689,'1110','121675895804','2023-02-09 02:06:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25690,'5500','121675895804','2023-02-09 02:06:41',6515.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25691,'1000','121675895804','2023-02-09 02:06:41',8880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25692,'4000','121675895804','2023-02-09 02:06:41',NULL,8500.00,'','12','1','Good sold','1','','sales','5000281003641','','No',NULL,NULL,''),(25693,'4000','121675895804','2023-02-09 02:06:41',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25694,'4000','121675895804','2023-02-09 02:06:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(25695,'1110','121675897614','2023-02-09 02:45:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25696,'1110','121675897614','2023-02-09 02:45:36',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25697,'5500','121675897614','2023-02-09 02:45:36',134.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25698,'1000','121675897614','2023-02-09 02:45:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25699,'4000','121675897614','2023-02-09 02:45:36',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(25700,'4000','121675897614','2023-02-09 02:45:36',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(25701,'1110','121675899940','2023-02-09 02:46:39',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25702,'5500','121675899940','2023-02-09 02:46:39',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25703,'1000','121675899940','2023-02-09 02:46:39',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25704,'4000','121675899940','2023-02-09 02:46:39',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25705,'1110','121675900004','2023-02-09 03:27:39',NULL,6313.00,'','12','1','Inventory sold','1','','sales','5000281003641','','No',NULL,NULL,''),(25706,'1110','121675900004','2023-02-09 03:27:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25707,'5500','121675900004','2023-02-09 03:27:39',6351.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25708,'1000','121675900004','2023-02-09 03:27:39',8600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25709,'4000','121675900004','2023-02-09 03:27:39',NULL,8500.00,'','12','1','Good sold','1','','sales','5000281003641','','No',NULL,NULL,''),(25710,'4000','121675900004','2023-02-09 03:27:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25711,'1110','121675902464','2023-02-09 03:32:53',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(25712,'5500','121675902464','2023-02-09 03:32:53',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25713,'1000','121675902464','2023-02-09 03:32:53',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25714,'4000','121675902464','2023-02-09 03:32:53',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(25715,'1110','121675902789','2023-02-09 03:53:18',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25716,'5500','121675902789','2023-02-09 03:53:18',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25717,'1000','121675902789','2023-02-09 03:53:18',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25718,'4000','121675902789','2023-02-09 03:53:18',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25719,'1110','121675904003','2023-02-09 05:22:09',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25720,'1110','121675904003','2023-02-09 05:22:09',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25721,'1110','121675904003','2023-02-09 05:22:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25722,'5500','121675904003','2023-02-09 05:22:09',1058.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25723,'1000','121675904003','2023-02-09 05:22:09',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25724,'4000','121675904003','2023-02-09 05:22:09',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25725,'4000','121675904003','2023-02-09 05:22:09',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(25726,'4000','121675904003','2023-02-09 05:22:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25727,'1110','121675919994','2023-02-09 08:20:21',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25728,'5500','121675919994','2023-02-09 08:20:21',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25729,'1000','121675919994','2023-02-09 08:20:21',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25730,'4000','121675919994','2023-02-09 08:20:21',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25731,'1110','121675963839','2023-02-09 20:30:58',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25732,'5500','121675963839','2023-02-09 20:30:58',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25733,'1000','121675963839','2023-02-09 20:30:58',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25734,'4000','121675963839','2023-02-09 20:30:58',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(25735,'1110','121675963873','2023-02-09 20:50:33',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25736,'1110','121675963873','2023-02-09 20:50:33',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25737,'5500','121675963873','2023-02-09 20:50:33',462.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25738,'1000','121675963873','2023-02-09 20:50:33',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25739,'4000','121675963873','2023-02-09 20:50:33',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(25740,'4000','121675963873','2023-02-09 20:50:33',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(25741,'1110','121675965202','2023-02-09 22:18:06',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25742,'5500','121675965202','2023-02-09 22:18:06',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25743,'1000','121675965202','2023-02-09 22:18:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25744,'4000','121675965202','2023-02-09 22:18:06',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25745,'1110','121675970292','2023-02-09 22:43:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25746,'5500','121675970292','2023-02-09 22:43:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25747,'1000','121675970292','2023-02-09 22:43:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25748,'4000','121675970292','2023-02-09 22:43:47',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25749,'1110','121675972205','2023-02-09 22:50:22',NULL,531.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(25750,'5500','121675972205','2023-02-09 22:50:22',531.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25751,'1000','121675972205','2023-02-09 22:50:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25752,'4000','121675972205','2023-02-09 22:50:22',NULL,750.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(25753,'1110','121675973062','2023-02-09 23:04:41',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25754,'1110','121675973062','2023-02-09 23:04:41',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25755,'5500','121675973062','2023-02-09 23:04:41',1536.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25756,'1000','121675973062','2023-02-09 23:04:41',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25757,'4000','121675973062','2023-02-09 23:04:41',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25758,'4000','121675973062','2023-02-09 23:04:41',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(25759,'1110','121675973086','2023-02-10 00:03:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(25760,'1110','121675973086','2023-02-10 00:03:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(25761,'1110','121675973086','2023-02-10 00:03:55',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25762,'5500','121675973086','2023-02-10 00:03:55',1247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25763,'1000','121675973086','2023-02-10 00:03:55',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25764,'4000','121675973086','2023-02-10 00:03:55',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(25765,'4000','121675973086','2023-02-10 00:03:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(25766,'4000','121675973086','2023-02-10 00:03:55',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25767,'1110','121675977950','2023-02-10 00:26:13',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(25768,'1110','121675977950','2023-02-10 00:26:13',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25769,'5500','121675977950','2023-02-10 00:26:13',509.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25770,'1000','121675977950','2023-02-10 00:26:13',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25771,'4000','121675977950','2023-02-10 00:26:13',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(25772,'4000','121675977950','2023-02-10 00:26:13',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25773,'1110','121675978056','2023-02-10 01:17:47',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25774,'5500','121675978056','2023-02-10 01:17:47',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25775,'1000','121675978056','2023-02-10 01:17:47',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25776,'4000','121675978056','2023-02-10 01:17:47',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25777,'1110','121675981073','2023-02-10 01:37:27',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(25778,'1110','121675981073','2023-02-10 01:37:27',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25779,'1110','121675981073','2023-02-10 01:37:27',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25780,'1110','121675981073','2023-02-10 01:37:27',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25781,'5500','121675981073','2023-02-10 01:37:27',2025.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25782,'1000','121675981073','2023-02-10 01:37:27',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25783,'4000','121675981073','2023-02-10 01:37:27',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(25784,'4000','121675981073','2023-02-10 01:37:27',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25785,'4000','121675981073','2023-02-10 01:37:27',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25786,'4000','121675981073','2023-02-10 01:37:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25787,'1110','121675982813','2023-02-10 01:47:17',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25788,'1110','121675982813','2023-02-10 01:47:17',NULL,531.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(25789,'5500','121675982813','2023-02-10 01:47:17',982.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25790,'1000','121675982813','2023-02-10 01:47:17',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25791,'4000','121675982813','2023-02-10 01:47:17',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(25792,'4000','121675982813','2023-02-10 01:47:17',NULL,750.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(25793,'1110','121675982842','2023-02-10 02:35:53',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(25794,'5500','121675982842','2023-02-10 02:35:53',1474.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25795,'1000','121675982842','2023-02-10 02:35:53',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25796,'4000','121675982842','2023-02-10 02:35:53',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(25797,'1110','121675985760','2023-02-10 02:53:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25798,'1110','121675985760','2023-02-10 02:53:10',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25799,'5500','121675985760','2023-02-10 02:53:10',357.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25800,'1000','121675985760','2023-02-10 02:53:10',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25801,'4000','121675985760','2023-02-10 02:53:10',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(25802,'4000','121675985760','2023-02-10 02:53:10',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25803,'1110','121675989187','2023-02-10 03:33:27',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(25804,'1110','121675989187','2023-02-10 03:33:27',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25805,'5500','121675989187','2023-02-10 03:33:27',509.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25806,'1000','121675989187','2023-02-10 03:33:27',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25807,'4000','121675989187','2023-02-10 03:33:27',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(25808,'4000','121675989187','2023-02-10 03:33:27',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25809,'1110','121675989219','2023-02-10 03:58:28',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25810,'5500','121675989219','2023-02-10 03:58:28',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25811,'1000','121675989219','2023-02-10 03:58:28',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25812,'4000','121675989219','2023-02-10 03:58:28',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25813,'1110','121675990715','2023-02-10 04:08:05',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25814,'5500','121675990715','2023-02-10 04:08:05',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25815,'1000','121675990715','2023-02-10 04:08:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25816,'4000','121675990715','2023-02-10 04:08:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25817,'1110','121675997862','2023-02-10 05:58:33',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25818,'1110','121675997862','2023-02-10 05:58:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25819,'1110','121675997862','2023-02-10 05:58:33',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25820,'5500','121675997862','2023-02-10 05:58:33',569.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25821,'1000','121675997862','2023-02-10 05:58:33',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25822,'4000','121675997862','2023-02-10 05:58:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(25823,'4000','121675997862','2023-02-10 05:58:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(25824,'4000','121675997862','2023-02-10 05:58:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25825,'1110','121676014662','2023-02-10 10:40:33',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25826,'1110','121676014662','2023-02-10 10:40:33',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25827,'1110','121676014662','2023-02-10 10:40:33',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(25828,'1110','121676014662','2023-02-10 10:40:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(25829,'1110','121676014662','2023-02-10 10:40:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(25830,'5500','121676014662','2023-02-10 10:40:33',668.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25831,'1000','121676014662','2023-02-10 10:40:33',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25832,'4000','121676014662','2023-02-10 10:40:33',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25833,'4000','121676014662','2023-02-10 10:40:33',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25834,'4000','121676014662','2023-02-10 10:40:33',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(25835,'4000','121676014662','2023-02-10 10:40:33',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(25836,'4000','121676014662','2023-02-10 10:40:33',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(25837,'1110','121676048494','2023-02-10 20:02:37',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(25838,'1110','121676048494','2023-02-10 20:02:37',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(25839,'5500','121676048494','2023-02-10 20:02:37',374.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25840,'1000','121676048494','2023-02-10 20:02:37',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25841,'4000','121676048494','2023-02-10 20:02:37',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(25842,'4000','121676048494','2023-02-10 20:02:37',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(25843,'1110','121676048699','2023-02-10 20:05:25',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25844,'5500','121676048699','2023-02-10 20:05:25',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25845,'1000','121676048699','2023-02-10 20:05:25',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25846,'4000','121676048699','2023-02-10 20:05:25',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25847,'1110','121676048740','2023-02-10 20:06:37',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25848,'1110','121676048740','2023-02-10 20:06:37',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25849,'5500','121676048740','2023-02-10 20:06:37',218.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25850,'1000','121676048740','2023-02-10 20:06:37',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25851,'4000','121676048740','2023-02-10 20:06:37',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25852,'4000','121676048740','2023-02-10 20:06:37',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25853,'1110','121676048983','2023-02-10 20:10:53',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25854,'1110','121676048983','2023-02-10 20:10:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25855,'5500','121676048983','2023-02-10 20:10:53',251.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25856,'1000','121676048983','2023-02-10 20:10:53',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25857,'4000','121676048983','2023-02-10 20:10:53',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25858,'4000','121676048983','2023-02-10 20:10:53',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(25859,'1110','121676057384','2023-02-10 22:29:57',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25860,'5500','121676057384','2023-02-10 22:29:57',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25861,'1000','121676057384','2023-02-10 22:29:57',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25862,'4000','121676057384','2023-02-10 22:29:57',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(25863,'1110','121676057417','2023-02-10 23:27:37',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(25864,'5500','121676057417','2023-02-10 23:27:37',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25865,'1000','121676057417','2023-02-10 23:27:37',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25866,'4000','121676057417','2023-02-10 23:27:37',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(25867,'1110','121676063185','2023-02-11 00:06:33',NULL,836.00,'','12','1','Inventory sold','1','','sales','6161101561021','','No',NULL,NULL,''),(25868,'5500','121676063185','2023-02-11 00:06:33',836.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25869,'1000','121676063185','2023-02-11 00:06:33',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25870,'4000','121676063185','2023-02-11 00:06:33',NULL,1400.00,'','12','1','Good sold','1','','sales','6161101561021','','No',NULL,NULL,''),(25871,'1110','121676063204','2023-02-11 00:12:38',NULL,352.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25872,'1110','121676063204','2023-02-11 00:12:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(25873,'5500','121676063204','2023-02-11 00:12:38',405.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25874,'1000','121676063204','2023-02-11 00:12:38',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25875,'4000','121676063204','2023-02-11 00:12:38',NULL,500.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(25876,'4000','121676063204','2023-02-11 00:12:38',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(25877,'1110','121676063572','2023-02-11 00:26:46',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(25878,'5500','121676063572','2023-02-11 00:26:46',1670.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25879,'1000','121676063572','2023-02-11 00:26:46',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25880,'4000','121676063572','2023-02-11 00:26:46',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(25881,'1110','121676064571','2023-02-11 01:03:00',NULL,1380.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(25882,'1110','121676064571','2023-02-11 01:03:00',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(25883,'5500','121676064571','2023-02-11 01:03:00',1483.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25884,'1000','121676064571','2023-02-11 01:03:00',2350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25885,'4000','121676064571','2023-02-11 01:03:00',NULL,2200.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(25886,'4000','121676064571','2023-02-11 01:03:00',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(25887,'1110','121676066742','2023-02-11 02:42:51',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25888,'1110','121676066742','2023-02-11 02:42:51',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25889,'5500','121676066742','2023-02-11 02:42:51',624.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25890,'1000','121676066742','2023-02-11 02:42:51',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25891,'4000','121676066742','2023-02-11 02:42:51',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(25892,'4000','121676066742','2023-02-11 02:42:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25893,'1110','121676072578','2023-02-11 02:49:07',NULL,410.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(25894,'5500','121676072578','2023-02-11 02:49:07',410.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25895,'1000','121676072578','2023-02-11 02:49:07',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25896,'4000','121676072578','2023-02-11 02:49:07',NULL,600.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(25897,'1110','121676073008','2023-02-11 02:51:24',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25898,'1110','121676073008','2023-02-11 02:51:24',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(25899,'5500','121676073008','2023-02-11 02:51:24',647.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25900,'1000','121676073008','2023-02-11 02:51:24',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25901,'4000','121676073008','2023-02-11 02:51:24',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25902,'4000','121676073008','2023-02-11 02:51:24',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(25903,'1110','121676073215','2023-02-11 03:18:29',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25904,'5500','121676073215','2023-02-11 03:18:29',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25905,'1000','121676073215','2023-02-11 03:18:29',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25906,'4000','121676073215','2023-02-11 03:18:29',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(25907,'1110','121676074846','2023-02-11 03:21:16',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25908,'1110','121676074846','2023-02-11 03:21:16',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25909,'5500','121676074846','2023-02-11 03:21:16',380.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25910,'1000','121676074846','2023-02-11 03:21:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25911,'4000','121676074846','2023-02-11 03:21:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(25912,'4000','121676074846','2023-02-11 03:21:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25913,'1110','121676076886','2023-02-11 03:55:39',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(25914,'1110','121676076886','2023-02-11 03:55:39',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25915,'1110','121676076886','2023-02-11 03:55:39',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25916,'1110','121676076886','2023-02-11 03:55:39',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(25917,'5500','121676076886','2023-02-11 03:55:39',1266.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25918,'1000','121676076886','2023-02-11 03:55:39',1870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25919,'4000','121676076886','2023-02-11 03:55:39',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(25920,'4000','121676076886','2023-02-11 03:55:39',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25921,'4000','121676076886','2023-02-11 03:55:39',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(25922,'4000','121676076886','2023-02-11 03:55:39',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(25923,'1110','121676077283','2023-02-11 04:14:06',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25924,'1110','121676077283','2023-02-11 04:14:06',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25925,'1110','121676077283','2023-02-11 04:14:06',NULL,136.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(25926,'5500','121676077283','2023-02-11 04:14:06',711.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25927,'1000','121676077283','2023-02-11 04:14:06',1140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25928,'4000','121676077283','2023-02-11 04:14:06',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(25929,'4000','121676077283','2023-02-11 04:14:06',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25930,'4000','121676077283','2023-02-11 04:14:06',NULL,200.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(25931,'1110','121676078344','2023-02-11 04:19:24',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(25932,'1110','121676078344','2023-02-11 04:19:24',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(25933,'5500','121676078344','2023-02-11 04:19:24',613.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25934,'1000','121676078344','2023-02-11 04:19:24',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25935,'4000','121676078344','2023-02-11 04:19:24',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(25936,'4000','121676078344','2023-02-11 04:19:24',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(25937,'1110','121676078392','2023-02-11 04:23:03',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25938,'1110','121676078392','2023-02-11 04:23:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25939,'1110','121676078392','2023-02-11 04:23:03',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(25940,'1110','121676078392','2023-02-11 04:23:03',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(25941,'5500','121676078392','2023-02-11 04:23:03',392.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25942,'1000','121676078392','2023-02-11 04:23:03',610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25943,'4000','121676078392','2023-02-11 04:23:03',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(25944,'4000','121676078392','2023-02-11 04:23:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(25945,'4000','121676078392','2023-02-11 04:23:03',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(25946,'4000','121676078392','2023-02-11 04:23:03',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(25947,'1110','121676079683','2023-02-11 04:42:22',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25948,'1110','121676079683','2023-02-11 04:42:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25949,'5500','121676079683','2023-02-11 04:42:22',1139.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25950,'1000','121676079683','2023-02-11 04:42:22',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25951,'4000','121676079683','2023-02-11 04:42:22',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(25952,'4000','121676079683','2023-02-11 04:42:22',NULL,230.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25953,'1110','121676079748','2023-02-11 05:10:30',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(25954,'5500','121676079748','2023-02-11 05:10:30',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25955,'1000','121676079748','2023-02-11 05:10:30',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25956,'4000','121676079748','2023-02-11 05:10:30',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(25957,'1110','121676122019','2023-02-11 16:27:35',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25958,'5500','121676122019','2023-02-11 16:27:35',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25959,'1000','121676122019','2023-02-11 16:27:35',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25960,'4000','121676122019','2023-02-11 16:27:35',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(25961,'1110','121676136236','2023-02-11 20:38:58',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25962,'5500','121676136236','2023-02-11 20:38:58',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25963,'1000','121676136236','2023-02-11 20:38:58',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25964,'4000','121676136236','2023-02-11 20:38:58',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(25965,'1110','121676143950','2023-02-11 22:54:07',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25966,'5500','121676143950','2023-02-11 22:54:07',464.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25967,'1000','121676143950','2023-02-11 22:54:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25968,'4000','121676143950','2023-02-11 22:54:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(25969,'1110','121676145288','2023-02-11 22:55:01',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25970,'5500','121676145288','2023-02-11 22:55:01',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25971,'1000','121676145288','2023-02-11 22:55:01',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25972,'4000','121676145288','2023-02-11 22:55:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(25973,'1110','121676145362','2023-02-11 22:56:42',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(25974,'5500','121676145362','2023-02-11 22:56:42',294.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25975,'1000','121676145362','2023-02-11 22:56:42',460.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25976,'4000','121676145362','2023-02-11 22:56:42',NULL,460.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(25977,'1110','121676145429','2023-02-11 23:02:39',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25978,'1110','121676145429','2023-02-11 23:02:39',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25979,'5500','121676145429','2023-02-11 23:02:39',184.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25980,'1000','121676145429','2023-02-11 23:02:39',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25981,'4000','121676145429','2023-02-11 23:02:39',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(25982,'4000','121676145429','2023-02-11 23:02:39',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(25983,'1110','121676145769','2023-02-11 23:43:03',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(25984,'5500','121676145769','2023-02-11 23:43:03',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25985,'1000','121676145769','2023-02-11 23:43:03',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25986,'4000','121676145769','2023-02-11 23:43:03',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(25987,'1110','121676149266','2023-02-12 00:01:20',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25988,'5500','121676149266','2023-02-12 00:01:20',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25989,'1000','121676149266','2023-02-12 00:01:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25990,'4000','121676149266','2023-02-12 00:01:20',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(25991,'1110','121676150564','2023-02-12 00:22:52',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25992,'5500','121676150564','2023-02-12 00:22:52',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25993,'1000','121676150564','2023-02-12 00:22:52',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25994,'4000','121676150564','2023-02-12 00:22:52',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(25995,'1110','121676158303','2023-02-12 04:28:30',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(25996,'5500','121676158303','2023-02-12 04:28:30',80.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(25997,'1000','121676158303','2023-02-12 04:28:30',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(25998,'4000','121676158303','2023-02-12 04:28:30',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(25999,'1110','121676165487','2023-02-12 04:31:38',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(26000,'5500','121676165487','2023-02-12 04:31:38',570.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26001,'1000','121676165487','2023-02-12 04:31:38',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26002,'4000','121676165487','2023-02-12 04:31:38',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(26003,'1110','121676166765','2023-02-12 04:54:05',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(26004,'1110','121676166765','2023-02-12 04:54:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26005,'5500','121676166765','2023-02-12 04:54:05',870.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26006,'1000','121676166765','2023-02-12 04:54:05',1450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26007,'4000','121676166765','2023-02-12 04:54:05',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(26008,'4000','121676166765','2023-02-12 04:54:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26009,'1110','121676166851','2023-02-12 04:54:25',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26010,'5500','121676166851','2023-02-12 04:54:25',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26011,'1000','121676166851','2023-02-12 04:54:25',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26012,'4000','121676166851','2023-02-12 04:54:25',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26013,'1110','121676166871','2023-02-12 04:55:57',NULL,795.00,'','12','1','Inventory sold','1','','sales','8906054940120','','No',NULL,NULL,''),(26014,'1110','121676166871','2023-02-12 04:55:57',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26015,'1110','121676166871','2023-02-12 04:55:57',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(26016,'5500','121676166871','2023-02-12 04:55:57',1121.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26017,'1000','121676166871','2023-02-12 04:55:57',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26018,'4000','121676166871','2023-02-12 04:55:57',NULL,1300.00,'','12','1','Good sold','1','','sales','8906054940120','','No',NULL,NULL,''),(26019,'4000','121676166871','2023-02-12 04:55:57',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26020,'4000','121676166871','2023-02-12 04:55:57',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(26021,'1110','121676187650','2023-02-12 10:44:41',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26022,'5500','121676187650','2023-02-12 10:44:41',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26023,'1000','121676187650','2023-02-12 10:44:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26024,'4000','121676187650','2023-02-12 10:44:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26025,'1110','121676187887','2023-02-12 11:13:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26026,'5500','121676187887','2023-02-12 11:13:57',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26027,'1000','121676187887','2023-02-12 11:13:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26028,'4000','121676187887','2023-02-12 11:13:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26029,'1110','121676189644','2023-02-12 11:48:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26030,'5500','121676189644','2023-02-12 11:48:00',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26031,'1000','121676189644','2023-02-12 11:48:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26032,'4000','121676189644','2023-02-12 11:48:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26033,'1110','121676191686','2023-02-12 11:48:48',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(26034,'1110','121676191686','2023-02-12 11:48:48',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26035,'5500','121676191686','2023-02-12 11:48:48',228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26036,'1000','121676191686','2023-02-12 11:48:48',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26037,'4000','121676191686','2023-02-12 11:48:48',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(26038,'4000','121676191686','2023-02-12 11:48:48',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26039,'1110','121676199290','2023-02-12 13:55:36',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(26040,'1110','121676199290','2023-02-12 13:55:36',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26041,'1110','121676199290','2023-02-12 13:55:36',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(26042,'5500','121676199290','2023-02-12 13:55:36',1982.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26043,'1000','121676199290','2023-02-12 13:55:36',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26044,'4000','121676199290','2023-02-12 13:55:36',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(26045,'4000','121676199290','2023-02-12 13:55:36',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26046,'4000','121676199290','2023-02-12 13:55:36',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(26047,'1110','121676207732','2023-02-12 16:15:42',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26048,'5500','121676207732','2023-02-12 16:15:42',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26049,'1000','121676207732','2023-02-12 16:15:42',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26050,'4000','121676207732','2023-02-12 16:15:42',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26051,'1110','121676207746','2023-02-12 17:21:57',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26052,'5500','121676207746','2023-02-12 17:21:57',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26053,'1000','121676207746','2023-02-12 17:21:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26054,'4000','121676207746','2023-02-12 17:21:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26055,'1110','121676213527','2023-02-12 17:52:21',NULL,1805.40,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26056,'5500','121676213527','2023-02-12 17:52:21',1805.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26057,'1000','121676213527','2023-02-12 17:52:21',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26058,'4000','121676213527','2023-02-12 17:52:21',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26059,'1110','121676213567','2023-02-12 17:56:42',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26060,'1110','121676213567','2023-02-12 17:56:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26061,'5500','121676213567','2023-02-12 17:56:42',429.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26062,'1000','121676213567','2023-02-12 17:56:42',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26063,'4000','121676213567','2023-02-12 17:56:42',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26064,'4000','121676213567','2023-02-12 17:56:42',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26065,'1110','121676214156','2023-02-12 18:02:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26066,'5500','121676214156','2023-02-12 18:02:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26067,'1000','121676214156','2023-02-12 18:02:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26068,'4000','121676214156','2023-02-12 18:02:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26069,'1110','121676215436','2023-02-12 18:24:06',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(26070,'5500','121676215436','2023-02-12 18:24:06',2600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26071,'1000','121676215436','2023-02-12 18:24:06',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26072,'4000','121676215436','2023-02-12 18:24:06',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(26073,'1110','121676215840','2023-02-12 19:04:18',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26074,'5500','121676215840','2023-02-12 19:04:18',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26075,'1000','121676215840','2023-02-12 19:04:18',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26076,'4000','121676215840','2023-02-12 19:04:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26077,'1110','121676217863','2023-02-12 19:10:48',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26078,'1110','121676217863','2023-02-12 19:10:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26079,'5500','121676217863','2023-02-12 19:10:48',218.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26080,'1000','121676217863','2023-02-12 19:10:48',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26081,'4000','121676217863','2023-02-12 19:10:48',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26082,'4000','121676217863','2023-02-12 19:10:48',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26083,'1110','121676218296','2023-02-12 19:28:57',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26084,'5500','121676218296','2023-02-12 19:28:57',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26085,'1000','121676218296','2023-02-12 19:28:57',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26086,'4000','121676218296','2023-02-12 19:28:57',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26087,'1110','121676219342','2023-02-12 19:46:24',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26088,'5500','121676219342','2023-02-12 19:46:24',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26089,'1000','121676219342','2023-02-12 19:46:24',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26090,'4000','121676219342','2023-02-12 19:46:24',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26091,'1110','121676233896','2023-02-12 23:31:49',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26092,'5500','121676233896','2023-02-12 23:31:49',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26093,'1000','121676233896','2023-02-12 23:31:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26094,'4000','121676233896','2023-02-12 23:31:49',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26095,'1110','121676233913','2023-02-12 23:32:58',NULL,2381.40,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26096,'1110','121676233913','2023-02-12 23:32:58',NULL,2381.40,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26097,'1110','121676233913','2023-02-12 23:32:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26098,'1110','121676233913','2023-02-12 23:32:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26099,'5500','121676233913','2023-02-12 23:32:58',4969.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26100,'1000','121676233913','2023-02-12 23:32:58',6320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26101,'4000','121676233913','2023-02-12 23:32:58',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26102,'4000','121676233913','2023-02-12 23:32:58',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26103,'4000','121676233913','2023-02-12 23:32:58',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26104,'4000','121676233913','2023-02-12 23:32:58',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26105,'1110','121676234310','2023-02-12 23:38:43',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26106,'5500','121676234310','2023-02-12 23:38:43',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26107,'1000','121676234310','2023-02-12 23:38:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26108,'4000','121676234310','2023-02-12 23:38:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26109,'1110','121676236293','2023-02-13 00:12:04',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26110,'1110','121676236293','2023-02-13 00:12:04',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26111,'5500','121676236293','2023-02-13 00:12:04',553.17,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26112,'1000','121676236293','2023-02-13 00:12:04',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26113,'4000','121676236293','2023-02-13 00:12:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26114,'4000','121676236293','2023-02-13 00:12:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26115,'1110','121676236332','2023-02-13 00:55:30',NULL,514.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(26116,'5500','121676236332','2023-02-13 00:55:30',514.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26117,'1000','121676236332','2023-02-13 00:55:30',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26118,'4000','121676236332','2023-02-13 00:55:30',NULL,700.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(26119,'1110','121676238943','2023-02-13 01:23:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(26120,'5500','121676238943','2023-02-13 01:23:34',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26121,'1000','121676238943','2023-02-13 01:23:34',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26122,'4000','121676238943','2023-02-13 01:23:34',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(26123,'1110','121676275701','2023-02-13 11:08:45',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26124,'1110','121676275701','2023-02-13 11:08:45',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26125,'1110','121676275701','2023-02-13 11:08:45',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(26126,'5500','121676275701','2023-02-13 11:08:45',396.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26127,'1000','121676275701','2023-02-13 11:08:45',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26128,'4000','121676275701','2023-02-13 11:08:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26129,'4000','121676275701','2023-02-13 11:08:45',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26130,'4000','121676275701','2023-02-13 11:08:45',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(26131,'1110','121676276410','2023-02-13 11:20:46',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26132,'1110','121676276410','2023-02-13 11:20:46',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(26133,'5500','121676276410','2023-02-13 11:20:46',232.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26134,'1000','121676276410','2023-02-13 11:20:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26135,'4000','121676276410','2023-02-13 11:20:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26136,'4000','121676276410','2023-02-13 11:20:46',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(26137,'1110','121676306241','2023-02-13 20:08:51',NULL,704.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(26138,'1110','121676306241','2023-02-13 20:08:51',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(26139,'5500','121676306241','2023-02-13 20:08:51',810.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26140,'1000','121676306241','2023-02-13 20:08:51',1160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26141,'4000','121676306241','2023-02-13 20:08:51',NULL,1000.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(26142,'4000','121676306241','2023-02-13 20:08:51',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(26143,'1110','121676308356','2023-02-13 20:12:43',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(26144,'5500','121676308356','2023-02-13 20:12:43',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26145,'1000','121676308356','2023-02-13 20:12:43',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26146,'4000','121676308356','2023-02-13 20:12:43',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(26147,'1110','121676308692','2023-02-13 20:18:32',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26148,'1110','121676308692','2023-02-13 20:18:32',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26149,'5500','121676308692','2023-02-13 20:18:32',383.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26150,'1000','121676308692','2023-02-13 20:18:32',590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26151,'4000','121676308692','2023-02-13 20:18:32',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26152,'4000','121676308692','2023-02-13 20:18:32',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26153,'1110','121676308719','2023-02-13 20:33:46',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26154,'1110','121676308719','2023-02-13 20:33:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(26155,'5500','121676308719','2023-02-13 20:33:46',445.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26156,'1000','121676308719','2023-02-13 20:33:46',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26157,'4000','121676308719','2023-02-13 20:33:46',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26158,'4000','121676308719','2023-02-13 20:33:46',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(26159,'1110','121676314320','2023-02-13 21:52:16',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26160,'5500','121676314320','2023-02-13 21:52:16',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26161,'1000','121676314320','2023-02-13 21:52:16',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26162,'4000','121676314320','2023-02-13 21:52:16',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26163,'1110','121676317267','2023-02-13 22:41:38',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26164,'1110','121676317267','2023-02-13 22:41:38',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26165,'1110','121676317267','2023-02-13 22:41:38',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(26166,'5500','121676317267','2023-02-13 22:41:38',1491.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26167,'1000','121676317267','2023-02-13 22:41:38',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26168,'4000','121676317267','2023-02-13 22:41:38',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26169,'4000','121676317267','2023-02-13 22:41:38',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26170,'4000','121676317267','2023-02-13 22:41:38',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(26171,'1110','121676317349','2023-02-13 22:53:30',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(26172,'1110','121676317349','2023-02-13 22:53:30',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26173,'5500','121676317349','2023-02-13 22:53:30',1159.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26174,'1000','121676317349','2023-02-13 22:53:30',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26175,'4000','121676317349','2023-02-13 22:53:30',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(26176,'4000','121676317349','2023-02-13 22:53:30',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26177,'1110','121676318283','2023-02-13 22:58:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26178,'5500','121676318283','2023-02-13 22:58:16',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26179,'1000','121676318283','2023-02-13 22:58:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26180,'4000','121676318283','2023-02-13 22:58:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26181,'1110','121676318303','2023-02-13 23:12:53',NULL,856.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26182,'5500','121676318303','2023-02-13 23:12:53',856.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26183,'1000','121676318303','2023-02-13 23:12:53',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26184,'4000','121676318303','2023-02-13 23:12:53',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26185,'1110','121676320914','2023-02-13 23:42:20',NULL,396.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26186,'5500','121676320914','2023-02-13 23:42:20',396.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26187,'1000','121676320914','2023-02-13 23:42:20',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26188,'4000','121676320914','2023-02-13 23:42:20',NULL,600.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26189,'1110','121676322090','2023-02-14 00:02:19',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26190,'1110','121676322090','2023-02-14 00:02:19',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26191,'1110','121676322090','2023-02-14 00:02:19',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26192,'5500','121676322090','2023-02-14 00:02:19',1765.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26193,'1000','121676322090','2023-02-14 00:02:19',2420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26194,'4000','121676322090','2023-02-14 00:02:19',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26195,'4000','121676322090','2023-02-14 00:02:19',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26196,'4000','121676322090','2023-02-14 00:02:19',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26197,'1110','121676322168','2023-02-14 00:19:59',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26198,'5500','121676322168','2023-02-14 00:19:59',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26199,'1000','121676322168','2023-02-14 00:19:59',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26200,'4000','121676322168','2023-02-14 00:19:59',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26201,'1110','121676323214','2023-02-14 00:21:24',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26202,'1110','121676323214','2023-02-14 00:21:24',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26203,'1110','121676323214','2023-02-14 00:21:24',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26204,'1110','121676323214','2023-02-14 00:21:24',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26205,'1110','121676323214','2023-02-14 00:21:24',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(26206,'1110','121676323214','2023-02-14 00:21:24',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26207,'5500','121676323214','2023-02-14 00:21:24',1074.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26208,'1000','121676323214','2023-02-14 00:21:24',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26209,'4000','121676323214','2023-02-14 00:21:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26210,'4000','121676323214','2023-02-14 00:21:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26211,'4000','121676323214','2023-02-14 00:21:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26212,'4000','121676323214','2023-02-14 00:21:24',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26213,'4000','121676323214','2023-02-14 00:21:24',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(26214,'4000','121676323214','2023-02-14 00:21:24',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26215,'1110','121676323294','2023-02-14 00:22:01',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(26216,'1110','121676323294','2023-02-14 00:22:01',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26217,'1110','121676323294','2023-02-14 00:22:01',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26218,'5500','121676323294','2023-02-14 00:22:01',585.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26219,'1000','121676323294','2023-02-14 00:22:01',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26220,'4000','121676323294','2023-02-14 00:22:01',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(26221,'4000','121676323294','2023-02-14 00:22:01',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26222,'4000','121676323294','2023-02-14 00:22:01',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26223,'1110','121676323350','2023-02-14 00:24:33',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26224,'1110','121676323350','2023-02-14 00:24:33',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26225,'1110','121676323350','2023-02-14 00:24:33',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26226,'1110','121676323350','2023-02-14 00:24:33',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26227,'5500','121676323350','2023-02-14 00:24:33',904.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26228,'1000','121676323350','2023-02-14 00:24:33',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26229,'4000','121676323350','2023-02-14 00:24:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26230,'4000','121676323350','2023-02-14 00:24:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26231,'4000','121676323350','2023-02-14 00:24:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26232,'4000','121676323350','2023-02-14 00:24:33',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26233,'1110','121676323491','2023-02-14 00:29:05',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26234,'1110','121676323491','2023-02-14 00:29:05',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26235,'1110','121676323491','2023-02-14 00:29:05',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26236,'5500','121676323491','2023-02-14 00:29:05',778.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26237,'1000','121676323491','2023-02-14 00:29:05',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26238,'4000','121676323491','2023-02-14 00:29:05',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26239,'4000','121676323491','2023-02-14 00:29:05',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26240,'4000','121676323491','2023-02-14 00:29:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26241,'1110','121676323774','2023-02-14 00:29:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26242,'5500','121676323774','2023-02-14 00:29:52',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26243,'1000','121676323774','2023-02-14 00:29:52',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26244,'4000','121676323774','2023-02-14 00:29:52',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26245,'1110','121676324142','2023-02-14 00:36:49',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26246,'5500','121676324142','2023-02-14 00:36:49',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26247,'1000','121676324142','2023-02-14 00:36:49',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26248,'4000','121676324142','2023-02-14 00:36:49',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26249,'1110','121676339317','2023-02-14 04:49:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26250,'1110','121676339317','2023-02-14 04:49:11',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26251,'1110','121676339317','2023-02-14 04:49:11',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26252,'5500','121676339317','2023-02-14 04:49:11',1357.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26253,'1000','121676339317','2023-02-14 04:49:11',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26254,'4000','121676339317','2023-02-14 04:49:11',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26255,'4000','121676339317','2023-02-14 04:49:11',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26256,'4000','121676339317','2023-02-14 04:49:11',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26257,'1110','121676339359','2023-02-14 05:21:49',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26258,'1110','121676339359','2023-02-14 05:21:49',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(26259,'1110','121676339359','2023-02-14 05:21:49',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26260,'5500','121676339359','2023-02-14 05:21:49',477.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26261,'1000','121676339359','2023-02-14 05:21:49',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26262,'4000','121676339359','2023-02-14 05:21:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26263,'4000','121676339359','2023-02-14 05:21:49',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(26264,'4000','121676339359','2023-02-14 05:21:49',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26265,'1110','121676345703','2023-02-14 06:44:33',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(26266,'5500','121676345703','2023-02-14 06:44:33',2461.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26267,'1000','121676345703','2023-02-14 06:44:33',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26268,'4000','121676345703','2023-02-14 06:44:33',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(26269,'1110','121676366753','2023-02-14 14:38:47',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26270,'5500','121676366753','2023-02-14 14:38:47',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26271,'1000','121676366753','2023-02-14 14:38:47',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26272,'4000','121676366753','2023-02-14 14:38:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26273,'1110','121676374750','2023-02-14 14:50:37',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(26274,'1110','121676374750','2023-02-14 14:50:37',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26275,'5500','121676374750','2023-02-14 14:50:37',312.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26276,'1000','121676374750','2023-02-14 14:50:37',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26277,'4000','121676374750','2023-02-14 14:50:37',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(26278,'4000','121676374750','2023-02-14 14:50:37',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26279,'1110','121676388130','2023-02-14 18:24:04',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26280,'5500','121676388130','2023-02-14 18:24:04',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26281,'1000','121676388130','2023-02-14 18:24:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26282,'4000','121676388130','2023-02-14 18:24:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26283,'1110','121676393499','2023-02-14 19:51:55',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(26284,'1110','121676393499','2023-02-14 19:51:55',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26285,'5500','121676393499','2023-02-14 19:51:55',471.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26286,'1000','121676393499','2023-02-14 19:51:55',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26287,'4000','121676393499','2023-02-14 19:51:55',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(26288,'4000','121676393499','2023-02-14 19:51:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26289,'1110','121676393553','2023-02-14 19:52:48',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26290,'1110','121676393553','2023-02-14 19:52:48',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26291,'5500','121676393553','2023-02-14 19:52:48',388.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26292,'1000','121676393553','2023-02-14 19:52:48',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26293,'4000','121676393553','2023-02-14 19:52:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26294,'4000','121676393553','2023-02-14 19:52:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26295,'1110','121676393573','2023-02-14 22:05:37',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26296,'5500','121676393573','2023-02-14 22:05:37',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26297,'1000','121676393573','2023-02-14 22:05:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26298,'4000','121676393573','2023-02-14 22:05:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26299,'1110','121676401555','2023-02-14 22:16:59',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26300,'5500','121676401555','2023-02-14 22:16:59',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26301,'1000','121676401555','2023-02-14 22:16:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26302,'4000','121676401555','2023-02-14 22:16:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26303,'1110','121676403863','2023-02-14 22:45:19',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26304,'1110','121676403863','2023-02-14 22:45:19',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26305,'1110','121676403863','2023-02-14 22:45:19',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26306,'1110','121676403863','2023-02-14 22:45:19',NULL,603.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(26307,'5500','121676403863','2023-02-14 22:45:19',1607.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26308,'1000','121676403863','2023-02-14 22:45:19',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26309,'4000','121676403863','2023-02-14 22:45:19',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(26310,'4000','121676403863','2023-02-14 22:45:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26311,'4000','121676403863','2023-02-14 22:45:19',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26312,'4000','121676403863','2023-02-14 22:45:19',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(26313,'1110','121676403957','2023-02-14 22:48:18',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(26314,'1110','121676403957','2023-02-14 22:48:18',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26315,'1110','121676403957','2023-02-14 22:48:18',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26316,'5500','121676403957','2023-02-14 22:48:18',266.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26317,'1000','121676403957','2023-02-14 22:48:18',440.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26318,'4000','121676403957','2023-02-14 22:48:18',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(26319,'4000','121676403957','2023-02-14 22:48:18',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(26320,'4000','121676403957','2023-02-14 22:48:18',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26321,'1110','121676404147','2023-02-14 22:49:25',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26322,'5500','121676404147','2023-02-14 22:49:25',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26323,'1000','121676404147','2023-02-14 22:49:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26324,'4000','121676404147','2023-02-14 22:49:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26325,'1110','121676404173','2023-02-14 22:49:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26326,'1110','121676404173','2023-02-14 22:49:58',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26327,'5500','121676404173','2023-02-14 22:49:58',197.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26328,'1000','121676404173','2023-02-14 22:49:58',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26329,'4000','121676404173','2023-02-14 22:49:58',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26330,'4000','121676404173','2023-02-14 22:49:58',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26331,'1110','121676404209','2023-02-14 23:25:00',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(26332,'5500','121676404209','2023-02-14 23:25:00',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26333,'1000','121676404209','2023-02-14 23:25:00',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26334,'4000','121676404209','2023-02-14 23:25:00',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(26335,'1110','121676406883','2023-02-14 23:35:35',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26336,'1110','121676406883','2023-02-14 23:35:35',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26337,'1110','121676406883','2023-02-14 23:35:35',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26338,'5500','121676406883','2023-02-14 23:35:35',580.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26339,'1000','121676406883','2023-02-14 23:35:35',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26340,'4000','121676406883','2023-02-14 23:35:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26341,'4000','121676406883','2023-02-14 23:35:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26342,'4000','121676406883','2023-02-14 23:35:35',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26343,'1110','121676406941','2023-02-15 00:40:04',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26344,'5500','121676406941','2023-02-15 00:40:04',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26345,'1000','121676406941','2023-02-15 00:40:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26346,'4000','121676406941','2023-02-15 00:40:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26347,'1110','121676410816','2023-02-15 00:50:23',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26348,'5500','121676410816','2023-02-15 00:50:23',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26349,'1000','121676410816','2023-02-15 00:50:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26350,'4000','121676410816','2023-02-15 00:50:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26351,'1110','121676411430','2023-02-15 01:13:39',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(26352,'5500','121676411430','2023-02-15 01:13:39',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26353,'1000','121676411430','2023-02-15 01:13:39',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26354,'4000','121676411430','2023-02-15 01:13:39',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(26355,'1110','121676412825','2023-02-15 01:46:06',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26356,'5500','121676412825','2023-02-15 01:46:06',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26357,'1000','121676412825','2023-02-15 01:46:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26358,'4000','121676412825','2023-02-15 01:46:06',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26359,'1110','121676414779','2023-02-15 01:47:15',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26360,'5500','121676414779','2023-02-15 01:47:15',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26361,'1000','121676414779','2023-02-15 01:47:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26362,'4000','121676414779','2023-02-15 01:47:15',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26363,'1110','121676414898','2023-02-15 01:48:49',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26364,'5500','121676414898','2023-02-15 01:48:49',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26365,'1000','121676414898','2023-02-15 01:48:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26366,'4000','121676414898','2023-02-15 01:48:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26367,'1110','121676414935','2023-02-15 01:51:11',NULL,600.00,'','12','1','Inventory sold','1','','sales','6161101560009','','No',NULL,NULL,''),(26368,'5500','121676414935','2023-02-15 01:51:11',600.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26369,'1000','121676414935','2023-02-15 01:51:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26370,'4000','121676414935','2023-02-15 01:51:11',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101560009','','No',NULL,NULL,''),(26371,'1110','121676415154','2023-02-15 02:03:44',NULL,1206.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(26372,'1110','121676415154','2023-02-15 02:03:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26373,'1110','121676415154','2023-02-15 02:03:44',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26374,'1110','121676415154','2023-02-15 02:03:44',NULL,316.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26375,'1110','121676415154','2023-02-15 02:03:44',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(26376,'1110','121676415154','2023-02-15 02:03:44',NULL,2280.00,'','12','1','Inventory sold','1','','sales','7640175740030','','No',NULL,NULL,''),(26377,'1110','121676415154','2023-02-15 02:03:44',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26378,'1110','121676415154','2023-02-15 02:03:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(26379,'1110','121676415154','2023-02-15 02:03:44',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26380,'5500','121676415154','2023-02-15 02:03:44',7162.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26381,'1000','121676415154','2023-02-15 02:03:44',10590.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26382,'4000','121676415154','2023-02-15 02:03:44',NULL,1800.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(26383,'4000','121676415154','2023-02-15 02:03:44',NULL,70.00,'','12','1','Good sold','1','','sales','5449000139030','','No',NULL,NULL,''),(26384,'4000','121676415154','2023-02-15 02:03:44',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26385,'4000','121676415154','2023-02-15 02:03:44',NULL,500.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26386,'4000','121676415154','2023-02-15 02:03:44',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(26387,'4000','121676415154','2023-02-15 02:03:44',NULL,3350.00,'','12','1','Good sold','1','','sales','7640175740030','','No',NULL,NULL,''),(26388,'4000','121676415154','2023-02-15 02:03:44',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26389,'4000','121676415154','2023-02-15 02:03:44',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(26390,'4000','121676415154','2023-02-15 02:03:44',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26391,'1110','121676446386','2023-02-15 10:33:22',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26392,'5500','121676446386','2023-02-15 10:33:22',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26393,'1000','121676446386','2023-02-15 10:33:22',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26394,'4000','121676446386','2023-02-15 10:33:22',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26395,'1110','121676457732','2023-02-15 13:42:21',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26396,'5500','121676457732','2023-02-15 13:42:21',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26397,'1000','121676457732','2023-02-15 13:42:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26398,'4000','121676457732','2023-02-15 13:42:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26399,'1110','121676458538','2023-02-15 13:55:48',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26400,'5500','121676458538','2023-02-15 13:55:48',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26401,'1000','121676458538','2023-02-15 13:55:48',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26402,'4000','121676458538','2023-02-15 13:55:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26403,'1110','121676462477','2023-02-15 15:01:38',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26404,'1110','121676462477','2023-02-15 15:01:38',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26405,'5500','121676462477','2023-02-15 15:01:38',623.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26406,'1000','121676462477','2023-02-15 15:01:38',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26407,'4000','121676462477','2023-02-15 15:01:38',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26408,'4000','121676462477','2023-02-15 15:01:38',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26409,'1110','121676467161','2023-02-15 16:19:29',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26410,'5500','121676467161','2023-02-15 16:19:29',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26411,'1000','121676467161','2023-02-15 16:19:29',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26412,'4000','121676467161','2023-02-15 16:19:29',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26413,'1110','121676467825','2023-02-15 16:30:37',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26414,'5500','121676467825','2023-02-15 16:30:37',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26415,'1000','121676467825','2023-02-15 16:30:37',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26416,'4000','121676467825','2023-02-15 16:30:37',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26417,'1110','121676469905','2023-02-15 17:05:19',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26418,'1110','121676469905','2023-02-15 17:05:19',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26419,'5500','121676469905','2023-02-15 17:05:19',689.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26420,'1000','121676469905','2023-02-15 17:05:19',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26421,'4000','121676469905','2023-02-15 17:05:19',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26422,'4000','121676469905','2023-02-15 17:05:19',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26423,'1110','121676469927','2023-02-15 17:58:45',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(26424,'5500','121676469927','2023-02-15 17:58:45',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26425,'1000','121676469927','2023-02-15 17:58:45',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26426,'4000','121676469927','2023-02-15 17:58:45',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(26427,'1110','121676474889','2023-02-15 18:57:51',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(26428,'1110','121676474889','2023-02-15 18:57:51',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26429,'5500','121676474889','2023-02-15 18:57:51',468.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26430,'1000','121676474889','2023-02-15 18:57:51',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26431,'4000','121676474889','2023-02-15 18:57:51',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(26432,'4000','121676474889','2023-02-15 18:57:51',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26433,'1110','121676476758','2023-02-15 19:06:36',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(26434,'1110','121676476758','2023-02-15 19:06:36',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(26435,'5500','121676476758','2023-02-15 19:06:36',343.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26436,'1000','121676476758','2023-02-15 19:06:36',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26437,'4000','121676476758','2023-02-15 19:06:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(26438,'4000','121676476758','2023-02-15 19:06:36',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(26439,'1110','121676483100','2023-02-15 20:45:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26440,'5500','121676483100','2023-02-15 20:45:10',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26441,'1000','121676483100','2023-02-15 20:45:10',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26442,'4000','121676483100','2023-02-15 20:45:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26443,'1110','121676483117','2023-02-15 21:02:53',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26444,'5500','121676483117','2023-02-15 21:02:53',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26445,'1000','121676483117','2023-02-15 21:02:53',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26446,'4000','121676483117','2023-02-15 21:02:53',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26447,'1110','121676484178','2023-02-15 21:15:45',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(26448,'5500','121676484178','2023-02-15 21:15:45',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26449,'1000','121676484178','2023-02-15 21:15:45',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26450,'4000','121676484178','2023-02-15 21:15:45',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(26451,'1110','121676484950','2023-02-15 23:24:01',NULL,2461.00,'','12','1','Inventory sold','1','','sales','085156275021','','No',NULL,NULL,''),(26452,'1110','121676484950','2023-02-15 23:24:01',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(26453,'1110','121676484950','2023-02-15 23:24:01',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(26454,'1110','121676484950','2023-02-15 23:24:01',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(26455,'5500','121676484950','2023-02-15 23:24:01',2739.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26456,'1000','121676484950','2023-02-15 23:24:01',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26457,'4000','121676484950','2023-02-15 23:24:01',NULL,3000.00,'','12','1','Good sold','1','','sales','085156275021','','No',NULL,NULL,''),(26458,'4000','121676484950','2023-02-15 23:24:01',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(26459,'4000','121676484950','2023-02-15 23:24:01',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(26460,'4000','121676484950','2023-02-15 23:24:01',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(26461,'1110','121676494657','2023-02-16 00:04:34',NULL,3150.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(26462,'1110','121676494657','2023-02-16 00:04:34',NULL,2074.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26463,'1110','121676494657','2023-02-16 00:04:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26464,'1110','121676494657','2023-02-16 00:04:34',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(26465,'1110','121676494657','2023-02-16 00:04:34',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(26466,'1110','121676494657','2023-02-16 00:04:34',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26467,'5500','121676494657','2023-02-16 00:04:34',5922.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26468,'1000','121676494657','2023-02-16 00:04:34',8930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26469,'4000','121676494657','2023-02-16 00:04:34',NULL,4800.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(26470,'4000','121676494657','2023-02-16 00:04:34',NULL,3000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26471,'4000','121676494657','2023-02-16 00:04:34',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26472,'4000','121676494657','2023-02-16 00:04:34',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(26473,'4000','121676494657','2023-02-16 00:04:34',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(26474,'4000','121676494657','2023-02-16 00:04:34',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(26475,'1110','121676495255','2023-02-16 00:08:52',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26476,'1110','121676495255','2023-02-16 00:08:52',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26477,'5500','121676495255','2023-02-16 00:08:52',608.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26478,'1000','121676495255','2023-02-16 00:08:52',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26479,'4000','121676495255','2023-02-16 00:08:52',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26480,'4000','121676495255','2023-02-16 00:08:52',NULL,750.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26481,'1110','121676539471','2023-02-16 12:24:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26482,'1110','121676539471','2023-02-16 12:24:52',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26483,'5500','121676539471','2023-02-16 12:24:52',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26484,'1000','121676539471','2023-02-16 12:24:52',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26485,'4000','121676539471','2023-02-16 12:24:52',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26486,'4000','121676539471','2023-02-16 12:24:52',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26487,'1110','121676544943','2023-02-16 14:30:02',NULL,540.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26488,'1110','121676544943','2023-02-16 14:30:02',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26489,'5500','121676544943','2023-02-16 14:30:02',577.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26490,'1000','121676544943','2023-02-16 14:30:02',870.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26491,'4000','121676544943','2023-02-16 14:30:02',NULL,800.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(26492,'4000','121676544943','2023-02-16 14:30:02',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26493,'1110','121676554258','2023-02-16 16:31:19',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26494,'1110','121676554258','2023-02-16 16:31:19',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26495,'5500','121676554258','2023-02-16 16:31:19',742.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26496,'1000','121676554258','2023-02-16 16:31:19',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26497,'4000','121676554258','2023-02-16 16:31:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(26498,'4000','121676554258','2023-02-16 16:31:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26499,'1110','121676554284','2023-02-16 17:27:23',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26500,'1110','121676554284','2023-02-16 17:27:23',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26501,'5500','121676554284','2023-02-16 17:27:23',202.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26502,'1000','121676554284','2023-02-16 17:27:23',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26503,'4000','121676554284','2023-02-16 17:27:23',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26504,'4000','121676554284','2023-02-16 17:27:23',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26505,'1110','121676557651','2023-02-16 17:36:22',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(26506,'5500','121676557651','2023-02-16 17:36:22',2200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26507,'1000','121676557651','2023-02-16 17:36:22',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26508,'4000','121676557651','2023-02-16 17:36:22',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(26509,'1110','121676558366','2023-02-16 19:24:11',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26510,'5500','121676558366','2023-02-16 19:24:11',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26511,'1000','121676558366','2023-02-16 19:24:11',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26512,'4000','121676558366','2023-02-16 19:24:11',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26513,'1110','121676568632','2023-02-16 20:30:42',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26514,'5500','121676568632','2023-02-16 20:30:42',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26515,'1000','121676568632','2023-02-16 20:30:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26516,'4000','121676568632','2023-02-16 20:30:42',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(26517,'1110','121676575618','2023-02-16 22:27:11',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(26518,'5500','121676575618','2023-02-16 22:27:11',1474.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26519,'1000','121676575618','2023-02-16 22:27:11',2200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26520,'4000','121676575618','2023-02-16 22:27:11',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(26521,'1110','121676577608','2023-02-16 23:01:11',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26522,'1110','121676577608','2023-02-16 23:01:11',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26523,'1110','121676577608','2023-02-16 23:01:11',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26524,'5500','121676577608','2023-02-16 23:01:11',376.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26525,'1000','121676577608','2023-02-16 23:01:11',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26526,'4000','121676577608','2023-02-16 23:01:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26527,'4000','121676577608','2023-02-16 23:01:11',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26528,'4000','121676577608','2023-02-16 23:01:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26529,'1110','121676577678','2023-02-16 23:50:15',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(26530,'1110','121676577678','2023-02-16 23:50:15',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26531,'5500','121676577678','2023-02-16 23:50:15',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26532,'1000','121676577678','2023-02-16 23:50:15',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26533,'4000','121676577678','2023-02-16 23:50:15',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(26534,'4000','121676577678','2023-02-16 23:50:15',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26535,'1110','121676580622','2023-02-17 00:01:03',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(26536,'1110','121676580622','2023-02-17 00:01:03',NULL,230.00,'','12','1','Inventory sold','1','','sales','6008835000947','','No',NULL,NULL,''),(26537,'1110','121676580622','2023-02-17 00:01:03',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26538,'1110','121676580622','2023-02-17 00:01:03',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26539,'5500','121676580622','2023-02-17 00:01:03',1845.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26540,'1000','121676580622','2023-02-17 00:01:03',2980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26541,'4000','121676580622','2023-02-17 00:01:03',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(26542,'4000','121676580622','2023-02-17 00:01:03',NULL,380.00,'','12','1','Good sold','1','','sales','6008835000947','','No',NULL,NULL,''),(26543,'4000','121676580622','2023-02-17 00:01:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26544,'4000','121676580622','2023-02-17 00:01:03',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26545,'1110','121676581323','2023-02-17 00:49:34',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26546,'5500','121676581323','2023-02-17 00:49:34',464.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26547,'1000','121676581323','2023-02-17 00:49:34',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26548,'4000','121676581323','2023-02-17 00:49:34',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26549,'1110','121676618573','2023-02-17 10:32:23',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(26550,'5500','121676618573','2023-02-17 10:32:23',787.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26551,'1000','121676618573','2023-02-17 10:32:23',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26552,'4000','121676618573','2023-02-17 10:32:23',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(26553,'1110','121676634025','2023-02-17 14:48:44',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(26554,'5500','121676634025','2023-02-17 14:48:44',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26555,'1000','121676634025','2023-02-17 14:48:44',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26556,'4000','121676634025','2023-02-17 14:48:44',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(26557,'1110','121676634536','2023-02-17 16:59:32',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26558,'1110','121676634536','2023-02-17 16:59:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26559,'5500','121676634536','2023-02-17 16:59:32',202.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26560,'1000','121676634536','2023-02-17 16:59:32',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26561,'4000','121676634536','2023-02-17 16:59:32',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(26562,'4000','121676634536','2023-02-17 16:59:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26563,'1110','121676642380','2023-02-17 17:56:42',NULL,3056.00,'','12','1','Inventory sold','1','','sales','5000267173139','','No',NULL,NULL,''),(26564,'1110','121676642380','2023-02-17 17:56:42',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26565,'1110','121676642380','2023-02-17 17:56:42',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26566,'5500','121676642380','2023-02-17 17:56:42',3233.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26567,'1000','121676642380','2023-02-17 17:56:42',4800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26568,'4000','121676642380','2023-02-17 17:56:42',NULL,4500.00,'','12','1','Good sold','1','','sales','5000267173139','','No',NULL,NULL,''),(26569,'4000','121676642380','2023-02-17 17:56:42',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26570,'4000','121676642380','2023-02-17 17:56:42',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26571,'1110','121676653026','2023-02-17 19:58:22',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(26572,'1110','121676653026','2023-02-17 19:58:22',NULL,641.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(26573,'1110','121676653026','2023-02-17 19:58:22',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26574,'5500','121676653026','2023-02-17 19:58:22',3842.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26575,'1000','121676653026','2023-02-17 19:58:22',6300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26576,'4000','121676653026','2023-02-17 19:58:22',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(26577,'4000','121676653026','2023-02-17 19:58:22',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(26578,'4000','121676653026','2023-02-17 19:58:22',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26579,'1110','121676655436','2023-02-17 20:37:48',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(26580,'5500','121676655436','2023-02-17 20:37:48',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26581,'1000','121676655436','2023-02-17 20:37:48',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26582,'4000','121676655436','2023-02-17 20:37:48',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(26583,'1110','121676655473','2023-02-17 20:52:30',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26584,'1110','121676655473','2023-02-17 20:52:30',NULL,136.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(26585,'5500','121676655473','2023-02-17 20:52:30',445.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26586,'1000','121676655473','2023-02-17 20:52:30',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26587,'4000','121676655473','2023-02-17 20:52:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26588,'4000','121676655473','2023-02-17 20:52:30',NULL,200.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(26589,'1110','121676656354','2023-02-17 21:04:46',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(26590,'1110','121676656354','2023-02-17 21:04:46',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(26591,'5500','121676656354','2023-02-17 21:04:46',491.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26592,'1000','121676656354','2023-02-17 21:04:46',780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26593,'4000','121676656354','2023-02-17 21:04:46',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(26594,'4000','121676656354','2023-02-17 21:04:46',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(26595,'1110','121676657117','2023-02-17 22:34:45',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(26596,'1110','121676657117','2023-02-17 22:34:45',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26597,'1110','121676657117','2023-02-17 22:34:45',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26598,'5500','121676657117','2023-02-17 22:34:45',1810.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26599,'1000','121676657117','2023-02-17 22:34:45',2520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26600,'4000','121676657117','2023-02-17 22:34:45',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(26601,'4000','121676657117','2023-02-17 22:34:45',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26602,'4000','121676657117','2023-02-17 22:34:45',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26603,'1110','121676667982','2023-02-18 00:13:57',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(26604,'1110','121676667982','2023-02-18 00:13:57',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(26605,'5500','121676667982','2023-02-18 00:13:57',565.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26606,'1000','121676667982','2023-02-18 00:13:57',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26607,'4000','121676667982','2023-02-18 00:13:57',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(26608,'4000','121676667982','2023-02-18 00:13:57',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(26609,'1110','121676668722','2023-02-18 00:19:29',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(26610,'1110','121676668722','2023-02-18 00:19:29',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26611,'5500','121676668722','2023-02-18 00:19:29',683.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26612,'1000','121676668722','2023-02-18 00:19:29',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26613,'4000','121676668722','2023-02-18 00:19:29',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(26614,'4000','121676668722','2023-02-18 00:19:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26615,'1110','121676668777','2023-02-18 00:20:02',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(26616,'5500','121676668777','2023-02-18 00:20:02',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26617,'1000','121676668777','2023-02-18 00:20:02',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26618,'4000','121676668777','2023-02-18 00:20:02',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(26619,'1110','121676668843','2023-02-18 00:26:10',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(26620,'5500','121676668843','2023-02-18 00:26:10',244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26621,'1000','121676668843','2023-02-18 00:26:10',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26622,'4000','121676668843','2023-02-18 00:26:10',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(26623,'1110','121676669175','2023-02-18 00:26:53',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(26624,'1110','121676669175','2023-02-18 00:26:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26625,'5500','121676669175','2023-02-18 00:26:53',1278.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26626,'1000','121676669175','2023-02-18 00:26:53',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26627,'4000','121676669175','2023-02-18 00:26:53',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(26628,'4000','121676669175','2023-02-18 00:26:53',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(26629,'1110','121676716359','2023-02-18 13:33:19',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(26630,'1110','121676716359','2023-02-18 13:33:19',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26631,'1110','121676716359','2023-02-18 13:33:19',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26632,'5500','121676716359','2023-02-18 13:33:19',277.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26633,'1000','121676716359','2023-02-18 13:33:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26634,'4000','121676716359','2023-02-18 13:33:19',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(26635,'4000','121676716359','2023-02-18 13:33:19',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(26636,'4000','121676716359','2023-02-18 13:33:19',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26637,'1110','121676716704','2023-02-18 14:25:39',NULL,784.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26638,'1110','121676716704','2023-02-18 14:25:39',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(26639,'1110','121676716704','2023-02-18 14:25:39',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26640,'5500','121676716704','2023-02-18 14:25:39',2002.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26641,'1000','121676716704','2023-02-18 14:25:39',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26642,'4000','121676716704','2023-02-18 14:25:39',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26643,'4000','121676716704','2023-02-18 14:25:39',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(26644,'4000','121676716704','2023-02-18 14:25:39',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26645,'1110','121676719797','2023-02-18 14:51:31',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26646,'5500','121676719797','2023-02-18 14:51:31',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26647,'1000','121676719797','2023-02-18 14:51:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26648,'4000','121676719797','2023-02-18 14:51:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(26649,'1110','121676721095','2023-02-18 16:28:13',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26650,'5500','121676721095','2023-02-18 16:28:13',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26651,'1000','121676721095','2023-02-18 16:28:13',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26652,'4000','121676721095','2023-02-18 16:28:13',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26653,'1110','121676726899','2023-02-18 16:36:44',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26654,'5500','121676726899','2023-02-18 16:36:44',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26655,'1000','121676726899','2023-02-18 16:36:44',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26656,'4000','121676726899','2023-02-18 16:36:44',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26657,'1110','121676727457','2023-02-18 17:08:14',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(26658,'5500','121676727457','2023-02-18 17:08:14',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26659,'1000','121676727457','2023-02-18 17:08:14',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26660,'4000','121676727457','2023-02-18 17:08:14',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(26661,'1110','121676729301','2023-02-18 17:19:56',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26662,'5500','121676729301','2023-02-18 17:19:56',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26663,'1000','121676729301','2023-02-18 17:19:56',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26664,'4000','121676729301','2023-02-18 17:19:56',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(26665,'1110','121676730015','2023-02-18 20:38:26',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(26666,'5500','121676730015','2023-02-18 20:38:26',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26667,'1000','121676730015','2023-02-18 20:38:26',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26668,'4000','121676730015','2023-02-18 20:38:26',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(26669,'1110','121676741919','2023-02-18 21:48:18',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(26670,'1110','121676741919','2023-02-18 21:48:18',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(26671,'5500','121676741919','2023-02-18 21:48:18',7900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26672,'1000','121676741919','2023-02-18 21:48:18',11200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26673,'4000','121676741919','2023-02-18 21:48:18',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(26674,'4000','121676741919','2023-02-18 21:48:18',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(26675,'1110','121676746351','2023-02-18 21:52:49',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26676,'5500','121676746351','2023-02-18 21:52:49',545.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26677,'1000','121676746351','2023-02-18 21:52:49',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26678,'4000','121676746351','2023-02-18 21:52:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26679,'1110','121676746373','2023-02-18 21:57:36',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(26680,'1110','121676746373','2023-02-18 21:57:36',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26681,'5500','121676746373','2023-02-18 21:57:36',284.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26682,'1000','121676746373','2023-02-18 21:57:36',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26683,'4000','121676746373','2023-02-18 21:57:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(26684,'4000','121676746373','2023-02-18 21:57:36',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26685,'1110','121676746859','2023-02-18 22:01:10',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26686,'5500','121676746859','2023-02-18 22:01:10',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26687,'1000','121676746859','2023-02-18 22:01:10',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26688,'4000','121676746859','2023-02-18 22:01:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26689,'1110','121676748657','2023-02-18 22:32:15',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26690,'1110','121676748657','2023-02-18 22:32:15',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26691,'5500','121676748657','2023-02-18 22:32:15',1418.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26692,'1000','121676748657','2023-02-18 22:32:15',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26693,'4000','121676748657','2023-02-18 22:32:15',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26694,'4000','121676748657','2023-02-18 22:32:15',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26695,'1110','121676748744','2023-02-18 22:33:44',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(26696,'5500','121676748744','2023-02-18 22:33:44',561.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26697,'1000','121676748744','2023-02-18 22:33:44',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26698,'4000','121676748744','2023-02-18 22:33:44',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(26699,'1110','121676748938','2023-02-18 22:38:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26700,'1110','121676748938','2023-02-18 22:38:46',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(26701,'5500','121676748938','2023-02-18 22:38:46',320.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26702,'1000','121676748938','2023-02-18 22:38:46',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26703,'4000','121676748938','2023-02-18 22:38:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(26704,'4000','121676748938','2023-02-18 22:38:46',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(26705,'1110','121676749281','2023-02-18 22:46:24',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(26706,'5500','121676749281','2023-02-18 22:46:24',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26707,'1000','121676749281','2023-02-18 22:46:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26708,'4000','121676749281','2023-02-18 22:46:24',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(26709,'1110','121676749592','2023-02-18 22:48:00',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26710,'5500','121676749592','2023-02-18 22:48:00',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26711,'1000','121676749592','2023-02-18 22:48:00',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26712,'4000','121676749592','2023-02-18 22:48:00',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(26713,'1110','121676749685','2023-02-18 22:50:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26714,'1110','121676749685','2023-02-18 22:50:02',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26715,'5500','121676749685','2023-02-18 22:50:02',188.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26716,'1000','121676749685','2023-02-18 22:50:02',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26717,'4000','121676749685','2023-02-18 22:50:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26718,'4000','121676749685','2023-02-18 22:50:02',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26719,'1110','121676750070','2023-02-18 22:54:55',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(26720,'1110','121676750070','2023-02-18 22:54:55',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(26721,'5500','121676750070','2023-02-18 22:54:55',1746.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26722,'1000','121676750070','2023-02-18 22:54:55',3550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26723,'4000','121676750070','2023-02-18 22:54:55',NULL,3000.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(26724,'4000','121676750070','2023-02-18 22:54:55',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(26725,'1110','121676750153','2023-02-18 23:38:32',NULL,1275.00,'','12','1','Inventory sold','1','','sales','4820229031328','','No',NULL,NULL,''),(26726,'5500','121676750153','2023-02-18 23:38:32',1275.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26727,'1000','121676750153','2023-02-18 23:38:32',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26728,'4000','121676750153','2023-02-18 23:38:32',NULL,2000.00,'','12','1','Good sold','1','','sales','4820229031328','','No',NULL,NULL,''),(26729,'1110','121676752759','2023-02-19 00:05:08',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26730,'5500','121676752759','2023-02-19 00:05:08',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26731,'1000','121676752759','2023-02-19 00:05:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26732,'4000','121676752759','2023-02-19 00:05:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26733,'1110','121676754474','2023-02-19 00:08:03',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26734,'5500','121676754474','2023-02-19 00:08:03',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26735,'1000','121676754474','2023-02-19 00:08:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26736,'4000','121676754474','2023-02-19 00:08:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26737,'1110','121676755107','2023-02-19 00:18:53',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(26738,'1110','121676755107','2023-02-19 00:18:53',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(26739,'5500','121676755107','2023-02-19 00:18:53',440.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26740,'1000','121676755107','2023-02-19 00:18:53',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26741,'4000','121676755107','2023-02-19 00:18:53',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(26742,'4000','121676755107','2023-02-19 00:18:53',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(26743,'1110','121676756110','2023-02-19 00:35:37',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26744,'1110','121676756110','2023-02-19 00:35:37',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26745,'5500','121676756110','2023-02-19 00:35:37',697.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26746,'1000','121676756110','2023-02-19 00:35:37',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26747,'4000','121676756110','2023-02-19 00:35:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26748,'4000','121676756110','2023-02-19 00:35:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(26749,'1110','121676756142','2023-02-19 00:47:31',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26750,'5500','121676756142','2023-02-19 00:47:31',74.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26751,'1000','121676756142','2023-02-19 00:47:31',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26752,'4000','121676756142','2023-02-19 00:47:31',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26753,'1110','121676757184','2023-02-19 00:53:26',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26754,'5500','121676757184','2023-02-19 00:53:26',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26755,'1000','121676757184','2023-02-19 00:53:26',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26756,'4000','121676757184','2023-02-19 00:53:26',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(26757,'1110','121676757211','2023-02-19 00:57:40',NULL,354.00,'','12','1','Inventory sold','1','','sales','100','','No',NULL,NULL,''),(26758,'5500','121676757211','2023-02-19 00:57:40',354.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26759,'1000','121676757211','2023-02-19 00:57:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26760,'4000','121676757211','2023-02-19 00:57:40',NULL,500.00,'','12','1','Good sold','1','','sales','100','','No',NULL,NULL,''),(26761,'1110','121676757495','2023-02-19 01:11:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26762,'5500','121676757495','2023-02-19 01:11:16',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26763,'1000','121676757495','2023-02-19 01:11:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26764,'4000','121676757495','2023-02-19 01:11:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26765,'1110','121676758282','2023-02-19 01:14:51',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26766,'1110','121676758282','2023-02-19 01:14:51',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26767,'5500','121676758282','2023-02-19 01:14:51',371.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26768,'1000','121676758282','2023-02-19 01:14:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26769,'4000','121676758282','2023-02-19 01:14:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26770,'4000','121676758282','2023-02-19 01:14:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26771,'1110','121676758495','2023-02-19 01:38:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26772,'1110','121676758495','2023-02-19 01:38:31',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26773,'1110','121676758495','2023-02-19 01:38:31',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26774,'5500','121676758495','2023-02-19 01:38:31',1266.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26775,'1000','121676758495','2023-02-19 01:38:31',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26776,'4000','121676758495','2023-02-19 01:38:31',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(26777,'4000','121676758495','2023-02-19 01:38:31',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(26778,'4000','121676758495','2023-02-19 01:38:31',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(26779,'1110','121676759918','2023-02-19 01:49:19',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(26780,'5500','121676759918','2023-02-19 01:49:19',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26781,'1000','121676759918','2023-02-19 01:49:19',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26782,'4000','121676759918','2023-02-19 01:49:19',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(26783,'1110','121676760572','2023-02-19 02:41:58',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26784,'5500','121676760572','2023-02-19 02:41:58',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26785,'1000','121676760572','2023-02-19 02:41:58',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26786,'4000','121676760572','2023-02-19 02:41:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26787,'1110','121676763725','2023-02-19 03:01:07',NULL,3200.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(26788,'5500','121676763725','2023-02-19 03:01:07',3200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26789,'1000','121676763725','2023-02-19 03:01:07',4350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26790,'4000','121676763725','2023-02-19 03:01:07',NULL,4350.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(26791,'1110','121676764888','2023-02-19 03:01:47',NULL,631.57,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(26792,'5500','121676764888','2023-02-19 03:01:47',631.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26793,'1000','121676764888','2023-02-19 03:01:47',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26794,'4000','121676764888','2023-02-19 03:01:47',NULL,1400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(26795,'1110','121676766689','2023-02-19 03:31:47',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26796,'1110','121676766689','2023-02-19 03:31:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(26797,'5500','121676766689','2023-02-19 03:31:47',639.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26798,'1000','121676766689','2023-02-19 03:31:47',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26799,'4000','121676766689','2023-02-19 03:31:47',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(26800,'4000','121676766689','2023-02-19 03:31:47',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(26801,'1110','121676766866','2023-02-19 03:39:49',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26802,'5500','121676766866','2023-02-19 03:39:49',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26803,'1000','121676766866','2023-02-19 03:39:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26804,'4000','121676766866','2023-02-19 03:39:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26805,'1110','121676767204','2023-02-19 03:47:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(26806,'5500','121676767204','2023-02-19 03:47:58',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26807,'1000','121676767204','2023-02-19 03:47:58',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26808,'4000','121676767204','2023-02-19 03:47:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(26809,'1110','121676767790','2023-02-19 04:55:31',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(26810,'5500','121676767790','2023-02-19 04:55:31',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26811,'1000','121676767790','2023-02-19 04:55:31',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26812,'4000','121676767790','2023-02-19 04:55:31',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(26813,'1110','121676771750','2023-02-19 06:29:15',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26814,'5500','121676771750','2023-02-19 06:29:15',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26815,'1000','121676771750','2023-02-19 06:29:15',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26816,'4000','121676771750','2023-02-19 06:29:15',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26817,'1110','121676819054','2023-02-19 19:51:37',NULL,450.00,'','12','1','Inventory sold','1','','sales','8901522001105','','No',NULL,NULL,''),(26818,'5500','121676819054','2023-02-19 19:51:37',450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26819,'1000','121676819054','2023-02-19 19:51:37',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26820,'4000','121676819054','2023-02-19 19:51:37',NULL,800.00,'','12','1','Good sold','1','','sales','8901522001105','','No',NULL,NULL,''),(26821,'1110','121676825514','2023-02-19 21:03:31',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(26822,'5500','121676825514','2023-02-19 21:03:31',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26823,'1000','121676825514','2023-02-19 21:03:31',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26824,'4000','121676825514','2023-02-19 21:03:31',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(26825,'1110','121676829818','2023-02-19 21:05:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(26826,'1110','121676829818','2023-02-19 21:05:04',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26827,'5500','121676829818','2023-02-19 21:05:04',232.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26828,'1000','121676829818','2023-02-19 21:05:04',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26829,'4000','121676829818','2023-02-19 21:05:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(26830,'4000','121676829818','2023-02-19 21:05:04',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26831,'1110','121676829997','2023-02-19 21:27:08',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(26832,'1110','121676829997','2023-02-19 21:27:08',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26833,'5500','121676829997','2023-02-19 21:27:08',579.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26834,'1000','121676829997','2023-02-19 21:27:08',820.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26835,'4000','121676829997','2023-02-19 21:27:08',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(26836,'4000','121676829997','2023-02-19 21:27:08',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(26837,'1110','121676836139','2023-02-19 22:49:11',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(26838,'5500','121676836139','2023-02-19 22:49:11',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26839,'1000','121676836139','2023-02-19 22:49:11',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26840,'4000','121676836139','2023-02-19 22:49:11',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(26841,'1110','121676836157','2023-02-19 23:02:51',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26842,'5500','121676836157','2023-02-19 23:02:51',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26843,'1000','121676836157','2023-02-19 23:02:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26844,'4000','121676836157','2023-02-19 23:02:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26845,'1110','121676841957','2023-02-20 00:27:11',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26846,'1110','121676841957','2023-02-20 00:27:11',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26847,'5500','121676841957','2023-02-20 00:27:11',348.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26848,'1000','121676841957','2023-02-20 00:27:11',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26849,'4000','121676841957','2023-02-20 00:27:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(26850,'4000','121676841957','2023-02-20 00:27:11',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(26851,'1110','121676844702','2023-02-20 01:11:57',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26852,'5500','121676844702','2023-02-20 01:11:57',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26853,'1000','121676844702','2023-02-20 01:11:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26854,'4000','121676844702','2023-02-20 01:11:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(26855,'1110','121676844730','2023-02-20 03:49:24',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(26856,'5500','121676844730','2023-02-20 03:49:24',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26857,'1000','121676844730','2023-02-20 03:49:24',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26858,'4000','121676844730','2023-02-20 03:49:24',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(26859,'1110','121676889849','2023-02-20 13:44:48',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26860,'1110','121676889849','2023-02-20 13:44:48',NULL,784.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26861,'5500','121676889849','2023-02-20 13:44:48',1458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26862,'1000','121676889849','2023-02-20 13:44:48',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26863,'4000','121676889849','2023-02-20 13:44:48',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26864,'4000','121676889849','2023-02-20 13:44:48',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26865,'1110','121676893378','2023-02-20 14:43:07',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(26866,'5500','121676893378','2023-02-20 14:43:07',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26867,'1000','121676893378','2023-02-20 14:43:07',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26868,'4000','121676893378','2023-02-20 14:43:07',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(26869,'1110','121676893913','2023-02-20 14:52:27',NULL,1025.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(26870,'1110','121676893913','2023-02-20 14:52:27',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(26871,'5500','121676893913','2023-02-20 14:52:27',1230.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26872,'1000','121676893913','2023-02-20 14:52:27',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26873,'4000','121676893913','2023-02-20 14:52:27',NULL,1500.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(26874,'4000','121676893913','2023-02-20 14:52:27',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(26875,'1110','121676894048','2023-02-20 14:54:19',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(26876,'5500','121676894048','2023-02-20 14:54:19',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26877,'1000','121676894048','2023-02-20 14:54:19',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26878,'4000','121676894048','2023-02-20 14:54:19',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(26879,'1110','121676894414','2023-02-20 15:00:29',NULL,536.00,'','12','1','Inventory sold','1','','sales','5060608747818','','No',NULL,NULL,''),(26880,'5500','121676894414','2023-02-20 15:00:29',536.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26881,'1000','121676894414','2023-02-20 15:00:29',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26882,'4000','121676894414','2023-02-20 15:00:29',NULL,640.00,'','12','1','Good sold','1','','sales','5060608747818','','No',NULL,NULL,''),(26883,'1110','121676894508','2023-02-20 15:02:45',NULL,500.00,'','12','1','Inventory sold','1','','sales','5449000180292','','No',NULL,NULL,''),(26884,'1110','121676894508','2023-02-20 15:02:45',NULL,375.00,'','12','1','Inventory sold','1','','sales','5449000180247','','No',NULL,NULL,''),(26885,'1110','121676894508','2023-02-20 15:02:45',NULL,179.00,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(26886,'5500','121676894508','2023-02-20 15:02:45',1054.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26887,'1000','121676894508','2023-02-20 15:02:45',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26888,'4000','121676894508','2023-02-20 15:02:45',NULL,800.00,'','12','1','Good sold','1','','sales','5449000180292','','No',NULL,NULL,''),(26889,'4000','121676894508','2023-02-20 15:02:45',NULL,600.00,'','12','1','Good sold','1','','sales','5449000180247','','No',NULL,NULL,''),(26890,'4000','121676894508','2023-02-20 15:02:45',NULL,300.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(26891,'1110','121676895014','2023-02-20 15:10:56',NULL,160.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26892,'1110','121676895014','2023-02-20 15:10:56',NULL,252.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(26893,'5500','121676895014','2023-02-20 15:10:56',412.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26894,'1000','121676895014','2023-02-20 15:10:56',1040.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26895,'4000','121676895014','2023-02-20 15:10:56',NULL,480.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(26896,'4000','121676895014','2023-02-20 15:10:56',NULL,560.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(26897,'1110','121676895262','2023-02-20 15:14:30',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289929417','','No',NULL,NULL,''),(26898,'5500','121676895262','2023-02-20 15:14:30',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26899,'1000','121676895262','2023-02-20 15:14:30',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26900,'4000','121676895262','2023-02-20 15:14:30',NULL,3000.00,'','12','1','Good sold','1','','sales','5000289929417','','No',NULL,NULL,''),(26901,'1110','121676895440','2023-02-20 15:17:29',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(26902,'5500','121676895440','2023-02-20 15:17:29',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26903,'1000','121676895440','2023-02-20 15:17:29',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26904,'4000','121676895440','2023-02-20 15:17:29',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(26905,'1110','121676895454','2023-02-20 15:18:02',NULL,9200.00,'','12','1','Inventory sold','1','','sales','3245990255215','','No',NULL,NULL,''),(26906,'5500','121676895454','2023-02-20 15:18:02',9200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26907,'1000','121676895454','2023-02-20 15:18:02',12500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26908,'4000','121676895454','2023-02-20 15:18:02',NULL,12500.00,'','12','1','Good sold','1','','sales','3245990255215','','No',NULL,NULL,''),(26909,'1110','121676895486','2023-02-20 15:18:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26910,'5500','121676895486','2023-02-20 15:18:56',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26911,'1000','121676895486','2023-02-20 15:18:56',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26912,'4000','121676895486','2023-02-20 15:18:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(26913,'1110','121676895659','2023-02-20 15:21:24',NULL,11040.00,'','12','1','Inventory sold','1','','sales','5000291020805','','No',NULL,NULL,''),(26914,'1110','121676895659','2023-02-20 15:21:24',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(26915,'5500','121676895659','2023-02-20 15:21:24',13110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26916,'1000','121676895659','2023-02-20 15:21:24',17800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26917,'4000','121676895659','2023-02-20 15:21:24',NULL,15000.00,'','12','1','Good sold','1','','sales','5000291020805','','No',NULL,NULL,''),(26918,'4000','121676895659','2023-02-20 15:21:24',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(26919,'1110','121676895934','2023-02-20 15:26:14',NULL,9040.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(26920,'1110','121676895934','2023-02-20 15:26:14',NULL,3870.00,'','12','1','Inventory sold','1','','sales','5000267116419','','No',NULL,NULL,''),(26921,'1110','121676895934','2023-02-20 15:26:14',NULL,1780.00,'','12','1','Inventory sold','1','','sales','5000267013602','','No',NULL,NULL,''),(26922,'5500','121676895934','2023-02-20 15:26:14',14690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26923,'1000','121676895934','2023-02-20 15:26:14',20300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26924,'4000','121676895934','2023-02-20 15:26:14',NULL,12000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(26925,'4000','121676895934','2023-02-20 15:26:14',NULL,5500.00,'','12','1','Good sold','1','','sales','5000267116419','','No',NULL,NULL,''),(26926,'4000','121676895934','2023-02-20 15:26:14',NULL,2800.00,'','12','1','Good sold','1','','sales','5000267013602','','No',NULL,NULL,''),(26927,'1110','121676895996','2023-02-20 15:28:47',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(26928,'5500','121676895996','2023-02-20 15:28:47',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26929,'1000','121676895996','2023-02-20 15:28:47',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26930,'4000','121676895996','2023-02-20 15:28:47',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(26931,'1110','121676896133','2023-02-20 15:29:17',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561532','','No',NULL,NULL,''),(26932,'5500','121676896133','2023-02-20 15:29:17',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26933,'1000','121676896133','2023-02-20 15:29:17',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26934,'4000','121676896133','2023-02-20 15:29:17',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561532','','No',NULL,NULL,''),(26935,'1110','121676896270','2023-02-20 15:31:20',NULL,1250.00,'','12','1','Inventory sold','1','','sales','5000292262716','','No',NULL,NULL,''),(26936,'5500','121676896270','2023-02-20 15:31:20',1250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26937,'1000','121676896270','2023-02-20 15:31:20',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26938,'4000','121676896270','2023-02-20 15:31:20',NULL,1800.00,'','12','1','Good sold','1','','sales','5000292262716','','No',NULL,NULL,''),(26939,'1110','121676896285','2023-02-20 15:35:30',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(26940,'1110','121676896285','2023-02-20 15:35:30',NULL,1626.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(26941,'1110','121676896285','2023-02-20 15:35:30',NULL,3880.00,'','12','1','Inventory sold','1','','sales','6161101602143','','No',NULL,NULL,''),(26942,'5500','121676896285','2023-02-20 15:35:30',6225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26943,'1000','121676896285','2023-02-20 15:35:30',8750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26944,'4000','121676896285','2023-02-20 15:35:30',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(26945,'4000','121676896285','2023-02-20 15:35:30',NULL,2250.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(26946,'4000','121676896285','2023-02-20 15:35:30',NULL,5500.00,'','12','1','Good sold','1','','sales','6161101602143','','No',NULL,NULL,''),(26947,'1110','121676897295','2023-02-20 16:31:23',NULL,1458.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(26948,'1110','121676897295','2023-02-20 16:31:23',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301804','','No',NULL,NULL,''),(26949,'1110','121676897295','2023-02-20 16:31:23',NULL,1658.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(26950,'1110','121676897295','2023-02-20 16:31:23',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(26951,'1110','121676897295','2023-02-20 16:31:23',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(26952,'1110','121676897295','2023-02-20 16:31:23',NULL,394.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(26953,'1110','121676897295','2023-02-20 16:31:23',NULL,2345.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(26954,'1110','121676897295','2023-02-20 16:31:23',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(26955,'1110','121676897295','2023-02-20 16:31:23',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26956,'1110','121676897295','2023-02-20 16:31:23',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(26957,'1110','121676897295','2023-02-20 16:31:23',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421271','','No',NULL,NULL,''),(26958,'1110','121676897295','2023-02-20 16:31:23',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(26959,'1110','121676897295','2023-02-20 16:31:23',NULL,1570.00,'','12','1','Inventory sold','1','','sales','5010677038874','','No',NULL,NULL,''),(26960,'1110','121676897295','2023-02-20 16:31:23',NULL,17800.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(26961,'5500','121676897295','2023-02-20 16:31:23',30500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26962,'1000','121676897295','2023-02-20 16:31:23',46750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26963,'4000','121676897295','2023-02-20 16:31:23',NULL,2700.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(26964,'4000','121676897295','2023-02-20 16:31:23',NULL,1200.00,'','12','1','Good sold','1','','sales','6001496301804','','No',NULL,NULL,''),(26965,'4000','121676897295','2023-02-20 16:31:23',NULL,2800.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(26966,'4000','121676897295','2023-02-20 16:31:23',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(26967,'4000','121676897295','2023-02-20 16:31:23',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(26968,'4000','121676897295','2023-02-20 16:31:23',NULL,700.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(26969,'4000','121676897295','2023-02-20 16:31:23',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(26970,'4000','121676897295','2023-02-20 16:31:23',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(26971,'4000','121676897295','2023-02-20 16:31:23',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(26972,'4000','121676897295','2023-02-20 16:31:23',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(26973,'4000','121676897295','2023-02-20 16:31:23',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421271','','No',NULL,NULL,''),(26974,'4000','121676897295','2023-02-20 16:31:23',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(26975,'4000','121676897295','2023-02-20 16:31:23',NULL,2300.00,'','12','1','Good sold','1','','sales','5010677038874','','No',NULL,NULL,''),(26976,'4000','121676897295','2023-02-20 16:31:23',NULL,26000.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(26977,'1110','121676901457','2023-02-20 17:11:30',NULL,784.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26978,'1110','121676901457','2023-02-20 17:11:30',NULL,674.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26979,'5500','121676901457','2023-02-20 17:11:30',1458.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26980,'1000','121676901457','2023-02-20 17:11:30',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26981,'4000','121676901457','2023-02-20 17:11:30',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(26982,'4000','121676901457','2023-02-20 17:11:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(26983,'1110','121676902296','2023-02-20 17:22:34',NULL,2100.00,'','12','1','Inventory sold','1','','sales','088544018941','','No',NULL,NULL,''),(26984,'5500','121676902296','2023-02-20 17:22:34',2100.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26985,'1000','121676902296','2023-02-20 17:22:34',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26986,'4000','121676902296','2023-02-20 17:22:34',NULL,2900.00,'','12','1','Good sold','1','','sales','088544018941','','No',NULL,NULL,''),(26987,'1110','121676902959','2023-02-20 18:59:33',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26988,'5500','121676902959','2023-02-20 18:59:33',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26989,'1000','121676902959','2023-02-20 18:59:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26990,'4000','121676902959','2023-02-20 18:59:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(26991,'1110','121676908884','2023-02-20 19:31:48',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(26992,'5500','121676908884','2023-02-20 19:31:48',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26993,'1000','121676908884','2023-02-20 19:31:48',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26994,'4000','121676908884','2023-02-20 19:31:48',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(26995,'1110','121676910717','2023-02-20 20:11:30',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26996,'5500','121676910717','2023-02-20 20:11:30',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(26997,'1000','121676910717','2023-02-20 20:11:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(26998,'4000','121676910717','2023-02-20 20:11:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(26999,'1110','121676913099','2023-02-20 21:38:10',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27000,'1110','121676913099','2023-02-20 21:38:10',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27001,'5500','121676913099','2023-02-20 21:38:10',184.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27002,'1000','121676913099','2023-02-20 21:38:10',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27003,'4000','121676913099','2023-02-20 21:38:10',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27004,'4000','121676913099','2023-02-20 21:38:10',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27005,'1110','121676918346','2023-02-20 22:11:32',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(27006,'1110','121676918346','2023-02-20 22:11:32',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27007,'5500','121676918346','2023-02-20 22:11:32',793.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27008,'1000','121676918346','2023-02-20 22:11:32',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27009,'4000','121676918346','2023-02-20 22:11:32',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(27010,'4000','121676918346','2023-02-20 22:11:32',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27011,'1110','121676921110','2023-02-20 22:30:05',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27012,'1110','121676921110','2023-02-20 22:30:05',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27013,'5500','121676921110','2023-02-20 22:30:05',1340.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27014,'1000','121676921110','2023-02-20 22:30:05',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27015,'4000','121676921110','2023-02-20 22:30:05',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27016,'4000','121676921110','2023-02-20 22:30:05',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27017,'1110','121676921410','2023-02-20 22:40:14',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(27018,'5500','121676921410','2023-02-20 22:40:14',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27019,'1000','121676921410','2023-02-20 22:40:14',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27020,'4000','121676921410','2023-02-20 22:40:14',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(27021,'1110','121676922019','2023-02-20 22:45:05',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27022,'1110','121676922019','2023-02-20 22:45:05',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27023,'5500','121676922019','2023-02-20 22:45:05',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27024,'1000','121676922019','2023-02-20 22:45:05',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27025,'4000','121676922019','2023-02-20 22:45:05',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27026,'4000','121676922019','2023-02-20 22:45:05',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27027,'1110','121676922310','2023-02-20 23:12:51',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27028,'5500','121676922310','2023-02-20 23:12:51',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27029,'1000','121676922310','2023-02-20 23:12:51',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27030,'4000','121676922310','2023-02-20 23:12:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27031,'1110','121676923978','2023-02-20 23:13:53',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27032,'1110','121676923978','2023-02-20 23:13:53',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27033,'5500','121676923978','2023-02-20 23:13:53',284.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27034,'1000','121676923978','2023-02-20 23:13:53',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27035,'4000','121676923978','2023-02-20 23:13:53',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27036,'4000','121676923978','2023-02-20 23:13:53',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27037,'1110','121676924039','2023-02-21 00:12:20',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27038,'1110','121676924039','2023-02-21 00:12:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27039,'5500','121676924039','2023-02-21 00:12:20',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27040,'1000','121676924039','2023-02-21 00:12:20',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27041,'4000','121676924039','2023-02-21 00:12:20',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27042,'4000','121676924039','2023-02-21 00:12:20',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27043,'1110','121676928837','2023-02-21 00:34:10',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27044,'5500','121676928837','2023-02-21 00:34:10',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27045,'1000','121676928837','2023-02-21 00:34:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27046,'4000','121676928837','2023-02-21 00:34:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27047,'1110','121676929335','2023-02-21 00:44:28',NULL,576.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27048,'1110','121676929335','2023-02-21 00:44:28',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(27049,'5500','121676929335','2023-02-21 00:44:28',632.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27050,'1000','121676929335','2023-02-21 00:44:28',890.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27051,'4000','121676929335','2023-02-21 00:44:28',NULL,810.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27052,'4000','121676929335','2023-02-21 00:44:28',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(27053,'1110','121676934362','2023-02-21 02:06:21',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(27054,'1110','121676934362','2023-02-21 02:06:21',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27055,'5500','121676934362','2023-02-21 02:06:21',307.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27056,'1000','121676934362','2023-02-21 02:06:21',470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27057,'4000','121676934362','2023-02-21 02:06:21',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(27058,'4000','121676934362','2023-02-21 02:06:21',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27059,'1110','121676952461','2023-02-21 07:08:02',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27060,'5500','121676952461','2023-02-21 07:08:02',2250.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27061,'1000','121676952461','2023-02-21 07:08:02',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27062,'4000','121676952461','2023-02-21 07:08:02',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27063,'1110','121676952492','2023-02-21 08:51:20',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27064,'1110','121676952492','2023-02-21 08:51:20',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27065,'5500','121676952492','2023-02-21 08:51:20',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27066,'1000','121676952492','2023-02-21 08:51:20',390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27067,'4000','121676952492','2023-02-21 08:51:20',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27068,'4000','121676952492','2023-02-21 08:51:20',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27069,'1110','121676958687','2023-02-21 09:34:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27070,'5500','121676958687','2023-02-21 09:34:32',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27071,'1000','121676958687','2023-02-21 09:34:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27072,'4000','121676958687','2023-02-21 09:34:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27073,'1110','121676979337','2023-02-21 14:35:56',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27074,'5500','121676979337','2023-02-21 14:35:56',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27075,'1000','121676979337','2023-02-21 14:35:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27076,'4000','121676979337','2023-02-21 14:35:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27077,'1110','121676979361','2023-02-21 14:38:14',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27078,'5500','121676979361','2023-02-21 14:38:14',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27079,'1000','121676979361','2023-02-21 14:38:14',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27080,'4000','121676979361','2023-02-21 14:38:14',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27081,'1110','121676992794','2023-02-21 18:20:17',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27082,'5500','121676992794','2023-02-21 18:20:17',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27083,'1000','121676992794','2023-02-21 18:20:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27084,'4000','121676992794','2023-02-21 18:20:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27085,'1110','121676992825','2023-02-21 18:56:08',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(27086,'5500','121676992825','2023-02-21 18:56:08',542.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27087,'1000','121676992825','2023-02-21 18:56:08',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27088,'4000','121676992825','2023-02-21 18:56:08',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(27089,'1110','121676994975','2023-02-21 19:01:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27090,'5500','121676994975','2023-02-21 19:01:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27091,'1000','121676994975','2023-02-21 19:01:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27092,'4000','121676994975','2023-02-21 19:01:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27093,'1110','121677000473','2023-02-21 20:28:04',NULL,1712.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27094,'5500','121677000473','2023-02-21 20:28:04',1712.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27095,'1000','121677000473','2023-02-21 20:28:04',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27096,'4000','121677000473','2023-02-21 20:28:04',NULL,2400.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27097,'1110','121677000490','2023-02-21 21:56:32',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27098,'1110','121677000490','2023-02-21 21:56:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27099,'5500','121677000490','2023-02-21 21:56:32',992.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27100,'1000','121677000490','2023-02-21 21:56:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27101,'4000','121677000490','2023-02-21 21:56:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27102,'4000','121677000490','2023-02-21 21:56:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27103,'1110','121677005798','2023-02-21 22:06:54',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27104,'1110','121677005798','2023-02-21 22:06:54',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(27105,'5500','121677005798','2023-02-21 22:06:54',1255.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27106,'1000','121677005798','2023-02-21 22:06:54',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27107,'4000','121677005798','2023-02-21 22:06:54',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27108,'4000','121677005798','2023-02-21 22:06:54',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(27109,'1110','121677006559','2023-02-21 22:18:57',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(27110,'5500','121677006559','2023-02-21 22:18:57',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27111,'1000','121677006559','2023-02-21 22:18:57',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27112,'4000','121677006559','2023-02-21 22:18:57',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(27113,'1110','121677008392','2023-02-21 23:04:23',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27114,'5500','121677008392','2023-02-21 23:04:23',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27115,'1000','121677008392','2023-02-21 23:04:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27116,'4000','121677008392','2023-02-21 23:04:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27117,'1110','121677009908','2023-02-21 23:18:09',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(27118,'5500','121677009908','2023-02-21 23:18:09',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27119,'1000','121677009908','2023-02-21 23:18:09',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27120,'4000','121677009908','2023-02-21 23:18:09',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(27121,'1110','121677012043','2023-02-21 23:41:09',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27122,'1110','121677012043','2023-02-21 23:41:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27123,'5500','121677012043','2023-02-21 23:41:09',728.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27124,'1000','121677012043','2023-02-21 23:41:09',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27125,'4000','121677012043','2023-02-21 23:41:09',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27126,'4000','121677012043','2023-02-21 23:41:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27127,'1110','121677012076','2023-02-21 23:47:29',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27128,'1110','121677012076','2023-02-21 23:47:29',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27129,'5500','121677012076','2023-02-21 23:47:29',721.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27130,'1000','121677012076','2023-02-21 23:47:29',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27131,'4000','121677012076','2023-02-21 23:47:29',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27132,'4000','121677012076','2023-02-21 23:47:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27133,'1110','121677012526','2023-02-22 00:16:06',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27134,'5500','121677012526','2023-02-22 00:16:06',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27135,'1000','121677012526','2023-02-22 00:16:06',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27136,'4000','121677012526','2023-02-22 00:16:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27137,'1110','121677014171','2023-02-22 00:44:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27138,'1110','121677014171','2023-02-22 00:44:58',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27139,'5500','121677014171','2023-02-22 00:44:58',399.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27140,'1000','121677014171','2023-02-22 00:44:58',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27141,'4000','121677014171','2023-02-22 00:44:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27142,'4000','121677014171','2023-02-22 00:44:58',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27143,'1110','121677017790','2023-02-22 01:17:05',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27144,'1110','121677017790','2023-02-22 01:17:05',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27145,'1110','121677017790','2023-02-22 01:17:05',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27146,'5500','121677017790','2023-02-22 01:17:05',869.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27147,'1000','121677017790','2023-02-22 01:17:05',1290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27148,'4000','121677017790','2023-02-22 01:17:05',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27149,'4000','121677017790','2023-02-22 01:17:05',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27150,'4000','121677017790','2023-02-22 01:17:05',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27151,'1110','121677017861','2023-02-22 01:21:47',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27152,'1110','121677017861','2023-02-22 01:21:47',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27153,'5500','121677017861','2023-02-22 01:21:47',681.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27154,'1000','121677017861','2023-02-22 01:21:47',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27155,'4000','121677017861','2023-02-22 01:21:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27156,'4000','121677017861','2023-02-22 01:21:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27157,'1110','121677018420','2023-02-22 01:27:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27158,'5500','121677018420','2023-02-22 01:27:34',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27159,'1000','121677018420','2023-02-22 01:27:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27160,'4000','121677018420','2023-02-22 01:27:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27161,'1110','121677018460','2023-02-22 01:58:08',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27162,'5500','121677018460','2023-02-22 01:58:08',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27163,'1000','121677018460','2023-02-22 01:58:08',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27164,'4000','121677018460','2023-02-22 01:58:08',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27165,'1110','121677023141','2023-02-22 03:10:06',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27166,'1110','121677023141','2023-02-22 03:10:06',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27167,'1110','121677023141','2023-02-22 03:10:06',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(27168,'1110','121677023141','2023-02-22 03:10:06',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27169,'5500','121677023141','2023-02-22 03:10:06',961.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27170,'1000','121677023141','2023-02-22 03:10:06',1470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27171,'4000','121677023141','2023-02-22 03:10:06',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27172,'4000','121677023141','2023-02-22 03:10:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27173,'4000','121677023141','2023-02-22 03:10:06',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(27174,'4000','121677023141','2023-02-22 03:10:06',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27175,'1110','121677024638','2023-02-22 03:23:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27176,'5500','121677024638','2023-02-22 03:23:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27177,'1000','121677024638','2023-02-22 03:23:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27178,'4000','121677024638','2023-02-22 03:23:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27179,'1110','121677035665','2023-02-22 06:15:17',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(27180,'1110','121677035665','2023-02-22 06:15:17',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27181,'5500','121677035665','2023-02-22 06:15:17',381.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27182,'1000','121677035665','2023-02-22 06:15:17',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27183,'4000','121677035665','2023-02-22 06:15:17',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(27184,'4000','121677035665','2023-02-22 06:15:17',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27185,'1110','121677035723','2023-02-22 06:19:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27186,'5500','121677035723','2023-02-22 06:19:43',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27187,'1000','121677035723','2023-02-22 06:19:43',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27188,'4000','121677035723','2023-02-22 06:19:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27189,'1110','121677053683','2023-02-22 13:30:40',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27190,'5500','121677053683','2023-02-22 13:30:40',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27191,'1000','121677053683','2023-02-22 13:30:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27192,'4000','121677053683','2023-02-22 13:30:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27193,'1110','121677061872','2023-02-22 13:32:15',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27194,'1110','121677061872','2023-02-22 13:32:15',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27195,'5500','121677061872','2023-02-22 13:32:15',380.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27196,'1000','121677061872','2023-02-22 13:32:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27197,'4000','121677061872','2023-02-22 13:32:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27198,'4000','121677061872','2023-02-22 13:32:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27199,'1110','121677061956','2023-02-22 13:32:47',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27200,'5500','121677061956','2023-02-22 13:32:47',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27201,'1000','121677061956','2023-02-22 13:32:47',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27202,'4000','121677061956','2023-02-22 13:32:47',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27203,'1110','121677061976','2023-02-22 15:31:35',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27204,'5500','121677061976','2023-02-22 15:31:35',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27205,'1000','121677061976','2023-02-22 15:31:35',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27206,'4000','121677061976','2023-02-22 15:31:35',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27207,'1110','121677069109','2023-02-22 16:07:48',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27208,'1110','121677069109','2023-02-22 16:07:48',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27209,'5500','121677069109','2023-02-22 16:07:48',202.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27210,'1000','121677069109','2023-02-22 16:07:48',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27211,'4000','121677069109','2023-02-22 16:07:48',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27212,'4000','121677069109','2023-02-22 16:07:48',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27213,'1110','121677081371','2023-02-22 18:57:05',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(27214,'1110','121677081371','2023-02-22 18:57:05',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(27215,'1110','121677081371','2023-02-22 18:57:05',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27216,'5500','121677081371','2023-02-22 18:57:05',4208.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27217,'1000','121677081371','2023-02-22 18:57:05',6150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27218,'4000','121677081371','2023-02-22 18:57:05',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(27219,'4000','121677081371','2023-02-22 18:57:05',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(27220,'4000','121677081371','2023-02-22 18:57:05',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27221,'1110','121677081552','2023-02-22 19:33:15',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(27222,'5500','121677081552','2023-02-22 19:33:15',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27223,'1000','121677081552','2023-02-22 19:33:15',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27224,'4000','121677081552','2023-02-22 19:33:15',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(27225,'1110','121677083600','2023-02-22 20:52:15',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27226,'5500','121677083600','2023-02-22 20:52:15',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27227,'1000','121677083600','2023-02-22 20:52:15',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27228,'4000','121677083600','2023-02-22 20:52:15',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(27229,'1110','121677088347','2023-02-22 21:35:29',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(27230,'1110','121677088347','2023-02-22 21:35:29',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(27231,'5500','121677088347','2023-02-22 21:35:29',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27232,'1000','121677088347','2023-02-22 21:35:29',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27233,'4000','121677088347','2023-02-22 21:35:29',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(27234,'4000','121677088347','2023-02-22 21:35:29',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(27235,'1110','121677090951','2023-02-22 22:14:33',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27236,'5500','121677090951','2023-02-22 22:14:33',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27237,'1000','121677090951','2023-02-22 22:14:33',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27238,'4000','121677090951','2023-02-22 22:14:33',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27239,'1110','121677093279','2023-02-22 22:36:20',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27240,'5500','121677093279','2023-02-22 22:36:20',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27241,'1000','121677093279','2023-02-22 22:36:20',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27242,'4000','121677093279','2023-02-22 22:36:20',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27243,'1110','121677094590','2023-02-22 22:36:43',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27244,'5500','121677094590','2023-02-22 22:36:43',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27245,'1000','121677094590','2023-02-22 22:36:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27246,'4000','121677094590','2023-02-22 22:36:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27247,'1110','121677094610','2023-02-22 22:44:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27248,'5500','121677094610','2023-02-22 22:44:36',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27249,'1000','121677094610','2023-02-22 22:44:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27250,'4000','121677094610','2023-02-22 22:44:36',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27251,'1110','121677095082','2023-02-22 22:59:45',NULL,1970.00,'','12','1','Inventory sold','1','','sales','089540448978','','No',NULL,NULL,''),(27252,'1110','121677095082','2023-02-22 22:59:45',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27253,'1110','121677095082','2023-02-22 22:59:45',NULL,1090.25,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27254,'1110','121677095082','2023-02-22 22:59:45',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(27255,'5500','121677095082','2023-02-22 22:59:45',4120.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27256,'1000','121677095082','2023-02-22 22:59:45',5850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27257,'4000','121677095082','2023-02-22 22:59:45',NULL,2600.00,'','12','1','Good sold','1','','sales','089540448978','','No',NULL,NULL,''),(27258,'4000','121677095082','2023-02-22 22:59:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27259,'4000','121677095082','2023-02-22 22:59:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27260,'4000','121677095082','2023-02-22 22:59:45',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(27261,'1110','121677096107','2023-02-22 23:02:45',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27262,'1110','121677096107','2023-02-22 23:02:45',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27263,'1110','121677096107','2023-02-22 23:02:45',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27264,'5500','121677096107','2023-02-22 23:02:45',450.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27265,'1000','121677096107','2023-02-22 23:02:45',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27266,'4000','121677096107','2023-02-22 23:02:45',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27267,'4000','121677096107','2023-02-22 23:02:45',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27268,'4000','121677096107','2023-02-22 23:02:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27269,'1110','121677096398','2023-02-22 23:41:23',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(27270,'1110','121677096398','2023-02-22 23:41:23',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27271,'1110','121677096398','2023-02-22 23:41:23',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27272,'5500','121677096398','2023-02-22 23:41:23',733.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27273,'1000','121677096398','2023-02-22 23:41:23',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27274,'4000','121677096398','2023-02-22 23:41:23',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(27275,'4000','121677096398','2023-02-22 23:41:23',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27276,'4000','121677096398','2023-02-22 23:41:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27277,'1110','121677098534','2023-02-23 00:29:55',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(27278,'1110','121677098534','2023-02-23 00:29:55',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27279,'1110','121677098534','2023-02-23 00:29:55',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27280,'1110','121677098534','2023-02-23 00:29:55',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27281,'1110','121677098534','2023-02-23 00:29:55',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27282,'1110','121677098534','2023-02-23 00:29:55',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27283,'1110','121677098534','2023-02-23 00:29:55',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27284,'1110','121677098534','2023-02-23 00:29:55',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(27285,'5500','121677098534','2023-02-23 00:29:55',4575.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27286,'1000','121677098534','2023-02-23 00:29:55',6970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27287,'4000','121677098534','2023-02-23 00:29:55',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(27288,'4000','121677098534','2023-02-23 00:29:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27289,'4000','121677098534','2023-02-23 00:29:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27290,'4000','121677098534','2023-02-23 00:29:55',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27291,'4000','121677098534','2023-02-23 00:29:55',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27292,'4000','121677098534','2023-02-23 00:29:55',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27293,'4000','121677098534','2023-02-23 00:29:55',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27294,'4000','121677098534','2023-02-23 00:29:55',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(27295,'1110','121677101746','2023-02-23 01:01:46',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27296,'5500','121677101746','2023-02-23 01:01:46',428.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27297,'1000','121677101746','2023-02-23 01:01:46',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27298,'4000','121677101746','2023-02-23 01:01:46',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27299,'1110','121677104332','2023-02-23 01:20:39',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27300,'1110','121677104332','2023-02-23 01:20:39',NULL,418.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27301,'1110','121677104332','2023-02-23 01:20:39',NULL,57.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27302,'5500','121677104332','2023-02-23 01:20:39',551.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27303,'1000','121677104332','2023-02-23 01:20:39',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27304,'4000','121677104332','2023-02-23 01:20:39',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27305,'4000','121677104332','2023-02-23 01:20:39',NULL,580.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27306,'4000','121677104332','2023-02-23 01:20:39',NULL,150.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27307,'1110','121677104455','2023-02-23 01:39:35',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27308,'5500','121677104455','2023-02-23 01:39:35',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27309,'1000','121677104455','2023-02-23 01:39:35',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27310,'4000','121677104455','2023-02-23 01:39:35',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27311,'1110','121677105580','2023-02-23 01:43:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(27312,'1110','121677105580','2023-02-23 01:43:53',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27313,'5500','121677105580','2023-02-23 01:43:53',399.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27314,'1000','121677105580','2023-02-23 01:43:53',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27315,'4000','121677105580','2023-02-23 01:43:53',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(27316,'4000','121677105580','2023-02-23 01:43:53',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27317,'1110','121677105931','2023-02-23 01:57:46',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27318,'5500','121677105931','2023-02-23 01:57:46',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27319,'1000','121677105931','2023-02-23 01:57:46',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27320,'4000','121677105931','2023-02-23 01:57:46',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(27321,'1110','121677106672','2023-02-23 02:32:40',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642045','','No',NULL,NULL,''),(27322,'1110','121677106672','2023-02-23 02:32:40',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(27323,'1110','121677106672','2023-02-23 02:32:40',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(27324,'1110','121677106672','2023-02-23 02:32:40',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(27325,'1110','121677106672','2023-02-23 02:32:40',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(27326,'5500','121677106672','2023-02-23 02:32:40',2771.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27327,'1000','121677106672','2023-02-23 02:32:40',4700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27328,'4000','121677106672','2023-02-23 02:32:40',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642045','','No',NULL,NULL,''),(27329,'4000','121677106672','2023-02-23 02:32:40',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(27330,'4000','121677106672','2023-02-23 02:32:40',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(27331,'4000','121677106672','2023-02-23 02:32:40',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(27332,'4000','121677106672','2023-02-23 02:32:40',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(27333,'1110','121677108890','2023-02-23 02:36:03',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27334,'1110','121677108890','2023-02-23 02:36:03',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27335,'5500','121677108890','2023-02-23 02:36:03',172.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27336,'1000','121677108890','2023-02-23 02:36:03',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27337,'4000','121677108890','2023-02-23 02:36:03',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27338,'4000','121677108890','2023-02-23 02:36:03',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27339,'1110','121677126706','2023-02-23 07:32:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27340,'1110','121677126706','2023-02-23 07:32:13',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27341,'1110','121677126706','2023-02-23 07:32:13',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27342,'5500','121677126706','2023-02-23 07:32:13',256.79,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27343,'1000','121677126706','2023-02-23 07:32:13',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27344,'4000','121677126706','2023-02-23 07:32:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27345,'4000','121677126706','2023-02-23 07:32:13',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27346,'4000','121677126706','2023-02-23 07:32:13',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27347,'1110','121677126739','2023-02-23 07:35:37',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27348,'5500','121677126739','2023-02-23 07:35:37',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27349,'1000','121677126739','2023-02-23 07:35:37',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27350,'4000','121677126739','2023-02-23 07:35:37',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27351,'1110','121677126941','2023-02-23 07:37:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27352,'5500','121677126941','2023-02-23 07:37:46',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27353,'1000','121677126941','2023-02-23 07:37:46',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27354,'4000','121677126941','2023-02-23 07:37:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27355,'1110','121677127070','2023-02-23 07:40:22',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(27356,'1110','121677127070','2023-02-23 07:40:22',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27357,'5500','121677127070','2023-02-23 07:40:22',455.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27358,'1000','121677127070','2023-02-23 07:40:22',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27359,'4000','121677127070','2023-02-23 07:40:22',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(27360,'4000','121677127070','2023-02-23 07:40:22',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27361,'1110','121677135228','2023-02-23 10:09:25',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27362,'5500','121677135228','2023-02-23 10:09:25',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27363,'1000','121677135228','2023-02-23 10:09:25',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27364,'4000','121677135228','2023-02-23 10:09:25',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27365,'1110','121677156953','2023-02-23 15:56:32',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27366,'1110','121677156953','2023-02-23 15:56:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27367,'5500','121677156953','2023-02-23 15:56:32',246.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27368,'1000','121677156953','2023-02-23 15:56:32',360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27369,'4000','121677156953','2023-02-23 15:56:32',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27370,'4000','121677156953','2023-02-23 15:56:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27371,'1110','121677157002','2023-02-23 16:11:39',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27372,'5500','121677157002','2023-02-23 16:11:39',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27373,'1000','121677157002','2023-02-23 16:11:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27374,'4000','121677157002','2023-02-23 16:11:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27375,'1110','121677157903','2023-02-23 16:18:42',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27376,'5500','121677157903','2023-02-23 16:18:42',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27377,'1000','121677157903','2023-02-23 16:18:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27378,'4000','121677157903','2023-02-23 16:18:42',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(27379,'1110','121677169569','2023-02-23 19:26:39',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(27380,'5500','121677169569','2023-02-23 19:26:39',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27381,'1000','121677169569','2023-02-23 19:26:39',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27382,'4000','121677169569','2023-02-23 19:26:39',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(27383,'1110','121677169604','2023-02-23 20:05:38',NULL,985.00,'','12','1','Inventory sold','1','','sales','7798039598126','','No',NULL,NULL,''),(27384,'5500','121677169604','2023-02-23 20:05:38',985.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27385,'1000','121677169604','2023-02-23 20:05:38',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27386,'4000','121677169604','2023-02-23 20:05:38',NULL,1700.00,'','12','1','Good sold','1','','sales','7798039598126','','No',NULL,NULL,''),(27387,'1110','121677172014','2023-02-23 20:18:54',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27388,'1110','121677172014','2023-02-23 20:18:54',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27389,'5500','121677172014','2023-02-23 20:18:54',228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27390,'1000','121677172014','2023-02-23 20:18:54',340.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27391,'4000','121677172014','2023-02-23 20:18:54',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27392,'4000','121677172014','2023-02-23 20:18:54',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27393,'1110','121677172750','2023-02-23 20:19:26',NULL,895.00,'','12','1','Inventory sold','1','','sales','7798039597570','','No',NULL,NULL,''),(27394,'5500','121677172750','2023-02-23 20:19:26',895.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27395,'1000','121677172750','2023-02-23 20:19:26',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27396,'4000','121677172750','2023-02-23 20:19:26',NULL,1600.00,'','12','1','Good sold','1','','sales','7798039597570','','No',NULL,NULL,''),(27397,'1110','121677172775','2023-02-23 20:54:20',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27398,'5500','121677172775','2023-02-23 20:54:20',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27399,'1000','121677172775','2023-02-23 20:54:20',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27400,'4000','121677172775','2023-02-23 20:54:20',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27401,'1110','121677174865','2023-02-23 21:01:33',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(27402,'5500','121677174865','2023-02-23 21:01:33',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27403,'1000','121677174865','2023-02-23 21:01:33',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27404,'4000','121677174865','2023-02-23 21:01:33',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(27405,'1110','121677175307','2023-02-23 21:21:39',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27406,'1110','121677175307','2023-02-23 21:21:39',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27407,'5500','121677175307','2023-02-23 21:21:39',354.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27408,'1000','121677175307','2023-02-23 21:21:39',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27409,'4000','121677175307','2023-02-23 21:21:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27410,'4000','121677175307','2023-02-23 21:21:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27411,'1110','121677176504','2023-02-23 21:33:47',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27412,'1110','121677176504','2023-02-23 21:33:47',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27413,'5500','121677176504','2023-02-23 21:33:47',579.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27414,'1000','121677176504','2023-02-23 21:33:47',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27415,'4000','121677176504','2023-02-23 21:33:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27416,'4000','121677176504','2023-02-23 21:33:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27417,'1110','121677177231','2023-02-23 22:35:22',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(27418,'1110','121677177231','2023-02-23 22:35:22',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27419,'1110','121677177231','2023-02-23 22:35:22',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27420,'5500','121677177231','2023-02-23 22:35:22',822.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27421,'1000','121677177231','2023-02-23 22:35:22',1190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27422,'4000','121677177231','2023-02-23 22:35:22',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(27423,'4000','121677177231','2023-02-23 22:35:22',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27424,'4000','121677177231','2023-02-23 22:35:22',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27425,'1110','121677181030','2023-02-23 22:57:44',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27426,'5500','121677181030','2023-02-23 22:57:44',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27427,'1000','121677181030','2023-02-23 22:57:44',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27428,'4000','121677181030','2023-02-23 22:57:44',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27429,'1110','121677182276','2023-02-23 23:04:44',NULL,580.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27430,'5500','121677182276','2023-02-23 23:04:44',580.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27431,'1000','121677182276','2023-02-23 23:04:44',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27432,'4000','121677182276','2023-02-23 23:04:44',NULL,800.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27433,'1110','121677182750','2023-02-23 23:13:22',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27434,'1110','121677182750','2023-02-23 23:13:22',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(27435,'5500','121677182750','2023-02-23 23:13:22',650.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27436,'1000','121677182750','2023-02-23 23:13:22',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27437,'4000','121677182750','2023-02-23 23:13:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27438,'4000','121677182750','2023-02-23 23:13:22',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(27439,'1110','121677183209','2023-02-23 23:16:09',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27440,'1110','121677183209','2023-02-23 23:16:09',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27441,'5500','121677183209','2023-02-23 23:16:09',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27442,'1000','121677183209','2023-02-23 23:16:09',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27443,'4000','121677183209','2023-02-23 23:16:09',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27444,'4000','121677183209','2023-02-23 23:16:09',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27445,'1110','121677183411','2023-02-23 23:18:54',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27446,'1110','121677183411','2023-02-23 23:18:54',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27447,'5500','121677183411','2023-02-23 23:18:54',579.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27448,'1000','121677183411','2023-02-23 23:18:54',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27449,'4000','121677183411','2023-02-23 23:18:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27450,'4000','121677183411','2023-02-23 23:18:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27451,'1110','121677183541','2023-02-23 23:27:40',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27452,'5500','121677183541','2023-02-23 23:27:40',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27453,'1000','121677183541','2023-02-23 23:27:40',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27454,'4000','121677183541','2023-02-23 23:27:40',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27455,'1110','121677184088','2023-02-24 00:20:49',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27456,'5500','121677184088','2023-02-24 00:20:49',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27457,'1000','121677184088','2023-02-24 00:20:49',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27458,'4000','121677184088','2023-02-24 00:20:49',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27459,'1110','121677187722','2023-02-24 01:21:12',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27460,'1110','121677187722','2023-02-24 01:21:12',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27461,'1110','121677187722','2023-02-24 01:21:12',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27462,'5500','121677187722','2023-02-24 01:21:12',785.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27463,'1000','121677187722','2023-02-24 01:21:12',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27464,'4000','121677187722','2023-02-24 01:21:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27465,'4000','121677187722','2023-02-24 01:21:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27466,'4000','121677187722','2023-02-24 01:21:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27467,'1110','121677190917','2023-02-24 01:41:24',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(27468,'5500','121677190917','2023-02-24 01:41:24',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27469,'1000','121677190917','2023-02-24 01:41:24',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27470,'4000','121677190917','2023-02-24 01:41:24',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(27471,'1110','121677192090','2023-02-24 01:50:04',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27472,'5500','121677192090','2023-02-24 01:50:04',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27473,'1000','121677192090','2023-02-24 01:50:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27474,'4000','121677192090','2023-02-24 01:50:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27475,'1110','121677192609','2023-02-24 01:59:05',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27476,'5500','121677192609','2023-02-24 01:59:05',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27477,'1000','121677192609','2023-02-24 01:59:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27478,'4000','121677192609','2023-02-24 01:59:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27479,'1110','121677193150','2023-02-24 01:59:25',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27480,'5500','121677193150','2023-02-24 01:59:25',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27481,'1000','121677193150','2023-02-24 01:59:25',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27482,'4000','121677193150','2023-02-24 01:59:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27483,'1110','121677193169','2023-02-24 02:06:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27484,'5500','121677193169','2023-02-24 02:06:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27485,'1000','121677193169','2023-02-24 02:06:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27486,'4000','121677193169','2023-02-24 02:06:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27487,'1110','121677194786','2023-02-24 02:55:13',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27488,'5500','121677194786','2023-02-24 02:55:13',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27489,'1000','121677194786','2023-02-24 02:55:13',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27490,'4000','121677194786','2023-02-24 02:55:13',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27491,'1110','121677196551','2023-02-24 03:59:22',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27492,'5500','121677196551','2023-02-24 03:59:22',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27493,'1000','121677196551','2023-02-24 03:59:22',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27494,'4000','121677196551','2023-02-24 03:59:22',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27495,'1110','121677200368','2023-02-24 05:40:18',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(27496,'5500','121677200368','2023-02-24 05:40:18',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27497,'1000','121677200368','2023-02-24 05:40:18',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27498,'4000','121677200368','2023-02-24 05:40:18',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(27499,'1110','121677241315','2023-02-24 15:23:41',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27500,'1110','121677241315','2023-02-24 15:23:41',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27501,'1110','121677241315','2023-02-24 15:23:41',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27502,'5500','121677241315','2023-02-24 15:23:41',603.03,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27503,'1000','121677241315','2023-02-24 15:23:41',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27504,'4000','121677241315','2023-02-24 15:23:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27505,'4000','121677241315','2023-02-24 15:23:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27506,'4000','121677241315','2023-02-24 15:23:41',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27507,'1110','121677241432','2023-02-24 15:24:16',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27508,'5500','121677241432','2023-02-24 15:24:16',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27509,'1000','121677241432','2023-02-24 15:24:16',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27510,'4000','121677241432','2023-02-24 15:24:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27511,'1110','121677241465','2023-02-24 15:24:40',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27512,'5500','121677241465','2023-02-24 15:24:40',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27513,'1000','121677241465','2023-02-24 15:24:40',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27514,'4000','121677241465','2023-02-24 15:24:40',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27515,'1110','121677241486','2023-02-24 18:25:18',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27516,'5500','121677241486','2023-02-24 18:25:18',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27517,'1000','121677241486','2023-02-24 18:25:18',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27518,'4000','121677241486','2023-02-24 18:25:18',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27519,'1110','121677252337','2023-02-24 20:08:06',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27520,'5500','121677252337','2023-02-24 20:08:06',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27521,'1000','121677252337','2023-02-24 20:08:06',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27522,'4000','121677252337','2023-02-24 20:08:06',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27523,'1110','121677258590','2023-02-24 20:25:47',NULL,6400.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(27524,'5500','121677258590','2023-02-24 20:25:47',6400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27525,'1000','121677258590','2023-02-24 20:25:47',8700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27526,'4000','121677258590','2023-02-24 20:25:47',NULL,8700.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(27527,'1110','121677259594','2023-02-24 20:29:06',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27528,'5500','121677259594','2023-02-24 20:29:06',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27529,'1000','121677259594','2023-02-24 20:29:06',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27530,'4000','121677259594','2023-02-24 20:29:06',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27531,'1110','121677259751','2023-02-24 20:30:11',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27532,'5500','121677259751','2023-02-24 20:30:11',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27533,'1000','121677259751','2023-02-24 20:30:11',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27534,'4000','121677259751','2023-02-24 20:30:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27535,'1110','121677259818','2023-02-24 20:42:02',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(27536,'5500','121677259818','2023-02-24 20:42:02',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27537,'1000','121677259818','2023-02-24 20:42:02',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27538,'4000','121677259818','2023-02-24 20:42:02',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(27539,'1110','121677260527','2023-02-24 21:07:26',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27540,'5500','121677260527','2023-02-24 21:07:26',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27541,'1000','121677260527','2023-02-24 21:07:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27542,'4000','121677260527','2023-02-24 21:07:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27543,'1110','121677262051','2023-02-24 21:51:51',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27544,'5500','121677262051','2023-02-24 21:51:51',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27545,'1000','121677262051','2023-02-24 21:51:51',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27546,'4000','121677262051','2023-02-24 21:51:51',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27547,'1110','121677265030','2023-02-24 21:57:42',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(27548,'1110','121677265030','2023-02-24 21:57:42',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27549,'1110','121677265030','2023-02-24 21:57:42',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27550,'5500','121677265030','2023-02-24 21:57:42',1064.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27551,'1000','121677265030','2023-02-24 21:57:42',1630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27552,'4000','121677265030','2023-02-24 21:57:42',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(27553,'4000','121677265030','2023-02-24 21:57:42',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27554,'4000','121677265030','2023-02-24 21:57:42',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27555,'1110','121677265299','2023-02-24 22:01:52',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(27556,'5500','121677265299','2023-02-24 22:01:52',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27557,'1000','121677265299','2023-02-24 22:01:52',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27558,'4000','121677265299','2023-02-24 22:01:52',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(27559,'1110','121677265316','2023-02-24 22:02:37',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27560,'1110','121677265316','2023-02-24 22:02:37',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27561,'1110','121677265316','2023-02-24 22:02:37',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27562,'5500','121677265316','2023-02-24 22:02:37',966.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27563,'1000','121677265316','2023-02-24 22:02:37',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27564,'4000','121677265316','2023-02-24 22:02:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27565,'4000','121677265316','2023-02-24 22:02:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27566,'4000','121677265316','2023-02-24 22:02:37',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27567,'1110','121677265391','2023-02-24 22:12:58',NULL,209.00,'','12','1','Inventory sold','1','','sales','725765052087','','No',NULL,NULL,''),(27568,'5500','121677265391','2023-02-24 22:12:58',209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27569,'1000','121677265391','2023-02-24 22:12:58',290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27570,'4000','121677265391','2023-02-24 22:12:58',NULL,290.00,'','12','1','Good sold','1','','sales','725765052087','','No',NULL,NULL,''),(27571,'1110','121677265985','2023-02-24 23:19:43',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27572,'5500','121677265985','2023-02-24 23:19:43',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27573,'1000','121677265985','2023-02-24 23:19:43',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27574,'4000','121677265985','2023-02-24 23:19:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(27575,'1110','121677269989','2023-02-24 23:21:48',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27576,'1110','121677269989','2023-02-24 23:21:48',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(27577,'5500','121677269989','2023-02-24 23:21:48',604.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27578,'1000','121677269989','2023-02-24 23:21:48',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27579,'4000','121677269989','2023-02-24 23:21:48',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27580,'4000','121677269989','2023-02-24 23:21:48',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(27581,'1110','121677270144','2023-02-24 23:33:32',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27582,'1110','121677270144','2023-02-24 23:33:32',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27583,'5500','121677270144','2023-02-24 23:33:32',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27584,'1000','121677270144','2023-02-24 23:33:32',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27585,'4000','121677270144','2023-02-24 23:33:32',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27586,'4000','121677270144','2023-02-24 23:33:32',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27587,'1110','121677270873','2023-02-24 23:34:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(27588,'1110','121677270873','2023-02-24 23:34:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27589,'5500','121677270873','2023-02-24 23:34:55',1228.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27590,'1000','121677270873','2023-02-24 23:34:55',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27591,'4000','121677270873','2023-02-24 23:34:55',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(27592,'4000','121677270873','2023-02-24 23:34:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27593,'1110','121677270978','2023-02-24 23:44:01',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27594,'5500','121677270978','2023-02-24 23:44:01',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27595,'1000','121677270978','2023-02-24 23:44:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27596,'4000','121677270978','2023-02-24 23:44:01',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27597,'1110','121677271448','2023-02-25 01:02:14',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27598,'1110','121677271448','2023-02-25 01:02:14',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27599,'1110','121677271448','2023-02-25 01:02:14',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27600,'5500','121677271448','2023-02-25 01:02:14',431.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27601,'1000','121677271448','2023-02-25 01:02:14',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27602,'4000','121677271448','2023-02-25 01:02:14',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(27603,'4000','121677271448','2023-02-25 01:02:14',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27604,'4000','121677271448','2023-02-25 01:02:14',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27605,'1110','121677276141','2023-02-25 01:04:44',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(27606,'5500','121677276141','2023-02-25 01:04:44',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27607,'1000','121677276141','2023-02-25 01:04:44',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27608,'4000','121677276141','2023-02-25 01:04:44',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(27609,'1110','121677276326','2023-02-25 01:43:25',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(27610,'1110','121677276326','2023-02-25 01:43:25',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27611,'1110','121677276326','2023-02-25 01:43:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27612,'5500','121677276326','2023-02-25 01:43:25',557.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27613,'1000','121677276326','2023-02-25 01:43:25',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27614,'4000','121677276326','2023-02-25 01:43:25',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(27615,'4000','121677276326','2023-02-25 01:43:25',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27616,'4000','121677276326','2023-02-25 01:43:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27617,'1110','121677278630','2023-02-25 01:59:12',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(27618,'5500','121677278630','2023-02-25 01:59:12',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27619,'1000','121677278630','2023-02-25 01:59:12',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27620,'4000','121677278630','2023-02-25 01:59:12',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(27621,'1110','121677279603','2023-02-25 02:05:45',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27622,'5500','121677279603','2023-02-25 02:05:45',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27623,'1000','121677279603','2023-02-25 02:05:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27624,'4000','121677279603','2023-02-25 02:05:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27625,'1110','121677279958','2023-02-25 02:27:43',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(27626,'1110','121677279958','2023-02-25 02:27:43',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27627,'1110','121677279958','2023-02-25 02:27:43',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27628,'5500','121677279958','2023-02-25 02:27:43',1587.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27629,'1000','121677279958','2023-02-25 02:27:43',2190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27630,'4000','121677279958','2023-02-25 02:27:43',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(27631,'4000','121677279958','2023-02-25 02:27:43',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(27632,'4000','121677279958','2023-02-25 02:27:43',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(27633,'1110','121677281318','2023-02-25 02:30:31',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27634,'5500','121677281318','2023-02-25 02:30:31',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27635,'1000','121677281318','2023-02-25 02:30:31',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27636,'4000','121677281318','2023-02-25 02:30:31',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(27637,'1110','121677347413','2023-02-25 20:58:47',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27638,'5500','121677347413','2023-02-25 20:58:47',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27639,'1000','121677347413','2023-02-25 20:58:47',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27640,'4000','121677347413','2023-02-25 20:58:47',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27641,'1110','121677347934','2023-02-25 20:59:41',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27642,'5500','121677347934','2023-02-25 20:59:41',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27643,'1000','121677347934','2023-02-25 20:59:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27644,'4000','121677347934','2023-02-25 20:59:41',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27645,'1110','121677347989','2023-02-25 21:01:26',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(27646,'5500','121677347989','2023-02-25 21:01:26',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27647,'1000','121677347989','2023-02-25 21:01:26',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27648,'4000','121677347989','2023-02-25 21:01:26',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(27649,'1110','121677348091','2023-02-25 21:06:56',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(27650,'5500','121677348091','2023-02-25 21:06:56',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27651,'1000','121677348091','2023-02-25 21:06:56',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27652,'4000','121677348091','2023-02-25 21:06:56',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(27653,'1110','121677348422','2023-02-25 21:07:16',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27654,'5500','121677348422','2023-02-25 21:07:16',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27655,'1000','121677348422','2023-02-25 21:07:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27656,'4000','121677348422','2023-02-25 21:07:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27657,'1110','121677348442','2023-02-25 21:09:09',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27658,'5500','121677348442','2023-02-25 21:09:09',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27659,'1000','121677348442','2023-02-25 21:09:09',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27660,'4000','121677348442','2023-02-25 21:09:09',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27661,'1110','121677348554','2023-02-25 21:10:11',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27662,'5500','121677348554','2023-02-25 21:10:11',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27663,'1000','121677348554','2023-02-25 21:10:11',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27664,'4000','121677348554','2023-02-25 21:10:11',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27665,'1110','121677348621','2023-02-25 21:10:32',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27666,'5500','121677348621','2023-02-25 21:10:32',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27667,'1000','121677348621','2023-02-25 21:10:32',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27668,'4000','121677348621','2023-02-25 21:10:32',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27669,'1110','121677348642','2023-02-25 21:10:56',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27670,'5500','121677348642','2023-02-25 21:10:56',89.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27671,'1000','121677348642','2023-02-25 21:10:56',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27672,'4000','121677348642','2023-02-25 21:10:56',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(27673,'1110','121677348915','2023-02-25 21:57:11',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27674,'1110','121677348915','2023-02-25 21:57:11',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27675,'5500','121677348915','2023-02-25 21:57:11',709.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27676,'1000','121677348915','2023-02-25 21:57:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27677,'4000','121677348915','2023-02-25 21:57:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27678,'4000','121677348915','2023-02-25 21:57:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27679,'1110','121677351436','2023-02-25 21:57:31',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(27680,'5500','121677351436','2023-02-25 21:57:31',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27681,'1000','121677351436','2023-02-25 21:57:31',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27682,'4000','121677351436','2023-02-25 21:57:31',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(27683,'1110','121677351456','2023-02-25 21:58:53',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27684,'5500','121677351456','2023-02-25 21:58:53',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27685,'1000','121677351456','2023-02-25 21:58:53',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27686,'4000','121677351456','2023-02-25 21:58:53',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27687,'1110','121677351639','2023-02-25 22:44:45',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(27688,'5500','121677351639','2023-02-25 22:44:45',1.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27689,'1000','121677351639','2023-02-25 22:44:45',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27690,'4000','121677351639','2023-02-25 22:44:45',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(27691,'1110','121677354292','2023-02-25 23:01:09',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27692,'5500','121677354292','2023-02-25 23:01:09',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27693,'1000','121677354292','2023-02-25 23:01:09',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27694,'4000','121677354292','2023-02-25 23:01:09',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(27695,'1110','121677356588','2023-02-25 23:23:45',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(27696,'5500','121677356588','2023-02-25 23:23:45',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27697,'1000','121677356588','2023-02-25 23:23:45',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27698,'4000','121677356588','2023-02-25 23:23:45',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(27699,'1110','121677356632','2023-02-25 23:46:52',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(27700,'5500','121677356632','2023-02-25 23:46:52',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27701,'1000','121677356632','2023-02-25 23:46:52',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27702,'4000','121677356632','2023-02-25 23:46:52',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(27703,'1110','121677358017','2023-02-26 00:12:27',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(27704,'5500','121677358017','2023-02-26 00:12:27',829.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27705,'1000','121677358017','2023-02-26 00:12:27',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27706,'4000','121677358017','2023-02-26 00:12:27',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(27707,'1110','121677360424','2023-02-26 00:27:13',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27708,'5500','121677360424','2023-02-26 00:27:13',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27709,'1000','121677360424','2023-02-26 00:27:13',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27710,'4000','121677360424','2023-02-26 00:27:13',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27711,'1110','121677360439','2023-02-26 00:32:00',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27712,'5500','121677360439','2023-02-26 00:32:00',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27713,'1000','121677360439','2023-02-26 00:32:00',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27714,'4000','121677360439','2023-02-26 00:32:00',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27715,'1110','121677360727','2023-02-26 00:39:13',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27716,'5500','121677360727','2023-02-26 00:39:13',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27717,'1000','121677360727','2023-02-26 00:39:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27718,'4000','121677360727','2023-02-26 00:39:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27719,'1110','121677361157','2023-02-26 00:43:08',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27720,'1110','121677361157','2023-02-26 00:43:08',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27721,'1110','121677361157','2023-02-26 00:43:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27722,'5500','121677361157','2023-02-26 00:43:08',1390.56,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27723,'1000','121677361157','2023-02-26 00:43:08',2280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27724,'4000','121677361157','2023-02-26 00:43:08',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27725,'4000','121677361157','2023-02-26 00:43:08',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(27726,'4000','121677361157','2023-02-26 00:43:08',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27727,'1110','121677361401','2023-02-26 00:45:41',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27728,'5500','121677361401','2023-02-26 00:45:41',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27729,'1000','121677361401','2023-02-26 00:45:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27730,'4000','121677361401','2023-02-26 00:45:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27731,'1110','121677361545','2023-02-26 01:04:06',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27732,'5500','121677361545','2023-02-26 01:04:06',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27733,'1000','121677361545','2023-02-26 01:04:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27734,'4000','121677361545','2023-02-26 01:04:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27735,'1110','121677363885','2023-02-26 01:25:06',NULL,631.00,'','12','1','Inventory sold','1','','sales','8908006354993','','No',NULL,NULL,''),(27736,'1110','121677363885','2023-02-26 01:25:06',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(27737,'5500','121677363885','2023-02-26 01:25:06',761.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27738,'1000','121677363885','2023-02-26 01:25:06',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27739,'4000','121677363885','2023-02-26 01:25:06',NULL,900.00,'','12','1','Good sold','1','','sales','8908006354993','','No',NULL,NULL,''),(27740,'4000','121677363885','2023-02-26 01:25:06',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(27741,'1110','121677363965','2023-02-26 02:12:53',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27742,'5500','121677363965','2023-02-26 02:12:53',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27743,'1000','121677363965','2023-02-26 02:12:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27744,'4000','121677363965','2023-02-26 02:12:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27745,'1110','121677366781','2023-02-26 03:18:24',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27746,'5500','121677366781','2023-02-26 03:18:24',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27747,'1000','121677366781','2023-02-26 03:18:24',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27748,'4000','121677366781','2023-02-26 03:18:24',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27749,'1110','121677370793','2023-02-26 03:20:15',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27750,'5500','121677370793','2023-02-26 03:20:15',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27751,'1000','121677370793','2023-02-26 03:20:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27752,'4000','121677370793','2023-02-26 03:20:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27753,'1110','121677370822','2023-02-26 03:29:01',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(27754,'1110','121677370822','2023-02-26 03:29:01',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27755,'5500','121677370822','2023-02-26 03:29:01',748.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27756,'1000','121677370822','2023-02-26 03:29:01',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27757,'4000','121677370822','2023-02-26 03:29:01',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(27758,'4000','121677370822','2023-02-26 03:29:01',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27759,'1110','121677371413','2023-02-26 03:53:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27760,'1110','121677371413','2023-02-26 03:53:33',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27761,'5500','121677371413','2023-02-26 03:53:33',81.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27762,'1000','121677371413','2023-02-26 03:53:33',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27763,'4000','121677371413','2023-02-26 03:53:33',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27764,'4000','121677371413','2023-02-26 03:53:33',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27765,'1110','121677372822','2023-02-26 04:01:19',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27766,'5500','121677372822','2023-02-26 04:01:19',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27767,'1000','121677372822','2023-02-26 04:01:19',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27768,'4000','121677372822','2023-02-26 04:01:19',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27769,'1110','121677373400','2023-02-26 04:14:44',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27770,'1110','121677373400','2023-02-26 04:14:44',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27771,'1110','121677373400','2023-02-26 04:14:44',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(27772,'5500','121677373400','2023-02-26 04:14:44',1363.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27773,'1000','121677373400','2023-02-26 04:14:44',2240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27774,'4000','121677373400','2023-02-26 04:14:44',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27775,'4000','121677373400','2023-02-26 04:14:44',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27776,'4000','121677373400','2023-02-26 04:14:44',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(27777,'1110','121677374169','2023-02-26 04:22:35',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27778,'1110','121677374169','2023-02-26 04:22:35',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(27779,'1110','121677374169','2023-02-26 04:22:35',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27780,'5500','121677374169','2023-02-26 04:22:35',1268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27781,'1000','121677374169','2023-02-26 04:22:35',2020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27782,'4000','121677374169','2023-02-26 04:22:35',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27783,'4000','121677374169','2023-02-26 04:22:35',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(27784,'4000','121677374169','2023-02-26 04:22:35',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27785,'1110','121677374884','2023-02-26 04:44:01',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27786,'1110','121677374884','2023-02-26 04:44:01',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27787,'1110','121677374884','2023-02-26 04:44:01',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27788,'5500','121677374884','2023-02-26 04:44:01',925.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27789,'1000','121677374884','2023-02-26 04:44:01',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27790,'4000','121677374884','2023-02-26 04:44:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27791,'4000','121677374884','2023-02-26 04:44:01',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27792,'4000','121677374884','2023-02-26 04:44:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27793,'1110','121677378459','2023-02-26 05:27:48',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(27794,'5500','121677378459','2023-02-26 05:27:48',268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27795,'1000','121677378459','2023-02-26 05:27:48',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27796,'4000','121677378459','2023-02-26 05:27:48',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(27797,'1110','121677380130','2023-02-26 05:55:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27798,'5500','121677380130','2023-02-26 05:55:43',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27799,'1000','121677380130','2023-02-26 05:55:43',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27800,'4000','121677380130','2023-02-26 05:55:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27801,'1110','121677391516','2023-02-26 09:05:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27802,'5500','121677391516','2023-02-26 09:05:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27803,'1000','121677391516','2023-02-26 09:05:26',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27804,'4000','121677391516','2023-02-26 09:05:26',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27805,'1110','121677391532','2023-02-26 09:10:19',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27806,'5500','121677391532','2023-02-26 09:10:19',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27807,'1000','121677391532','2023-02-26 09:10:19',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27808,'4000','121677391532','2023-02-26 09:10:19',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27811,'1000','121677391824','2023-02-26 09:14:39',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27813,'1110','121677391824','2023-02-26 09:14:39',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(27814,'5500','121677391824','2023-02-26 09:29:27',244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27815,'1000','121677391824','2023-02-26 09:14:39',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27816,'4000','121677391824','2023-02-26 09:14:39',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(27817,'1110','121677393024','2023-02-26 09:50:27',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(27818,'5500','121677393024','2023-02-26 09:50:27',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27819,'1000','121677393024','2023-02-26 09:50:27',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27820,'4000','121677393024','2023-02-26 09:50:27',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(27821,'1110','121677394237','2023-02-26 11:40:20',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27822,'5500','121677394237','2023-02-26 11:40:20',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27823,'1000','121677394237','2023-02-26 11:40:20',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27824,'4000','121677394237','2023-02-26 11:40:20',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27825,'1110','121677403068','2023-02-26 13:26:42',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27826,'1110','121677403068','2023-02-26 13:26:42',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27827,'5500','121677403068','2023-02-26 13:26:42',1201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27828,'1000','121677403068','2023-02-26 13:26:42',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27829,'4000','121677403068','2023-02-26 13:26:42',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27830,'4000','121677403068','2023-02-26 13:26:42',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(27831,'1110','121677407342','2023-02-26 13:32:09',NULL,244.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(27832,'5500','121677407342','2023-02-26 13:32:09',244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27833,'1000','121677407342','2023-02-26 13:32:09',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27834,'4000','121677407342','2023-02-26 13:32:09',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(27835,'1110','121677407554','2023-02-26 14:16:03',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27836,'5500','121677407554','2023-02-26 14:16:03',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27837,'1000','121677407554','2023-02-26 14:16:03',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27838,'4000','121677407554','2023-02-26 14:16:03',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27839,'1110','121677418124','2023-02-26 16:33:02',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27840,'5500','121677418124','2023-02-26 16:33:02',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27841,'1000','121677418124','2023-02-26 16:33:02',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27842,'4000','121677418124','2023-02-26 16:33:02',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(27843,'1110','121677418621','2023-02-26 17:05:19',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27844,'5500','121677418621','2023-02-26 17:05:19',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27845,'1000','121677418621','2023-02-26 17:05:19',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27846,'4000','121677418621','2023-02-26 17:05:19',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27847,'1110','121677420329','2023-02-26 17:51:56',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27848,'1110','121677420329','2023-02-26 17:51:56',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27849,'1110','121677420329','2023-02-26 17:51:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27850,'5500','121677420329','2023-02-26 17:51:56',872.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27851,'1000','121677420329','2023-02-26 17:51:56',1270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27852,'4000','121677420329','2023-02-26 17:51:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27853,'4000','121677420329','2023-02-26 17:51:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27854,'4000','121677420329','2023-02-26 17:51:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27855,'1110','121677423123','2023-02-26 18:42:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(27856,'5500','121677423123','2023-02-26 18:42:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27857,'1000','121677423123','2023-02-26 18:42:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27858,'4000','121677423123','2023-02-26 18:42:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(27859,'1110','121677426167','2023-02-26 19:30:02',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27860,'5500','121677426167','2023-02-26 19:30:02',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27861,'1000','121677426167','2023-02-26 19:30:02',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27862,'4000','121677426167','2023-02-26 19:30:02',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27863,'1110','121677429013','2023-02-26 19:31:06',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(27864,'1110','121677429013','2023-02-26 19:31:06',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27865,'1110','121677429013','2023-02-26 19:31:06',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27866,'1110','121677429013','2023-02-26 19:31:06',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27867,'1110','121677429013','2023-02-26 19:31:06',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27868,'5500','121677429013','2023-02-26 19:31:06',1870.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27869,'1000','121677429013','2023-02-26 19:31:06',3050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27870,'4000','121677429013','2023-02-26 19:31:06',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(27871,'4000','121677429013','2023-02-26 19:31:06',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(27872,'4000','121677429013','2023-02-26 19:31:06',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(27873,'4000','121677429013','2023-02-26 19:31:06',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27874,'4000','121677429013','2023-02-26 19:31:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27875,'1110','121677429826','2023-02-26 19:57:07',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27876,'1110','121677429826','2023-02-26 19:57:07',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27877,'5500','121677429826','2023-02-26 19:57:07',330.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27878,'1000','121677429826','2023-02-26 19:57:07',560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27879,'4000','121677429826','2023-02-26 19:57:07',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(27880,'4000','121677429826','2023-02-26 19:57:07',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27881,'1110','121677430742','2023-02-26 20:09:46',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27882,'5500','121677430742','2023-02-26 20:09:46',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27883,'1000','121677430742','2023-02-26 20:09:46',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27884,'4000','121677430742','2023-02-26 20:09:46',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27885,'1110','121677437980','2023-02-26 22:19:58',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27886,'5500','121677437980','2023-02-26 22:19:58',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27887,'1000','121677437980','2023-02-26 22:19:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27888,'4000','121677437980','2023-02-26 22:19:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(27889,'1110','121677439205','2023-02-26 22:20:52',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27890,'5500','121677439205','2023-02-26 22:20:52',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27891,'1000','121677439205','2023-02-26 22:20:52',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27892,'4000','121677439205','2023-02-26 22:20:52',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27893,'1110','121677440870','2023-02-26 22:57:49',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27894,'1110','121677440870','2023-02-26 22:57:49',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(27895,'5500','121677440870','2023-02-26 22:57:49',525.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27896,'1000','121677440870','2023-02-26 22:57:49',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27897,'4000','121677440870','2023-02-26 22:57:49',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(27898,'4000','121677440870','2023-02-26 22:57:49',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(27899,'1110','121677445187','2023-02-27 00:00:29',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27900,'1110','121677445187','2023-02-27 00:00:29',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27901,'5500','121677445187','2023-02-27 00:00:29',372.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27902,'1000','121677445187','2023-02-27 00:00:29',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27903,'4000','121677445187','2023-02-27 00:00:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27904,'4000','121677445187','2023-02-27 00:00:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(27905,'1110','121677445237','2023-02-27 00:54:24',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27906,'5500','121677445237','2023-02-27 00:54:24',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27907,'1000','121677445237','2023-02-27 00:54:24',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27908,'4000','121677445237','2023-02-27 00:54:24',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(27909,'1110','121677461446','2023-02-27 04:31:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27910,'1110','121677461446','2023-02-27 04:31:21',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27911,'5500','121677461446','2023-02-27 04:31:21',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27912,'1000','121677461446','2023-02-27 04:31:21',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27913,'4000','121677461446','2023-02-27 04:31:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27914,'4000','121677461446','2023-02-27 04:31:21',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27915,'1110','121677461486','2023-02-27 04:31:47',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27916,'5500','121677461486','2023-02-27 04:31:47',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27917,'1000','121677461486','2023-02-27 04:31:47',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27918,'4000','121677461486','2023-02-27 04:31:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27919,'1110','121677461907','2023-02-27 04:39:16',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27920,'5500','121677461907','2023-02-27 04:39:16',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27921,'1000','121677461907','2023-02-27 04:39:16',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27922,'4000','121677461907','2023-02-27 04:39:16',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(27923,'1110','121677490483','2023-02-27 12:34:54',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27924,'5500','121677490483','2023-02-27 12:34:54',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27925,'1000','121677490483','2023-02-27 12:34:54',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27926,'4000','121677490483','2023-02-27 12:34:54',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27927,'1110','121677506111','2023-02-27 16:55:30',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27928,'5500','121677506111','2023-02-27 16:55:30',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27929,'1000','121677506111','2023-02-27 16:55:30',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27930,'4000','121677506111','2023-02-27 16:55:30',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27931,'1110','121677506134','2023-02-27 18:00:51',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(27932,'1110','121677506134','2023-02-27 18:00:51',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27933,'1110','121677506134','2023-02-27 18:00:51',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27934,'5500','121677506134','2023-02-27 18:00:51',1802.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27935,'1000','121677506134','2023-02-27 18:00:51',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27936,'4000','121677506134','2023-02-27 18:00:51',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(27937,'4000','121677506134','2023-02-27 18:00:51',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(27938,'4000','121677506134','2023-02-27 18:00:51',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27939,'1110','121677510153','2023-02-27 18:20:07',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27940,'1110','121677510153','2023-02-27 18:20:07',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(27941,'1110','121677510153','2023-02-27 18:20:07',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27942,'5500','121677510153','2023-02-27 18:20:07',1210.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27943,'1000','121677510153','2023-02-27 18:20:07',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27944,'4000','121677510153','2023-02-27 18:20:07',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27945,'4000','121677510153','2023-02-27 18:20:07',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(27946,'4000','121677510153','2023-02-27 18:20:07',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27947,'1110','121677511318','2023-02-27 18:22:17',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27948,'5500','121677511318','2023-02-27 18:22:17',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27949,'1000','121677511318','2023-02-27 18:22:17',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27950,'4000','121677511318','2023-02-27 18:22:17',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27951,'1110','121677511557','2023-02-27 18:28:32',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(27952,'1110','121677511557','2023-02-27 18:28:32',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27953,'5500','121677511557','2023-02-27 18:28:32',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27954,'1000','121677511557','2023-02-27 18:28:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27955,'4000','121677511557','2023-02-27 18:28:32',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(27956,'4000','121677511557','2023-02-27 18:28:32',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(27957,'1110','121677511729','2023-02-27 19:04:18',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27958,'1110','121677511729','2023-02-27 19:04:18',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27959,'5500','121677511729','2023-02-27 19:04:18',536.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27960,'1000','121677511729','2023-02-27 19:04:18',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27961,'4000','121677511729','2023-02-27 19:04:18',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(27962,'4000','121677511729','2023-02-27 19:04:18',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(27963,'1110','121677513897','2023-02-27 20:06:42',NULL,5685.00,'','12','1','Inventory sold','1','','sales','5000267107776','','No',NULL,NULL,''),(27964,'1110','121677513897','2023-02-27 20:06:42',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(27965,'5500','121677513897','2023-02-27 20:06:42',5791.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27966,'1000','121677513897','2023-02-27 20:06:42',7840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27967,'4000','121677513897','2023-02-27 20:06:42',NULL,7700.00,'','12','1','Good sold','1','','sales','5000267107776','','No',NULL,NULL,''),(27968,'4000','121677513897','2023-02-27 20:06:42',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(27969,'1110','121677517639','2023-02-27 20:12:31',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27970,'1110','121677517639','2023-02-27 20:12:31',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27971,'5500','121677517639','2023-02-27 20:12:31',1087.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27972,'1000','121677517639','2023-02-27 20:12:31',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27973,'4000','121677517639','2023-02-27 20:12:31',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(27974,'4000','121677517639','2023-02-27 20:12:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(27975,'1110','121677518237','2023-02-27 20:26:03',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27976,'5500','121677518237','2023-02-27 20:26:03',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27977,'1000','121677518237','2023-02-27 20:26:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27978,'4000','121677518237','2023-02-27 20:26:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27979,'1110','121677520468','2023-02-27 20:58:25',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27980,'1110','121677520468','2023-02-27 20:58:25',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27981,'5500','121677520468','2023-02-27 20:58:25',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27982,'1000','121677520468','2023-02-27 20:58:25',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27983,'4000','121677520468','2023-02-27 20:58:25',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27984,'4000','121677520468','2023-02-27 20:58:25',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(27985,'1110','121677520738','2023-02-27 20:59:11',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27986,'5500','121677520738','2023-02-27 20:59:11',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27987,'1000','121677520738','2023-02-27 20:59:11',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27988,'4000','121677520738','2023-02-27 20:59:11',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(27989,'1110','121677520756','2023-02-27 21:09:02',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27990,'5500','121677520756','2023-02-27 21:09:02',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27991,'1000','121677520756','2023-02-27 21:09:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27992,'4000','121677520756','2023-02-27 21:09:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(27993,'1110','121677521353','2023-02-27 21:32:46',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27994,'5500','121677521353','2023-02-27 21:32:46',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27995,'1000','121677521353','2023-02-27 21:32:46',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(27996,'4000','121677521353','2023-02-27 21:32:46',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(27997,'1110','121677528666','2023-02-27 23:12:06',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(27998,'5500','121677528666','2023-02-27 23:12:06',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(27999,'1000','121677528666','2023-02-27 23:12:06',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28000,'4000','121677528666','2023-02-27 23:12:06',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28001,'1110','121677528969','2023-02-27 23:16:20',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28002,'5500','121677528969','2023-02-27 23:16:20',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28003,'1000','121677528969','2023-02-27 23:16:20',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28004,'4000','121677528969','2023-02-27 23:16:20',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28005,'1110','121677547386','2023-02-28 04:30:08',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(28006,'1110','121677547386','2023-02-28 04:30:08',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28007,'1110','121677547386','2023-02-28 04:30:08',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28008,'1110','121677547386','2023-02-28 04:30:08',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886000277','','No',NULL,NULL,''),(28009,'1110','121677547386','2023-02-28 04:30:08',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28010,'5500','121677547386','2023-02-28 04:30:08',2605.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28011,'1000','121677547386','2023-02-28 04:30:08',4200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28012,'4000','121677547386','2023-02-28 04:30:08',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(28013,'4000','121677547386','2023-02-28 04:30:08',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28014,'4000','121677547386','2023-02-28 04:30:08',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28015,'4000','121677547386','2023-02-28 04:30:08',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886000277','','No',NULL,NULL,''),(28016,'4000','121677547386','2023-02-28 04:30:08',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28017,'1110','121677547830','2023-02-28 05:41:59',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28018,'5500','121677547830','2023-02-28 05:41:59',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28019,'1000','121677547830','2023-02-28 05:41:59',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28020,'4000','121677547830','2023-02-28 05:41:59',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28021,'1110','121677571821','2023-02-28 12:12:52',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886000277','','No',NULL,NULL,''),(28022,'5500','121677571821','2023-02-28 12:12:52',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28023,'1000','121677571821','2023-02-28 12:12:52',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28024,'4000','121677571821','2023-02-28 12:12:52',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886000277','','No',NULL,NULL,''),(28025,'1110','121677576117','2023-02-28 12:23:37',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(28026,'1110','121677576117','2023-02-28 12:23:37',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28027,'1110','121677576117','2023-02-28 12:23:37',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28028,'1110','121677576117','2023-02-28 12:23:37',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28029,'5500','121677576117','2023-02-28 12:23:37',2066.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28030,'1000','121677576117','2023-02-28 12:23:37',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28031,'4000','121677576117','2023-02-28 12:23:37',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(28032,'4000','121677576117','2023-02-28 12:23:37',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28033,'4000','121677576117','2023-02-28 12:23:37',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28034,'4000','121677576117','2023-02-28 12:23:37',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28035,'1110','121677585814','2023-02-28 16:00:16',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28036,'5500','121677585814','2023-02-28 16:00:16',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28037,'1000','121677585814','2023-02-28 16:00:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28038,'4000','121677585814','2023-02-28 16:00:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28039,'1110','121677589244','2023-02-28 17:29:56',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28040,'5500','121677589244','2023-02-28 17:29:56',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28041,'1000','121677589244','2023-02-28 17:29:56',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28042,'4000','121677589244','2023-02-28 17:29:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28043,'1110','121677595951','2023-02-28 18:11:51',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28044,'1110','121677595951','2023-02-28 18:11:51',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28045,'5500','121677595951','2023-02-28 18:11:51',561.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28046,'1000','121677595951','2023-02-28 18:11:51',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28047,'4000','121677595951','2023-02-28 18:11:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28048,'4000','121677595951','2023-02-28 18:11:51',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28049,'1110','121677597230','2023-02-28 19:27:23',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28050,'1110','121677597230','2023-02-28 19:27:23',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28051,'1110','121677597230','2023-02-28 19:27:23',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28052,'5500','121677597230','2023-02-28 19:27:23',536.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28053,'1000','121677597230','2023-02-28 19:27:23',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28054,'4000','121677597230','2023-02-28 19:27:23',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28055,'4000','121677597230','2023-02-28 19:27:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28056,'4000','121677597230','2023-02-28 19:27:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28057,'1110','121677604977','2023-02-28 20:23:12',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28058,'5500','121677604977','2023-02-28 20:23:12',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28059,'1000','121677604977','2023-02-28 20:23:12',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28060,'4000','121677604977','2023-02-28 20:23:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28061,'1110','121677604997','2023-02-28 21:20:44',NULL,1176.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(28062,'1110','121677604997','2023-02-28 21:20:44',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28063,'1110','121677604997','2023-02-28 21:20:44',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28064,'5500','121677604997','2023-02-28 21:20:44',1317.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28065,'1000','121677604997','2023-02-28 21:20:44',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28066,'4000','121677604997','2023-02-28 21:20:44',NULL,1650.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(28067,'4000','121677604997','2023-02-28 21:20:44',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28068,'4000','121677604997','2023-02-28 21:20:44',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28069,'1110','121677609487','2023-02-28 22:25:03',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(28070,'5500','121677609487','2023-02-28 22:25:03',290.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28071,'1000','121677609487','2023-02-28 22:25:03',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28072,'4000','121677609487','2023-02-28 22:25:03',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(28073,'1110','121677615429','2023-02-28 23:17:45',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28074,'1110','121677615429','2023-02-28 23:17:45',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28075,'5500','121677615429','2023-02-28 23:17:45',745.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28076,'1000','121677615429','2023-02-28 23:17:45',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28077,'4000','121677615429','2023-02-28 23:17:45',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28078,'4000','121677615429','2023-02-28 23:17:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28079,'1110','121677615475','2023-02-28 23:29:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28080,'1110','121677615475','2023-02-28 23:29:10',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(28081,'5500','121677615475','2023-02-28 23:29:10',238.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28082,'1000','121677615475','2023-02-28 23:29:10',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28083,'4000','121677615475','2023-02-28 23:29:10',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28084,'4000','121677615475','2023-02-28 23:29:10',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(28085,'1110','121677616157','2023-02-28 23:53:07',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28086,'5500','121677616157','2023-02-28 23:53:07',518.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28087,'1000','121677616157','2023-02-28 23:53:07',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28088,'4000','121677616157','2023-02-28 23:53:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28089,'1110','121677617658','2023-03-01 00:29:11',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28090,'1110','121677617658','2023-03-01 00:29:11',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28091,'5500','121677617658','2023-03-01 00:29:11',692.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28092,'1000','121677617658','2023-03-01 00:29:11',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28093,'4000','121677617658','2023-03-01 00:29:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28094,'4000','121677617658','2023-03-01 00:29:11',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28095,'1110','121677619782','2023-03-01 01:01:15',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28096,'5500','121677619782','2023-03-01 01:01:15',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28097,'1000','121677619782','2023-03-01 01:01:15',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28098,'4000','121677619782','2023-03-01 01:01:15',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28099,'1110','121677621689','2023-03-01 01:22:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28100,'5500','121677621689','2023-03-01 01:22:01',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28101,'1000','121677621689','2023-03-01 01:22:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28102,'4000','121677621689','2023-03-01 01:22:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28103,'1110','121677622927','2023-03-01 02:17:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28104,'1110','121677622927','2023-03-01 02:17:13',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28105,'5500','121677622927','2023-03-01 02:17:13',328.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28106,'1000','121677622927','2023-03-01 02:17:13',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28107,'4000','121677622927','2023-03-01 02:17:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28108,'4000','121677622927','2023-03-01 02:17:13',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28109,'1110','121677626267','2023-03-01 03:13:42',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(28110,'5500','121677626267','2023-03-01 03:13:42',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28111,'1000','121677626267','2023-03-01 03:13:42',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28112,'4000','121677626267','2023-03-01 03:13:42',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(28113,'1110','121677639509','2023-03-01 06:00:21',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(28114,'1110','121677639509','2023-03-01 06:00:21',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28115,'1110','121677639509','2023-03-01 06:00:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28116,'1110','121677639509','2023-03-01 06:00:21',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28117,'5500','121677639509','2023-03-01 06:00:21',265.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28118,'1000','121677639509','2023-03-01 06:00:21',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28119,'4000','121677639509','2023-03-01 06:00:21',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(28120,'4000','121677639509','2023-03-01 06:00:21',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28121,'4000','121677639509','2023-03-01 06:00:21',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28122,'4000','121677639509','2023-03-01 06:00:21',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28123,'1110','121677672392','2023-03-01 16:00:21',NULL,225.00,'','12','1','Inventory sold','1','','sales','8719327068540','','No',NULL,NULL,''),(28124,'5500','121677672392','2023-03-01 16:00:21',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28125,'1000','121677672392','2023-03-01 16:00:21',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28126,'4000','121677672392','2023-03-01 16:00:21',NULL,300.00,'','12','1','Good sold','1','','sales','8719327068540','','No',NULL,NULL,''),(28127,'1110','121677675636','2023-03-01 17:24:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28128,'5500','121677675636','2023-03-01 17:24:51',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28129,'1000','121677675636','2023-03-01 17:24:51',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28130,'4000','121677675636','2023-03-01 17:24:51',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28131,'1110','121677691769','2023-03-01 21:48:08',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28132,'5500','121677691769','2023-03-01 21:48:08',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28133,'1000','121677691769','2023-03-01 21:48:08',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28134,'4000','121677691769','2023-03-01 21:48:08',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28135,'1110','121677696495','2023-03-01 21:48:42',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28136,'5500','121677696495','2023-03-01 21:48:42',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28137,'1000','121677696495','2023-03-01 21:48:42',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28138,'4000','121677696495','2023-03-01 21:48:42',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28139,'1110','121677696528','2023-03-01 21:49:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28140,'5500','121677696528','2023-03-01 21:49:00',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28141,'1000','121677696528','2023-03-01 21:49:00',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28142,'4000','121677696528','2023-03-01 21:49:00',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28143,'1110','121677696546','2023-03-01 21:50:13',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(28144,'5500','121677696546','2023-03-01 21:50:13',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28145,'1000','121677696546','2023-03-01 21:50:13',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28146,'4000','121677696546','2023-03-01 21:50:13',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(28147,'1110','121677696618','2023-03-01 22:21:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28148,'5500','121677696618','2023-03-01 22:21:41',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28149,'1000','121677696618','2023-03-01 22:21:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28150,'4000','121677696618','2023-03-01 22:21:41',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28151,'1110','121677704025','2023-03-01 23:53:56',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28152,'5500','121677704025','2023-03-01 23:53:56',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28153,'1000','121677704025','2023-03-01 23:53:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28154,'4000','121677704025','2023-03-01 23:53:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28155,'1110','121677704044','2023-03-01 23:54:34',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28156,'1110','121677704044','2023-03-01 23:54:34',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28157,'5500','121677704044','2023-03-01 23:54:34',348.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28158,'1000','121677704044','2023-03-01 23:54:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28159,'4000','121677704044','2023-03-01 23:54:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28160,'4000','121677704044','2023-03-01 23:54:34',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28161,'1110','121677706848','2023-03-02 00:41:08',NULL,80.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28162,'5500','121677706848','2023-03-02 00:41:08',80.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28163,'1000','121677706848','2023-03-02 00:41:08',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28164,'4000','121677706848','2023-03-02 00:41:08',NULL,240.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28165,'1110','121677706882','2023-03-02 00:59:52',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28166,'5500','121677706882','2023-03-02 00:59:52',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28167,'1000','121677706882','2023-03-02 00:59:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28168,'4000','121677706882','2023-03-02 00:59:52',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28169,'1110','121677715591','2023-03-02 03:06:59',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28170,'5500','121677715591','2023-03-02 03:06:59',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28171,'1000','121677715591','2023-03-02 03:06:59',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28172,'4000','121677715591','2023-03-02 03:06:59',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28173,'1110','121677742503','2023-03-02 10:35:57',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28174,'5500','121677742503','2023-03-02 10:35:57',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28175,'1000','121677742503','2023-03-02 10:35:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28176,'4000','121677742503','2023-03-02 10:35:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28177,'1110','121677742564','2023-03-02 10:36:21',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28178,'5500','121677742564','2023-03-02 10:36:21',40.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28179,'1000','121677742564','2023-03-02 10:36:21',120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28180,'4000','121677742564','2023-03-02 10:36:21',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28181,'1110','121677758364','2023-03-02 15:04:50',NULL,1200.00,'','12','1','Inventory sold','1','','sales','7804320301174','','No',NULL,NULL,''),(28182,'1110','121677758364','2023-03-02 15:04:50',NULL,1055.00,'','12','1','Inventory sold','1','','sales','9300727508287','','No',NULL,NULL,''),(28183,'1110','121677758364','2023-03-02 15:04:50',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28184,'1110','121677758364','2023-03-02 15:04:50',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28185,'1110','121677758364','2023-03-02 15:04:50',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28186,'1110','121677758364','2023-03-02 15:04:50',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28187,'5500','121677758364','2023-03-02 15:04:50',4229.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28188,'1000','121677758364','2023-03-02 15:04:50',6750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28189,'4000','121677758364','2023-03-02 15:04:50',NULL,2000.00,'','12','1','Good sold','1','','sales','7804320301174','','No',NULL,NULL,''),(28190,'4000','121677758364','2023-03-02 15:04:50',NULL,1800.00,'','12','1','Good sold','1','','sales','9300727508287','','No',NULL,NULL,''),(28191,'4000','121677758364','2023-03-02 15:04:50',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28192,'4000','121677758364','2023-03-02 15:04:50',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28193,'4000','121677758364','2023-03-02 15:04:50',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28194,'4000','121677758364','2023-03-02 15:04:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28195,'1110','121677768866','2023-03-02 17:55:58',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28196,'5500','121677768866','2023-03-02 17:55:58',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28197,'1000','121677768866','2023-03-02 17:55:58',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28198,'4000','121677768866','2023-03-02 17:55:58',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28199,'1110','121677768965','2023-03-02 17:56:33',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28200,'5500','121677768965','2023-03-02 17:56:33',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28201,'1000','121677768965','2023-03-02 17:56:33',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28202,'4000','121677768965','2023-03-02 17:56:33',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28203,'1110','121677769003','2023-03-02 19:13:47',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28204,'5500','121677769003','2023-03-02 19:13:47',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28205,'1000','121677769003','2023-03-02 19:13:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28206,'4000','121677769003','2023-03-02 19:13:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28207,'1110','121677773711','2023-03-02 20:15:53',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28208,'5500','121677773711','2023-03-02 20:15:53',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28209,'1000','121677773711','2023-03-02 20:15:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28210,'4000','121677773711','2023-03-02 20:15:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28211,'1110','121677777368','2023-03-02 20:26:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28212,'5500','121677777368','2023-03-02 20:26:47',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28213,'1000','121677777368','2023-03-02 20:26:47',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28214,'4000','121677777368','2023-03-02 20:26:47',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28215,'1110','121677779832','2023-03-02 20:58:26',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28216,'1110','121677779832','2023-03-02 20:58:26',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28217,'5500','121677779832','2023-03-02 20:58:26',383.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28218,'1000','121677779832','2023-03-02 20:58:26',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28219,'4000','121677779832','2023-03-02 20:58:26',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28220,'4000','121677779832','2023-03-02 20:58:26',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28221,'1110','121677779914','2023-03-02 21:28:40',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(28222,'1110','121677779914','2023-03-02 21:28:40',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(28223,'5500','121677779914','2023-03-02 21:28:40',405.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28224,'1000','121677779914','2023-03-02 21:28:40',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28225,'4000','121677779914','2023-03-02 21:28:40',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(28226,'4000','121677779914','2023-03-02 21:28:40',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(28227,'1110','121677782226','2023-03-02 21:38:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28228,'5500','121677782226','2023-03-02 21:38:02',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28229,'1000','121677782226','2023-03-02 21:38:02',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28230,'4000','121677782226','2023-03-02 21:38:02',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28231,'1110','121677782304','2023-03-02 23:31:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28232,'5500','121677782304','2023-03-02 23:31:27',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28233,'1000','121677782304','2023-03-02 23:31:27',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28234,'4000','121677782304','2023-03-02 23:31:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28235,'1110','121677789643','2023-03-02 23:42:45',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28236,'5500','121677789643','2023-03-02 23:42:45',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28237,'1000','121677789643','2023-03-02 23:42:45',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28238,'4000','121677789643','2023-03-02 23:42:45',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28239,'1110','121677796267','2023-03-03 01:31:37',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(28240,'5500','121677796267','2023-03-03 01:31:37',922.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28241,'1000','121677796267','2023-03-03 01:31:37',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28242,'4000','121677796267','2023-03-03 01:31:37',NULL,1500.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(28243,'1110','121677817213','2023-03-03 07:30:57',NULL,7531.00,'','12','1','Inventory sold','1','','sales','5000267165806','','No',NULL,NULL,''),(28244,'5500','121677817213','2023-03-03 07:30:57',7531.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28245,'1000','121677817213','2023-03-03 07:30:57',10000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28246,'4000','121677817213','2023-03-03 07:30:57',NULL,10000.00,'','12','1','Good sold','1','','sales','5000267165806','','No',NULL,NULL,''),(28247,'1110','121677826758','2023-03-03 11:41:15',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28248,'1110','121677826758','2023-03-03 11:41:15',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28249,'1110','121677826758','2023-03-03 11:41:15',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28250,'5500','121677826758','2023-03-03 11:41:15',311.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28251,'1000','121677826758','2023-03-03 11:41:15',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28252,'4000','121677826758','2023-03-03 11:41:15',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28253,'4000','121677826758','2023-03-03 11:41:15',NULL,300.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28254,'4000','121677826758','2023-03-03 11:41:15',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28255,'1110','121677843123','2023-03-03 14:34:54',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28256,'1110','121677843123','2023-03-03 14:34:54',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28257,'5500','121677843123','2023-03-03 14:34:54',655.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28258,'1000','121677843123','2023-03-03 14:34:54',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28259,'4000','121677843123','2023-03-03 14:34:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28260,'4000','121677843123','2023-03-03 14:34:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28261,'1110','121677843436','2023-03-03 16:10:30',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28262,'1110','121677843436','2023-03-03 16:10:30',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(28263,'5500','121677843436','2023-03-03 16:10:30',756.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28264,'1000','121677843436','2023-03-03 16:10:30',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28265,'4000','121677843436','2023-03-03 16:10:30',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28266,'4000','121677843436','2023-03-03 16:10:30',NULL,1100.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(28267,'1110','121677866246','2023-03-03 20:58:16',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(28268,'5500','121677866246','2023-03-03 20:58:16',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28269,'1000','121677866246','2023-03-03 20:58:16',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28270,'4000','121677866246','2023-03-03 20:58:16',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(28271,'1110','121677866307','2023-03-03 21:18:49',NULL,4450.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(28272,'1110','121677866307','2023-03-03 21:18:49',NULL,372.90,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28273,'5500','121677866307','2023-03-03 21:18:49',4822.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28274,'1000','121677866307','2023-03-03 21:18:49',7250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28275,'4000','121677866307','2023-03-03 21:18:49',NULL,6500.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(28276,'4000','121677866307','2023-03-03 21:18:49',NULL,750.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28277,'1110','121677867608','2023-03-03 22:10:22',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(28278,'1110','121677867608','2023-03-03 22:10:22',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28279,'1110','121677867608','2023-03-03 22:10:22',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(28280,'5500','121677867608','2023-03-03 22:10:22',498.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28281,'1000','121677867608','2023-03-03 22:10:22',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28282,'4000','121677867608','2023-03-03 22:10:22',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(28283,'4000','121677867608','2023-03-03 22:10:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28284,'4000','121677867608','2023-03-03 22:10:22',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(28285,'1110','121677870917','2023-03-03 23:49:23',NULL,6250.00,'','12','1','Inventory sold','1','','sales','5000281026626','','No',NULL,NULL,''),(28286,'1110','121677870917','2023-03-03 23:49:23',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28287,'1110','121677870917','2023-03-03 23:49:23',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28288,'1110','121677870917','2023-03-03 23:49:23',NULL,441.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28289,'1110','121677870917','2023-03-03 23:49:23',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28290,'1110','121677870917','2023-03-03 23:49:23',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28291,'5500','121677870917','2023-03-03 23:49:23',7348.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28292,'1000','121677870917','2023-03-03 23:49:23',10610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28293,'4000','121677870917','2023-03-03 23:49:23',NULL,8800.00,'','12','1','Good sold','1','','sales','5000281026626','','No',NULL,NULL,''),(28294,'4000','121677870917','2023-03-03 23:49:23',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28295,'4000','121677870917','2023-03-03 23:49:23',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28296,'4000','121677870917','2023-03-03 23:49:23',NULL,750.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28297,'4000','121677870917','2023-03-03 23:49:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28298,'4000','121677870917','2023-03-03 23:49:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28299,'1110','121677876576','2023-03-04 00:22:54',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(28300,'5500','121677876576','2023-03-04 00:22:54',1670.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28301,'1000','121677876576','2023-03-04 00:22:54',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28302,'4000','121677876576','2023-03-04 00:22:54',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(28303,'1110','121677878581','2023-03-04 00:49:20',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28304,'5500','121677878581','2023-03-04 00:49:20',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28305,'1000','121677878581','2023-03-04 00:49:20',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28306,'4000','121677878581','2023-03-04 00:49:20',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28307,'1110','121677880198','2023-03-04 01:45:55',NULL,631.00,'','12','1','Inventory sold','1','','sales','8908006354993','','No',NULL,NULL,''),(28308,'1110','121677880198','2023-03-04 01:45:55',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28309,'5500','121677880198','2023-03-04 01:45:55',734.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28310,'1000','121677880198','2023-03-04 01:45:55',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28311,'4000','121677880198','2023-03-04 01:45:55',NULL,900.00,'','12','1','Good sold','1','','sales','8908006354993','','No',NULL,NULL,''),(28312,'4000','121677880198','2023-03-04 01:45:55',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28313,'1110','121677883564','2023-03-04 02:08:12',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28314,'1110','121677883564','2023-03-04 02:08:12',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28315,'1110','121677883564','2023-03-04 02:08:12',NULL,544.00,'','12','1','Inventory sold','1','','sales','5052197004281','','No',NULL,NULL,''),(28316,'5500','121677883564','2023-03-04 02:08:12',685.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28317,'1000','121677883564','2023-03-04 02:08:12',1450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28318,'4000','121677883564','2023-03-04 02:08:12',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28319,'4000','121677883564','2023-03-04 02:08:12',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28320,'4000','121677883564','2023-03-04 02:08:12',NULL,1200.00,'','12','1','Good sold','1','','sales','5052197004281','','No',NULL,NULL,''),(28321,'1110','121677885035','2023-03-04 02:59:05',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28322,'5500','121677885035','2023-03-04 02:59:05',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28323,'1000','121677885035','2023-03-04 02:59:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28324,'4000','121677885035','2023-03-04 02:59:05',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28325,'1110','121677887961','2023-03-04 03:55:37',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28326,'5500','121677887961','2023-03-04 03:55:37',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28327,'1000','121677887961','2023-03-04 03:55:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28328,'4000','121677887961','2023-03-04 03:55:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28329,'1110','121677891347','2023-03-04 03:56:12',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28330,'5500','121677891347','2023-03-04 03:56:12',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28331,'1000','121677891347','2023-03-04 03:56:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28332,'4000','121677891347','2023-03-04 03:56:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28333,'1110','121677891379','2023-03-04 04:39:52',NULL,829.00,'','12','1','Inventory sold','1','','sales','6161100421356','','No',NULL,NULL,''),(28334,'1110','121677891379','2023-03-04 04:39:52',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28335,'5500','121677891379','2023-03-04 04:39:52',912.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28336,'1000','121677891379','2023-03-04 04:39:52',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28337,'4000','121677891379','2023-03-04 04:39:52',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421356','','No',NULL,NULL,''),(28338,'4000','121677891379','2023-03-04 04:39:52',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28339,'1110','121677894013','2023-03-04 04:44:41',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28340,'5500','121677894013','2023-03-04 04:44:41',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28341,'1000','121677894013','2023-03-04 04:44:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28342,'4000','121677894013','2023-03-04 04:44:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28343,'1110','121677894301','2023-03-04 04:55:30',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28344,'5500','121677894301','2023-03-04 04:55:30',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28345,'1000','121677894301','2023-03-04 04:55:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28346,'4000','121677894301','2023-03-04 04:55:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28347,'1110','121677894942','2023-03-04 04:59:55',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(28348,'1110','121677894942','2023-03-04 04:59:55',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28349,'5500','121677894942','2023-03-04 04:59:55',708.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28350,'1000','121677894942','2023-03-04 04:59:55',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28351,'4000','121677894942','2023-03-04 04:59:55',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(28352,'4000','121677894942','2023-03-04 04:59:55',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28353,'1110','121677895286','2023-03-04 05:10:30',NULL,120.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28354,'5500','121677895286','2023-03-04 05:10:30',120.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28355,'1000','121677895286','2023-03-04 05:10:30',360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28356,'4000','121677895286','2023-03-04 05:10:30',NULL,360.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28357,'1110','121677895837','2023-03-04 05:38:27',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28358,'5500','121677895837','2023-03-04 05:38:27',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28359,'1000','121677895837','2023-03-04 05:38:27',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28360,'4000','121677895837','2023-03-04 05:38:27',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28361,'1110','121677897532','2023-03-04 05:54:06',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(28362,'1110','121677897532','2023-03-04 05:54:06',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5010327605005','','No',NULL,NULL,''),(28363,'1110','121677897532','2023-03-04 05:54:06',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28364,'1110','121677897532','2023-03-04 05:54:06',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28365,'1110','121677897532','2023-03-04 05:54:06',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28366,'5500','121677897532','2023-03-04 05:54:06',2012.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28367,'1000','121677897532','2023-03-04 05:54:06',3050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28368,'4000','121677897532','2023-03-04 05:54:06',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(28369,'4000','121677897532','2023-03-04 05:54:06',NULL,1600.00,'','12','1','Good sold','1','','sales','5010327605005','','No',NULL,NULL,''),(28370,'4000','121677897532','2023-03-04 05:54:06',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28371,'4000','121677897532','2023-03-04 05:54:06',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28372,'4000','121677897532','2023-03-04 05:54:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28373,'1110','121677899148','2023-03-04 06:06:02',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28374,'5500','121677899148','2023-03-04 06:06:02',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28375,'1000','121677899148','2023-03-04 06:06:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28376,'4000','121677899148','2023-03-04 06:06:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28377,'1110','121677933444','2023-03-04 15:40:57',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150138','','No',NULL,NULL,''),(28378,'1110','121677933444','2023-03-04 15:40:57',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28379,'5500','121677933444','2023-03-04 15:40:57',241.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28380,'1000','121677933444','2023-03-04 15:40:57',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28381,'4000','121677933444','2023-03-04 15:40:57',NULL,300.00,'','12','1','Good sold','1','','sales','024000150138','','No',NULL,NULL,''),(28382,'4000','121677933444','2023-03-04 15:40:57',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28383,'1110','121677962604','2023-03-04 23:45:42',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28384,'1110','121677962604','2023-03-04 23:45:42',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28385,'1110','121677962604','2023-03-04 23:45:42',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28386,'1110','121677962604','2023-03-04 23:45:42',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28387,'1110','121677962604','2023-03-04 23:45:42',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28388,'1110','121677962604','2023-03-04 23:45:42',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(28389,'5500','121677962604','2023-03-04 23:45:42',2362.26,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28390,'1000','121677962604','2023-03-04 23:45:42',3380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28391,'4000','121677962604','2023-03-04 23:45:42',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28392,'4000','121677962604','2023-03-04 23:45:42',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28393,'4000','121677962604','2023-03-04 23:45:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28394,'4000','121677962604','2023-03-04 23:45:42',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28395,'4000','121677962604','2023-03-04 23:45:42',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28396,'4000','121677962604','2023-03-04 23:45:42',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(28397,'1110','121677962748','2023-03-04 23:46:29',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28398,'5500','121677962748','2023-03-04 23:46:29',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28399,'1000','121677962748','2023-03-04 23:46:29',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28400,'4000','121677962748','2023-03-04 23:46:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28401,'1110','121677962794','2023-03-04 23:46:46',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28402,'5500','121677962794','2023-03-04 23:46:46',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28403,'1000','121677962794','2023-03-04 23:46:46',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28404,'4000','121677962794','2023-03-04 23:46:46',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28405,'1110','121677962811','2023-03-04 23:47:03',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28406,'5500','121677962811','2023-03-04 23:47:03',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28407,'1000','121677962811','2023-03-04 23:47:03',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28408,'4000','121677962811','2023-03-04 23:47:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28409,'1110','121677962828','2023-03-04 23:47:40',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28410,'5500','121677962828','2023-03-04 23:47:40',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28411,'1000','121677962828','2023-03-04 23:47:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28412,'4000','121677962828','2023-03-04 23:47:40',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28413,'1110','121677962865','2023-03-04 23:50:22',NULL,576.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28414,'1110','121677962865','2023-03-04 23:50:22',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28415,'1110','121677962865','2023-03-04 23:50:22',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28416,'1110','121677962865','2023-03-04 23:50:22',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28417,'5500','121677962865','2023-03-04 23:50:22',1411.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28418,'1000','121677962865','2023-03-04 23:50:22',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28419,'4000','121677962865','2023-03-04 23:50:22',NULL,810.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28420,'4000','121677962865','2023-03-04 23:50:22',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28421,'4000','121677962865','2023-03-04 23:50:22',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28422,'4000','121677962865','2023-03-04 23:50:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28423,'1110','121677963032','2023-03-04 23:54:44',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(28424,'5500','121677963032','2023-03-04 23:54:44',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28425,'1000','121677963032','2023-03-04 23:54:44',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28426,'4000','121677963032','2023-03-04 23:54:44',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(28427,'1110','121677963474','2023-03-05 00:10:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(28428,'5500','121677963474','2023-03-05 00:10:11',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28429,'1000','121677963474','2023-03-05 00:10:11',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28430,'4000','121677963474','2023-03-05 00:10:11',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(28431,'1110','121677965021','2023-03-05 00:25:51',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(28432,'5500','121677965021','2023-03-05 00:25:51',561.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28433,'1000','121677965021','2023-03-05 00:25:51',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28434,'4000','121677965021','2023-03-05 00:25:51',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(28435,'1110','121677965285','2023-03-05 01:11:47',NULL,7200.00,'','12','1','Inventory sold','1','','sales','3024482270123','','No',NULL,NULL,''),(28436,'5500','121677965285','2023-03-05 01:11:47',7200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28437,'1000','121677965285','2023-03-05 01:11:47',9700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28438,'4000','121677965285','2023-03-05 01:11:47',NULL,9700.00,'','12','1','Good sold','1','','sales','3024482270123','','No',NULL,NULL,''),(28439,'1110','121677967912','2023-03-05 01:13:40',NULL,441.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28440,'1110','121677967912','2023-03-05 01:13:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28441,'5500','121677967912','2023-03-05 01:13:40',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28442,'1000','121677967912','2023-03-05 01:13:40',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28443,'4000','121677967912','2023-03-05 01:13:40',NULL,750.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28444,'4000','121677967912','2023-03-05 01:13:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28445,'1110','121677968024','2023-03-05 01:39:59',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28446,'5500','121677968024','2023-03-05 01:39:59',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28447,'1000','121677968024','2023-03-05 01:39:59',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28448,'4000','121677968024','2023-03-05 01:39:59',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28449,'1110','121677969611','2023-03-05 01:59:20',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28450,'5500','121677969611','2023-03-05 01:59:20',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28451,'1000','121677969611','2023-03-05 01:59:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28452,'4000','121677969611','2023-03-05 01:59:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28453,'1110','121677971820','2023-03-05 02:17:27',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28454,'5500','121677971820','2023-03-05 02:17:27',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28455,'1000','121677971820','2023-03-05 02:17:27',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28456,'4000','121677971820','2023-03-05 02:17:27',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28457,'1110','121677972500','2023-03-05 02:28:59',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28458,'1110','121677972500','2023-03-05 02:28:59',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28459,'5500','121677972500','2023-03-05 02:28:59',535.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28460,'1000','121677972500','2023-03-05 02:28:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28461,'4000','121677972500','2023-03-05 02:28:59',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28462,'4000','121677972500','2023-03-05 02:28:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28463,'1110','121677973872','2023-03-05 02:52:43',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28464,'1110','121677973872','2023-03-05 02:52:43',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28465,'1110','121677973872','2023-03-05 02:52:43',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28466,'1110','121677973872','2023-03-05 02:52:43',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28467,'5500','121677973872','2023-03-05 02:52:43',1460.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28468,'1000','121677973872','2023-03-05 02:52:43',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28469,'4000','121677973872','2023-03-05 02:52:43',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28470,'4000','121677973872','2023-03-05 02:52:43',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28471,'4000','121677973872','2023-03-05 02:52:43',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28472,'4000','121677973872','2023-03-05 02:52:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28473,'1110','121677974422','2023-03-05 03:24:38',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28474,'1110','121677974422','2023-03-05 03:24:38',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28475,'1110','121677974422','2023-03-05 03:24:38',NULL,120.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28476,'5500','121677974422','2023-03-05 03:24:38',1767.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28477,'1000','121677974422','2023-03-05 03:24:38',2760.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28478,'4000','121677974422','2023-03-05 03:24:38',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28479,'4000','121677974422','2023-03-05 03:24:38',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28480,'4000','121677974422','2023-03-05 03:24:38',NULL,360.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28481,'1110','121677976052','2023-03-05 03:28:15',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28482,'1110','121677976052','2023-03-05 03:28:15',NULL,206.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28483,'1110','121677976052','2023-03-05 03:28:15',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28484,'1110','121677976052','2023-03-05 03:28:15',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28485,'5500','121677976052','2023-03-05 03:28:15',1675.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28486,'1000','121677976052','2023-03-05 03:28:15',2520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28487,'4000','121677976052','2023-03-05 03:28:15',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28488,'4000','121677976052','2023-03-05 03:28:15',NULL,300.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28489,'4000','121677976052','2023-03-05 03:28:15',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28490,'4000','121677976052','2023-03-05 03:28:15',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28491,'1110','121677976100','2023-03-05 03:32:06',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28492,'1110','121677976100','2023-03-05 03:32:06',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28493,'1110','121677976100','2023-03-05 03:32:06',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28494,'1110','121677976100','2023-03-05 03:32:06',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(28495,'1110','121677976100','2023-03-05 03:32:06',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28496,'5500','121677976100','2023-03-05 03:32:06',1201.55,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28497,'1000','121677976100','2023-03-05 03:32:06',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28498,'4000','121677976100','2023-03-05 03:32:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28499,'4000','121677976100','2023-03-05 03:32:06',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28500,'4000','121677976100','2023-03-05 03:32:06',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28501,'4000','121677976100','2023-03-05 03:32:06',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(28502,'4000','121677976100','2023-03-05 03:32:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28503,'1110','121677976331','2023-03-05 03:45:40',NULL,4450.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(28504,'1110','121677976331','2023-03-05 03:45:40',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28505,'1110','121677976331','2023-03-05 03:45:40',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28506,'1110','121677976331','2023-03-05 03:45:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28507,'5500','121677976331','2023-03-05 03:45:40',5946.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28508,'1000','121677976331','2023-03-05 03:45:40',8670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28509,'4000','121677976331','2023-03-05 03:45:40',NULL,6500.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(28510,'4000','121677976331','2023-03-05 03:45:40',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28511,'4000','121677976331','2023-03-05 03:45:40',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(28512,'4000','121677976331','2023-03-05 03:45:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28513,'1110','121677977276','2023-03-05 03:48:20',NULL,435.00,'','12','1','Inventory sold','1','','sales','6161100421363','','No',NULL,NULL,''),(28514,'1110','121677977276','2023-03-05 03:48:20',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28515,'1110','121677977276','2023-03-05 03:48:20',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28516,'5500','121677977276','2023-03-05 03:48:20',557.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28517,'1000','121677977276','2023-03-05 03:48:20',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28518,'4000','121677977276','2023-03-05 03:48:20',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421363','','No',NULL,NULL,''),(28519,'4000','121677977276','2023-03-05 03:48:20',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28520,'4000','121677977276','2023-03-05 03:48:20',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28521,'1110','121677978212','2023-03-05 04:03:42',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28522,'5500','121677978212','2023-03-05 04:03:42',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28523,'1000','121677978212','2023-03-05 04:03:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28524,'4000','121677978212','2023-03-05 04:03:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28525,'1110','121677978228','2023-03-05 04:09:20',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28526,'5500','121677978228','2023-03-05 04:09:20',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28527,'1000','121677978228','2023-03-05 04:09:20',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28528,'4000','121677978228','2023-03-05 04:09:20',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28529,'1110','121677978565','2023-03-05 04:28:48',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(28530,'1110','121677978565','2023-03-05 04:28:48',NULL,784.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(28531,'1110','121677978565','2023-03-05 04:28:48',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28532,'1110','121677978565','2023-03-05 04:28:48',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28533,'5500','121677978565','2023-03-05 04:28:48',1919.18,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28534,'1000','121677978565','2023-03-05 04:28:48',2950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28535,'4000','121677978565','2023-03-05 04:28:48',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(28536,'4000','121677978565','2023-03-05 04:28:48',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(28537,'4000','121677978565','2023-03-05 04:28:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28538,'4000','121677978565','2023-03-05 04:28:48',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28539,'1110','121677979748','2023-03-05 04:57:22',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28540,'1110','121677979748','2023-03-05 04:57:22',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(28541,'1110','121677979748','2023-03-05 04:57:22',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28542,'5500','121677979748','2023-03-05 04:57:22',837.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28543,'1000','121677979748','2023-03-05 04:57:22',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28544,'4000','121677979748','2023-03-05 04:57:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28545,'4000','121677979748','2023-03-05 04:57:22',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(28546,'4000','121677979748','2023-03-05 04:57:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28547,'1110','121677984241','2023-03-05 05:44:21',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28548,'1110','121677984241','2023-03-05 05:44:21',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28549,'5500','121677984241','2023-03-05 05:44:21',371.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28550,'1000','121677984241','2023-03-05 05:44:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28551,'4000','121677984241','2023-03-05 05:44:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28552,'4000','121677984241','2023-03-05 05:44:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28553,'1110','121677984427','2023-03-05 05:47:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28554,'5500','121677984427','2023-03-05 05:47:21',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28555,'1000','121677984427','2023-03-05 05:47:21',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28556,'4000','121677984427','2023-03-05 05:47:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28557,'1110','121677984446','2023-03-05 05:48:03',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28558,'1110','121677984446','2023-03-05 05:48:03',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28559,'1110','121677984446','2023-03-05 05:48:03',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28560,'5500','121677984446','2023-03-05 05:48:03',1286.52,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28561,'1000','121677984446','2023-03-05 05:48:03',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28562,'4000','121677984446','2023-03-05 05:48:03',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(28563,'4000','121677984446','2023-03-05 05:48:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28564,'4000','121677984446','2023-03-05 05:48:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28565,'1110','121677984489','2023-03-05 06:37:15',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28566,'5500','121677984489','2023-03-05 06:37:15',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28567,'1000','121677984489','2023-03-05 06:37:15',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28568,'4000','121677984489','2023-03-05 06:37:15',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28569,'1110','121677987456','2023-03-05 07:17:26',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28570,'1110','121677987456','2023-03-05 07:17:26',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28571,'5500','121677987456','2023-03-05 07:17:26',211.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28572,'1000','121677987456','2023-03-05 07:17:26',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28573,'4000','121677987456','2023-03-05 07:17:26',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28574,'4000','121677987456','2023-03-05 07:17:26',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28575,'1110','121677990550','2023-03-05 07:29:36',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28576,'5500','121677990550','2023-03-05 07:29:36',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28577,'1000','121677990550','2023-03-05 07:29:36',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28578,'4000','121677990550','2023-03-05 07:29:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(28579,'1110','121677990594','2023-03-05 07:37:58',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28580,'1110','121677990594','2023-03-05 07:37:58',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28581,'5500','121677990594','2023-03-05 07:37:58',211.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28582,'1000','121677990594','2023-03-05 07:37:58',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28583,'4000','121677990594','2023-03-05 07:37:58',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28584,'4000','121677990594','2023-03-05 07:37:58',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28585,'1110','121677997704','2023-03-05 09:28:51',NULL,954.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(28586,'1110','121677997704','2023-03-05 09:28:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28587,'5500','121677997704','2023-03-05 09:28:51',1007.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28588,'1000','121677997704','2023-03-05 09:28:51',1570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28589,'4000','121677997704','2023-03-05 09:28:51',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(28590,'4000','121677997704','2023-03-05 09:28:51',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28591,'1110','121678011928','2023-03-05 13:26:08',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(28592,'1110','121678011928','2023-03-05 13:26:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28593,'5500','121678011928','2023-03-05 13:26:08',757.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28594,'1000','121678011928','2023-03-05 13:26:08',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28595,'4000','121678011928','2023-03-05 13:26:08',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(28596,'4000','121678011928','2023-03-05 13:26:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28597,'1110','121678021600','2023-03-05 16:06:54',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28598,'5500','121678021600','2023-03-05 16:06:54',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28599,'1000','121678021600','2023-03-05 16:06:54',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28600,'4000','121678021600','2023-03-05 16:06:54',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28601,'1110','121678021623','2023-03-05 16:07:51',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28602,'1110','121678021623','2023-03-05 16:07:51',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28603,'5500','121678021623','2023-03-05 16:07:51',183.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28604,'1000','121678021623','2023-03-05 16:07:51',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28605,'4000','121678021623','2023-03-05 16:07:51',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28606,'4000','121678021623','2023-03-05 16:07:51',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28607,'1110','121678035214','2023-03-05 20:00:56',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101606547','','No',NULL,NULL,''),(28608,'1110','121678035214','2023-03-05 20:00:56',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(28609,'1110','121678035214','2023-03-05 20:00:56',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28610,'5500','121678035214','2023-03-05 20:00:56',1209.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28611,'1000','121678035214','2023-03-05 20:00:56',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28612,'4000','121678035214','2023-03-05 20:00:56',NULL,550.00,'','12','1','Good sold','1','','sales','6161101606547','','No',NULL,NULL,''),(28613,'4000','121678035214','2023-03-05 20:00:56',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(28614,'4000','121678035214','2023-03-05 20:00:56',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28615,'1110','121678035681','2023-03-05 21:34:58',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28616,'1110','121678035681','2023-03-05 21:34:58',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28617,'1110','121678035681','2023-03-05 21:34:58',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28618,'5500','121678035681','2023-03-05 21:34:58',390.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28619,'1000','121678035681','2023-03-05 21:34:58',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28620,'4000','121678035681','2023-03-05 21:34:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28621,'4000','121678035681','2023-03-05 21:34:58',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(28622,'4000','121678035681','2023-03-05 21:34:58',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(28623,'1110','121678041506','2023-03-05 21:49:52',NULL,7400.00,'','12','1','Inventory sold','1','','sales','5000299295021','','No',NULL,NULL,''),(28624,'1110','121678041506','2023-03-05 21:49:52',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28625,'1110','121678041506','2023-03-05 21:49:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28626,'1110','121678041506','2023-03-05 21:49:52',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28627,'1110','121678041506','2023-03-05 21:49:52',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28628,'1110','121678041506','2023-03-05 21:49:52',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28629,'5500','121678041506','2023-03-05 21:49:52',8138.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28630,'1000','121678041506','2023-03-05 21:49:52',11700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28631,'4000','121678041506','2023-03-05 21:49:52',NULL,10500.00,'','12','1','Good sold','1','','sales','5000299295021','','No',NULL,NULL,''),(28632,'4000','121678041506','2023-03-05 21:49:52',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28633,'4000','121678041506','2023-03-05 21:49:52',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28634,'4000','121678041506','2023-03-05 21:49:52',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28635,'4000','121678041506','2023-03-05 21:49:52',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28636,'4000','121678041506','2023-03-05 21:49:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28637,'1110','121678042201','2023-03-05 22:01:04',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28638,'5500','121678042201','2023-03-05 22:01:04',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28639,'1000','121678042201','2023-03-05 22:01:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28640,'4000','121678042201','2023-03-05 22:01:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28641,'1110','121678046817','2023-03-05 23:08:26',NULL,7400.00,'','12','1','Inventory sold','1','','sales','5000299295021','','No',NULL,NULL,''),(28642,'1110','121678046817','2023-03-05 23:08:26',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28643,'5500','121678046817','2023-03-05 23:08:26',7553.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28644,'1000','121678046817','2023-03-05 23:08:26',10750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28645,'4000','121678046817','2023-03-05 23:08:26',NULL,10500.00,'','12','1','Good sold','1','','sales','5000299295021','','No',NULL,NULL,''),(28646,'4000','121678046817','2023-03-05 23:08:26',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28647,'1110','121678048768','2023-03-05 23:39:46',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28648,'1110','121678048768','2023-03-05 23:39:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28649,'5500','121678048768','2023-03-05 23:39:46',977.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28650,'1000','121678048768','2023-03-05 23:39:46',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28651,'4000','121678048768','2023-03-05 23:39:46',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28652,'4000','121678048768','2023-03-05 23:39:46',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28653,'1110','121678048791','2023-03-05 23:41:14',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28654,'1110','121678048791','2023-03-05 23:41:14',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28655,'5500','121678048791','2023-03-05 23:41:14',377.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28656,'1000','121678048791','2023-03-05 23:41:14',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28657,'4000','121678048791','2023-03-05 23:41:14',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(28658,'4000','121678048791','2023-03-05 23:41:14',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28659,'1110','121678048890','2023-03-06 00:03:29',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(28660,'5500','121678048890','2023-03-06 00:03:29',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28661,'1000','121678048890','2023-03-06 00:03:29',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28662,'4000','121678048890','2023-03-06 00:03:29',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(28663,'1110','121678050300','2023-03-06 00:11:27',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28664,'5500','121678050300','2023-03-06 00:11:27',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28665,'1000','121678050300','2023-03-06 00:11:27',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28666,'4000','121678050300','2023-03-06 00:11:27',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28667,'1110','121678050910','2023-03-06 00:30:16',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28668,'1110','121678050910','2023-03-06 00:30:16',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232953994','','No',NULL,NULL,''),(28669,'5500','121678050910','2023-03-06 00:30:16',435.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28670,'1000','121678050910','2023-03-06 00:30:16',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28671,'4000','121678050910','2023-03-06 00:30:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28672,'4000','121678050910','2023-03-06 00:30:16',NULL,600.00,'','12','1','Good sold','1','','sales','5010232953994','','No',NULL,NULL,''),(28673,'1110','121678051821','2023-03-06 00:57:51',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28674,'5500','121678051821','2023-03-06 00:57:51',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28675,'1000','121678051821','2023-03-06 00:57:51',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28676,'4000','121678051821','2023-03-06 00:57:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28677,'1110','121678053476','2023-03-06 01:35:21',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28678,'5500','121678053476','2023-03-06 01:35:21',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28679,'1000','121678053476','2023-03-06 01:35:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28680,'4000','121678053476','2023-03-06 01:35:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28681,'1110','121678065440','2023-03-06 04:21:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28682,'1110','121678065440','2023-03-06 04:21:45',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265979','','No',NULL,NULL,''),(28683,'5500','121678065440','2023-03-06 04:21:45',362.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28684,'1000','121678065440','2023-03-06 04:21:45',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28685,'4000','121678065440','2023-03-06 04:21:45',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28686,'4000','121678065440','2023-03-06 04:21:45',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265979','','No',NULL,NULL,''),(28687,'1110','121678065714','2023-03-06 04:22:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28688,'1110','121678065714','2023-03-06 04:22:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28689,'5500','121678065714','2023-03-06 04:22:55',490.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28690,'1000','121678065714','2023-03-06 04:22:55',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28691,'4000','121678065714','2023-03-06 04:22:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28692,'4000','121678065714','2023-03-06 04:22:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28693,'1110','121678118539','2023-03-06 19:03:09',NULL,46.00,'','12','1','Inventory sold','1','','sales','716165173670','','No',NULL,NULL,''),(28694,'5500','121678118539','2023-03-06 19:03:09',46.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28695,'1000','121678118539','2023-03-06 19:03:09',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28696,'4000','121678118539','2023-03-06 19:03:09',NULL,150.00,'','12','1','Good sold','1','','sales','716165173670','','No',NULL,NULL,''),(28697,'1110','121678118597','2023-03-06 19:03:47',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28698,'5500','121678118597','2023-03-06 19:03:47',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28699,'1000','121678118597','2023-03-06 19:03:47',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28700,'4000','121678118597','2023-03-06 19:03:47',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28701,'1110','121678118635','2023-03-06 19:04:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28702,'5500','121678118635','2023-03-06 19:04:13',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28703,'1000','121678118635','2023-03-06 19:04:13',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28704,'4000','121678118635','2023-03-06 19:04:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28705,'1110','121678118713','2023-03-06 19:06:09',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28706,'1110','121678118713','2023-03-06 19:06:09',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(28707,'1110','121678118713','2023-03-06 19:06:09',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(28708,'5500','121678118713','2023-03-06 19:06:09',643.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28709,'1000','121678118713','2023-03-06 19:06:09',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28710,'4000','121678118713','2023-03-06 19:06:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28711,'4000','121678118713','2023-03-06 19:06:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(28712,'4000','121678118713','2023-03-06 19:06:09',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(28713,'1110','121678118825','2023-03-06 19:07:39',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28714,'5500','121678118825','2023-03-06 19:07:39',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28715,'1000','121678118825','2023-03-06 19:07:39',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28716,'4000','121678118825','2023-03-06 19:07:39',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28717,'1110','121678130160','2023-03-06 22:16:52',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28718,'5500','121678130160','2023-03-06 22:16:52',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28719,'1000','121678130160','2023-03-06 22:16:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28720,'4000','121678130160','2023-03-06 22:16:52',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28721,'1110','121678130247','2023-03-06 22:17:52',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28722,'5500','121678130247','2023-03-06 22:17:52',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28723,'1000','121678130247','2023-03-06 22:17:52',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28724,'4000','121678130247','2023-03-06 22:17:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28725,'1110','121678130300','2023-03-06 22:18:35',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28726,'5500','121678130300','2023-03-06 22:18:35',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28727,'1000','121678130300','2023-03-06 22:18:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28728,'4000','121678130300','2023-03-06 22:18:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(28729,'1110','121678131878','2023-03-06 22:44:45',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28730,'5500','121678131878','2023-03-06 22:44:45',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28731,'1000','121678131878','2023-03-06 22:44:45',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28732,'4000','121678131878','2023-03-06 22:44:45',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28733,'1110','121678131891','2023-03-06 23:03:53',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28734,'5500','121678131891','2023-03-06 23:03:53',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28735,'1000','121678131891','2023-03-06 23:03:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28736,'4000','121678131891','2023-03-06 23:03:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(28737,'1110','121678133155','2023-03-06 23:06:04',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28738,'5500','121678133155','2023-03-06 23:06:04',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28739,'1000','121678133155','2023-03-06 23:06:04',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28740,'4000','121678133155','2023-03-06 23:06:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28741,'1110','121678133635','2023-03-06 23:14:06',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28742,'5500','121678133635','2023-03-06 23:14:06',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28743,'1000','121678133635','2023-03-06 23:14:06',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28744,'4000','121678133635','2023-03-06 23:14:06',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28745,'1110','121678133650','2023-03-06 23:17:35',NULL,1970.00,'','12','1','Inventory sold','1','','sales','089540448978','','No',NULL,NULL,''),(28746,'1110','121678133650','2023-03-06 23:17:35',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28747,'5500','121678133650','2023-03-06 23:17:35',2142.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28748,'1000','121678133650','2023-03-06 23:17:35',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28749,'4000','121678133650','2023-03-06 23:17:35',NULL,2600.00,'','12','1','Good sold','1','','sales','089540448978','','No',NULL,NULL,''),(28750,'4000','121678133650','2023-03-06 23:17:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28751,'1110','121678133989','2023-03-06 23:46:05',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28752,'5500','121678133989','2023-03-06 23:46:05',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28753,'1000','121678133989','2023-03-06 23:46:05',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28754,'4000','121678133989','2023-03-06 23:46:05',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28755,'1110','121678135571','2023-03-06 23:48:30',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28756,'5500','121678135571','2023-03-06 23:48:30',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28757,'1000','121678135571','2023-03-06 23:48:30',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28758,'4000','121678135571','2023-03-06 23:48:30',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28759,'1110','121678148739','2023-03-07 03:25:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28760,'5500','121678148739','2023-03-07 03:25:55',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28761,'1000','121678148739','2023-03-07 03:25:55',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28762,'4000','121678148739','2023-03-07 03:25:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28763,'1110','121678148761','2023-03-07 06:40:40',NULL,795.00,'','12','1','Inventory sold','1','','sales','8906054940120','','No',NULL,NULL,''),(28764,'1110','121678148761','2023-03-07 06:40:40',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28765,'5500','121678148761','2023-03-07 06:40:40',898.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28766,'1000','121678148761','2023-03-07 06:40:40',1450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28767,'4000','121678148761','2023-03-07 06:40:40',NULL,1300.00,'','12','1','Good sold','1','','sales','8906054940120','','No',NULL,NULL,''),(28768,'4000','121678148761','2023-03-07 06:40:40',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(28769,'1110','121678181961','2023-03-07 15:01:00',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28770,'5500','121678181961','2023-03-07 15:01:00',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28771,'1000','121678181961','2023-03-07 15:01:00',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28772,'4000','121678181961','2023-03-07 15:01:00',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28773,'1110','121678217212','2023-03-07 23:01:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(28774,'5500','121678217212','2023-03-07 23:01:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28775,'1000','121678217212','2023-03-07 23:01:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28776,'4000','121678217212','2023-03-07 23:01:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(28777,'1110','121678220264','2023-03-07 23:18:15',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28778,'5500','121678220264','2023-03-07 23:18:15',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28779,'1000','121678220264','2023-03-07 23:18:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28780,'4000','121678220264','2023-03-07 23:18:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(28781,'1110','121678220302','2023-03-07 23:22:07',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28782,'1110','121678220302','2023-03-07 23:22:07',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(28783,'5500','121678220302','2023-03-07 23:22:07',251.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28784,'1000','121678220302','2023-03-07 23:22:07',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28785,'4000','121678220302','2023-03-07 23:22:07',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(28786,'4000','121678220302','2023-03-07 23:22:07',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(28787,'1110','121678220532','2023-03-08 00:18:55',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(28788,'5500','121678220532','2023-03-08 00:18:55',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28789,'1000','121678220532','2023-03-08 00:18:55',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28790,'4000','121678220532','2023-03-08 00:18:55',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(28791,'1110','121678223983','2023-03-08 01:18:11',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(28792,'5500','121678223983','2023-03-08 01:18:11',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28793,'1000','121678223983','2023-03-08 01:18:11',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28794,'4000','121678223983','2023-03-08 01:18:11',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(28795,'1110','121678227499','2023-03-08 01:18:32',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28796,'5500','121678227499','2023-03-08 01:18:32',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28797,'1000','121678227499','2023-03-08 01:18:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28798,'4000','121678227499','2023-03-08 01:18:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28799,'1110','121678257408','2023-03-08 09:37:17',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(28800,'5500','121678257408','2023-03-08 09:37:17',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28801,'1000','121678257408','2023-03-08 09:37:17',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28802,'4000','121678257408','2023-03-08 09:37:17',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(28803,'1110','121678290375','2023-03-08 20:31:53',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28804,'1110','121678290375','2023-03-08 20:31:53',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28805,'1110','121678290375','2023-03-08 20:31:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(28806,'1110','121678290375','2023-03-08 20:31:53',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28807,'5500','121678290375','2023-03-08 20:31:53',1532.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28808,'1000','121678290375','2023-03-08 20:31:53',2430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28809,'4000','121678290375','2023-03-08 20:31:53',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28810,'4000','121678290375','2023-03-08 20:31:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28811,'4000','121678290375','2023-03-08 20:31:53',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(28812,'4000','121678290375','2023-03-08 20:31:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28813,'1110','121678299971','2023-03-08 21:26:24',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28814,'5500','121678299971','2023-03-08 21:26:24',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28815,'1000','121678299971','2023-03-08 21:26:24',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28816,'4000','121678299971','2023-03-08 21:26:24',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28817,'1110','121678299990','2023-03-08 22:41:27',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28818,'1110','121678299990','2023-03-08 22:41:27',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28819,'1110','121678299990','2023-03-08 22:41:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28820,'5500','121678299990','2023-03-08 22:41:27',1726.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28821,'1000','121678299990','2023-03-08 22:41:27',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28822,'4000','121678299990','2023-03-08 22:41:27',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(28823,'4000','121678299990','2023-03-08 22:41:27',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28824,'4000','121678299990','2023-03-08 22:41:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28825,'1110','121678304517','2023-03-08 23:11:54',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28826,'1110','121678304517','2023-03-08 23:11:54',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28827,'5500','121678304517','2023-03-08 23:11:54',664.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28828,'1000','121678304517','2023-03-08 23:11:54',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28829,'4000','121678304517','2023-03-08 23:11:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(28830,'4000','121678304517','2023-03-08 23:11:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28831,'1110','121678306326','2023-03-08 23:34:02',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28832,'5500','121678306326','2023-03-08 23:34:02',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28833,'1000','121678306326','2023-03-08 23:34:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28834,'4000','121678306326','2023-03-08 23:34:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28835,'1110','121678307647','2023-03-09 01:09:44',NULL,631.00,'','12','1','Inventory sold','1','','sales','8908006354993','','No',NULL,NULL,''),(28836,'5500','121678307647','2023-03-09 01:09:44',631.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28837,'1000','121678307647','2023-03-09 01:09:44',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28838,'4000','121678307647','2023-03-09 01:09:44',NULL,900.00,'','12','1','Good sold','1','','sales','8908006354993','','No',NULL,NULL,''),(28839,'1110','121678313503','2023-03-09 01:14:52',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(28840,'1110','121678313503','2023-03-09 01:14:52',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28841,'1110','121678313503','2023-03-09 01:14:52',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28842,'1110','121678313503','2023-03-09 01:14:52',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28843,'1110','121678313503','2023-03-09 01:14:52',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28844,'5500','121678313503','2023-03-09 01:14:52',2341.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28845,'1000','121678313503','2023-03-09 01:14:52',3650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28846,'4000','121678313503','2023-03-09 01:14:52',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(28847,'4000','121678313503','2023-03-09 01:14:52',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28848,'4000','121678313503','2023-03-09 01:14:52',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28849,'4000','121678313503','2023-03-09 01:14:52',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28850,'4000','121678313503','2023-03-09 01:14:52',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(28851,'1110','121678313791','2023-03-09 01:30:05',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28852,'5500','121678313791','2023-03-09 01:30:05',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28853,'1000','121678313791','2023-03-09 01:30:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28854,'4000','121678313791','2023-03-09 01:30:05',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28855,'1110','121678344583','2023-03-09 09:58:33',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(28856,'1110','121678344583','2023-03-09 09:58:33',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(28857,'1110','121678344583','2023-03-09 09:58:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28858,'5500','121678344583','2023-03-09 09:58:33',312.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28859,'1000','121678344583','2023-03-09 09:58:33',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28860,'4000','121678344583','2023-03-09 09:58:33',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(28861,'4000','121678344583','2023-03-09 09:58:33',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(28862,'4000','121678344583','2023-03-09 09:58:33',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28863,'1110','121678345179','2023-03-09 10:17:30',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28864,'5500','121678345179','2023-03-09 10:17:30',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28865,'1000','121678345179','2023-03-09 10:17:30',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28866,'4000','121678345179','2023-03-09 10:17:30',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28867,'1110','121678383164','2023-03-09 20:33:03',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28868,'5500','121678383164','2023-03-09 20:33:03',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28869,'1000','121678383164','2023-03-09 20:33:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28870,'4000','121678383164','2023-03-09 20:33:03',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(28871,'1110','121678383191','2023-03-09 20:34:02',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28872,'5500','121678383191','2023-03-09 20:34:02',1037.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28873,'1000','121678383191','2023-03-09 20:34:02',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28874,'4000','121678383191','2023-03-09 20:34:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28875,'1110','121678383253','2023-03-09 20:34:49',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28876,'1110','121678383253','2023-03-09 20:34:49',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28877,'5500','121678383253','2023-03-09 20:34:49',371.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28878,'1000','121678383253','2023-03-09 20:34:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28879,'4000','121678383253','2023-03-09 20:34:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28880,'4000','121678383253','2023-03-09 20:34:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28881,'1110','121678383298','2023-03-09 21:35:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28882,'5500','121678383298','2023-03-09 21:35:33',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28883,'1000','121678383298','2023-03-09 21:35:33',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28884,'4000','121678383298','2023-03-09 21:35:33',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28885,'1110','121678387873','2023-03-09 21:51:33',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28886,'5500','121678387873','2023-03-09 21:51:33',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28887,'1000','121678387873','2023-03-09 21:51:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28888,'4000','121678387873','2023-03-09 21:51:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(28889,'1110','121678387898','2023-03-09 22:35:03',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(28890,'5500','121678387898','2023-03-09 22:35:03',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28891,'1000','121678387898','2023-03-09 22:35:03',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28892,'4000','121678387898','2023-03-09 22:35:03',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(28893,'1110','121678390521','2023-03-09 23:34:28',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(28894,'1110','121678390521','2023-03-09 23:34:28',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28895,'5500','121678390521','2023-03-09 23:34:28',151.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28896,'1000','121678390521','2023-03-09 23:34:28',260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28897,'4000','121678390521','2023-03-09 23:34:28',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(28898,'4000','121678390521','2023-03-09 23:34:28',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(28899,'1110','121678394088','2023-03-10 01:00:49',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(28900,'5500','121678394088','2023-03-10 01:00:49',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28901,'1000','121678394088','2023-03-10 01:00:49',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28902,'4000','121678394088','2023-03-10 01:00:49',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(28903,'1110','121678399331','2023-03-10 01:17:28',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(28904,'1110','121678399331','2023-03-10 01:17:28',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28905,'1110','121678399331','2023-03-10 01:17:28',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28906,'5500','121678399331','2023-03-10 01:17:28',382.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28907,'1000','121678399331','2023-03-10 01:17:28',660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28908,'4000','121678399331','2023-03-10 01:17:28',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(28909,'4000','121678399331','2023-03-10 01:17:28',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(28910,'4000','121678399331','2023-03-10 01:17:28',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(28911,'1110','121678400265','2023-03-10 01:47:38',NULL,1670.00,'','12','1','Inventory sold','1','','sales','080686001409','','No',NULL,NULL,''),(28912,'5500','121678400265','2023-03-10 01:47:38',1670.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28913,'1000','121678400265','2023-03-10 01:47:38',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28914,'4000','121678400265','2023-03-10 01:47:38',NULL,2300.00,'','12','1','Good sold','1','','sales','080686001409','','No',NULL,NULL,''),(28915,'1110','121678402110','2023-03-10 01:53:38',NULL,1420.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(28916,'1110','121678402110','2023-03-10 01:53:38',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28917,'1110','121678402110','2023-03-10 01:53:38',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(28918,'1110','121678402110','2023-03-10 01:53:38',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(28919,'5500','121678402110','2023-03-10 01:53:38',1980.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28920,'1000','121678402110','2023-03-10 01:53:38',2860.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28921,'4000','121678402110','2023-03-10 01:53:38',NULL,1900.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(28922,'4000','121678402110','2023-03-10 01:53:38',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(28923,'4000','121678402110','2023-03-10 01:53:38',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(28924,'4000','121678402110','2023-03-10 01:53:38',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(28925,'1110','121678402462','2023-03-10 01:57:24',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28926,'5500','121678402462','2023-03-10 01:57:24',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28927,'1000','121678402462','2023-03-10 01:57:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28928,'4000','121678402462','2023-03-10 01:57:24',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(28929,'1110','121678471243','2023-03-10 22:30:50',NULL,1590.00,'','12','1','Inventory sold','1','','sales','8906054940120','','No',NULL,NULL,''),(28930,'1110','121678471243','2023-03-10 22:30:50',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(28931,'1110','121678471243','2023-03-10 22:30:50',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28932,'1110','121678471243','2023-03-10 22:30:50',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28933,'5500','121678471243','2023-03-10 22:30:50',2561.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28934,'1000','121678471243','2023-03-10 22:30:50',4030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28935,'4000','121678471243','2023-03-10 22:30:50',NULL,2600.00,'','12','1','Good sold','1','','sales','8906054940120','','No',NULL,NULL,''),(28936,'4000','121678471243','2023-03-10 22:30:50',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(28937,'4000','121678471243','2023-03-10 22:30:50',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28938,'4000','121678471243','2023-03-10 22:30:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28939,'1110','121678477004','2023-03-10 23:01:48',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(28940,'1110','121678477004','2023-03-10 23:01:48',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28941,'5500','121678477004','2023-03-10 23:01:48',2296.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28942,'1000','121678477004','2023-03-10 23:01:48',3200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28943,'4000','121678477004','2023-03-10 23:01:48',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(28944,'4000','121678477004','2023-03-10 23:01:48',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28945,'1110','121678478735','2023-03-10 23:24:12',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28946,'5500','121678478735','2023-03-10 23:24:12',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28947,'1000','121678478735','2023-03-10 23:24:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28948,'4000','121678478735','2023-03-10 23:24:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28949,'1110','121678479858','2023-03-10 23:39:07',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(28950,'1110','121678479858','2023-03-10 23:39:07',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(28951,'5500','121678479858','2023-03-10 23:39:07',967.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28952,'1000','121678479858','2023-03-10 23:39:07',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28953,'4000','121678479858','2023-03-10 23:39:07',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(28954,'4000','121678479858','2023-03-10 23:39:07',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(28955,'1110','121678480752','2023-03-10 23:41:38',NULL,3450.00,'','12','1','Inventory sold','1','','sales','082184090442','','No',NULL,NULL,''),(28956,'5500','121678480752','2023-03-10 23:41:38',3450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28957,'1000','121678480752','2023-03-10 23:41:38',5300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28958,'4000','121678480752','2023-03-10 23:41:38',NULL,5300.00,'','12','1','Good sold','1','','sales','082184090442','','No',NULL,NULL,''),(28959,'1110','121678480911','2023-03-10 23:49:33',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28960,'5500','121678480911','2023-03-10 23:49:33',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28961,'1000','121678480911','2023-03-10 23:49:33',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28962,'4000','121678480911','2023-03-10 23:49:33',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28963,'1110','121678481383','2023-03-11 00:10:34',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(28964,'1110','121678481383','2023-03-11 00:10:34',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28965,'5500','121678481383','2023-03-11 00:10:34',97.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28966,'1000','121678481383','2023-03-11 00:10:34',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28967,'4000','121678481383','2023-03-11 00:10:34',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(28968,'4000','121678481383','2023-03-11 00:10:34',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(28969,'1110','121678482640','2023-03-11 00:20:25',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(28970,'5500','121678482640','2023-03-11 00:20:25',405.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28971,'1000','121678482640','2023-03-11 00:20:25',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28972,'4000','121678482640','2023-03-11 00:20:25',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(28973,'1110','121678483233','2023-03-11 00:25:42',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28974,'5500','121678483233','2023-03-11 00:25:42',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28975,'1000','121678483233','2023-03-11 00:25:42',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28976,'4000','121678483233','2023-03-11 00:25:42',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(28977,'1110','121678484134','2023-03-11 00:37:23',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28978,'1110','121678484134','2023-03-11 00:37:23',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(28979,'5500','121678484134','2023-03-11 00:37:23',1009.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28980,'1000','121678484134','2023-03-11 00:37:23',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28981,'4000','121678484134','2023-03-11 00:37:23',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(28982,'4000','121678484134','2023-03-11 00:37:23',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(28983,'1110','121678484439','2023-03-11 01:01:39',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28984,'1110','121678484439','2023-03-11 01:01:39',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28985,'1110','121678484439','2023-03-11 01:01:39',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28986,'5500','121678484439','2023-03-11 01:01:39',509.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28987,'1000','121678484439','2023-03-11 01:01:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28988,'4000','121678484439','2023-03-11 01:01:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(28989,'4000','121678484439','2023-03-11 01:01:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(28990,'4000','121678484439','2023-03-11 01:01:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(28991,'1110','121678485718','2023-03-11 02:19:54',NULL,210.00,'','12','1','Inventory sold','1','','sales','6161101561020','','No',NULL,NULL,''),(28992,'1110','121678485718','2023-03-11 02:19:54',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28993,'1110','121678485718','2023-03-11 02:19:54',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(28994,'5500','121678485718','2023-03-11 02:19:54',694.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(28995,'1000','121678485718','2023-03-11 02:19:54',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(28996,'4000','121678485718','2023-03-11 02:19:54',NULL,400.00,'','12','1','Good sold','1','','sales','6161101561020','','No',NULL,NULL,''),(28997,'4000','121678485718','2023-03-11 02:19:54',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(28998,'4000','121678485718','2023-03-11 02:19:54',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(28999,'1110','121678542795','2023-03-11 16:55:13',NULL,464.85,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29000,'1110','121678542795','2023-03-11 16:55:13',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29001,'1110','121678542795','2023-03-11 16:55:13',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29002,'5500','121678542795','2023-03-11 16:55:13',1102.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29003,'1000','121678542795','2023-03-11 16:55:13',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29004,'4000','121678542795','2023-03-11 16:55:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29005,'4000','121678542795','2023-03-11 16:55:13',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29006,'4000','121678542795','2023-03-11 16:55:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29007,'1110','121678546118','2023-03-11 17:49:36',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29008,'1110','121678546118','2023-03-11 17:49:36',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29009,'1110','121678546118','2023-03-11 17:49:36',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29010,'5500','121678546118','2023-03-11 17:49:36',517.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29011,'1000','121678546118','2023-03-11 17:49:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29012,'4000','121678546118','2023-03-11 17:49:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29013,'4000','121678546118','2023-03-11 17:49:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29014,'4000','121678546118','2023-03-11 17:49:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29015,'1110','121678549609','2023-03-11 18:47:34',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29016,'5500','121678549609','2023-03-11 18:47:34',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29017,'1000','121678549609','2023-03-11 18:47:34',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29018,'4000','121678549609','2023-03-11 18:47:34',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29019,'1110','121678557359','2023-03-11 20:56:09',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29020,'5500','121678557359','2023-03-11 20:56:09',223.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29021,'1000','121678557359','2023-03-11 20:56:09',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29022,'4000','121678557359','2023-03-11 20:56:09',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29023,'1110','121678557374','2023-03-11 21:19:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(29024,'5500','121678557374','2023-03-11 21:19:11',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29025,'1000','121678557374','2023-03-11 21:19:11',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29026,'4000','121678557374','2023-03-11 21:19:11',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(29027,'1110','121678558756','2023-03-11 21:19:34',NULL,57.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29028,'5500','121678558756','2023-03-11 21:19:34',57.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29029,'1000','121678558756','2023-03-11 21:19:34',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29030,'4000','121678558756','2023-03-11 21:19:34',NULL,150.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29031,'1110','121678558780','2023-03-11 21:33:01',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29032,'5500','121678558780','2023-03-11 21:33:01',223.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29033,'1000','121678558780','2023-03-11 21:33:01',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29034,'4000','121678558780','2023-03-11 21:33:01',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29035,'1110','121678559591','2023-03-11 21:46:45',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29036,'5500','121678559591','2023-03-11 21:46:45',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29037,'1000','121678559591','2023-03-11 21:46:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29038,'4000','121678559591','2023-03-11 21:46:45',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29039,'1110','121678561133','2023-03-11 22:00:49',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29040,'5500','121678561133','2023-03-11 22:00:49',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29041,'1000','121678561133','2023-03-11 22:00:49',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29042,'4000','121678561133','2023-03-11 22:00:49',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29043,'1110','121678561256','2023-03-11 22:05:47',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421271','','No',NULL,NULL,''),(29044,'5500','121678561256','2023-03-11 22:05:47',636.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29045,'1000','121678561256','2023-03-11 22:05:47',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29046,'4000','121678561256','2023-03-11 22:05:47',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421271','','No',NULL,NULL,''),(29047,'1110','121678561553','2023-03-11 23:27:00',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(29048,'1110','121678561553','2023-03-11 23:27:00',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886000277','','No',NULL,NULL,''),(29049,'5500','121678561553','2023-03-11 23:27:00',1111.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29050,'1000','121678561553','2023-03-11 23:27:00',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29051,'4000','121678561553','2023-03-11 23:27:00',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(29052,'4000','121678561553','2023-03-11 23:27:00',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886000277','','No',NULL,NULL,''),(29053,'1110','121678566425','2023-03-11 23:40:28',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29054,'5500','121678566425','2023-03-11 23:40:28',306.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29055,'1000','121678566425','2023-03-11 23:40:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29056,'4000','121678566425','2023-03-11 23:40:28',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29057,'1110','121678567235','2023-03-12 00:29:42',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(29058,'1110','121678567235','2023-03-12 00:29:42',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29059,'5500','121678567235','2023-03-12 00:29:42',998.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29060,'1000','121678567235','2023-03-12 00:29:42',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29061,'4000','121678567235','2023-03-12 00:29:42',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(29062,'4000','121678567235','2023-03-12 00:29:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29063,'1110','121678570253','2023-03-12 00:31:43',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29064,'5500','121678570253','2023-03-12 00:31:43',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29065,'1000','121678570253','2023-03-12 00:31:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29066,'4000','121678570253','2023-03-12 00:31:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29067,'1110','121678570309','2023-03-12 00:37:17',NULL,488.00,'','12','1','Inventory sold','1','','sales','6161100421554','','No',NULL,NULL,''),(29068,'1110','121678570309','2023-03-12 00:37:17',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29069,'1110','121678570309','2023-03-12 00:37:17',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(29070,'5500','121678570309','2023-03-12 00:37:17',581.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29071,'1000','121678570309','2023-03-12 00:37:17',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29072,'4000','121678570309','2023-03-12 00:37:17',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421554','','No',NULL,NULL,''),(29073,'4000','121678570309','2023-03-12 00:37:17',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29074,'4000','121678570309','2023-03-12 00:37:17',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(29075,'1110','121678570671','2023-03-12 00:38:08',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29076,'1110','121678570671','2023-03-12 00:38:08',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29077,'5500','121678570671','2023-03-12 00:38:08',329.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29078,'1000','121678570671','2023-03-12 00:38:08',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29079,'4000','121678570671','2023-03-12 00:38:08',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29080,'4000','121678570671','2023-03-12 00:38:08',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29081,'1110','121678570745','2023-03-12 00:39:28',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(29082,'1110','121678570745','2023-03-12 00:39:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29083,'5500','121678570745','2023-03-12 00:39:28',358.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29084,'1000','121678570745','2023-03-12 00:39:28',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29085,'4000','121678570745','2023-03-12 00:39:28',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(29086,'4000','121678570745','2023-03-12 00:39:28',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29087,'1110','121678570865','2023-03-12 00:54:00',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29088,'1110','121678570865','2023-03-12 00:54:00',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150121','','No',NULL,NULL,''),(29089,'5500','121678570865','2023-03-12 00:54:00',373.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29090,'1000','121678570865','2023-03-12 00:54:00',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29091,'4000','121678570865','2023-03-12 00:54:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29092,'4000','121678570865','2023-03-12 00:54:00',NULL,300.00,'','12','1','Good sold','1','','sales','024000150121','','No',NULL,NULL,''),(29093,'1110','121678572023','2023-03-12 02:19:34',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29094,'5500','121678572023','2023-03-12 02:19:34',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29095,'1000','121678572023','2023-03-12 02:19:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29096,'4000','121678572023','2023-03-12 02:19:34',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29097,'1110','121678576784','2023-03-12 02:26:20',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29098,'5500','121678576784','2023-03-12 02:26:20',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29099,'1000','121678576784','2023-03-12 02:26:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29100,'4000','121678576784','2023-03-12 02:26:20',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29101,'1110','121678582170','2023-03-12 03:53:15',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29102,'1110','121678582170','2023-03-12 03:53:15',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(29103,'1110','121678582170','2023-03-12 03:53:15',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29104,'1110','121678582170','2023-03-12 03:53:15',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(29105,'5500','121678582170','2023-03-12 03:53:15',4274.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29106,'1000','121678582170','2023-03-12 03:53:15',6370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29107,'4000','121678582170','2023-03-12 03:53:15',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29108,'4000','121678582170','2023-03-12 03:53:15',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(29109,'4000','121678582170','2023-03-12 03:53:15',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29110,'4000','121678582170','2023-03-12 03:53:15',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(29111,'1110','121678590227','2023-03-12 06:06:26',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29112,'1110','121678590227','2023-03-12 06:06:26',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(29113,'5500','121678590227','2023-03-12 06:06:26',208.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29114,'1000','121678590227','2023-03-12 06:06:26',370.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29115,'4000','121678590227','2023-03-12 06:06:26',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29116,'4000','121678590227','2023-03-12 06:06:26',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(29117,'1110','121678590392','2023-03-12 06:42:08',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29118,'5500','121678590392','2023-03-12 06:42:08',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29119,'1000','121678590392','2023-03-12 06:42:08',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29120,'4000','121678590392','2023-03-12 06:42:08',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29121,'1110','121678602030','2023-03-12 09:21:34',NULL,776.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(29122,'1110','121678602030','2023-03-12 09:21:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29123,'1110','121678602030','2023-03-12 09:21:34',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29124,'1110','121678602030','2023-03-12 09:21:34',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29125,'1110','121678602030','2023-03-12 09:21:34',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29126,'5500','121678602030','2023-03-12 09:21:34',1278.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29127,'1000','121678602030','2023-03-12 09:21:34',1930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29128,'4000','121678602030','2023-03-12 09:21:34',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(29129,'4000','121678602030','2023-03-12 09:21:34',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29130,'4000','121678602030','2023-03-12 09:21:34',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29131,'4000','121678602030','2023-03-12 09:21:34',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29132,'4000','121678602030','2023-03-12 09:21:34',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29133,'1110','121678626206','2023-03-12 16:03:39',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29134,'5500','121678626206','2023-03-12 16:03:39',36.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29135,'1000','121678626206','2023-03-12 16:03:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29136,'4000','121678626206','2023-03-12 16:03:39',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29137,'1110','121678626229','2023-03-12 16:37:05',NULL,2280.00,'','12','1','Inventory sold','1','','sales','7640175740030','','No',NULL,NULL,''),(29138,'1110','121678626229','2023-03-12 16:37:05',NULL,1458.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(29139,'1110','121678626229','2023-03-12 16:37:05',NULL,6400.00,'','12','1','Inventory sold','1','','sales','080432400395','','No',NULL,NULL,''),(29140,'1110','121678626229','2023-03-12 16:37:05',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29141,'5500','121678626229','2023-03-12 16:37:05',12599.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29142,'1000','121678626229','2023-03-12 16:37:05',18250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29143,'4000','121678626229','2023-03-12 16:37:05',NULL,3350.00,'','12','1','Good sold','1','','sales','7640175740030','','No',NULL,NULL,''),(29144,'4000','121678626229','2023-03-12 16:37:05',NULL,2700.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(29145,'4000','121678626229','2023-03-12 16:37:05',NULL,8700.00,'','12','1','Good sold','1','','sales','080432400395','','No',NULL,NULL,''),(29146,'4000','121678626229','2023-03-12 16:37:05',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29147,'1110','121678628792','2023-03-12 16:57:03',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29148,'1110','121678628792','2023-03-12 16:57:03',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29149,'5500','121678628792','2023-03-12 16:57:03',664.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29150,'1000','121678628792','2023-03-12 16:57:03',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29151,'4000','121678628792','2023-03-12 16:57:03',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29152,'4000','121678628792','2023-03-12 16:57:03',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29153,'1110','121678629429','2023-03-12 17:53:38',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(29154,'5500','121678629429','2023-03-12 17:53:38',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29155,'1000','121678629429','2023-03-12 17:53:38',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29156,'4000','121678629429','2023-03-12 17:53:38',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(29157,'1110','121678632826','2023-03-12 20:30:18',NULL,1004.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29158,'1110','121678632826','2023-03-12 20:30:18',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29159,'5500','121678632826','2023-03-12 20:30:18',1110.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29160,'1000','121678632826','2023-03-12 20:30:18',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29161,'4000','121678632826','2023-03-12 20:30:18',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29162,'4000','121678632826','2023-03-12 20:30:18',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29163,'1110','121678642438','2023-03-12 21:08:00',NULL,1734.00,'','12','1','Inventory sold','1','','sales','5029704217830','','No',NULL,NULL,''),(29164,'1110','121678642438','2023-03-12 21:08:00',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29165,'5500','121678642438','2023-03-12 21:08:00',4195.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29166,'1000','121678642438','2023-03-12 21:08:00',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29167,'4000','121678642438','2023-03-12 21:08:00',NULL,2500.00,'','12','1','Good sold','1','','sales','5029704217830','','No',NULL,NULL,''),(29168,'4000','121678642438','2023-03-12 21:08:00',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29169,'1110','121678644681','2023-03-12 21:14:02',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001410','','No',NULL,NULL,''),(29170,'5500','121678644681','2023-03-12 21:14:02',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29171,'1000','121678644681','2023-03-12 21:14:02',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29172,'4000','121678644681','2023-03-12 21:14:02',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001410','','No',NULL,NULL,''),(29173,'1110','121678644848','2023-03-12 22:35:07',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(29174,'5500','121678644848','2023-03-12 22:35:07',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29175,'1000','121678644848','2023-03-12 22:35:07',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29176,'4000','121678644848','2023-03-12 22:35:07',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(29177,'1110','121678649729','2023-03-12 23:23:16',NULL,2100.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29178,'1110','121678649729','2023-03-12 23:23:16',NULL,106.67,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29179,'5500','121678649729','2023-03-12 23:23:16',2206.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29180,'1000','121678649729','2023-03-12 23:23:16',3360.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29181,'4000','121678649729','2023-03-12 23:23:16',NULL,3200.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29182,'4000','121678649729','2023-03-12 23:23:16',NULL,160.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29183,'1110','121678653521','2023-03-12 23:39:16',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29184,'1110','121678653521','2023-03-12 23:39:16',NULL,3000.00,'','12','1','Inventory sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29185,'5500','121678653521','2023-03-12 23:39:16',3149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29186,'1000','121678653521','2023-03-12 23:39:16',4300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29187,'4000','121678653521','2023-03-12 23:39:16',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29188,'4000','121678653521','2023-03-12 23:39:16',NULL,4000.00,'','12','1','Good sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29189,'1110','121678653667','2023-03-12 23:51:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29190,'5500','121678653667','2023-03-12 23:51:30',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29191,'1000','121678653667','2023-03-12 23:51:30',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29192,'4000','121678653667','2023-03-12 23:51:30',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29193,'1110','121678654296','2023-03-13 00:00:09',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29194,'1110','121678654296','2023-03-13 00:00:09',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29195,'1110','121678654296','2023-03-13 00:00:09',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(29196,'1110','121678654296','2023-03-13 00:00:09',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29197,'5500','121678654296','2023-03-13 00:00:09',625.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29198,'1000','121678654296','2023-03-13 00:00:09',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29199,'4000','121678654296','2023-03-13 00:00:09',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29200,'4000','121678654296','2023-03-13 00:00:09',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29201,'4000','121678654296','2023-03-13 00:00:09',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(29202,'4000','121678654296','2023-03-13 00:00:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29203,'1110','121678654844','2023-03-13 01:00:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29204,'5500','121678654844','2023-03-13 01:00:10',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29205,'1000','121678654844','2023-03-13 01:00:10',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29206,'4000','121678654844','2023-03-13 01:00:10',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29207,'1110','121678658415','2023-03-13 01:00:55',NULL,1004.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29208,'1110','121678658415','2023-03-13 01:00:55',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29209,'5500','121678658415','2023-03-13 01:00:55',1110.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29210,'1000','121678658415','2023-03-13 01:00:55',1560.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29211,'4000','121678658415','2023-03-13 01:00:55',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29212,'4000','121678658415','2023-03-13 01:00:55',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29213,'1110','121678658461','2023-03-13 01:17:33',NULL,580.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(29214,'5500','121678658461','2023-03-13 01:17:33',580.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29215,'1000','121678658461','2023-03-13 01:17:33',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29216,'4000','121678658461','2023-03-13 01:17:33',NULL,800.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(29217,'1110','121678661364','2023-03-13 01:50:07',NULL,7400.00,'','12','1','Inventory sold','1','','sales','5000299295021','','No',NULL,NULL,''),(29218,'1110','121678661364','2023-03-13 01:50:07',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29219,'1110','121678661364','2023-03-13 01:50:07',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29220,'5500','121678661364','2023-03-13 01:50:07',7811.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29221,'1000','121678661364','2023-03-13 01:50:07',11150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29222,'4000','121678661364','2023-03-13 01:50:07',NULL,10500.00,'','12','1','Good sold','1','','sales','5000299295021','','No',NULL,NULL,''),(29223,'4000','121678661364','2023-03-13 01:50:07',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29224,'4000','121678661364','2023-03-13 01:50:07',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29225,'1110','121678661413','2023-03-13 01:51:46',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29226,'5500','121678661413','2023-03-13 01:51:46',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29227,'1000','121678661413','2023-03-13 01:51:46',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29228,'4000','121678661413','2023-03-13 01:51:46',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29229,'1110','121678661513','2023-03-13 02:38:20',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29230,'5500','121678661513','2023-03-13 02:38:20',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29231,'1000','121678661513','2023-03-13 02:38:20',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29232,'4000','121678661513','2023-03-13 02:38:20',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29233,'1110','121678664346','2023-03-13 03:08:09',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29234,'5500','121678664346','2023-03-13 03:08:09',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29235,'1000','121678664346','2023-03-13 03:08:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29236,'4000','121678664346','2023-03-13 03:08:09',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29237,'1110','121678666103','2023-03-13 04:15:41',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(29238,'5500','121678666103','2023-03-13 04:15:41',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29239,'1000','121678666103','2023-03-13 04:15:41',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29240,'4000','121678666103','2023-03-13 04:15:41',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(29241,'1110','121678683839','2023-03-13 08:05:01',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29242,'5500','121678683839','2023-03-13 08:05:01',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29243,'1000','121678683839','2023-03-13 08:05:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29244,'4000','121678683839','2023-03-13 08:05:01',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29245,'1110','121678701528','2023-03-13 14:17:33',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29246,'5500','121678701528','2023-03-13 14:17:33',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29247,'1000','121678701528','2023-03-13 14:17:33',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29248,'4000','121678701528','2023-03-13 14:17:33',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29249,'1110','121678714907','2023-03-13 16:42:20',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29250,'1110','121678714907','2023-03-13 16:42:20',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(29251,'5500','121678714907','2023-03-13 16:42:20',241.37,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29252,'1000','121678714907','2023-03-13 16:42:20',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29253,'4000','121678714907','2023-03-13 16:42:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(29254,'4000','121678714907','2023-03-13 16:42:20',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(29255,'1110','121678714945','2023-03-13 16:44:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29256,'5500','121678714945','2023-03-13 16:44:18',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29257,'1000','121678714945','2023-03-13 16:44:18',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29258,'4000','121678714945','2023-03-13 16:44:18',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29259,'1110','121678722711','2023-03-13 18:52:00',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29260,'5500','121678722711','2023-03-13 18:52:00',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29261,'1000','121678722711','2023-03-13 18:52:00',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29262,'4000','121678722711','2023-03-13 18:52:00',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300504','','No',NULL,NULL,''),(29263,'1110','121678722726','2023-03-13 19:08:54',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29264,'5500','121678722726','2023-03-13 19:08:54',154.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29265,'1000','121678722726','2023-03-13 19:08:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29266,'4000','121678722726','2023-03-13 19:08:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29267,'1110','121678723740','2023-03-13 20:13:23',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29268,'5500','121678723740','2023-03-13 20:13:23',294.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29269,'1000','121678723740','2023-03-13 20:13:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29270,'4000','121678723740','2023-03-13 20:13:23',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29271,'1110','121678736432','2023-03-13 22:40:51',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(29272,'5500','121678736432','2023-03-13 22:40:51',690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29273,'1000','121678736432','2023-03-13 22:40:51',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29274,'4000','121678736432','2023-03-13 22:40:51',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(29275,'1110','121678736462','2023-03-13 22:42:06',NULL,784.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(29276,'5500','121678736462','2023-03-13 22:42:06',784.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29277,'1000','121678736462','2023-03-13 22:42:06',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29278,'4000','121678736462','2023-03-13 22:42:06',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(29279,'1110','121678736554','2023-03-13 22:44:04',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(29280,'1110','121678736554','2023-03-13 22:44:04',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(29281,'5500','121678736554','2023-03-13 22:44:04',783.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29282,'1000','121678736554','2023-03-13 22:44:04',1280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29283,'4000','121678736554','2023-03-13 22:44:04',NULL,1100.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(29284,'4000','121678736554','2023-03-13 22:44:04',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(29285,'1110','121678736676','2023-03-13 22:48:18',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(29286,'1110','121678736676','2023-03-13 22:48:18',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29287,'5500','121678736676','2023-03-13 22:48:18',82.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29288,'1000','121678736676','2023-03-13 22:48:18',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29289,'4000','121678736676','2023-03-13 22:48:18',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(29290,'4000','121678736676','2023-03-13 22:48:18',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29291,'1110','121678736904','2023-03-13 22:55:28',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(29292,'1110','121678736904','2023-03-13 22:55:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29293,'1110','121678736904','2023-03-13 22:55:28',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29294,'5500','121678736904','2023-03-13 22:55:28',782.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29295,'1000','121678736904','2023-03-13 22:55:28',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29296,'4000','121678736904','2023-03-13 22:55:28',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(29297,'4000','121678736904','2023-03-13 22:55:28',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29298,'4000','121678736904','2023-03-13 22:55:28',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29299,'1110','121678738831','2023-03-13 23:21:12',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642021','','No',NULL,NULL,''),(29300,'1110','121678738831','2023-03-13 23:21:12',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800462','','No',NULL,NULL,''),(29301,'5500','121678738831','2023-03-13 23:21:12',1750.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29302,'1000','121678738831','2023-03-13 23:21:12',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29303,'4000','121678738831','2023-03-13 23:21:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6009675642021','','No',NULL,NULL,''),(29304,'4000','121678738831','2023-03-13 23:21:12',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800462','','No',NULL,NULL,''),(29305,'1110','121678740465','2023-03-14 00:37:04',NULL,263.16,'','12','1','Inventory sold','1','','sales','5010232965096','','No',NULL,NULL,''),(29306,'5500','121678740465','2023-03-14 00:37:04',263.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29307,'1000','121678740465','2023-03-14 00:37:04',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29308,'4000','121678740465','2023-03-14 00:37:04',NULL,600.00,'','12','1','Good sold','1','','sales','5010232965096','','No',NULL,NULL,''),(29309,'1110','121678816323','2023-03-14 20:52:49',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29310,'5500','121678816323','2023-03-14 20:52:49',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29311,'1000','121678816323','2023-03-14 20:52:49',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29312,'4000','121678816323','2023-03-14 20:52:49',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29313,'1110','121678816377','2023-03-14 21:26:54',NULL,653.00,'','12','1','Inventory sold','1','','sales','5010103930833','','No',NULL,NULL,''),(29314,'1110','121678816377','2023-03-14 21:26:54',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29315,'1110','121678816377','2023-03-14 21:26:54',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29316,'1110','121678816377','2023-03-14 21:26:54',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(29317,'5500','121678816377','2023-03-14 21:26:54',1371.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29318,'1000','121678816377','2023-03-14 21:26:54',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29319,'4000','121678816377','2023-03-14 21:26:54',NULL,1100.00,'','12','1','Good sold','1','','sales','5010103930833','','No',NULL,NULL,''),(29320,'4000','121678816377','2023-03-14 21:26:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29321,'4000','121678816377','2023-03-14 21:26:54',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29322,'4000','121678816377','2023-03-14 21:26:54',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(29323,'1110','121678818572','2023-03-14 22:17:58',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29324,'1110','121678818572','2023-03-14 22:17:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29325,'5500','121678818572','2023-03-14 22:17:58',583.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29326,'1000','121678818572','2023-03-14 22:17:58',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29327,'4000','121678818572','2023-03-14 22:17:58',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29328,'4000','121678818572','2023-03-14 22:17:58',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29329,'1110','121678837668','2023-03-15 03:23:09',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(29330,'1110','121678837668','2023-03-15 03:23:09',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29331,'5500','121678837668','2023-03-15 03:23:09',398.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29332,'1000','121678837668','2023-03-15 03:23:09',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29333,'4000','121678837668','2023-03-15 03:23:09',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(29334,'4000','121678837668','2023-03-15 03:23:09',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29335,'1110','121678839966','2023-03-15 03:26:54',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29336,'1110','121678839966','2023-03-15 03:26:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29337,'5500','121678839966','2023-03-15 03:26:54',91.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29338,'1000','121678839966','2023-03-15 03:26:54',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29339,'4000','121678839966','2023-03-15 03:26:54',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29340,'4000','121678839966','2023-03-15 03:26:54',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29341,'1110','121678840092','2023-03-15 03:28:28',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29342,'5500','121678840092','2023-03-15 03:28:28',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29343,'1000','121678840092','2023-03-15 03:28:28',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29344,'4000','121678840092','2023-03-15 03:28:28',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(29345,'1110','121678863755','2023-03-15 11:44:02',NULL,3000.00,'','12','1','Inventory sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29346,'1110','121678863755','2023-03-15 11:44:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(29347,'5500','121678863755','2023-03-15 11:44:02',3053.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29348,'1000','121678863755','2023-03-15 11:44:02',4080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29349,'4000','121678863755','2023-03-15 11:44:02',NULL,4000.00,'','12','1','Good sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29350,'4000','121678863755','2023-03-15 11:44:02',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(29351,'1110','121678869953','2023-03-15 12:38:14',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29352,'5500','121678869953','2023-03-15 12:38:14',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29353,'1000','121678869953','2023-03-15 12:38:14',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29354,'4000','121678869953','2023-03-15 12:38:14',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29355,'1110','121678894655','2023-03-15 18:39:50',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29356,'1110','121678894655','2023-03-15 18:39:50',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29357,'1110','121678894655','2023-03-15 18:39:50',NULL,396.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29358,'5500','121678894655','2023-03-15 18:39:50',945.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29359,'1000','121678894655','2023-03-15 18:39:50',1630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29360,'4000','121678894655','2023-03-15 18:39:50',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29361,'4000','121678894655','2023-03-15 18:39:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29362,'4000','121678894655','2023-03-15 18:39:50',NULL,880.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29363,'1110','121678894845','2023-03-15 18:41:02',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29364,'1110','121678894845','2023-03-15 18:41:02',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29365,'5500','121678894845','2023-03-15 18:41:02',499.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29366,'1000','121678894845','2023-03-15 18:41:02',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29367,'4000','121678894845','2023-03-15 18:41:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29368,'4000','121678894845','2023-03-15 18:41:02',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29369,'1110','121678894867','2023-03-15 18:53:23',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29370,'5500','121678894867','2023-03-15 18:53:23',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29371,'1000','121678894867','2023-03-15 18:53:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29372,'4000','121678894867','2023-03-15 18:53:23',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29373,'1110','121678895621','2023-03-15 18:55:43',NULL,494.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(29374,'1110','121678895621','2023-03-15 18:55:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29375,'5500','121678895621','2023-03-15 18:55:43',547.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29376,'1000','121678895621','2023-03-15 18:55:43',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29377,'4000','121678895621','2023-03-15 18:55:43',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(29378,'4000','121678895621','2023-03-15 18:55:43',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29379,'1110','121678895756','2023-03-15 18:58:33',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29380,'1110','121678895756','2023-03-15 18:58:33',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29381,'5500','121678895756','2023-03-15 18:58:33',1248.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29382,'1000','121678895756','2023-03-15 18:58:33',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29383,'4000','121678895756','2023-03-15 18:58:33',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29384,'4000','121678895756','2023-03-15 18:58:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29385,'1110','121678895920','2023-03-15 19:28:16',NULL,1474.00,'','12','1','Inventory sold','1','','sales','5010752000321','','No',NULL,NULL,''),(29386,'1110','121678895920','2023-03-15 19:28:16',NULL,441.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29387,'5500','121678895920','2023-03-15 19:28:16',1915.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29388,'1000','121678895920','2023-03-15 19:28:16',2950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29389,'4000','121678895920','2023-03-15 19:28:16',NULL,2200.00,'','12','1','Good sold','1','','sales','5010752000321','','No',NULL,NULL,''),(29390,'4000','121678895920','2023-03-15 19:28:16',NULL,750.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29391,'1110','121678904267','2023-03-15 21:18:40',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(29392,'1110','121678904267','2023-03-15 21:18:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29393,'5500','121678904267','2023-03-15 21:18:40',300.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29394,'1000','121678904267','2023-03-15 21:18:40',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29395,'4000','121678904267','2023-03-15 21:18:40',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(29396,'4000','121678904267','2023-03-15 21:18:40',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29397,'1110','121678904341','2023-03-15 21:45:23',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(29398,'5500','121678904341','2023-03-15 21:45:23',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29399,'1000','121678904341','2023-03-15 21:45:23',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29400,'4000','121678904341','2023-03-15 21:45:23',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(29401,'1110','121678905968','2023-03-15 22:15:43',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29402,'5500','121678905968','2023-03-15 22:15:43',168.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29403,'1000','121678905968','2023-03-15 22:15:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29404,'4000','121678905968','2023-03-15 22:15:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29405,'1110','121678907750','2023-03-15 22:37:44',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29406,'5500','121678907750','2023-03-15 22:37:44',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29407,'1000','121678907750','2023-03-15 22:37:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29408,'4000','121678907750','2023-03-15 22:37:44',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29409,'1110','121678909094','2023-03-15 22:39:28',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29410,'1110','121678909094','2023-03-15 22:39:28',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29411,'5500','121678909094','2023-03-15 22:39:28',708.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29412,'1000','121678909094','2023-03-15 22:39:28',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29413,'4000','121678909094','2023-03-15 22:39:28',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29414,'4000','121678909094','2023-03-15 22:39:28',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29415,'1110','121678909252','2023-03-15 22:44:44',NULL,165.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29416,'5500','121678909252','2023-03-15 22:44:44',165.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29417,'1000','121678909252','2023-03-15 22:44:44',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29418,'4000','121678909252','2023-03-15 22:44:44',NULL,250.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29419,'1110','121678909489','2023-03-15 23:05:59',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(29420,'5500','121678909489','2023-03-15 23:05:59',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29421,'1000','121678909489','2023-03-15 23:05:59',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29422,'4000','121678909489','2023-03-15 23:05:59',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(29423,'1110','121678910767','2023-03-16 01:01:30',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29424,'5500','121678910767','2023-03-16 01:01:30',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29425,'1000','121678910767','2023-03-16 01:01:30',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29426,'4000','121678910767','2023-03-16 01:01:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29427,'1110','121678980123','2023-03-16 18:22:52',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29428,'1110','121678980123','2023-03-16 18:22:52',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29429,'1110','121678980123','2023-03-16 18:22:52',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29430,'5500','121678980123','2023-03-16 18:22:52',854.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29431,'1000','121678980123','2023-03-16 18:22:52',1130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29432,'4000','121678980123','2023-03-16 18:22:52',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29433,'4000','121678980123','2023-03-16 18:22:52',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29434,'4000','121678980123','2023-03-16 18:22:52',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29435,'1110','121678980178','2023-03-16 19:56:06',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29436,'5500','121678980178','2023-03-16 19:56:06',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29437,'1000','121678980178','2023-03-16 19:56:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29438,'4000','121678980178','2023-03-16 19:56:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29439,'1110','121678985787','2023-03-16 20:34:56',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29440,'5500','121678985787','2023-03-16 20:34:56',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29441,'1000','121678985787','2023-03-16 20:34:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29442,'4000','121678985787','2023-03-16 20:34:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29443,'1110','121678988162','2023-03-16 22:01:34',NULL,660.00,'','12','1','Inventory sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29444,'5500','121678988162','2023-03-16 22:01:34',660.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29445,'1000','121678988162','2023-03-16 22:01:34',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29446,'4000','121678988162','2023-03-16 22:01:34',NULL,1000.00,'','12','1','Good sold','1','','sales','6164003409025','','No',NULL,NULL,''),(29447,'1110','121678993302','2023-03-16 22:16:07',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29448,'5500','121678993302','2023-03-16 22:16:07',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29449,'1000','121678993302','2023-03-16 22:16:07',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29450,'4000','121678993302','2023-03-16 22:16:07',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29451,'1110','121678994172','2023-03-16 22:23:04',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29452,'5500','121678994172','2023-03-16 22:23:04',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29453,'1000','121678994172','2023-03-16 22:23:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29454,'4000','121678994172','2023-03-16 22:23:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29455,'1110','121678994590','2023-03-16 22:30:55',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004321','','No',NULL,NULL,''),(29456,'1110','121678994590','2023-03-16 22:30:55',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(29457,'5500','121678994590','2023-03-16 22:30:55',1218.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29458,'1000','121678994590','2023-03-16 22:30:55',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29459,'4000','121678994590','2023-03-16 22:30:55',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004321','','No',NULL,NULL,''),(29460,'4000','121678994590','2023-03-16 22:30:55',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(29461,'1110','121678998768','2023-03-16 23:51:05',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(29462,'5500','121678998768','2023-03-16 23:51:05',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29463,'1000','121678998768','2023-03-16 23:51:05',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29464,'4000','121678998768','2023-03-16 23:51:05',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(29465,'1110','121678999893','2023-03-16 23:51:50',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29466,'5500','121678999893','2023-03-16 23:51:50',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29467,'1000','121678999893','2023-03-16 23:51:50',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29468,'4000','121678999893','2023-03-16 23:51:50',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29469,'1110','121679001505','2023-03-17 00:30:21',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29470,'1110','121679001505','2023-03-17 00:30:21',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29471,'5500','121679001505','2023-03-17 00:30:21',441.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29472,'1000','121679001505','2023-03-17 00:30:21',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29473,'4000','121679001505','2023-03-17 00:30:21',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29474,'4000','121679001505','2023-03-17 00:30:21',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29475,'1110','121679002241','2023-03-17 01:02:43',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29476,'5500','121679002241','2023-03-17 01:02:43',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29477,'1000','121679002241','2023-03-17 01:02:43',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29478,'4000','121679002241','2023-03-17 01:02:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29479,'1110','121679009318','2023-03-17 02:29:21',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29480,'5500','121679009318','2023-03-17 02:29:21',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29481,'1000','121679009318','2023-03-17 02:29:21',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29482,'4000','121679009318','2023-03-17 02:29:21',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29483,'1110','121679009389','2023-03-17 02:30:21',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29484,'5500','121679009389','2023-03-17 02:30:21',595.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29485,'1000','121679009389','2023-03-17 02:30:21',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29486,'4000','121679009389','2023-03-17 02:30:21',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29487,'1110','121679009430','2023-03-17 02:56:56',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29488,'5500','121679009430','2023-03-17 02:56:56',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29489,'1000','121679009430','2023-03-17 02:56:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29490,'4000','121679009430','2023-03-17 02:56:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29491,'1110','121679011022','2023-03-17 04:51:50',NULL,1300.00,'','12','1','Inventory sold','1','','sales','5010677015615','','No',NULL,NULL,''),(29492,'5500','121679011022','2023-03-17 04:51:50',1300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29493,'1000','121679011022','2023-03-17 04:51:50',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29494,'4000','121679011022','2023-03-17 04:51:50',NULL,1800.00,'','12','1','Good sold','1','','sales','5010677015615','','No',NULL,NULL,''),(29495,'1110','121679077983','2023-03-17 21:37:32',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(29496,'1110','121679077983','2023-03-17 21:37:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29497,'5500','121679077983','2023-03-17 21:37:32',840.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29498,'1000','121679077983','2023-03-17 21:37:32',1430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29499,'4000','121679077983','2023-03-17 21:37:32',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(29500,'4000','121679077983','2023-03-17 21:37:32',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29501,'1110','121679078273','2023-03-17 21:46:26',NULL,1382.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29502,'5500','121679078273','2023-03-17 21:46:26',1382.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29503,'1000','121679078273','2023-03-17 21:46:26',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29504,'4000','121679078273','2023-03-17 21:46:26',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29505,'1110','121679078793','2023-03-17 21:47:10',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29506,'5500','121679078793','2023-03-17 21:47:10',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29507,'1000','121679078793','2023-03-17 21:47:10',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29508,'4000','121679078793','2023-03-17 21:47:10',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29509,'1110','121679078843','2023-03-17 21:47:50',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29510,'5500','121679078843','2023-03-17 21:47:50',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29511,'1000','121679078843','2023-03-17 21:47:50',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29512,'4000','121679078843','2023-03-17 21:47:50',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29513,'1110','121679078878','2023-03-17 21:48:28',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(29514,'5500','121679078878','2023-03-17 21:48:28',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29515,'1000','121679078878','2023-03-17 21:48:28',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29516,'4000','121679078878','2023-03-17 21:48:28',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(29517,'1110','121679078915','2023-03-17 22:00:32',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29518,'5500','121679078915','2023-03-17 22:00:32',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29519,'1000','121679078915','2023-03-17 22:00:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29520,'4000','121679078915','2023-03-17 22:00:32',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29521,'1110','121679079677','2023-03-17 22:22:05',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(29522,'1110','121679079677','2023-03-17 22:22:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29523,'5500','121679079677','2023-03-17 22:22:05',479.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29524,'1000','121679079677','2023-03-17 22:22:05',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29525,'4000','121679079677','2023-03-17 22:22:05',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(29526,'4000','121679079677','2023-03-17 22:22:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29527,'1110','121679080933','2023-03-17 23:08:40',NULL,628.00,'','12','1','Inventory sold','1','','sales','6001495203055','','No',NULL,NULL,''),(29528,'1110','121679080933','2023-03-17 23:08:40',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29529,'5500','121679080933','2023-03-17 23:08:40',1024.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29530,'1000','121679080933','2023-03-17 23:08:40',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29531,'4000','121679080933','2023-03-17 23:08:40',NULL,1400.00,'','12','1','Good sold','1','','sales','6001495203055','','No',NULL,NULL,''),(29532,'4000','121679080933','2023-03-17 23:08:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29533,'1110','121679083797','2023-03-17 23:38:40',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29534,'5500','121679083797','2023-03-17 23:38:40',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29535,'1000','121679083797','2023-03-17 23:38:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29536,'4000','121679083797','2023-03-17 23:38:40',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(29537,'1110','121679085553','2023-03-17 23:58:53',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29538,'5500','121679085553','2023-03-17 23:58:53',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29539,'1000','121679085553','2023-03-17 23:58:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29540,'4000','121679085553','2023-03-17 23:58:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29541,'1110','121679086744','2023-03-18 00:42:24',NULL,1270.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(29542,'5500','121679086744','2023-03-18 00:42:24',1270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29543,'1000','121679086744','2023-03-18 00:42:24',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29544,'4000','121679086744','2023-03-18 00:42:24',NULL,1700.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(29545,'1110','121679099322','2023-03-18 03:34:03',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(29546,'1110','121679099322','2023-03-18 03:34:03',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29547,'1110','121679099322','2023-03-18 03:34:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29548,'5500','121679099322','2023-03-18 03:34:03',2391.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29549,'1000','121679099322','2023-03-18 03:34:03',3350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29550,'4000','121679099322','2023-03-18 03:34:03',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(29551,'4000','121679099322','2023-03-18 03:34:03',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(29552,'4000','121679099322','2023-03-18 03:34:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29553,'1110','121679100512','2023-03-18 03:49:13',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29554,'1110','121679100512','2023-03-18 03:49:13',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29555,'1110','121679100512','2023-03-18 03:49:13',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29556,'5500','121679100512','2023-03-18 03:49:13',806.18,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29557,'1000','121679100512','2023-03-18 03:49:13',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29558,'4000','121679100512','2023-03-18 03:49:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29559,'4000','121679100512','2023-03-18 03:49:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29560,'4000','121679100512','2023-03-18 03:49:13',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29561,'1110','121679100561','2023-03-18 04:00:22',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29562,'1110','121679100561','2023-03-18 04:00:22',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29563,'5500','121679100561','2023-03-18 04:00:22',1124.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29564,'1000','121679100561','2023-03-18 04:00:22',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29565,'4000','121679100561','2023-03-18 04:00:22',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29566,'4000','121679100561','2023-03-18 04:00:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29567,'1110','121679101226','2023-03-18 04:03:56',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29568,'1110','121679101226','2023-03-18 04:03:56',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29569,'5500','121679101226','2023-03-18 04:03:56',323.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29570,'1000','121679101226','2023-03-18 04:03:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29571,'4000','121679101226','2023-03-18 04:03:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29572,'4000','121679101226','2023-03-18 04:03:56',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29573,'1110','121679102503','2023-03-18 04:22:04',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29574,'5500','121679102503','2023-03-18 04:22:04',502.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29575,'1000','121679102503','2023-03-18 04:22:04',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29576,'4000','121679102503','2023-03-18 04:22:04',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29577,'1110','121679115634','2023-03-18 08:02:55',NULL,1970.00,'','12','1','Inventory sold','1','','sales','089540448978','','No',NULL,NULL,''),(29578,'1110','121679115634','2023-03-18 08:02:55',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29579,'1110','121679115634','2023-03-18 08:02:55',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29580,'5500','121679115634','2023-03-18 08:02:55',2204.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29581,'1000','121679115634','2023-03-18 08:02:55',2990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29582,'4000','121679115634','2023-03-18 08:02:55',NULL,2600.00,'','12','1','Good sold','1','','sales','089540448978','','No',NULL,NULL,''),(29583,'4000','121679115634','2023-03-18 08:02:55',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29584,'4000','121679115634','2023-03-18 08:02:55',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29585,'1110','121679131412','2023-03-18 12:33:59',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(29586,'5500','121679131412','2023-03-18 12:33:59',636.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29587,'1000','121679131412','2023-03-18 12:33:59',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29588,'4000','121679131412','2023-03-18 12:33:59',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(29589,'1110','121679150231','2023-03-18 17:37:48',NULL,752.25,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29590,'1110','121679150231','2023-03-18 17:37:48',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(29591,'5500','121679150231','2023-03-18 17:37:48',811.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29592,'1000','121679150231','2023-03-18 17:37:48',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29593,'4000','121679150231','2023-03-18 17:37:48',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29594,'4000','121679150231','2023-03-18 17:37:48',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(29595,'1110','121679150332','2023-03-18 17:39:24',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(29596,'5500','121679150332','2023-03-18 17:39:24',1098.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29597,'1000','121679150332','2023-03-18 17:39:24',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29598,'4000','121679150332','2023-03-18 17:39:24',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(29599,'1110','121679150369','2023-03-18 17:40:17',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29600,'5500','121679150369','2023-03-18 17:40:17',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29601,'1000','121679150369','2023-03-18 17:40:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29602,'4000','121679150369','2023-03-18 17:40:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29603,'1110','121679159328','2023-03-18 20:09:21',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29604,'1110','121679159328','2023-03-18 20:09:21',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(29605,'5500','121679159328','2023-03-18 20:09:21',474.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29606,'1000','121679159328','2023-03-18 20:09:21',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29607,'4000','121679159328','2023-03-18 20:09:21',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29608,'4000','121679159328','2023-03-18 20:09:21',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(29609,'1110','121679159374','2023-03-18 20:51:31',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29610,'1110','121679159374','2023-03-18 20:51:31',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29611,'5500','121679159374','2023-03-18 20:51:31',527.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29612,'1000','121679159374','2023-03-18 20:51:31',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29613,'4000','121679159374','2023-03-18 20:51:31',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(29614,'4000','121679159374','2023-03-18 20:51:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29615,'1110','121679161936','2023-03-18 20:53:28',NULL,480.00,'','12','1','Inventory sold','1','','sales','7174000401020','','No',NULL,NULL,''),(29616,'5500','121679161936','2023-03-18 20:53:28',480.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29617,'1000','121679161936','2023-03-18 20:53:28',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29618,'4000','121679161936','2023-03-18 20:53:28',NULL,1000.00,'','12','1','Good sold','1','','sales','7174000401020','','No',NULL,NULL,''),(29619,'1110','121679162262','2023-03-18 20:57:53',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29620,'5500','121679162262','2023-03-18 20:57:53',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29621,'1000','121679162262','2023-03-18 20:57:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29622,'4000','121679162262','2023-03-18 20:57:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29623,'1110','121679162279','2023-03-18 21:18:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29624,'5500','121679162279','2023-03-18 21:18:06',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29625,'1000','121679162279','2023-03-18 21:18:06',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29626,'4000','121679162279','2023-03-18 21:18:06',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29627,'1110','121679163491','2023-03-18 22:50:49',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29628,'5500','121679163491','2023-03-18 22:50:49',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29629,'1000','121679163491','2023-03-18 22:50:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29630,'4000','121679163491','2023-03-18 22:50:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29631,'1110','121679170005','2023-03-18 23:06:57',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29632,'5500','121679170005','2023-03-18 23:06:57',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29633,'1000','121679170005','2023-03-18 23:06:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29634,'4000','121679170005','2023-03-18 23:06:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29635,'1110','121679170496','2023-03-18 23:18:58',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29636,'5500','121679170496','2023-03-18 23:18:58',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29637,'1000','121679170496','2023-03-18 23:18:58',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29638,'4000','121679170496','2023-03-18 23:18:58',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29639,'1110','121679170749','2023-03-18 23:38:27',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29640,'1110','121679170749','2023-03-18 23:38:27',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(29641,'5500','121679170749','2023-03-18 23:38:27',432.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29642,'1000','121679170749','2023-03-18 23:38:27',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29643,'4000','121679170749','2023-03-18 23:38:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29644,'4000','121679170749','2023-03-18 23:38:27',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(29645,'1110','121679171912','2023-03-19 00:16:14',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29646,'1110','121679171912','2023-03-19 00:16:14',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29647,'1110','121679171912','2023-03-19 00:16:14',NULL,57.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29648,'5500','121679171912','2023-03-19 00:16:14',289.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29649,'1000','121679171912','2023-03-19 00:16:14',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29650,'4000','121679171912','2023-03-19 00:16:14',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29651,'4000','121679171912','2023-03-19 00:16:14',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29652,'4000','121679171912','2023-03-19 00:16:14',NULL,150.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29653,'1110','121679174201','2023-03-19 00:28:34',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29654,'5500','121679174201','2023-03-19 00:28:34',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29655,'1000','121679174201','2023-03-19 00:28:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29656,'4000','121679174201','2023-03-19 00:28:34',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29657,'1110','121679174919','2023-03-19 00:34:24',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29658,'5500','121679174919','2023-03-19 00:34:24',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29659,'1000','121679174919','2023-03-19 00:34:24',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29660,'4000','121679174919','2023-03-19 00:34:24',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29661,'1110','121679175269','2023-03-19 00:42:26',NULL,2461.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29662,'5500','121679175269','2023-03-19 00:42:26',2461.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29663,'1000','121679175269','2023-03-19 00:42:26',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29664,'4000','121679175269','2023-03-19 00:42:26',NULL,3500.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(29665,'1110','121679175797','2023-03-19 00:48:00',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29666,'5500','121679175797','2023-03-19 00:48:00',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29667,'1000','121679175797','2023-03-19 00:48:00',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29668,'4000','121679175797','2023-03-19 00:48:00',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29669,'1110','121679176085','2023-03-19 00:59:27',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(29670,'1110','121679176085','2023-03-19 00:59:27',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29671,'5500','121679176085','2023-03-19 00:59:27',1456.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29672,'1000','121679176085','2023-03-19 00:59:27',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29673,'4000','121679176085','2023-03-19 00:59:27',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(29674,'4000','121679176085','2023-03-19 00:59:27',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29675,'1110','121679176988','2023-03-19 01:03:40',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29676,'1110','121679176988','2023-03-19 01:03:40',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29677,'5500','121679176988','2023-03-19 01:03:40',55.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29678,'1000','121679176988','2023-03-19 01:03:40',130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29679,'4000','121679176988','2023-03-19 01:03:40',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29680,'4000','121679176988','2023-03-19 01:03:40',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(29681,'1110','121679177515','2023-03-19 01:28:57',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29682,'1110','121679177515','2023-03-19 01:28:57',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29683,'1110','121679177515','2023-03-19 01:28:57',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29684,'5500','121679177515','2023-03-19 01:28:57',992.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29685,'1000','121679177515','2023-03-19 01:28:57',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29686,'4000','121679177515','2023-03-19 01:28:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29687,'4000','121679177515','2023-03-19 01:28:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29688,'4000','121679177515','2023-03-19 01:28:57',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29689,'1110','121679178542','2023-03-19 02:05:37',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(29690,'5500','121679178542','2023-03-19 02:05:37',190.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29691,'1000','121679178542','2023-03-19 02:05:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29692,'4000','121679178542','2023-03-19 02:05:37',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(29693,'1110','121679180743','2023-03-19 02:18:55',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29694,'5500','121679180743','2023-03-19 02:18:55',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29695,'1000','121679180743','2023-03-19 02:18:55',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29696,'4000','121679180743','2023-03-19 02:18:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29697,'1110','121679181541','2023-03-19 02:39:37',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29698,'5500','121679181541','2023-03-19 02:39:37',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29699,'1000','121679181541','2023-03-19 02:39:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29700,'4000','121679181541','2023-03-19 02:39:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29701,'1110','121679182785','2023-03-19 02:44:39',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29702,'5500','121679182785','2023-03-19 02:44:39',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29703,'1000','121679182785','2023-03-19 02:44:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29704,'4000','121679182785','2023-03-19 02:44:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29705,'1110','121679183084','2023-03-19 03:45:06',NULL,405.00,'','12','1','Inventory sold','1','','sales','8906054940137','','No',NULL,NULL,''),(29706,'1110','121679183084','2023-03-19 03:45:06',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29707,'1110','121679183084','2023-03-19 03:45:06',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29708,'5500','121679183084','2023-03-19 03:45:06',527.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29709,'1000','121679183084','2023-03-19 03:45:06',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29710,'4000','121679183084','2023-03-19 03:45:06',NULL,700.00,'','12','1','Good sold','1','','sales','8906054940137','','No',NULL,NULL,''),(29711,'4000','121679183084','2023-03-19 03:45:06',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29712,'4000','121679183084','2023-03-19 03:45:06',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(29713,'1110','121679187854','2023-03-19 04:35:03',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29714,'5500','121679187854','2023-03-19 04:35:03',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29715,'1000','121679187854','2023-03-19 04:35:03',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29716,'4000','121679187854','2023-03-19 04:35:03',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29717,'1110','121679195723','2023-03-19 06:15:40',NULL,502.00,'','12','1','Inventory sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29718,'1110','121679195723','2023-03-19 06:15:40',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29719,'5500','121679195723','2023-03-19 06:15:40',540.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29720,'1000','121679195723','2023-03-19 06:15:40',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29721,'4000','121679195723','2023-03-19 06:15:40',NULL,700.00,'','12','1','Good sold','1','','sales','6161100421370','','No',NULL,NULL,''),(29722,'4000','121679195723','2023-03-19 06:15:40',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29723,'1110','121679251859','2023-03-19 21:51:17',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(29724,'1110','121679251859','2023-03-19 21:51:17',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29725,'5500','121679251859','2023-03-19 21:51:17',189.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29726,'1000','121679251859','2023-03-19 21:51:17',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29727,'4000','121679251859','2023-03-19 21:51:17',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(29728,'4000','121679251859','2023-03-19 21:51:17',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29729,'1110','121679251882','2023-03-19 21:54:08',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29730,'5500','121679251882','2023-03-19 21:54:08',149.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29731,'1000','121679251882','2023-03-19 21:54:08',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29732,'4000','121679251882','2023-03-19 21:54:08',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(29733,'1110','121679252092','2023-03-19 22:24:42',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29734,'1110','121679252092','2023-03-19 22:24:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29735,'5500','121679252092','2023-03-19 22:24:42',483.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29736,'1000','121679252092','2023-03-19 22:24:42',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29737,'4000','121679252092','2023-03-19 22:24:42',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(29738,'4000','121679252092','2023-03-19 22:24:42',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(29739,'1110','121679253919','2023-03-19 22:44:07',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(29740,'5500','121679253919','2023-03-19 22:44:07',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29741,'1000','121679253919','2023-03-19 22:44:07',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29742,'4000','121679253919','2023-03-19 22:44:07',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(29743,'1110','121679255052','2023-03-19 23:04:04',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29744,'1110','121679255052','2023-03-19 23:04:04',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29745,'1110','121679255052','2023-03-19 23:04:04',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29746,'5500','121679255052','2023-03-19 23:04:04',1329.63,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29747,'1000','121679255052','2023-03-19 23:04:04',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29748,'4000','121679255052','2023-03-19 23:04:04',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29749,'4000','121679255052','2023-03-19 23:04:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29750,'4000','121679255052','2023-03-19 23:04:04',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(29751,'1110','121679259788','2023-03-20 00:03:15',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29752,'5500','121679259788','2023-03-20 00:03:15',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29753,'1000','121679259788','2023-03-20 00:03:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29754,'4000','121679259788','2023-03-20 00:03:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29755,'1110','121679259801','2023-03-20 00:03:37',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29756,'1110','121679259801','2023-03-20 00:03:37',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29757,'5500','121679259801','2023-03-20 00:03:37',366.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29758,'1000','121679259801','2023-03-20 00:03:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29759,'4000','121679259801','2023-03-20 00:03:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29760,'4000','121679259801','2023-03-20 00:03:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29761,'1110','121679259824','2023-03-20 02:17:10',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29762,'1110','121679259824','2023-03-20 02:17:10',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29763,'5500','121679259824','2023-03-20 02:17:10',388.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29764,'1000','121679259824','2023-03-20 02:17:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29765,'4000','121679259824','2023-03-20 02:17:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(29766,'4000','121679259824','2023-03-20 02:17:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29767,'1110','121679267835','2023-03-20 03:03:52',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29768,'1110','121679267835','2023-03-20 03:03:52',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29769,'5500','121679267835','2023-03-20 03:03:52',380.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29770,'1000','121679267835','2023-03-20 03:03:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29771,'4000','121679267835','2023-03-20 03:03:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29772,'4000','121679267835','2023-03-20 03:03:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29773,'1110','121679270648','2023-03-20 03:04:21',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29774,'5500','121679270648','2023-03-20 03:04:21',555.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29775,'1000','121679270648','2023-03-20 03:04:21',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29776,'4000','121679270648','2023-03-20 03:04:21',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(29777,'1110','121679277990','2023-03-20 05:07:14',NULL,480.00,'','12','1','Inventory sold','1','','sales','7174000401020','','No',NULL,NULL,''),(29778,'1110','121679277990','2023-03-20 05:07:14',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29779,'5500','121679277990','2023-03-20 05:07:14',639.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29780,'1000','121679277990','2023-03-20 05:07:14',1240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29781,'4000','121679277990','2023-03-20 05:07:14',NULL,1000.00,'','12','1','Good sold','1','','sales','7174000401020','','No',NULL,NULL,''),(29782,'4000','121679277990','2023-03-20 05:07:14',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29783,'1110','121679278039','2023-03-20 05:09:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29784,'5500','121679278039','2023-03-20 05:09:04',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29785,'1000','121679278039','2023-03-20 05:09:04',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29786,'4000','121679278039','2023-03-20 05:09:04',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29787,'1110','121679305588','2023-03-20 12:47:19',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29788,'5500','121679305588','2023-03-20 12:47:19',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29789,'1000','121679305588','2023-03-20 12:47:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29790,'4000','121679305588','2023-03-20 12:47:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29791,'1110','121679330505','2023-03-20 19:42:52',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29792,'5500','121679330505','2023-03-20 19:42:52',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29793,'1000','121679330505','2023-03-20 19:42:52',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29794,'4000','121679330505','2023-03-20 19:42:52',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29795,'1110','121679336526','2023-03-20 21:22:25',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29796,'5500','121679336526','2023-03-20 21:22:25',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29797,'1000','121679336526','2023-03-20 21:22:25',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29798,'4000','121679336526','2023-03-20 21:22:25',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29799,'1110','121679336560','2023-03-20 21:49:15',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(29800,'1110','121679336560','2023-03-20 21:49:15',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29801,'1110','121679336560','2023-03-20 21:49:15',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29802,'1110','121679336560','2023-03-20 21:49:15',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29803,'1110','121679336560','2023-03-20 21:49:15',NULL,336.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29804,'1110','121679336560','2023-03-20 21:49:15',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29805,'5500','121679336560','2023-03-20 21:49:15',1298.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29806,'1000','121679336560','2023-03-20 21:49:15',3580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29807,'4000','121679336560','2023-03-20 21:49:15',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(29808,'4000','121679336560','2023-03-20 21:49:15',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(29809,'4000','121679336560','2023-03-20 21:49:15',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(29810,'4000','121679336560','2023-03-20 21:49:15',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29811,'4000','121679336560','2023-03-20 21:49:15',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(29812,'4000','121679336560','2023-03-20 21:49:15',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29813,'1110','121679338214','2023-03-20 22:15:16',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29814,'1110','121679338214','2023-03-20 22:15:16',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29815,'1110','121679338214','2023-03-20 22:15:16',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29816,'1110','121679338214','2023-03-20 22:15:16',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29817,'5500','121679338214','2023-03-20 22:15:16',762.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29818,'1000','121679338214','2023-03-20 22:15:16',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29819,'4000','121679338214','2023-03-20 22:15:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29820,'4000','121679338214','2023-03-20 22:15:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29821,'4000','121679338214','2023-03-20 22:15:16',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29822,'4000','121679338214','2023-03-20 22:15:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(29823,'1110','121679339773','2023-03-20 22:30:22',NULL,1650.00,'','12','1','Inventory sold','1','','sales','087000006935','','No',NULL,NULL,''),(29824,'5500','121679339773','2023-03-20 22:30:22',1650.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29825,'1000','121679339773','2023-03-20 22:30:22',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29826,'4000','121679339773','2023-03-20 22:30:22',NULL,2250.00,'','12','1','Good sold','1','','sales','087000006935','','No',NULL,NULL,''),(29827,'1110','121679340626','2023-03-20 23:10:12',NULL,1400.00,'','12','1','Inventory sold','1','','sales','4820229033520','','No',NULL,NULL,''),(29828,'5500','121679340626','2023-03-20 23:10:12',1400.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29829,'1000','121679340626','2023-03-20 23:10:12',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29830,'4000','121679340626','2023-03-20 23:10:12',NULL,2000.00,'','12','1','Good sold','1','','sales','4820229033520','','No',NULL,NULL,''),(29831,'1110','121679343038','2023-03-20 23:25:40',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29832,'5500','121679343038','2023-03-20 23:25:40',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29833,'1000','121679343038','2023-03-20 23:25:40',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29834,'4000','121679343038','2023-03-20 23:25:40',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29835,'1110','121679343947','2023-03-20 23:51:24',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29836,'1110','121679343947','2023-03-20 23:51:24',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(29837,'5500','121679343947','2023-03-20 23:51:24',347.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29838,'1000','121679343947','2023-03-20 23:51:24',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29839,'4000','121679343947','2023-03-20 23:51:24',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29840,'4000','121679343947','2023-03-20 23:51:24',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(29841,'1110','121679345518','2023-03-20 23:54:22',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29842,'1110','121679345518','2023-03-20 23:54:22',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29843,'1110','121679345518','2023-03-20 23:54:22',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29844,'5500','121679345518','2023-03-20 23:54:22',374.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29845,'1000','121679345518','2023-03-20 23:54:22',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29846,'4000','121679345518','2023-03-20 23:54:22',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29847,'4000','121679345518','2023-03-20 23:54:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29848,'4000','121679345518','2023-03-20 23:54:22',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29849,'1110','121679345747','2023-03-21 00:02:41',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29850,'5500','121679345747','2023-03-21 00:02:41',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29851,'1000','121679345747','2023-03-21 00:02:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29852,'4000','121679345747','2023-03-21 00:02:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29853,'1110','121679346169','2023-03-21 00:30:46',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29854,'5500','121679346169','2023-03-21 00:30:46',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29855,'1000','121679346169','2023-03-21 00:30:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29856,'4000','121679346169','2023-03-21 00:30:46',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29857,'1110','121679347853','2023-03-21 00:57:46',NULL,3996.00,'','12','1','Inventory sold','1','','sales','5000281032733','','No',NULL,NULL,''),(29858,'1110','121679347853','2023-03-21 00:57:46',NULL,152.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29859,'5500','121679347853','2023-03-21 00:57:46',4148.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29860,'1000','121679347853','2023-03-21 00:57:46',5800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29861,'4000','121679347853','2023-03-21 00:57:46',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281032733','','No',NULL,NULL,''),(29862,'4000','121679347853','2023-03-21 00:57:46',NULL,400.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29863,'1110','121679349509','2023-03-21 01:24:35',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29864,'5500','121679349509','2023-03-21 01:24:35',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29865,'1000','121679349509','2023-03-21 01:24:35',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29866,'4000','121679349509','2023-03-21 01:24:35',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29867,'1110','121679351080','2023-03-21 01:40:25',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29868,'5500','121679351080','2023-03-21 01:40:25',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29869,'1000','121679351080','2023-03-21 01:40:25',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29870,'4000','121679351080','2023-03-21 01:40:25',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(29871,'1110','121679352030','2023-03-21 02:12:46',NULL,119.33,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(29872,'1110','121679352030','2023-03-21 02:12:46',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29873,'5500','121679352030','2023-03-21 02:12:46',157.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29874,'1000','121679352030','2023-03-21 02:12:46',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29875,'4000','121679352030','2023-03-21 02:12:46',NULL,200.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(29876,'4000','121679352030','2023-03-21 02:12:46',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29877,'1110','121679378444','2023-03-21 09:16:07',NULL,3056.00,'','12','1','Inventory sold','1','','sales','5000267173139','','No',NULL,NULL,''),(29878,'1110','121679378444','2023-03-21 09:16:07',NULL,10916.00,'','12','1','Inventory sold','1','','sales','5000267134338','','No',NULL,NULL,''),(29879,'1110','121679378444','2023-03-21 09:16:07',NULL,15000.00,'','12','1','Inventory sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29880,'1110','121679378444','2023-03-21 09:16:07',NULL,6200.00,'','12','1','Inventory sold','1','','sales','5099873046968','','No',NULL,NULL,''),(29881,'1110','121679378444','2023-03-21 09:16:07',NULL,3527.00,'','12','1','Inventory sold','1','','sales','5029704218134','','No',NULL,NULL,''),(29882,'1110','121679378444','2023-03-21 09:16:07',NULL,1734.00,'','12','1','Inventory sold','1','','sales','5029704217830','','No',NULL,NULL,''),(29883,'1110','121679378444','2023-03-21 09:16:07',NULL,37000.00,'','12','1','Inventory sold','1','','sales','3024480004522','','No',NULL,NULL,''),(29884,'1110','121679378444','2023-03-21 09:16:07',NULL,4920.00,'','12','1','Inventory sold','1','','sales','5000329002230','','No',NULL,NULL,''),(29885,'1110','121679378444','2023-03-21 09:16:07',NULL,2280.00,'','12','1','Inventory sold','1','','sales','7640175740030','','No',NULL,NULL,''),(29886,'1110','121679378444','2023-03-21 09:16:07',NULL,3640.00,'','12','1','Inventory sold','1','','sales','7640175740047','','No',NULL,NULL,''),(29887,'1110','121679378444','2023-03-21 09:16:07',NULL,2540.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(29888,'1110','121679378444','2023-03-21 09:16:07',NULL,19000.00,'','12','1','Inventory sold','1','','sales','5010327325323','','No',NULL,NULL,''),(29889,'1110','121679378444','2023-03-21 09:16:07',NULL,7840.00,'','12','1','Inventory sold','1','','sales','5099873038758','','No',NULL,NULL,''),(29890,'1110','121679378444','2023-03-21 09:16:07',NULL,6600.00,'','12','1','Inventory sold','1','','sales','5099873011737','','No',NULL,NULL,''),(29891,'1110','121679378444','2023-03-21 09:16:07',NULL,8900.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(29892,'1110','121679378444','2023-03-21 09:16:07',NULL,3460.00,'','12','1','Inventory sold','1','','sales','5010677015738','','No',NULL,NULL,''),(29893,'5500','121679378444','2023-03-21 09:16:07',136613.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29894,'1000','121679378444','2023-03-21 09:16:07',196750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29895,'4000','121679378444','2023-03-21 09:16:07',NULL,4500.00,'','12','1','Good sold','1','','sales','5000267173139','','No',NULL,NULL,''),(29896,'4000','121679378444','2023-03-21 09:16:07',NULL,14600.00,'','12','1','Good sold','1','','sales','5000267134338','','No',NULL,NULL,''),(29897,'4000','121679378444','2023-03-21 09:16:07',NULL,20000.00,'','12','1','Good sold','1','','sales','5099873001370','','No',NULL,NULL,''),(29898,'4000','121679378444','2023-03-21 09:16:07',NULL,9400.00,'','12','1','Good sold','1','','sales','5099873046968','','No',NULL,NULL,''),(29899,'4000','121679378444','2023-03-21 09:16:07',NULL,4900.00,'','12','1','Good sold','1','','sales','5029704218134','','No',NULL,NULL,''),(29900,'4000','121679378444','2023-03-21 09:16:07',NULL,2500.00,'','12','1','Good sold','1','','sales','5029704217830','','No',NULL,NULL,''),(29901,'4000','121679378444','2023-03-21 09:16:07',NULL,50000.00,'','12','1','Good sold','1','','sales','3024480004522','','No',NULL,NULL,''),(29902,'4000','121679378444','2023-03-21 09:16:07',NULL,7000.00,'','12','1','Good sold','1','','sales','5000329002230','','No',NULL,NULL,''),(29903,'4000','121679378444','2023-03-21 09:16:07',NULL,3350.00,'','12','1','Good sold','1','','sales','7640175740030','','No',NULL,NULL,''),(29904,'4000','121679378444','2023-03-21 09:16:07',NULL,5400.00,'','12','1','Good sold','1','','sales','7640175740047','','No',NULL,NULL,''),(29905,'4000','121679378444','2023-03-21 09:16:07',NULL,3500.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(29906,'4000','121679378444','2023-03-21 09:16:07',NULL,28000.00,'','12','1','Good sold','1','','sales','5010327325323','','No',NULL,NULL,''),(29907,'4000','121679378444','2023-03-21 09:16:07',NULL,17000.00,'','12','1','Good sold','1','','sales','5099873038758','','No',NULL,NULL,''),(29908,'4000','121679378444','2023-03-21 09:16:07',NULL,9000.00,'','12','1','Good sold','1','','sales','5099873011737','','No',NULL,NULL,''),(29909,'4000','121679378444','2023-03-21 09:16:07',NULL,13000.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(29910,'4000','121679378444','2023-03-21 09:16:07',NULL,4600.00,'','12','1','Good sold','1','','sales','5010677015738','','No',NULL,NULL,''),(29911,'1110','121679408359','2023-03-21 17:20:15',NULL,728.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29912,'5500','121679408359','2023-03-21 17:20:15',728.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29913,'1000','121679408359','2023-03-21 17:20:15',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29914,'4000','121679408359','2023-03-21 17:20:15',NULL,1080.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29915,'1110','121679408540','2023-03-21 17:22:36',NULL,1002.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(29916,'5500','121679408540','2023-03-21 17:22:36',1002.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29917,'1000','121679408540','2023-03-21 17:22:36',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29918,'4000','121679408540','2023-03-21 17:22:36',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(29919,'1110','121679408561','2023-03-21 17:46:21',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29920,'1110','121679408561','2023-03-21 17:46:21',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29921,'5500','121679408561','2023-03-21 17:46:21',371.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29922,'1000','121679408561','2023-03-21 17:46:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29923,'4000','121679408561','2023-03-21 17:46:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(29924,'4000','121679408561','2023-03-21 17:46:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29925,'1110','121679409998','2023-03-21 17:47:43',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29926,'1110','121679409998','2023-03-21 17:47:43',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(29927,'1110','121679409998','2023-03-21 17:47:43',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29928,'1110','121679409998','2023-03-21 17:47:43',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29929,'5500','121679409998','2023-03-21 17:47:43',305.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29930,'1000','121679409998','2023-03-21 17:47:43',510.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29931,'4000','121679409998','2023-03-21 17:47:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29932,'4000','121679409998','2023-03-21 17:47:43',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(29933,'4000','121679409998','2023-03-21 17:47:43',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(29934,'4000','121679409998','2023-03-21 17:47:43',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29935,'1110','121679418651','2023-03-21 22:03:32',NULL,3100.00,'','12','1','Inventory sold','1','','sales','5099873046968','','No',NULL,NULL,''),(29936,'1110','121679418651','2023-03-21 22:03:32',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(29937,'5500','121679418651','2023-03-21 22:03:32',3258.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29938,'1000','121679418651','2023-03-21 22:03:32',4950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29939,'4000','121679418651','2023-03-21 22:03:32',NULL,4700.00,'','12','1','Good sold','1','','sales','5099873046968','','No',NULL,NULL,''),(29940,'4000','121679418651','2023-03-21 22:03:32',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(29941,'1110','121679427048','2023-03-21 22:58:01',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29942,'5500','121679427048','2023-03-21 22:58:01',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29943,'1000','121679427048','2023-03-21 22:58:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29944,'4000','121679427048','2023-03-21 22:58:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(29945,'1110','121679428697','2023-03-22 00:09:48',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29946,'5500','121679428697','2023-03-22 00:09:48',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29947,'1000','121679428697','2023-03-22 00:09:48',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29948,'4000','121679428697','2023-03-22 00:09:48',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(29949,'1110','121679432996','2023-03-22 00:15:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29950,'5500','121679432996','2023-03-22 00:15:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29951,'1000','121679432996','2023-03-22 00:15:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29952,'4000','121679432996','2023-03-22 00:15:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29953,'1110','121679435454','2023-03-22 00:51:04',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29954,'5500','121679435454','2023-03-22 00:51:04',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29955,'1000','121679435454','2023-03-22 00:51:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29956,'4000','121679435454','2023-03-22 00:51:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29957,'1110','121679435473','2023-03-22 01:15:05',NULL,288.00,'','12','1','Inventory sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29958,'5500','121679435473','2023-03-22 01:15:05',288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29959,'1000','121679435473','2023-03-22 01:15:05',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29960,'4000','121679435473','2023-03-22 01:15:05',NULL,350.00,'','12','1','Good sold','1','','sales','6203005570170','','No',NULL,NULL,''),(29961,'1110','121679436910','2023-03-22 01:33:32',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(29962,'5500','121679436910','2023-03-22 01:33:32',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29963,'1000','121679436910','2023-03-22 01:33:32',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29964,'4000','121679436910','2023-03-22 01:33:32',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(29965,'1110','121679438628','2023-03-22 01:43:55',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29966,'5500','121679438628','2023-03-22 01:43:55',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29967,'1000','121679438628','2023-03-22 01:43:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29968,'4000','121679438628','2023-03-22 01:43:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(29969,'1110','121679438640','2023-03-22 03:36:55',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(29970,'1110','121679438640','2023-03-22 03:36:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(29971,'5500','121679438640','2023-03-22 03:36:55',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29972,'1000','121679438640','2023-03-22 03:36:55',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29973,'4000','121679438640','2023-03-22 03:36:55',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(29974,'4000','121679438640','2023-03-22 03:36:55',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(29975,'1110','121679445547','2023-03-22 03:45:43',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(29976,'5500','121679445547','2023-03-22 03:45:43',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29977,'1000','121679445547','2023-03-22 03:45:43',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29978,'4000','121679445547','2023-03-22 03:45:43',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(29979,'1110','121679496561','2023-03-22 17:52:44',NULL,951.88,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29980,'1110','121679496561','2023-03-22 17:52:44',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29981,'5500','121679496561','2023-03-22 17:52:44',1261.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29982,'1000','121679496561','2023-03-22 17:52:44',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29983,'4000','121679496561','2023-03-22 17:52:44',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(29984,'4000','121679496561','2023-03-22 17:52:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(29985,'1110','121679499102','2023-03-22 18:38:07',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29986,'1110','121679499102','2023-03-22 18:38:07',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29987,'5500','121679499102','2023-03-22 18:38:07',815.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29988,'1000','121679499102','2023-03-22 18:38:07',1290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29989,'4000','121679499102','2023-03-22 18:38:07',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(29990,'4000','121679499102','2023-03-22 18:38:07',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(29991,'1110','121679508964','2023-03-22 21:16:37',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(29992,'1110','121679508964','2023-03-22 21:16:37',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29993,'5500','121679508964','2023-03-22 21:16:37',624.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29994,'1000','121679508964','2023-03-22 21:16:37',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(29995,'4000','121679508964','2023-03-22 21:16:37',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(29996,'4000','121679508964','2023-03-22 21:16:37',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(29997,'1110','121679509003','2023-03-22 21:17:01',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(29998,'5500','121679509003','2023-03-22 21:17:01',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(29999,'1000','121679509003','2023-03-22 21:17:01',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30000,'4000','121679509003','2023-03-22 21:17:01',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30001,'1110','121679509027','2023-03-22 21:39:59',NULL,320.00,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(30002,'1110','121679509027','2023-03-22 21:39:59',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(30003,'5500','121679509027','2023-03-22 21:39:59',1039.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30004,'1000','121679509027','2023-03-22 21:39:59',1480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30005,'4000','121679509027','2023-03-22 21:39:59',NULL,480.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(30006,'4000','121679509027','2023-03-22 21:39:59',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(30007,'1110','121679510551','2023-03-22 21:43:56',NULL,213.32,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30008,'5500','121679510551','2023-03-22 21:43:56',213.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30009,'1000','121679510551','2023-03-22 21:43:56',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30010,'4000','121679510551','2023-03-22 21:43:56',NULL,320.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30011,'1110','121679510726','2023-03-22 21:51:27',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30012,'5500','121679510726','2023-03-22 21:51:27',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30013,'1000','121679510726','2023-03-22 21:51:27',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30014,'4000','121679510726','2023-03-22 21:51:27',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30015,'1110','121679511093','2023-03-22 22:10:34',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30016,'1110','121679511093','2023-03-22 22:10:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30017,'5500','121679511093','2023-03-22 22:10:34',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30018,'1000','121679511093','2023-03-22 22:10:34',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30019,'4000','121679511093','2023-03-22 22:10:34',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30020,'4000','121679511093','2023-03-22 22:10:34',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30021,'1110','121679513768','2023-03-22 22:36:38',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886000277','','No',NULL,NULL,''),(30022,'1110','121679513768','2023-03-22 22:36:38',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30023,'1110','121679513768','2023-03-22 22:36:38',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30024,'5500','121679513768','2023-03-22 22:36:38',2084.85,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30025,'1000','121679513768','2023-03-22 22:36:38',3150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30026,'4000','121679513768','2023-03-22 22:36:38',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886000277','','No',NULL,NULL,''),(30027,'4000','121679513768','2023-03-22 22:36:38',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30028,'4000','121679513768','2023-03-22 22:36:38',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30029,'1110','121679514715','2023-03-22 22:52:04',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(30030,'5500','121679514715','2023-03-22 22:52:04',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30031,'1000','121679514715','2023-03-22 22:52:04',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30032,'4000','121679514715','2023-03-22 22:52:04',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(30033,'1110','121679514730','2023-03-22 22:58:57',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30034,'5500','121679514730','2023-03-22 22:58:57',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30035,'1000','121679514730','2023-03-22 22:58:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30036,'4000','121679514730','2023-03-22 22:58:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30037,'1110','121679516075','2023-03-22 23:14:54',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30038,'5500','121679516075','2023-03-22 23:14:54',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30039,'1000','121679516075','2023-03-22 23:14:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30040,'4000','121679516075','2023-03-22 23:14:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30041,'1110','121679516099','2023-03-22 23:15:13',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30042,'5500','121679516099','2023-03-22 23:15:13',569.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30043,'1000','121679516099','2023-03-22 23:15:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30044,'4000','121679516099','2023-03-22 23:15:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30045,'1110','121679516118','2023-03-23 00:01:38',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(30046,'1110','121679516118','2023-03-23 00:01:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30047,'5500','121679516118','2023-03-23 00:01:38',772.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30048,'1000','121679516118','2023-03-23 00:01:38',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30049,'4000','121679516118','2023-03-23 00:01:38',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(30050,'4000','121679516118','2023-03-23 00:01:38',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30051,'1110','121679529702','2023-03-23 03:02:00',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(30052,'5500','121679529702','2023-03-23 03:02:00',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30053,'1000','121679529702','2023-03-23 03:02:00',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30054,'4000','121679529702','2023-03-23 03:02:00',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(30055,'1110','121679538580','2023-03-23 05:30:21',NULL,190.00,'','12','1','Inventory sold','1','','sales','6161101561280','','No',NULL,NULL,''),(30056,'1110','121679538580','2023-03-23 05:30:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30057,'5500','121679538580','2023-03-23 05:30:21',243.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30058,'1000','121679538580','2023-03-23 05:30:21',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30059,'4000','121679538580','2023-03-23 05:30:21',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561280','','No',NULL,NULL,''),(30060,'4000','121679538580','2023-03-23 05:30:21',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30061,'1110','121679549756','2023-03-23 08:36:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30062,'5500','121679549756','2023-03-23 08:36:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30063,'1000','121679549756','2023-03-23 08:36:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30064,'4000','121679549756','2023-03-23 08:36:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30065,'1110','121679593794','2023-03-23 22:03:07',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30066,'5500','121679593794','2023-03-23 22:03:07',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30067,'1000','121679593794','2023-03-23 22:03:07',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30068,'4000','121679593794','2023-03-23 22:03:07',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30069,'1110','121679598194','2023-03-23 22:07:14',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(30070,'5500','121679598194','2023-03-23 22:07:14',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30071,'1000','121679598194','2023-03-23 22:07:14',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30072,'4000','121679598194','2023-03-23 22:07:14',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(30073,'1110','121679598439','2023-03-23 23:02:04',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30074,'5500','121679598439','2023-03-23 23:02:04',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30075,'1000','121679598439','2023-03-23 23:02:04',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30076,'4000','121679598439','2023-03-23 23:02:04',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30077,'1110','121679601732','2023-03-23 23:07:14',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30078,'5500','121679601732','2023-03-23 23:07:14',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30079,'1000','121679601732','2023-03-23 23:07:14',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30080,'4000','121679601732','2023-03-23 23:07:14',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30081,'1110','121679602039','2023-03-23 23:49:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30082,'5500','121679602039','2023-03-23 23:49:00',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30083,'1000','121679602039','2023-03-23 23:49:00',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30084,'4000','121679602039','2023-03-23 23:49:00',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30085,'1110','121679604546','2023-03-24 00:29:14',NULL,2280.00,'','12','1','Inventory sold','1','','sales','7640175740030','','No',NULL,NULL,''),(30086,'1110','121679604546','2023-03-24 00:29:14',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30087,'1110','121679604546','2023-03-24 00:29:14',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30088,'1110','121679604546','2023-03-24 00:29:14',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30089,'5500','121679604546','2023-03-24 00:29:14',2687.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30090,'1000','121679604546','2023-03-24 00:29:14',4030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30091,'4000','121679604546','2023-03-24 00:29:14',NULL,3350.00,'','12','1','Good sold','1','','sales','7640175740030','','No',NULL,NULL,''),(30092,'4000','121679604546','2023-03-24 00:29:14',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30093,'4000','121679604546','2023-03-24 00:29:14',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30094,'4000','121679604546','2023-03-24 00:29:14',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30095,'1110','121679607070','2023-03-24 01:01:24',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30096,'5500','121679607070','2023-03-24 01:01:24',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30097,'1000','121679607070','2023-03-24 01:01:24',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30098,'4000','121679607070','2023-03-24 01:01:24',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30099,'1110','121679608941','2023-03-24 01:32:38',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30100,'1110','121679608941','2023-03-24 01:32:38',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30101,'5500','121679608941','2023-03-24 01:32:38',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30102,'1000','121679608941','2023-03-24 01:32:38',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30103,'4000','121679608941','2023-03-24 01:32:38',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30104,'4000','121679608941','2023-03-24 01:32:38',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30105,'1110','121679610764','2023-03-24 01:52:25',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30106,'5500','121679610764','2023-03-24 01:52:25',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30107,'1000','121679610764','2023-03-24 01:52:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30108,'4000','121679610764','2023-03-24 01:52:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30109,'1110','121679611962','2023-03-24 03:06:48',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30110,'1110','121679611962','2023-03-24 03:06:48',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(30111,'5500','121679611962','2023-03-24 03:06:48',358.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30112,'1000','121679611962','2023-03-24 03:06:48',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30113,'4000','121679611962','2023-03-24 03:06:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30114,'4000','121679611962','2023-03-24 03:06:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(30115,'1110','121679616413','2023-03-24 03:07:41',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(30116,'5500','121679616413','2023-03-24 03:07:41',555.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30117,'1000','121679616413','2023-03-24 03:07:41',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30118,'4000','121679616413','2023-03-24 03:07:41',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(30119,'1110','121679629908','2023-03-24 06:54:46',NULL,1590.00,'','12','1','Inventory sold','1','','sales','089540448992','','No',NULL,NULL,''),(30120,'1110','121679629908','2023-03-24 06:54:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30121,'1110','121679629908','2023-03-24 06:54:46',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(30122,'1110','121679629908','2023-03-24 06:54:46',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30123,'1110','121679629908','2023-03-24 06:54:46',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(30124,'1110','121679629908','2023-03-24 06:54:46',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30125,'5500','121679629908','2023-03-24 06:54:46',2115.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30126,'1000','121679629908','2023-03-24 06:54:46',2970.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30127,'4000','121679629908','2023-03-24 06:54:46',NULL,2150.00,'','12','1','Good sold','1','','sales','089540448992','','No',NULL,NULL,''),(30128,'4000','121679629908','2023-03-24 06:54:46',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30129,'4000','121679629908','2023-03-24 06:54:46',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(30130,'4000','121679629908','2023-03-24 06:54:46',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30131,'4000','121679629908','2023-03-24 06:54:46',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(30132,'4000','121679629908','2023-03-24 06:54:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30133,'1110','121679630291','2023-03-24 07:26:13',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(30134,'5500','121679630291','2023-03-24 07:26:13',170.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30135,'1000','121679630291','2023-03-24 07:26:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30136,'4000','121679630291','2023-03-24 07:26:13',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(30137,'1110','121679667340','2023-03-24 20:09:33',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30138,'1110','121679667340','2023-03-24 20:09:33',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30139,'5500','121679667340','2023-03-24 20:09:33',447.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30140,'1000','121679667340','2023-03-24 20:09:33',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30141,'4000','121679667340','2023-03-24 20:09:33',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30142,'4000','121679667340','2023-03-24 20:09:33',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30143,'1110','121679678144','2023-03-24 20:17:13',NULL,776.00,'','12','1','Inventory sold','1','','sales','6161101602143','','No',NULL,NULL,''),(30144,'1110','121679678144','2023-03-24 20:17:13',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30145,'1110','121679678144','2023-03-24 20:17:13',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(30146,'5500','121679678144','2023-03-24 20:17:13',854.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30147,'1000','121679678144','2023-03-24 20:17:13',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30148,'4000','121679678144','2023-03-24 20:17:13',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101602143','','No',NULL,NULL,''),(30149,'4000','121679678144','2023-03-24 20:17:13',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30150,'4000','121679678144','2023-03-24 20:17:13',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(30151,'1110','121679679551','2023-03-24 20:58:34',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30152,'1110','121679679551','2023-03-24 20:58:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30153,'5500','121679679551','2023-03-24 20:58:34',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30154,'1000','121679679551','2023-03-24 20:58:34',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30155,'4000','121679679551','2023-03-24 20:58:34',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30156,'4000','121679679551','2023-03-24 20:58:34',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30157,'1110','121679682494','2023-03-24 21:30:04',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(30158,'1110','121679682494','2023-03-24 21:30:04',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30159,'5500','121679682494','2023-03-24 21:30:04',1504.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30160,'1000','121679682494','2023-03-24 21:30:04',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30161,'4000','121679682494','2023-03-24 21:30:04',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(30162,'4000','121679682494','2023-03-24 21:30:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30163,'1110','121679684716','2023-03-24 22:10:49',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30164,'1110','121679684716','2023-03-24 22:10:49',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30165,'5500','121679684716','2023-03-24 22:10:49',340.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30166,'1000','121679684716','2023-03-24 22:10:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30167,'4000','121679684716','2023-03-24 22:10:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30168,'4000','121679684716','2023-03-24 22:10:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30169,'1110','121679685057','2023-03-24 22:11:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30170,'1110','121679685057','2023-03-24 22:11:31',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30171,'1110','121679685057','2023-03-24 22:11:31',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(30172,'5500','121679685057','2023-03-24 22:11:31',153.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30173,'1000','121679685057','2023-03-24 22:11:31',260.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30174,'4000','121679685057','2023-03-24 22:11:31',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30175,'4000','121679685057','2023-03-24 22:11:31',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30176,'4000','121679685057','2023-03-24 22:11:31',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(30177,'1110','121679687178','2023-03-24 23:15:01',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30178,'5500','121679687178','2023-03-24 23:15:01',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30179,'1000','121679687178','2023-03-24 23:15:01',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30180,'4000','121679687178','2023-03-24 23:15:01',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30181,'1110','121679692456','2023-03-25 00:14:49',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30182,'1110','121679692456','2023-03-25 00:14:49',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(30183,'5500','121679692456','2023-03-25 00:14:49',187.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30184,'1000','121679692456','2023-03-25 00:14:49',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30185,'4000','121679692456','2023-03-25 00:14:49',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30186,'4000','121679692456','2023-03-25 00:14:49',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(30187,'1110','121679692495','2023-03-25 00:23:49',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30188,'1110','121679692495','2023-03-25 00:23:49',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(30189,'5500','121679692495','2023-03-25 00:23:49',2105.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30190,'1000','121679692495','2023-03-25 00:23:49',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30191,'4000','121679692495','2023-03-25 00:23:49',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30192,'4000','121679692495','2023-03-25 00:23:49',NULL,300.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(30193,'1110','121679693493','2023-03-25 00:55:07',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30194,'1110','121679693493','2023-03-25 00:55:07',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30195,'5500','121679693493','2023-03-25 00:55:07',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30196,'1000','121679693493','2023-03-25 00:55:07',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30197,'4000','121679693493','2023-03-25 00:55:07',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(30198,'4000','121679693493','2023-03-25 00:55:07',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30199,'1110','121679694920','2023-03-25 02:21:18',NULL,728.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30200,'1110','121679694920','2023-03-25 02:21:18',NULL,615.00,'','12','1','Inventory sold','1','','sales','024000191667','','No',NULL,NULL,''),(30201,'1110','121679694920','2023-03-25 02:21:18',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30202,'5500','121679694920','2023-03-25 02:21:18',1417.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30203,'1000','121679694920','2023-03-25 02:21:18',2130.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30204,'4000','121679694920','2023-03-25 02:21:18',NULL,1080.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30205,'4000','121679694920','2023-03-25 02:21:18',NULL,900.00,'','12','1','Good sold','1','','sales','024000191667','','No',NULL,NULL,''),(30206,'4000','121679694920','2023-03-25 02:21:18',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30207,'1110','121679700191','2023-03-25 02:23:41',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30208,'1110','121679700191','2023-03-25 02:23:41',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(30209,'5500','121679700191','2023-03-25 02:23:41',1936.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30210,'1000','121679700191','2023-03-25 02:23:41',2580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30211,'4000','121679700191','2023-03-25 02:23:41',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30212,'4000','121679700191','2023-03-25 02:23:41',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(30213,'1110','121679701605','2023-03-25 02:47:30',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30214,'1110','121679701605','2023-03-25 02:47:30',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(30215,'1110','121679701605','2023-03-25 02:47:30',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(30216,'5500','121679701605','2023-03-25 02:47:30',1208.10,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30217,'1000','121679701605','2023-03-25 02:47:30',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30218,'4000','121679701605','2023-03-25 02:47:30',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30219,'4000','121679701605','2023-03-25 02:47:30',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(30220,'4000','121679701605','2023-03-25 02:47:30',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(30221,'1110','121679701663','2023-03-25 03:07:41',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30222,'1110','121679701663','2023-03-25 03:07:41',NULL,130.00,'','12','1','Inventory sold','1','','sales','6008835000930','','No',NULL,NULL,''),(30223,'1110','121679701663','2023-03-25 03:07:41',NULL,36.00,'','12','1','Inventory sold','1','','sales','6164002099029','','No',NULL,NULL,''),(30224,'5500','121679701663','2023-03-25 03:07:41',667.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30225,'1000','121679701663','2023-03-25 03:07:41',1060.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30226,'4000','121679701663','2023-03-25 03:07:41',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30227,'4000','121679701663','2023-03-25 03:07:41',NULL,180.00,'','12','1','Good sold','1','','sales','6008835000930','','No',NULL,NULL,''),(30228,'4000','121679701663','2023-03-25 03:07:41',NULL,80.00,'','12','1','Good sold','1','','sales','6164002099029','','No',NULL,NULL,''),(30229,'1110','121679702866','2023-03-25 03:56:15',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30230,'1110','121679702866','2023-03-25 03:56:15',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30231,'5500','121679702866','2023-03-25 03:56:15',387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30232,'1000','121679702866','2023-03-25 03:56:15',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30233,'4000','121679702866','2023-03-25 03:56:15',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30234,'4000','121679702866','2023-03-25 03:56:15',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30235,'1110','121679706440','2023-03-25 04:07:44',NULL,985.00,'','12','1','Inventory sold','1','','sales','7798039598126','','No',NULL,NULL,''),(30236,'5500','121679706440','2023-03-25 04:07:44',985.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30237,'1000','121679706440','2023-03-25 04:07:44',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30238,'4000','121679706440','2023-03-25 04:07:44',NULL,1700.00,'','12','1','Good sold','1','','sales','7798039598126','','No',NULL,NULL,''),(30239,'1110','121679706497','2023-03-25 04:19:47',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30240,'5500','121679706497','2023-03-25 04:19:47',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30241,'1000','121679706497','2023-03-25 04:19:47',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30242,'4000','121679706497','2023-03-25 04:19:47',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30243,'1110','121679734320','2023-03-25 11:52:10',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30244,'5500','121679734320','2023-03-25 11:52:10',1190.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30245,'1000','121679734320','2023-03-25 11:52:10',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30246,'4000','121679734320','2023-03-25 11:52:10',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30247,'1110','121679734338','2023-03-25 11:53:01',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30248,'1110','121679734338','2023-03-25 11:53:01',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30249,'5500','121679734338','2023-03-25 11:53:01',536.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30250,'1000','121679734338','2023-03-25 11:53:01',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30251,'4000','121679734338','2023-03-25 11:53:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''); INSERT INTO `debitcredit` VALUES (30252,'4000','121679734338','2023-03-25 11:53:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30253,'1110','121679742963','2023-03-25 14:16:52',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30254,'1110','121679742963','2023-03-25 14:16:52',NULL,89.16,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30255,'1110','121679742963','2023-03-25 14:16:52',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(30256,'5500','121679742963','2023-03-25 14:16:52',529.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30257,'1000','121679742963','2023-03-25 14:16:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30258,'4000','121679742963','2023-03-25 14:16:52',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30259,'4000','121679742963','2023-03-25 14:16:52',NULL,200.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30260,'4000','121679742963','2023-03-25 14:16:52',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(30261,'1110','121679744913','2023-03-25 14:48:40',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30262,'5500','121679744913','2023-03-25 14:48:40',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30263,'1000','121679744913','2023-03-25 14:48:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30264,'4000','121679744913','2023-03-25 14:48:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30265,'1110','121679744925','2023-03-25 14:50:27',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30266,'1110','121679744925','2023-03-25 14:50:27',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30267,'1110','121679744925','2023-03-25 14:50:27',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30268,'5500','121679744925','2023-03-25 14:50:27',579.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30269,'1000','121679744925','2023-03-25 14:50:27',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30270,'4000','121679744925','2023-03-25 14:50:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30271,'4000','121679744925','2023-03-25 14:50:27',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30272,'4000','121679744925','2023-03-25 14:50:27',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30273,'1110','121679745032','2023-03-25 15:12:23',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30274,'1110','121679745032','2023-03-25 15:12:23',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30275,'5500','121679745032','2023-03-25 15:12:23',233.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30276,'1000','121679745032','2023-03-25 15:12:23',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30277,'4000','121679745032','2023-03-25 15:12:23',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30278,'4000','121679745032','2023-03-25 15:12:23',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30279,'1110','121679768742','2023-03-25 21:25:57',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(30280,'5500','121679768742','2023-03-25 21:25:57',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30281,'1000','121679768742','2023-03-25 21:25:57',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30282,'4000','121679768742','2023-03-25 21:25:57',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(30283,'1110','121679768776','2023-03-25 22:17:38',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30284,'5500','121679768776','2023-03-25 22:17:38',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30285,'1000','121679768776','2023-03-25 22:17:38',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30286,'4000','121679768776','2023-03-25 22:17:38',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30287,'1110','121679771869','2023-03-25 22:18:45',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30288,'5500','121679771869','2023-03-25 22:18:45',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30289,'1000','121679771869','2023-03-25 22:18:45',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30290,'4000','121679771869','2023-03-25 22:18:45',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30291,'1110','121679771931','2023-03-25 22:19:24',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(30292,'5500','121679771931','2023-03-25 22:19:24',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30293,'1000','121679771931','2023-03-25 22:19:24',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30294,'4000','121679771931','2023-03-25 22:19:24',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(30295,'1110','121679771971','2023-03-25 22:20:08',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30296,'1110','121679771971','2023-03-25 22:20:08',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30297,'5500','121679771971','2023-03-25 22:20:08',791.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30298,'1000','121679771971','2023-03-25 22:20:08',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30299,'4000','121679771971','2023-03-25 22:20:08',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30300,'4000','121679771971','2023-03-25 22:20:08',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30301,'1110','121679772015','2023-03-25 22:41:31',NULL,690.00,'','12','1','Inventory sold','1','','sales','8901544019027','','No',NULL,NULL,''),(30302,'1110','121679772015','2023-03-25 22:41:31',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30303,'1110','121679772015','2023-03-25 22:41:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30304,'1110','121679772015','2023-03-25 22:41:31',NULL,272.00,'','12','1','Inventory sold','1','','sales','5052197004281','','No',NULL,NULL,''),(30305,'5500','121679772015','2023-03-25 22:41:31',1309.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30306,'1000','121679772015','2023-03-25 22:41:31',2680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30307,'4000','121679772015','2023-03-25 22:41:31',NULL,1500.00,'','12','1','Good sold','1','','sales','8901544019027','','No',NULL,NULL,''),(30308,'4000','121679772015','2023-03-25 22:41:31',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30309,'4000','121679772015','2023-03-25 22:41:31',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30310,'4000','121679772015','2023-03-25 22:41:31',NULL,600.00,'','12','1','Good sold','1','','sales','5052197004281','','No',NULL,NULL,''),(30311,'1110','121679773405','2023-03-25 22:44:48',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(30312,'1110','121679773405','2023-03-25 22:44:48',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30313,'1110','121679773405','2023-03-25 22:44:48',NULL,40.00,'','12','1','Inventory sold','1','','sales','6164002099036','','No',NULL,NULL,''),(30314,'5500','121679773405','2023-03-25 22:44:48',931.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30315,'1000','121679773405','2023-03-25 22:44:48',2070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30316,'4000','121679773405','2023-03-25 22:44:48',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(30317,'4000','121679773405','2023-03-25 22:44:48',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30318,'4000','121679773405','2023-03-25 22:44:48',NULL,120.00,'','12','1','Good sold','1','','sales','6164002099036','','No',NULL,NULL,''),(30319,'1110','121679773504','2023-03-25 23:04:10',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(30320,'5500','121679773504','2023-03-25 23:04:10',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30321,'1000','121679773504','2023-03-25 23:04:10',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30322,'4000','121679773504','2023-03-25 23:04:10',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(30323,'1110','121679774658','2023-03-25 23:38:57',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30324,'1110','121679774658','2023-03-25 23:38:57',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(30325,'1110','121679774658','2023-03-25 23:38:57',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(30326,'1110','121679774658','2023-03-25 23:38:57',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30327,'5500','121679774658','2023-03-25 23:38:57',3202.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30328,'1000','121679774658','2023-03-25 23:38:57',5400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30329,'4000','121679774658','2023-03-25 23:38:57',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30330,'4000','121679774658','2023-03-25 23:38:57',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(30331,'4000','121679774658','2023-03-25 23:38:57',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(30332,'4000','121679774658','2023-03-25 23:38:57',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30333,'1110','121679792956','2023-03-26 04:09:34',NULL,222.90,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30334,'5500','121679792956','2023-03-26 04:09:34',222.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30335,'1000','121679792956','2023-03-26 04:09:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30336,'4000','121679792956','2023-03-26 04:09:34',NULL,500.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30337,'1110','121679824774','2023-03-26 13:00:03',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30338,'1110','121679824774','2023-03-26 13:00:03',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30339,'1110','121679824774','2023-03-26 13:00:03',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30340,'5500','121679824774','2023-03-26 13:00:03',1288.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30341,'1000','121679824774','2023-03-26 13:00:03',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30342,'4000','121679824774','2023-03-26 13:00:03',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30343,'4000','121679824774','2023-03-26 13:00:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30344,'4000','121679824774','2023-03-26 13:00:03',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30345,'1110','121679837335','2023-03-26 16:29:35',NULL,992.25,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30346,'5500','121679837335','2023-03-26 16:29:35',992.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30347,'1000','121679837335','2023-03-26 16:29:35',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30348,'4000','121679837335','2023-03-26 16:29:35',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30349,'1110','121679842540','2023-03-26 18:08:16',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30350,'5500','121679842540','2023-03-26 18:08:16',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30351,'1000','121679842540','2023-03-26 18:08:16',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30352,'4000','121679842540','2023-03-26 18:08:16',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30353,'1110','121679843302','2023-03-26 18:36:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30354,'5500','121679843302','2023-03-26 18:36:16',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30355,'1000','121679843302','2023-03-26 18:36:16',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30356,'4000','121679843302','2023-03-26 18:36:16',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30357,'1110','121679844983','2023-03-26 18:51:38',NULL,860.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(30358,'5500','121679844983','2023-03-26 18:51:38',860.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30359,'1000','121679844983','2023-03-26 18:51:38',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30360,'4000','121679844983','2023-03-26 18:51:38',NULL,1200.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(30361,'1110','121679845904','2023-03-26 20:15:37',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30362,'5500','121679845904','2023-03-26 20:15:37',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30363,'1000','121679845904','2023-03-26 20:15:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30364,'4000','121679845904','2023-03-26 20:15:37',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30365,'1110','121679874100','2023-03-27 02:42:34',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(30366,'5500','121679874100','2023-03-27 02:42:34',1.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30367,'1000','121679874100','2023-03-27 02:42:34',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30368,'4000','121679874100','2023-03-27 02:42:34',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(30369,'1110','121679874160','2023-03-27 02:45:19',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(30370,'5500','121679874160','2023-03-27 02:45:19',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30371,'1000','121679874160','2023-03-27 02:45:19',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30372,'4000','121679874160','2023-03-27 02:45:19',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(30373,'1110','121679874332','2023-03-27 02:46:10',NULL,1590.00,'','12','1','Inventory sold','1','','sales','089540448992','','No',NULL,NULL,''),(30374,'1110','121679874332','2023-03-27 02:46:10',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30375,'5500','121679874332','2023-03-27 02:46:10',1795.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30376,'1000','121679874332','2023-03-27 02:46:10',2450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30377,'4000','121679874332','2023-03-27 02:46:10',NULL,2150.00,'','12','1','Good sold','1','','sales','089540448992','','No',NULL,NULL,''),(30378,'4000','121679874332','2023-03-27 02:46:10',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30379,'1110','121679932910','2023-03-27 19:02:19',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30380,'1110','121679932910','2023-03-27 19:02:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30381,'5500','121679932910','2023-03-27 19:02:19',113.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30382,'1000','121679932910','2023-03-27 19:02:19',180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30383,'4000','121679932910','2023-03-27 19:02:19',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30384,'4000','121679932910','2023-03-27 19:02:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30385,'1110','121679940125','2023-03-27 21:02:36',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30386,'1110','121679940125','2023-03-27 21:02:36',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(30387,'5500','121679940125','2023-03-27 21:02:36',1302.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30388,'1000','121679940125','2023-03-27 21:02:36',1660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30389,'4000','121679940125','2023-03-27 21:02:36',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30390,'4000','121679940125','2023-03-27 21:02:36',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(30391,'1110','121679940165','2023-03-27 22:34:06',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30392,'1110','121679940165','2023-03-27 22:34:06',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30393,'1110','121679940165','2023-03-27 22:34:06',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30394,'1110','121679940165','2023-03-27 22:34:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30395,'1110','121679940165','2023-03-27 22:34:06',NULL,584.00,'','12','1','Inventory sold','1','','sales','5011417567647','','No',NULL,NULL,''),(30396,'5500','121679940165','2023-03-27 22:34:06',1988.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30397,'1000','121679940165','2023-03-27 22:34:06',2980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30398,'4000','121679940165','2023-03-27 22:34:06',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30399,'4000','121679940165','2023-03-27 22:34:06',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30400,'4000','121679940165','2023-03-27 22:34:06',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30401,'4000','121679940165','2023-03-27 22:34:06',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30402,'4000','121679940165','2023-03-27 22:34:06',NULL,900.00,'','12','1','Good sold','1','','sales','5011417567647','','No',NULL,NULL,''),(30403,'1110','121679945661','2023-03-27 23:16:05',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(30404,'1110','121679945661','2023-03-27 23:16:05',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30405,'1110','121679945661','2023-03-27 23:16:05',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(30406,'5500','121679945661','2023-03-27 23:16:05',678.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30407,'1000','121679945661','2023-03-27 23:16:05',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30408,'4000','121679945661','2023-03-27 23:16:05',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(30409,'4000','121679945661','2023-03-27 23:16:05',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30410,'4000','121679945661','2023-03-27 23:16:05',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(30411,'1110','121679971528','2023-03-28 05:50:13',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(30412,'1110','121679971528','2023-03-28 05:50:13',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30413,'1110','121679971528','2023-03-28 05:50:13',NULL,336.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(30414,'1110','121679971528','2023-03-28 05:50:13',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30415,'1110','121679971528','2023-03-28 05:50:13',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30416,'1110','121679971528','2023-03-28 05:50:13',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30417,'5500','121679971528','2023-03-28 05:50:13',2950.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30418,'1000','121679971528','2023-03-28 05:50:13',4050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30419,'4000','121679971528','2023-03-28 05:50:13',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(30420,'4000','121679971528','2023-03-28 05:50:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30421,'4000','121679971528','2023-03-28 05:50:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(30422,'4000','121679971528','2023-03-28 05:50:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30423,'4000','121679971528','2023-03-28 05:50:13',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30424,'4000','121679971528','2023-03-28 05:50:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30425,'1110','121680030581','2023-03-28 22:14:12',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(30426,'1110','121680030581','2023-03-28 22:14:12',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30427,'5500','121680030581','2023-03-28 22:14:12',535.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30428,'1000','121680030581','2023-03-28 22:14:12',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30429,'4000','121680030581','2023-03-28 22:14:12',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(30430,'4000','121680030581','2023-03-28 22:14:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30431,'1110','121680036942','2023-03-28 23:56:26',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30432,'5500','121680036942','2023-03-28 23:56:26',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30433,'1000','121680036942','2023-03-28 23:56:26',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30434,'4000','121680036942','2023-03-28 23:56:26',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30435,'1110','121680036991','2023-03-29 00:22:50',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(30436,'5500','121680036991','2023-03-29 00:22:50',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30437,'1000','121680036991','2023-03-29 00:22:50',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30438,'4000','121680036991','2023-03-29 00:22:50',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(30439,'1110','121680053579','2023-03-29 04:33:49',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30440,'1110','121680053579','2023-03-29 04:33:49',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30441,'1110','121680053579','2023-03-29 04:33:49',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30442,'1110','121680053579','2023-03-29 04:33:49',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30443,'5500','121680053579','2023-03-29 04:33:49',1790.62,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30444,'1000','121680053579','2023-03-29 04:33:49',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30445,'4000','121680053579','2023-03-29 04:33:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(30446,'4000','121680053579','2023-03-29 04:33:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30447,'4000','121680053579','2023-03-29 04:33:49',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30448,'4000','121680053579','2023-03-29 04:33:49',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30449,'1110','121680053635','2023-03-29 04:55:29',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30450,'1110','121680053635','2023-03-29 04:55:29',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(30451,'1110','121680053635','2023-03-29 04:55:29',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30452,'5500','121680053635','2023-03-29 04:55:29',1271.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30453,'1000','121680053635','2023-03-29 04:55:29',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30454,'4000','121680053635','2023-03-29 04:55:29',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30455,'4000','121680053635','2023-03-29 04:55:29',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(30456,'4000','121680053635','2023-03-29 04:55:29',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30457,'1110','121680126121','2023-03-30 00:42:25',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30458,'5500','121680126121','2023-03-30 00:42:25',205.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30459,'1000','121680126121','2023-03-30 00:42:25',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30460,'4000','121680126121','2023-03-30 00:42:25',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30461,'1110','121680126151','2023-03-30 00:42:50',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(30462,'5500','121680126151','2023-03-30 00:42:50',561.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30463,'1000','121680126151','2023-03-30 00:42:50',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30464,'4000','121680126151','2023-03-30 00:42:50',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(30465,'1110','121680126179','2023-03-30 00:43:20',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30466,'1110','121680126179','2023-03-30 00:43:20',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30467,'5500','121680126179','2023-03-30 00:43:20',245.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30468,'1000','121680126179','2023-03-30 00:43:20',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30469,'4000','121680126179','2023-03-30 00:43:20',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30470,'4000','121680126179','2023-03-30 00:43:20',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30471,'1110','121680126205','2023-03-30 00:46:20',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30472,'1110','121680126205','2023-03-30 00:46:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30473,'5500','121680126205','2023-03-30 00:46:20',368.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30474,'1000','121680126205','2023-03-30 00:46:20',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30475,'4000','121680126205','2023-03-30 00:46:20',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30476,'4000','121680126205','2023-03-30 00:46:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30477,'1110','121680126384','2023-03-30 01:28:54',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30478,'1110','121680126384','2023-03-30 01:28:54',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30479,'1110','121680126384','2023-03-30 01:28:54',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30480,'5500','121680126384','2023-03-30 01:28:54',508.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30481,'1000','121680126384','2023-03-30 01:28:54',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30482,'4000','121680126384','2023-03-30 01:28:54',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30483,'4000','121680126384','2023-03-30 01:28:54',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30484,'4000','121680126384','2023-03-30 01:28:54',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30485,'1110','121680128997','2023-03-30 02:44:41',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30486,'5500','121680128997','2023-03-30 02:44:41',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30487,'1000','121680128997','2023-03-30 02:44:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30488,'4000','121680128997','2023-03-30 02:44:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(30489,'1110','121680133489','2023-03-30 02:47:57',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30490,'1110','121680133489','2023-03-30 02:47:57',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30491,'5500','121680133489','2023-03-30 02:47:57',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30492,'1000','121680133489','2023-03-30 02:47:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30493,'4000','121680133489','2023-03-30 02:47:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30494,'4000','121680133489','2023-03-30 02:47:57',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30495,'1110','121680142676','2023-03-30 05:18:18',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30496,'5500','121680142676','2023-03-30 05:18:18',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30497,'1000','121680142676','2023-03-30 05:18:18',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30498,'4000','121680142676','2023-03-30 05:18:18',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30499,'1110','121680201856','2023-03-30 21:44:41',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30500,'1110','121680201856','2023-03-30 21:44:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30501,'5500','121680201856','2023-03-30 21:44:41',529.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30502,'1000','121680201856','2023-03-30 21:44:41',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30503,'4000','121680201856','2023-03-30 21:44:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30504,'4000','121680201856','2023-03-30 21:44:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30505,'1110','121680205197','2023-03-30 22:40:18',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(30506,'1110','121680205197','2023-03-30 22:40:18',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30507,'5500','121680205197','2023-03-30 22:40:18',680.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30508,'1000','121680205197','2023-03-30 22:40:18',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30509,'4000','121680205197','2023-03-30 22:40:18',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(30510,'4000','121680205197','2023-03-30 22:40:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30511,'1110','121680206270','2023-03-30 22:57:58',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(30512,'5500','121680206270','2023-03-30 22:57:58',544.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30513,'1000','121680206270','2023-03-30 22:57:58',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30514,'4000','121680206270','2023-03-30 22:57:58',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(30515,'1110','121680206282','2023-03-30 23:50:41',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30516,'5500','121680206282','2023-03-30 23:50:41',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30517,'1000','121680206282','2023-03-30 23:50:41',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30518,'4000','121680206282','2023-03-30 23:50:41',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30519,'1110','121680209448','2023-03-31 01:37:56',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30520,'5500','121680209448','2023-03-31 01:37:56',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30521,'1000','121680209448','2023-03-31 01:37:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30522,'4000','121680209448','2023-03-31 01:37:56',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30523,'1110','121680215882','2023-03-31 01:54:27',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30524,'1110','121680215882','2023-03-31 01:54:27',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000224556','','No',NULL,NULL,''),(30525,'5500','121680215882','2023-03-31 01:54:27',706.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30526,'1000','121680215882','2023-03-31 01:54:27',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30527,'4000','121680215882','2023-03-31 01:54:27',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30528,'4000','121680215882','2023-03-31 01:54:27',NULL,300.00,'','12','1','Good sold','1','','sales','024000224556','','No',NULL,NULL,''),(30529,'1110','121680216872','2023-03-31 02:08:12',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(30530,'5500','121680216872','2023-03-31 02:08:12',555.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30531,'1000','121680216872','2023-03-31 02:08:12',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30532,'4000','121680216872','2023-03-31 02:08:12',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(30533,'1110','121680288530','2023-03-31 22:50:25',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30534,'5500','121680288530','2023-03-31 22:50:25',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30535,'1000','121680288530','2023-03-31 22:50:25',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30536,'4000','121680288530','2023-03-31 22:50:25',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561563','','No',NULL,NULL,''),(30537,'1110','121680292240','2023-04-01 00:11:58',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30538,'1110','121680292240','2023-04-01 00:11:58',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30539,'5500','121680292240','2023-04-01 00:11:58',305.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30540,'1000','121680292240','2023-04-01 00:11:58',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30541,'4000','121680292240','2023-04-01 00:11:58',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30542,'4000','121680292240','2023-04-01 00:11:58',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30543,'1110','121680297125','2023-04-01 02:23:20',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30544,'1110','121680297125','2023-04-01 02:23:20',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30545,'1110','121680297125','2023-04-01 02:23:20',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561532','','No',NULL,NULL,''),(30546,'5500','121680297125','2023-04-01 02:23:20',1653.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30547,'1000','121680297125','2023-04-01 02:23:20',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30548,'4000','121680297125','2023-04-01 02:23:20',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30549,'4000','121680297125','2023-04-01 02:23:20',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30550,'4000','121680297125','2023-04-01 02:23:20',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561532','','No',NULL,NULL,''),(30551,'1110','121680305008','2023-04-01 02:37:46',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30552,'5500','121680305008','2023-04-01 02:37:46',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30553,'1000','121680305008','2023-04-01 02:37:46',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30554,'4000','121680305008','2023-04-01 02:37:46',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30555,'1110','121680305870','2023-04-01 02:56:41',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30556,'5500','121680305870','2023-04-01 02:56:41',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30557,'1000','121680305870','2023-04-01 02:56:41',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30558,'4000','121680305870','2023-04-01 02:56:41',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30559,'1110','121680369238','2023-04-01 21:23:57',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(30560,'1110','121680369238','2023-04-01 21:23:57',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30561,'5500','121680369238','2023-04-01 21:23:57',2998.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30562,'1000','121680369238','2023-04-01 21:23:57',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30563,'4000','121680369238','2023-04-01 21:23:57',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(30564,'4000','121680369238','2023-04-01 21:23:57',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30565,'1110','121680373443','2023-04-01 21:53:22',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30566,'5500','121680373443','2023-04-01 21:53:22',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30567,'1000','121680373443','2023-04-01 21:53:22',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30568,'4000','121680373443','2023-04-01 21:53:22',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30569,'1110','121680375206','2023-04-01 22:27:15',NULL,1176.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30570,'1110','121680375206','2023-04-01 22:27:15',NULL,238.66,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(30571,'5500','121680375206','2023-04-01 22:27:15',1414.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30572,'1000','121680375206','2023-04-01 22:27:15',2400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30573,'4000','121680375206','2023-04-01 22:27:15',NULL,2000.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30574,'4000','121680375206','2023-04-01 22:27:15',NULL,400.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(30575,'1110','121680377443','2023-04-01 23:24:32',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30576,'1110','121680377443','2023-04-01 23:24:32',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(30577,'5500','121680377443','2023-04-01 23:24:32',534.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30578,'1000','121680377443','2023-04-01 23:24:32',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30579,'4000','121680377443','2023-04-01 23:24:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30580,'4000','121680377443','2023-04-01 23:24:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(30581,'1110','121680380677','2023-04-01 23:30:57',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30582,'5500','121680380677','2023-04-01 23:30:57',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30583,'1000','121680380677','2023-04-01 23:30:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30584,'4000','121680380677','2023-04-01 23:30:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30585,'1110','121680381061','2023-04-01 23:45:01',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(30586,'1110','121680381061','2023-04-01 23:45:01',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(30587,'1110','121680381061','2023-04-01 23:45:01',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30588,'1110','121680381061','2023-04-01 23:45:01',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(30589,'1110','121680381061','2023-04-01 23:45:01',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018230','','No',NULL,NULL,''),(30590,'5500','121680381061','2023-04-01 23:45:01',3924.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30591,'1000','121680381061','2023-04-01 23:45:01',5350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30592,'4000','121680381061','2023-04-01 23:45:01',NULL,3000.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(30593,'4000','121680381061','2023-04-01 23:45:01',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(30594,'4000','121680381061','2023-04-01 23:45:01',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30595,'4000','121680381061','2023-04-01 23:45:01',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(30596,'4000','121680381061','2023-04-01 23:45:01',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018230','','No',NULL,NULL,''),(30597,'1110','121680391909','2023-04-02 02:32:11',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(30598,'1110','121680391909','2023-04-02 02:32:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30599,'5500','121680391909','2023-04-02 02:32:11',496.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30600,'1000','121680391909','2023-04-02 02:32:11',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30601,'4000','121680391909','2023-04-02 02:32:11',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(30602,'4000','121680391909','2023-04-02 02:32:11',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(30603,'1110','121680391937','2023-04-02 02:39:42',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30604,'1110','121680391937','2023-04-02 02:39:42',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30605,'5500','121680391937','2023-04-02 02:39:42',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30606,'1000','121680391937','2023-04-02 02:39:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30607,'4000','121680391937','2023-04-02 02:39:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30608,'4000','121680391937','2023-04-02 02:39:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30609,'1110','121680449262','2023-04-02 20:23:06',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(30610,'5500','121680449262','2023-04-02 20:23:06',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30611,'1000','121680449262','2023-04-02 20:23:06',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30612,'4000','121680449262','2023-04-02 20:23:06',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(30613,'1110','121680456193','2023-04-02 20:24:35',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30614,'5500','121680456193','2023-04-02 20:24:35',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30615,'1000','121680456193','2023-04-02 20:24:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30616,'4000','121680456193','2023-04-02 20:24:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30617,'1110','121680456281','2023-04-02 20:25:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30618,'1110','121680456281','2023-04-02 20:25:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30619,'5500','121680456281','2023-04-02 20:25:21',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30620,'1000','121680456281','2023-04-02 20:25:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30621,'4000','121680456281','2023-04-02 20:25:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30622,'4000','121680456281','2023-04-02 20:25:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30623,'1110','121680456328','2023-04-02 20:39:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30624,'5500','121680456328','2023-04-02 20:39:58',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30625,'1000','121680456328','2023-04-02 20:39:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30626,'4000','121680456328','2023-04-02 20:39:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30627,'1110','121680457246','2023-04-02 21:57:48',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(30628,'5500','121680457246','2023-04-02 21:57:48',245.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30629,'1000','121680457246','2023-04-02 21:57:48',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30630,'4000','121680457246','2023-04-02 21:57:48',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(30631,'1110','121680461873','2023-04-02 21:58:03',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30632,'5500','121680461873','2023-04-02 21:58:03',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30633,'1000','121680461873','2023-04-02 21:58:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30634,'4000','121680461873','2023-04-02 21:58:03',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30635,'1110','121680461888','2023-04-02 22:41:58',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30636,'1110','121680461888','2023-04-02 22:41:58',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30637,'1110','121680461888','2023-04-02 22:41:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30638,'5500','121680461888','2023-04-02 22:41:58',415.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30639,'1000','121680461888','2023-04-02 22:41:58',580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30640,'4000','121680461888','2023-04-02 22:41:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30641,'4000','121680461888','2023-04-02 22:41:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30642,'4000','121680461888','2023-04-02 22:41:58',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30643,'1110','121680464522','2023-04-02 23:27:04',NULL,2706.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30644,'1110','121680464522','2023-04-02 23:27:04',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30645,'1110','121680464522','2023-04-02 23:27:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30646,'1110','121680464522','2023-04-02 23:27:04',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30647,'1110','121680464522','2023-04-02 23:27:04',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30648,'5500','121680464522','2023-04-02 23:27:04',3494.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30649,'1000','121680464522','2023-04-02 23:27:04',5120.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30650,'4000','121680464522','2023-04-02 23:27:04',NULL,3800.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30651,'4000','121680464522','2023-04-02 23:27:04',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30652,'4000','121680464522','2023-04-02 23:27:04',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30653,'4000','121680464522','2023-04-02 23:27:04',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30654,'4000','121680464522','2023-04-02 23:27:04',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30655,'1110','121680468050','2023-04-03 00:06:06',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30656,'1110','121680468050','2023-04-03 00:06:06',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30657,'5500','121680468050','2023-04-03 00:06:06',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30658,'1000','121680468050','2023-04-03 00:06:06',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30659,'4000','121680468050','2023-04-03 00:06:06',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30660,'4000','121680468050','2023-04-03 00:06:06',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30661,'1110','121680469571','2023-04-03 02:10:22',NULL,7531.00,'','12','1','Inventory sold','1','','sales','5000267165806','','No',NULL,NULL,''),(30662,'5500','121680469571','2023-04-03 02:10:22',7531.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30663,'1000','121680469571','2023-04-03 02:10:22',10000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30664,'4000','121680469571','2023-04-03 02:10:22',NULL,10000.00,'','12','1','Good sold','1','','sales','5000267165806','','No',NULL,NULL,''),(30665,'1110','121680479220','2023-04-03 02:56:01',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30666,'5500','121680479220','2023-04-03 02:56:01',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30667,'1000','121680479220','2023-04-03 02:56:01',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30668,'4000','121680479220','2023-04-03 02:56:01',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30669,'1110','121680482631','2023-04-03 03:44:09',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30670,'5500','121680482631','2023-04-03 03:44:09',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30671,'1000','121680482631','2023-04-03 03:44:09',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30672,'4000','121680482631','2023-04-03 03:44:09',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30673,'1110','121680534133','2023-04-03 19:14:01',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30674,'5500','121680534133','2023-04-03 19:14:01',1353.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30675,'1000','121680534133','2023-04-03 19:14:01',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30676,'4000','121680534133','2023-04-03 19:14:01',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(30677,'1110','121680538448','2023-04-03 19:15:01',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30678,'1110','121680538448','2023-04-03 19:15:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30679,'1110','121680538448','2023-04-03 19:15:01',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30680,'5500','121680538448','2023-04-03 19:15:01',681.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30681,'1000','121680538448','2023-04-03 19:15:01',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30682,'4000','121680538448','2023-04-03 19:15:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30683,'4000','121680538448','2023-04-03 19:15:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30684,'4000','121680538448','2023-04-03 19:15:01',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30685,'1110','121680538577','2023-04-03 19:19:31',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(30686,'5500','121680538577','2023-04-03 19:19:31',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30687,'1000','121680538577','2023-04-03 19:19:31',140.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30688,'4000','121680538577','2023-04-03 19:19:31',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(30689,'1110','121680538777','2023-04-03 19:35:50',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30690,'5500','121680538777','2023-04-03 19:35:50',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30691,'1000','121680538777','2023-04-03 19:35:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30692,'4000','121680538777','2023-04-03 19:35:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30693,'1110','121680551108','2023-04-03 22:45:21',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30694,'5500','121680551108','2023-04-03 22:45:21',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30695,'1000','121680551108','2023-04-03 22:45:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30696,'4000','121680551108','2023-04-03 22:45:21',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(30697,'1110','121680551126','2023-04-03 22:46:05',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(30698,'5500','121680551126','2023-04-03 22:46:05',170.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30699,'1000','121680551126','2023-04-03 22:46:05',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30700,'4000','121680551126','2023-04-03 22:46:05',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(30701,'1110','121680551170','2023-04-03 22:46:17',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30702,'5500','121680551170','2023-04-03 22:46:17',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30703,'1000','121680551170','2023-04-03 22:46:17',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30704,'4000','121680551170','2023-04-03 22:46:17',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30705,'1110','121680551182','2023-04-03 23:07:17',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30706,'5500','121680551182','2023-04-03 23:07:17',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30707,'1000','121680551182','2023-04-03 23:07:17',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30708,'4000','121680551182','2023-04-03 23:07:17',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30709,'1110','121680632948','2023-04-04 22:57:07',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30710,'1110','121680632948','2023-04-04 22:57:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30711,'5500','121680632948','2023-04-04 22:57:07',363.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30712,'1000','121680632948','2023-04-04 22:57:07',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30713,'4000','121680632948','2023-04-04 22:57:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30714,'4000','121680632948','2023-04-04 22:57:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30715,'1110','121680638236','2023-04-04 22:58:16',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30716,'1110','121680638236','2023-04-04 22:58:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30717,'5500','121680638236','2023-04-04 22:58:16',342.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30718,'1000','121680638236','2023-04-04 22:58:16',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30719,'4000','121680638236','2023-04-04 22:58:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30720,'4000','121680638236','2023-04-04 22:58:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30721,'1110','121680638300','2023-04-04 23:20:53',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30722,'5500','121680638300','2023-04-04 23:20:53',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30723,'1000','121680638300','2023-04-04 23:20:53',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30724,'4000','121680638300','2023-04-04 23:20:53',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30725,'1110','121680639659','2023-04-04 23:27:45',NULL,3996.00,'','12','1','Inventory sold','1','','sales','5000281032733','','No',NULL,NULL,''),(30726,'1110','121680639659','2023-04-04 23:27:45',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30727,'1110','121680639659','2023-04-04 23:27:45',NULL,205.00,'','12','1','Inventory sold','1','','sales','024000150152','','No',NULL,NULL,''),(30728,'5500','121680639659','2023-04-04 23:27:45',4275.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30729,'1000','121680639659','2023-04-04 23:27:45',5850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30730,'4000','121680639659','2023-04-04 23:27:45',NULL,5400.00,'','12','1','Good sold','1','','sales','5000281032733','','No',NULL,NULL,''),(30731,'4000','121680639659','2023-04-04 23:27:45',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30732,'4000','121680639659','2023-04-04 23:27:45',NULL,300.00,'','12','1','Good sold','1','','sales','024000150152','','No',NULL,NULL,''),(30733,'1110','121680648182','2023-04-05 01:44:04',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30734,'5500','121680648182','2023-04-05 01:44:04',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30735,'1000','121680648182','2023-04-05 01:44:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30736,'4000','121680648182','2023-04-05 01:44:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30737,'1110','121680716342','2023-04-05 20:39:23',NULL,690.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(30738,'5500','121680716342','2023-04-05 20:39:23',690.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30739,'1000','121680716342','2023-04-05 20:39:23',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30740,'4000','121680716342','2023-04-05 20:39:23',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(30741,'1110','121680716403','2023-04-05 20:40:45',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30742,'5500','121680716403','2023-04-05 20:40:45',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30743,'1000','121680716403','2023-04-05 20:40:45',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30744,'4000','121680716403','2023-04-05 20:40:45',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30745,'1110','121680716450','2023-04-05 20:41:25',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30746,'5500','121680716450','2023-04-05 20:41:25',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30747,'1000','121680716450','2023-04-05 20:41:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30748,'4000','121680716450','2023-04-05 20:41:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30749,'1110','121680719931','2023-04-05 21:38:57',NULL,1110.00,'','12','1','Inventory sold','1','','sales','6002886001410','','No',NULL,NULL,''),(30750,'5500','121680719931','2023-04-05 21:38:57',1110.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30751,'1000','121680719931','2023-04-05 21:38:57',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30752,'4000','121680719931','2023-04-05 21:38:57',NULL,1900.00,'','12','1','Good sold','1','','sales','6002886001410','','No',NULL,NULL,''),(30753,'1110','121680720029','2023-04-05 21:41:01',NULL,1800.00,'','12','1','Inventory sold','1','','sales','4840709004338','','No',NULL,NULL,''),(30754,'5500','121680720029','2023-04-05 21:41:01',1800.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30755,'1000','121680720029','2023-04-05 21:41:01',3600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30756,'4000','121680720029','2023-04-05 21:41:01',NULL,3600.00,'','12','1','Good sold','1','','sales','4840709004338','','No',NULL,NULL,''),(30757,'1110','121680720076','2023-04-05 21:44:43',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(30758,'5500','121680720076','2023-04-05 21:44:43',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30759,'1000','121680720076','2023-04-05 21:44:43',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30760,'4000','121680720076','2023-04-05 21:44:43',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(30761,'1110','121680720334','2023-04-05 22:18:36',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30762,'5500','121680720334','2023-04-05 22:18:36',44.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30763,'1000','121680720334','2023-04-05 22:18:36',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30764,'4000','121680720334','2023-04-05 22:18:36',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(30765,'1110','121680722323','2023-04-05 23:09:57',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30766,'5500','121680722323','2023-04-05 23:09:57',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30767,'1000','121680722323','2023-04-05 23:09:57',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30768,'4000','121680722323','2023-04-05 23:09:57',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30769,'1110','121680725518','2023-04-05 23:12:14',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30770,'5500','121680725518','2023-04-05 23:12:14',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30771,'1000','121680725518','2023-04-05 23:12:14',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30772,'4000','121680725518','2023-04-05 23:12:14',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30773,'1110','121680809050','2023-04-06 22:24:32',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30774,'5500','121680809050','2023-04-06 22:24:32',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30775,'1000','121680809050','2023-04-06 22:24:32',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30776,'4000','121680809050','2023-04-06 22:24:32',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30777,'1110','121680809077','2023-04-06 23:05:38',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30778,'5500','121680809077','2023-04-06 23:05:38',294.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30779,'1000','121680809077','2023-04-06 23:05:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30780,'4000','121680809077','2023-04-06 23:05:38',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30781,'1110','121680812904','2023-04-06 23:28:35',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30782,'5500','121680812904','2023-04-06 23:28:35',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30783,'1000','121680812904','2023-04-06 23:28:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30784,'4000','121680812904','2023-04-06 23:28:35',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30785,'1110','121680812919','2023-04-06 23:28:53',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(30786,'5500','121680812919','2023-04-06 23:28:53',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30787,'1000','121680812919','2023-04-06 23:28:53',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30788,'4000','121680812919','2023-04-06 23:28:53',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(30789,'1110','121680814538','2023-04-06 23:55:47',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30790,'5500','121680814538','2023-04-06 23:55:47',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30791,'1000','121680814538','2023-04-06 23:55:47',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30792,'4000','121680814538','2023-04-06 23:55:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30793,'1110','121680814553','2023-04-07 00:26:56',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30794,'5500','121680814553','2023-04-07 00:26:56',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30795,'1000','121680814553','2023-04-07 00:26:56',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30796,'4000','121680814553','2023-04-07 00:26:56',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30797,'1110','121680826646','2023-04-07 03:19:05',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(30798,'5500','121680826646','2023-04-07 03:19:05',1150.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30799,'1000','121680826646','2023-04-07 03:19:05',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30800,'4000','121680826646','2023-04-07 03:19:05',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(30801,'1110','121680836941','2023-04-07 06:10:17',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30802,'1110','121680836941','2023-04-07 06:10:17',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(30803,'1110','121680836941','2023-04-07 06:10:17',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30804,'5500','121680836941','2023-04-07 06:10:17',703.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30805,'1000','121680836941','2023-04-07 06:10:17',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30806,'4000','121680836941','2023-04-07 06:10:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30807,'4000','121680836941','2023-04-07 06:10:17',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(30808,'4000','121680836941','2023-04-07 06:10:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30809,'1110','121680884037','2023-04-07 19:22:28',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(30810,'5500','121680884037','2023-04-07 19:22:28',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30811,'1000','121680884037','2023-04-07 19:22:28',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30812,'4000','121680884037','2023-04-07 19:22:28',NULL,1400.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(30813,'1110','121680884559','2023-04-07 21:27:16',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30814,'5500','121680884559','2023-04-07 21:27:16',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30815,'1000','121680884559','2023-04-07 21:27:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30816,'4000','121680884559','2023-04-07 21:27:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30817,'1110','121680895403','2023-04-07 23:07:35',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30818,'5500','121680895403','2023-04-07 23:07:35',586.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30819,'1000','121680895403','2023-04-07 23:07:35',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30820,'4000','121680895403','2023-04-07 23:07:35',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30821,'1110','121680898955','2023-04-07 23:23:16',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(30822,'1110','121680898955','2023-04-07 23:23:16',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(30823,'5500','121680898955','2023-04-07 23:23:16',387.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30824,'1000','121680898955','2023-04-07 23:23:16',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30825,'4000','121680898955','2023-04-07 23:23:16',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(30826,'4000','121680898955','2023-04-07 23:23:16',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(30827,'1110','121680902677','2023-04-08 00:24:45',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30828,'5500','121680902677','2023-04-08 00:24:45',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30829,'1000','121680902677','2023-04-08 00:24:45',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30830,'4000','121680902677','2023-04-08 00:24:45',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30831,'1110','121680902688','2023-04-08 00:31:19',NULL,125.46,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30832,'5500','121680902688','2023-04-08 00:31:19',125.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30833,'1000','121680902688','2023-04-08 00:31:19',240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30834,'4000','121680902688','2023-04-08 00:31:19',NULL,240.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(30835,'1110','121680903686','2023-04-08 00:41:34',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(30836,'5500','121680903686','2023-04-08 00:41:34',1465.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30837,'1000','121680903686','2023-04-08 00:41:34',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30838,'4000','121680903686','2023-04-08 00:41:34',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(30839,'1110','121680903798','2023-04-08 00:43:55',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30840,'1110','121680903798','2023-04-08 00:43:55',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30841,'5500','121680903798','2023-04-08 00:43:55',2027.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30842,'1000','121680903798','2023-04-08 00:43:55',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30843,'4000','121680903798','2023-04-08 00:43:55',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30844,'4000','121680903798','2023-04-08 00:43:55',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30845,'1110','121680905744','2023-04-08 01:15:55',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30846,'5500','121680905744','2023-04-08 01:15:55',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30847,'1000','121680905744','2023-04-08 01:15:55',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30848,'4000','121680905744','2023-04-08 01:15:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30849,'1110','121680910823','2023-04-08 02:43:13',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30850,'1110','121680910823','2023-04-08 02:43:13',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(30851,'1110','121680910823','2023-04-08 02:43:13',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30852,'1110','121680910823','2023-04-08 02:43:13',NULL,46.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(30853,'5500','121680910823','2023-04-08 02:43:13',1268.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30854,'1000','121680910823','2023-04-08 02:43:13',2540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30855,'4000','121680910823','2023-04-08 02:43:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30856,'4000','121680910823','2023-04-08 02:43:13',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(30857,'4000','121680910823','2023-04-08 02:43:13',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30858,'4000','121680910823','2023-04-08 02:43:13',NULL,160.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(30859,'1110','121680912959','2023-04-08 03:16:10',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30860,'5500','121680912959','2023-04-08 03:16:10',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30861,'1000','121680912959','2023-04-08 03:16:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30862,'4000','121680912959','2023-04-08 03:16:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30863,'1110','121680913759','2023-04-08 03:37:16',NULL,8900.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(30864,'1110','121680913759','2023-04-08 03:37:16',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30865,'1110','121680913759','2023-04-08 03:37:16',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30866,'1110','121680913759','2023-04-08 03:37:16',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30867,'5500','121680913759','2023-04-08 03:37:16',10289.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30868,'1000','121680913759','2023-04-08 03:37:16',15160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30869,'4000','121680913759','2023-04-08 03:37:16',NULL,13000.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(30870,'4000','121680913759','2023-04-08 03:37:16',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(30871,'4000','121680913759','2023-04-08 03:37:16',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30872,'4000','121680913759','2023-04-08 03:37:16',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30873,'1110','121680925814','2023-04-08 06:50:41',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(30874,'1110','121680925814','2023-04-08 06:50:41',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30875,'5500','121680925814','2023-04-08 06:50:41',1233.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30876,'1000','121680925814','2023-04-08 06:50:41',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30877,'4000','121680925814','2023-04-08 06:50:41',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(30878,'4000','121680925814','2023-04-08 06:50:41',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30879,'1110','121680936608','2023-04-08 09:52:18',NULL,711.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(30880,'5500','121680936608','2023-04-08 09:52:18',711.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30881,'1000','121680936608','2023-04-08 09:52:18',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30882,'4000','121680936608','2023-04-08 09:52:18',NULL,1300.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(30883,'1110','121680945421','2023-04-08 12:18:02',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30884,'1110','121680945421','2023-04-08 12:18:02',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30885,'1110','121680945421','2023-04-08 12:18:02',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(30886,'5500','121680945421','2023-04-08 12:18:02',2408.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30887,'1000','121680945421','2023-04-08 12:18:02',3600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30888,'4000','121680945421','2023-04-08 12:18:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30889,'4000','121680945421','2023-04-08 12:18:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(30890,'4000','121680945421','2023-04-08 12:18:02',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(30891,'1110','121680958712','2023-04-08 16:01:54',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30892,'1110','121680958712','2023-04-08 16:01:54',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(30893,'5500','121680958712','2023-04-08 16:01:54',689.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30894,'1000','121680958712','2023-04-08 16:01:54',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30895,'4000','121680958712','2023-04-08 16:01:54',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30896,'4000','121680958712','2023-04-08 16:01:54',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(30897,'1110','121680972314','2023-04-08 19:45:35',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(30898,'5500','121680972314','2023-04-08 19:45:35',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30899,'1000','121680972314','2023-04-08 19:45:35',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30900,'4000','121680972314','2023-04-08 19:45:35',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(30901,'1110','121680972342','2023-04-08 19:46:07',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30902,'5500','121680972342','2023-04-08 19:46:07',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30903,'1000','121680972342','2023-04-08 19:46:07',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30904,'4000','121680972342','2023-04-08 19:46:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30905,'1110','121680972372','2023-04-08 20:09:01',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(30906,'5500','121680972372','2023-04-08 20:09:01',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30907,'1000','121680972372','2023-04-08 20:09:01',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30908,'4000','121680972372','2023-04-08 20:09:01',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(30909,'1110','121680975630','2023-04-08 20:43:50',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30910,'1110','121680975630','2023-04-08 20:43:50',NULL,250.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(30911,'1110','121680975630','2023-04-08 20:43:50',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(30912,'1110','121680975630','2023-04-08 20:43:50',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30913,'5500','121680975630','2023-04-08 20:43:50',808.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30914,'1000','121680975630','2023-04-08 20:43:50',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30915,'4000','121680975630','2023-04-08 20:43:50',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30916,'4000','121680975630','2023-04-08 20:43:50',NULL,400.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(30917,'4000','121680975630','2023-04-08 20:43:50',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(30918,'4000','121680975630','2023-04-08 20:43:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(30919,'1110','121680976550','2023-04-08 20:58:53',NULL,1850.00,'','12','1','Inventory sold','1','','sales','4067700014559','','No',NULL,NULL,''),(30920,'1110','121680976550','2023-04-08 20:58:53',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30921,'1110','121680976550','2023-04-08 20:58:53',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(30922,'1110','121680976550','2023-04-08 20:58:53',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30923,'1110','121680976550','2023-04-08 20:58:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30924,'1110','121680976550','2023-04-08 20:58:53',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(30925,'5500','121680976550','2023-04-08 20:58:53',4029.24,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30926,'1000','121680976550','2023-04-08 20:58:53',6610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30927,'4000','121680976550','2023-04-08 20:58:53',NULL,3600.00,'','12','1','Good sold','1','','sales','4067700014559','','No',NULL,NULL,''),(30928,'4000','121680976550','2023-04-08 20:58:53',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(30929,'4000','121680976550','2023-04-08 20:58:53',NULL,200.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(30930,'4000','121680976550','2023-04-08 20:58:53',NULL,2500.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(30931,'4000','121680976550','2023-04-08 20:58:53',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30932,'4000','121680976550','2023-04-08 20:58:53',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(30933,'1110','121680979896','2023-04-08 22:02:02',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30934,'1110','121680979896','2023-04-08 22:02:02',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30935,'1110','121680979896','2023-04-08 22:02:02',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30936,'1110','121680979896','2023-04-08 22:02:02',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30937,'1110','121680979896','2023-04-08 22:02:02',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(30938,'1110','121680979896','2023-04-08 22:02:02',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(30939,'5500','121680979896','2023-04-08 22:02:02',2758.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30940,'1000','121680979896','2023-04-08 22:02:02',4050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30941,'4000','121680979896','2023-04-08 22:02:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(30942,'4000','121680979896','2023-04-08 22:02:02',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(30943,'4000','121680979896','2023-04-08 22:02:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(30944,'4000','121680979896','2023-04-08 22:02:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(30945,'4000','121680979896','2023-04-08 22:02:02',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(30946,'4000','121680979896','2023-04-08 22:02:02',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(30947,'1110','121680990683','2023-04-09 00:52:46',NULL,2460.00,'','12','1','Inventory sold','1','','sales','5000299618073','','No',NULL,NULL,''),(30948,'1110','121680990683','2023-04-09 00:52:46',NULL,159.99,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30949,'1110','121680990683','2023-04-09 00:52:46',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30950,'5500','121680990683','2023-04-09 00:52:46',2809.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30951,'1000','121680990683','2023-04-09 00:52:46',3990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30952,'4000','121680990683','2023-04-09 00:52:46',NULL,3500.00,'','12','1','Good sold','1','','sales','5000299618073','','No',NULL,NULL,''),(30953,'4000','121680990683','2023-04-09 00:52:46',NULL,240.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30954,'4000','121680990683','2023-04-09 00:52:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(30955,'1110','121680990842','2023-04-09 00:54:25',NULL,711.00,'','12','1','Inventory sold','1','','sales','6161101130424','','No',NULL,NULL,''),(30956,'5500','121680990842','2023-04-09 00:54:25',711.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30957,'1000','121680990842','2023-04-09 00:54:25',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30958,'4000','121680990842','2023-04-09 00:54:25',NULL,1300.00,'','12','1','Good sold','1','','sales','6161101130424','','No',NULL,NULL,''),(30959,'1110','121680990870','2023-04-09 01:12:16',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30960,'5500','121680990870','2023-04-09 01:12:16',545.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30961,'1000','121680990870','2023-04-09 01:12:16',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30962,'4000','121680990870','2023-04-09 01:12:16',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(30963,'1110','121680992903','2023-04-09 01:29:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30964,'5500','121680992903','2023-04-09 01:29:34',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30965,'1000','121680992903','2023-04-09 01:29:34',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30966,'4000','121680992903','2023-04-09 01:29:34',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30967,'1110','121680992980','2023-04-09 02:28:02',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30968,'1110','121680992980','2023-04-09 02:28:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(30969,'1110','121680992980','2023-04-09 02:28:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(30970,'5500','121680992980','2023-04-09 02:28:02',607.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30971,'1000','121680992980','2023-04-09 02:28:02',960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30972,'4000','121680992980','2023-04-09 02:28:02',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30973,'4000','121680992980','2023-04-09 02:28:02',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(30974,'4000','121680992980','2023-04-09 02:28:02',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(30975,'1110','121681002922','2023-04-09 04:15:34',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30976,'5500','121681002922','2023-04-09 04:15:34',158.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30977,'1000','121681002922','2023-04-09 04:15:34',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30978,'4000','121681002922','2023-04-09 04:15:34',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(30979,'1110','121681003736','2023-04-09 04:29:18',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(30980,'5500','121681003736','2023-04-09 04:29:18',570.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30981,'1000','121681003736','2023-04-09 04:29:18',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30982,'4000','121681003736','2023-04-09 04:29:18',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(30983,'1110','121681004120','2023-04-09 04:35:51',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30984,'1110','121681004120','2023-04-09 04:35:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(30985,'5500','121681004120','2023-04-09 04:35:51',554.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30986,'1000','121681004120','2023-04-09 04:35:51',880.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30987,'4000','121681004120','2023-04-09 04:35:51',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(30988,'4000','121681004120','2023-04-09 04:35:51',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(30989,'1110','121681034147','2023-04-09 13:02:24',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(30990,'5500','121681034147','2023-04-09 13:02:24',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30991,'1000','121681034147','2023-04-09 13:02:24',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30992,'4000','121681034147','2023-04-09 13:02:24',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(30993,'1110','121681040827','2023-04-09 14:51:29',NULL,586.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30994,'1110','121681040827','2023-04-09 14:51:29',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30995,'5500','121681040827','2023-04-09 14:51:29',645.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(30996,'1000','121681040827','2023-04-09 14:51:29',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(30997,'4000','121681040827','2023-04-09 14:51:29',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(30998,'4000','121681040827','2023-04-09 14:51:29',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(30999,'1110','121681041332','2023-04-09 15:47:54',NULL,1080.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31000,'5500','121681041332','2023-04-09 15:47:54',1080.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31001,'1000','121681041332','2023-04-09 15:47:54',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31002,'4000','121681041332','2023-04-09 15:47:54',NULL,1500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31003,'1110','121681089143','2023-04-10 04:12:39',NULL,555.00,'','12','1','Inventory sold','1','','sales','6161101561303','','No',NULL,NULL,''),(31004,'5500','121681089143','2023-04-10 04:12:39',555.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31005,'1000','121681089143','2023-04-10 04:12:39',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31006,'4000','121681089143','2023-04-10 04:12:39',NULL,900.00,'','12','1','Good sold','1','','sales','6161101561303','','No',NULL,NULL,''),(31007,'1110','121681120616','2023-04-10 12:57:17',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31008,'1110','121681120616','2023-04-10 12:57:17',NULL,170.00,'','12','1','Inventory sold','1','','sales','6008165265962','','No',NULL,NULL,''),(31009,'5500','121681120616','2023-04-10 12:57:17',671.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31010,'1000','121681120616','2023-04-10 12:57:17',1070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31011,'4000','121681120616','2023-04-10 12:57:17',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31012,'4000','121681120616','2023-04-10 12:57:17',NULL,270.00,'','12','1','Good sold','1','','sales','6008165265962','','No',NULL,NULL,''),(31013,'1110','121681121333','2023-04-10 14:15:16',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31014,'1110','121681121333','2023-04-10 14:15:16',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31015,'5500','121681121333','2023-04-10 14:15:16',345.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31016,'1000','121681121333','2023-04-10 14:15:16',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31017,'4000','121681121333','2023-04-10 14:15:16',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31018,'4000','121681121333','2023-04-10 14:15:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31019,'1110','121681138439','2023-04-10 19:10:15',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31020,'5500','121681138439','2023-04-10 19:10:15',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31021,'1000','121681138439','2023-04-10 19:10:15',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31022,'4000','121681138439','2023-04-10 19:10:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31023,'1110','121681143024','2023-04-10 19:14:19',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31024,'5500','121681143024','2023-04-10 19:14:19',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31025,'1000','121681143024','2023-04-10 19:14:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31026,'4000','121681143024','2023-04-10 19:14:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31027,'1110','121681143265','2023-04-10 19:17:50',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31028,'5500','121681143265','2023-04-10 19:17:50',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31029,'1000','121681143265','2023-04-10 19:17:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31030,'4000','121681143265','2023-04-10 19:17:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31031,'1110','121681143475','2023-04-10 19:18:09',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31032,'5500','121681143475','2023-04-10 19:18:09',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31033,'1000','121681143475','2023-04-10 19:18:09',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31034,'4000','121681143475','2023-04-10 19:18:09',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31035,'1110','121681163389','2023-04-11 00:50:24',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(31036,'1110','121681163389','2023-04-11 00:50:24',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31037,'1110','121681163389','2023-04-11 00:50:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31038,'5500','121681163389','2023-04-11 00:50:24',626.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31039,'1000','121681163389','2023-04-11 00:50:24',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31040,'4000','121681163389','2023-04-11 00:50:24',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(31041,'4000','121681163389','2023-04-11 00:50:24',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31042,'4000','121681163389','2023-04-11 00:50:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31043,'1110','121681170347','2023-04-11 02:46:23',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31044,'5500','121681170347','2023-04-11 02:46:23',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31045,'1000','121681170347','2023-04-11 02:46:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31046,'4000','121681170347','2023-04-11 02:46:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31047,'1110','121681170388','2023-04-11 02:46:57',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(31048,'5500','121681170388','2023-04-11 02:46:57',855.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31049,'1000','121681170388','2023-04-11 02:46:57',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31050,'4000','121681170388','2023-04-11 02:46:57',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(31051,'1110','121681170424','2023-04-11 02:50:01',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31052,'5500','121681170424','2023-04-11 02:50:01',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31053,'1000','121681170424','2023-04-11 02:50:01',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31054,'4000','121681170424','2023-04-11 02:50:01',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31055,'1110','121681202580','2023-04-11 11:43:48',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31056,'5500','121681202580','2023-04-11 11:43:48',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31057,'1000','121681202580','2023-04-11 11:43:48',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31058,'4000','121681202580','2023-04-11 11:43:48',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31059,'1110','121681202635','2023-04-11 12:58:39',NULL,380.00,'','12','1','Inventory sold','1','','sales','8906125990016','','No',NULL,NULL,''),(31060,'5500','121681202635','2023-04-11 12:58:39',380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31061,'1000','121681202635','2023-04-11 12:58:39',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31062,'4000','121681202635','2023-04-11 12:58:39',NULL,600.00,'','12','1','Good sold','1','','sales','8906125990016','','No',NULL,NULL,''),(31063,'1110','121681208735','2023-04-11 13:25:44',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31064,'5500','121681208735','2023-04-11 13:25:44',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31065,'1000','121681208735','2023-04-11 13:25:44',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31066,'4000','121681208735','2023-04-11 13:25:44',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31067,'1110','121681237210','2023-04-11 21:20:32',NULL,810.00,'','12','1','Inventory sold','1','','sales','6001108049599','','No',NULL,NULL,''),(31068,'1110','121681237210','2023-04-11 21:20:32',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(31069,'5500','121681237210','2023-04-11 21:20:32',968.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31070,'1000','121681237210','2023-04-11 21:20:32',1550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31071,'4000','121681237210','2023-04-11 21:20:32',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049599','','No',NULL,NULL,''),(31072,'4000','121681237210','2023-04-11 21:20:32',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(31073,'1110','121681244178','2023-04-11 23:46:42',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31074,'1110','121681244178','2023-04-11 23:46:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31075,'1110','121681244178','2023-04-11 23:46:42',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31076,'5500','121681244178','2023-04-11 23:46:42',543.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31077,'1000','121681244178','2023-04-11 23:46:42',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31078,'4000','121681244178','2023-04-11 23:46:42',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31079,'4000','121681244178','2023-04-11 23:46:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31080,'4000','121681244178','2023-04-11 23:46:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31081,'1110','121681246008','2023-04-12 00:17:27',NULL,225.00,'','12','1','Inventory sold','1','','sales','024000224532','','No',NULL,NULL,''),(31082,'5500','121681246008','2023-04-12 00:17:27',225.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31083,'1000','121681246008','2023-04-12 00:17:27',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31084,'4000','121681246008','2023-04-12 00:17:27',NULL,300.00,'','12','1','Good sold','1','','sales','024000224532','','No',NULL,NULL,''),(31085,'1110','121681259698','2023-04-12 03:35:51',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31086,'1110','121681259698','2023-04-12 03:35:51',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31087,'5500','121681259698','2023-04-12 03:35:51',617.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31088,'1000','121681259698','2023-04-12 03:35:51',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31089,'4000','121681259698','2023-04-12 03:35:51',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31090,'4000','121681259698','2023-04-12 03:35:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31091,'1110','121681299313','2023-04-12 14:35:26',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31092,'5500','121681299313','2023-04-12 14:35:26',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31093,'1000','121681299313','2023-04-12 14:35:26',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31094,'4000','121681299313','2023-04-12 14:35:26',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31095,'1110','121681304213','2023-04-12 15:57:35',NULL,810.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(31096,'5500','121681304213','2023-04-12 15:57:35',810.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31097,'1000','121681304213','2023-04-12 15:57:35',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31098,'4000','121681304213','2023-04-12 15:57:35',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(31099,'1110','121681311722','2023-04-12 18:02:42',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31100,'1110','121681311722','2023-04-12 18:02:42',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31101,'1110','121681311722','2023-04-12 18:02:42',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31102,'1110','121681311722','2023-04-12 18:02:42',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31103,'5500','121681311722','2023-04-12 18:02:42',812.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31104,'1000','121681311722','2023-04-12 18:02:42',1320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31105,'4000','121681311722','2023-04-12 18:02:42',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31106,'4000','121681311722','2023-04-12 18:02:42',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31107,'4000','121681311722','2023-04-12 18:02:42',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31108,'4000','121681311722','2023-04-12 18:02:42',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31109,'1110','121681314518','2023-04-12 18:49:32',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31110,'1110','121681314518','2023-04-12 18:49:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(31111,'5500','121681314518','2023-04-12 18:49:32',437.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31112,'1000','121681314518','2023-04-12 18:49:32',610.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31113,'4000','121681314518','2023-04-12 18:49:32',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31114,'4000','121681314518','2023-04-12 18:49:32',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(31115,'1110','121681314766','2023-04-12 19:27:52',NULL,260.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31116,'5500','121681314766','2023-04-12 19:27:52',260.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31117,'1000','121681314766','2023-04-12 19:27:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31118,'4000','121681314766','2023-04-12 19:27:52',NULL,500.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31119,'1110','121681316881','2023-04-12 20:10:35',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31120,'5500','121681316881','2023-04-12 20:10:35',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31121,'1000','121681316881','2023-04-12 20:10:35',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31122,'4000','121681316881','2023-04-12 20:10:35',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31123,'1110','121681335463','2023-04-13 01:44:30',NULL,305.00,'','12','1','Inventory sold','1','','sales','8906054940410','','No',NULL,NULL,''),(31124,'5500','121681335463','2023-04-13 01:44:30',305.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31125,'1000','121681335463','2023-04-13 01:44:30',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31126,'4000','121681335463','2023-04-13 01:44:30',NULL,500.00,'','12','1','Good sold','1','','sales','8906054940410','','No',NULL,NULL,''),(31127,'1110','121681382318','2023-04-13 13:39:01',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31128,'1110','121681382318','2023-04-13 13:39:01',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(31129,'5500','121681382318','2023-04-13 13:39:01',248.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31130,'1000','121681382318','2023-04-13 13:39:01',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31131,'4000','121681382318','2023-04-13 13:39:01',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31132,'4000','121681382318','2023-04-13 13:39:01',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(31133,'1110','121681392752','2023-04-13 16:39:46',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31134,'5500','121681392752','2023-04-13 16:39:46',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31135,'1000','121681392752','2023-04-13 16:39:46',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31136,'4000','121681392752','2023-04-13 16:39:46',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31137,'1110','121681393194','2023-04-13 17:26:25',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31138,'5500','121681393194','2023-04-13 17:26:25',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31139,'1000','121681393194','2023-04-13 17:26:25',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31140,'4000','121681393194','2023-04-13 17:26:25',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31141,'1110','121681395993','2023-04-13 18:03:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31142,'5500','121681395993','2023-04-13 18:03:48',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31143,'1000','121681395993','2023-04-13 18:03:48',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31144,'4000','121681395993','2023-04-13 18:03:48',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31145,'1110','121681398233','2023-04-13 18:20:46',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31146,'5500','121681398233','2023-04-13 18:20:46',309.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31147,'1000','121681398233','2023-04-13 18:20:46',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31148,'4000','121681398233','2023-04-13 18:20:46',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31149,'1110','121681400530','2023-04-13 18:42:19',NULL,3350.00,'','12','1','Inventory sold','1','','sales','4067700014535','','No',NULL,NULL,''),(31150,'5500','121681400530','2023-04-13 18:42:19',3350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31151,'1000','121681400530','2023-04-13 18:42:19',5200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31152,'4000','121681400530','2023-04-13 18:42:19',NULL,5200.00,'','12','1','Good sold','1','','sales','4067700014535','','No',NULL,NULL,''),(31153,'1110','121681400841','2023-04-13 18:47:36',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31154,'5500','121681400841','2023-04-13 18:47:36',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31155,'1000','121681400841','2023-04-13 18:47:36',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31156,'4000','121681400841','2023-04-13 18:47:36',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31157,'1110','121681402186','2023-04-13 19:10:23',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31158,'1110','121681402186','2023-04-13 19:10:23',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31159,'1110','121681402186','2023-04-13 19:10:23',NULL,922.00,'','12','1','Inventory sold','1','','sales','6161100421622','','No',NULL,NULL,''),(31160,'5500','121681402186','2023-04-13 19:10:23',1456.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31161,'1000','121681402186','2023-04-13 19:10:23',2290.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31162,'4000','121681402186','2023-04-13 19:10:23',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31163,'4000','121681402186','2023-04-13 19:10:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31164,'4000','121681402186','2023-04-13 19:10:23',NULL,1500.00,'','12','1','Good sold','1','','sales','6161100421622','','No',NULL,NULL,''),(31165,'1110','121681430001','2023-04-14 02:53:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31166,'5500','121681430001','2023-04-14 02:53:36',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31167,'1000','121681430001','2023-04-14 02:53:36',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31168,'4000','121681430001','2023-04-14 02:53:36',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31169,'1110','121681476408','2023-04-14 15:47:56',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31170,'1110','121681476408','2023-04-14 15:47:56',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(31171,'1110','121681476408','2023-04-14 15:47:56',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(31172,'5500','121681476408','2023-04-14 15:47:56',492.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31173,'1000','121681476408','2023-04-14 15:47:56',730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31174,'4000','121681476408','2023-04-14 15:47:56',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31175,'4000','121681476408','2023-04-14 15:47:56',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(31176,'4000','121681476408','2023-04-14 15:47:56',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(31177,'1110','121681477928','2023-04-14 16:15:26',NULL,1382.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31178,'1110','121681477928','2023-04-14 16:15:26',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31179,'5500','121681477928','2023-04-14 16:15:26',1719.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31180,'1000','121681477928','2023-04-14 16:15:26',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31181,'4000','121681477928','2023-04-14 16:15:26',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31182,'4000','121681477928','2023-04-14 16:15:26',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31183,'1110','121681478135','2023-04-14 16:16:09',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31184,'5500','121681478135','2023-04-14 16:16:09',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31185,'1000','121681478135','2023-04-14 16:16:09',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31186,'4000','121681478135','2023-04-14 16:16:09',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31187,'1110','121681478179','2023-04-14 16:19:04',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(31188,'5500','121681478179','2023-04-14 16:19:04',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31189,'1000','121681478179','2023-04-14 16:19:04',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31190,'4000','121681478179','2023-04-14 16:19:04',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(31191,'1110','121681478353','2023-04-14 16:28:02',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31192,'5500','121681478353','2023-04-14 16:28:02',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31193,'1000','121681478353','2023-04-14 16:28:02',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31194,'4000','121681478353','2023-04-14 16:28:02',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31195,'1110','121681478886','2023-04-14 16:28:28',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31196,'5500','121681478886','2023-04-14 16:28:28',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31197,'1000','121681478886','2023-04-14 16:28:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31198,'4000','121681478886','2023-04-14 16:28:28',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31199,'1110','121681478913','2023-04-14 16:55:03',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31200,'1110','121681478913','2023-04-14 16:55:03',NULL,213.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31201,'5500','121681478913','2023-04-14 16:55:03',366.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31202,'1000','121681478913','2023-04-14 16:55:03',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31203,'4000','121681478913','2023-04-14 16:55:03',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31204,'4000','121681478913','2023-04-14 16:55:03',NULL,320.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31205,'1110','121681486969','2023-04-14 18:43:11',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31206,'5500','121681486969','2023-04-14 18:43:11',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31207,'1000','121681486969','2023-04-14 18:43:11',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31208,'4000','121681486969','2023-04-14 18:43:11',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31209,'1110','121681487002','2023-04-14 19:11:18',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6002323400332','','No',NULL,NULL,''),(31210,'5500','121681487002','2023-04-14 19:11:18',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31211,'1000','121681487002','2023-04-14 19:11:18',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31212,'4000','121681487002','2023-04-14 19:11:18',NULL,1700.00,'','12','1','Good sold','1','','sales','6002323400332','','No',NULL,NULL,''),(31213,'1110','121681489117','2023-04-14 19:18:49',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31214,'5500','121681489117','2023-04-14 19:18:49',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31215,'1000','121681489117','2023-04-14 19:18:49',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31216,'4000','121681489117','2023-04-14 19:18:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31217,'1110','121681489134','2023-04-14 19:38:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31218,'1110','121681489134','2023-04-14 19:38:39',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31219,'5500','121681489134','2023-04-14 19:38:39',235.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31220,'1000','121681489134','2023-04-14 19:38:39',380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31221,'4000','121681489134','2023-04-14 19:38:39',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31222,'4000','121681489134','2023-04-14 19:38:39',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31223,'1110','121681490323','2023-04-14 20:54:57',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161100421288','','No',NULL,NULL,''),(31224,'5500','121681490323','2023-04-14 20:54:57',636.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31225,'1000','121681490323','2023-04-14 20:54:57',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31226,'4000','121681490323','2023-04-14 20:54:57',NULL,1400.00,'','12','1','Good sold','1','','sales','6161100421288','','No',NULL,NULL,''),(31227,'1110','121681499107','2023-04-15 00:00:28',NULL,272.00,'','12','1','Inventory sold','1','','sales','5052197004281','','No',NULL,NULL,''),(31228,'5500','121681499107','2023-04-15 00:00:28',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31229,'1000','121681499107','2023-04-15 00:00:28',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31230,'4000','121681499107','2023-04-15 00:00:28',NULL,600.00,'','12','1','Good sold','1','','sales','5052197004281','','No',NULL,NULL,''),(31231,'1110','121681558800','2023-04-15 15:33:56',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31232,'5500','121681558800','2023-04-15 15:33:56',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31233,'1000','121681558800','2023-04-15 15:33:56',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31234,'4000','121681558800','2023-04-15 15:33:56',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31235,'1110','121681570914','2023-04-15 18:05:04',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31236,'1110','121681570914','2023-04-15 18:05:04',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31237,'1110','121681570914','2023-04-15 18:05:04',NULL,450.00,'','12','1','Inventory sold','1','','sales','024000224532','','No',NULL,NULL,''),(31238,'1110','121681570914','2023-04-15 18:05:04',NULL,1206.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31239,'5500','121681570914','2023-04-15 18:05:04',2841.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31240,'1000','121681570914','2023-04-15 18:05:04',4200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31241,'4000','121681570914','2023-04-15 18:05:04',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31242,'4000','121681570914','2023-04-15 18:05:04',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31243,'4000','121681570914','2023-04-15 18:05:04',NULL,600.00,'','12','1','Good sold','1','','sales','024000224532','','No',NULL,NULL,''),(31244,'4000','121681570914','2023-04-15 18:05:04',NULL,1800.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31245,'1110','121681571172','2023-04-15 18:07:39',NULL,929.70,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31246,'5500','121681571172','2023-04-15 18:07:39',929.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31247,'1000','121681571172','2023-04-15 18:07:39',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31248,'4000','121681571172','2023-04-15 18:07:39',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31249,'1110','121681571382','2023-04-15 18:09:52',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31250,'5500','121681571382','2023-04-15 18:09:52',376.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31251,'1000','121681571382','2023-04-15 18:09:52',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31252,'4000','121681571382','2023-04-15 18:09:52',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31253,'1110','121681571506','2023-04-15 18:41:51',NULL,450.00,'','12','1','Inventory sold','1','','sales','8901522001105','','No',NULL,NULL,''),(31254,'5500','121681571506','2023-04-15 18:41:51',450.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31255,'1000','121681571506','2023-04-15 18:41:51',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31256,'4000','121681571506','2023-04-15 18:41:51',NULL,800.00,'','12','1','Good sold','1','','sales','8901522001105','','No',NULL,NULL,''),(31257,'1110','121681576298','2023-04-15 19:31:46',NULL,810.00,'','12','1','Inventory sold','1','','sales','6001108049582','','No',NULL,NULL,''),(31258,'5500','121681576298','2023-04-15 19:31:46',810.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31259,'1000','121681576298','2023-04-15 19:31:46',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31260,'4000','121681576298','2023-04-15 19:31:46',NULL,1300.00,'','12','1','Good sold','1','','sales','6001108049582','','No',NULL,NULL,''),(31261,'1110','121681576456','2023-04-15 20:24:14',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31262,'5500','121681576456','2023-04-15 20:24:14',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31263,'1000','121681576456','2023-04-15 20:24:14',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31264,'4000','121681576456','2023-04-15 20:24:14',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31265,'1110','121681579459','2023-04-15 20:31:24',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31266,'5500','121681579459','2023-04-15 20:31:24',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31267,'1000','121681579459','2023-04-15 20:31:24',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31268,'4000','121681579459','2023-04-15 20:31:24',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31269,'1110','121681579888','2023-04-15 20:53:12',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31270,'1110','121681579888','2023-04-15 20:53:12',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31271,'1110','121681579888','2023-04-15 20:53:12',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31272,'1110','121681579888','2023-04-15 20:53:12',NULL,930.00,'','12','1','Inventory sold','1','','sales','6004786010240','','No',NULL,NULL,''),(31273,'1110','121681579888','2023-04-15 20:53:12',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31274,'5500','121681579888','2023-04-15 20:53:12',1855.23,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31275,'1000','121681579888','2023-04-15 20:53:12',2930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31276,'4000','121681579888','2023-04-15 20:53:12',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31277,'4000','121681579888','2023-04-15 20:53:12',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31278,'4000','121681579888','2023-04-15 20:53:12',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31279,'4000','121681579888','2023-04-15 20:53:12',NULL,1500.00,'','12','1','Good sold','1','','sales','6004786010240','','No',NULL,NULL,''),(31280,'4000','121681579888','2023-04-15 20:53:12',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31281,'1110','121681582181','2023-04-15 22:16:08',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31282,'1110','121681582181','2023-04-15 22:16:08',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31283,'1110','121681582181','2023-04-15 22:16:08',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31284,'1110','121681582181','2023-04-15 22:16:08',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31285,'1110','121681582181','2023-04-15 22:16:08',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(31286,'5500','121681582181','2023-04-15 22:16:08',934.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31287,'1000','121681582181','2023-04-15 22:16:08',1430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31288,'4000','121681582181','2023-04-15 22:16:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(31289,'4000','121681582181','2023-04-15 22:16:08',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31290,'4000','121681582181','2023-04-15 22:16:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31291,'4000','121681582181','2023-04-15 22:16:08',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31292,'4000','121681582181','2023-04-15 22:16:08',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(31293,'1110','121681586354','2023-04-15 22:20:21',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(31294,'5500','121681586354','2023-04-15 22:20:21',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31295,'1000','121681586354','2023-04-15 22:20:21',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31296,'4000','121681586354','2023-04-15 22:20:21',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(31297,'1110','121681586426','2023-04-15 23:46:55',NULL,950.00,'','12','1','Inventory sold','1','','sales','7804320626994','','No',NULL,NULL,''),(31298,'5500','121681586426','2023-04-15 23:46:55',950.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31299,'1000','121681586426','2023-04-15 23:46:55',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31300,'4000','121681586426','2023-04-15 23:46:55',NULL,1500.00,'','12','1','Good sold','1','','sales','7804320626994','','No',NULL,NULL,''),(31301,'1110','121681591619','2023-04-16 00:29:44',NULL,2500.00,'','12','1','Inventory sold','1','','sales','5011007003227','','No',NULL,NULL,''),(31302,'5500','121681591619','2023-04-16 00:29:44',2500.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31303,'1000','121681591619','2023-04-16 00:29:44',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31304,'4000','121681591619','2023-04-16 00:29:44',NULL,3500.00,'','12','1','Good sold','1','','sales','5011007003227','','No',NULL,NULL,''),(31305,'1110','121681667029','2023-04-16 20:44:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31306,'1110','121681667029','2023-04-16 20:44:11',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(31307,'5500','121681667029','2023-04-16 20:44:11',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31308,'1000','121681667029','2023-04-16 20:44:11',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31309,'4000','121681667029','2023-04-16 20:44:11',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31310,'4000','121681667029','2023-04-16 20:44:11',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(31311,'1110','121681667059','2023-04-16 21:12:24',NULL,298.33,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31312,'5500','121681667059','2023-04-16 21:12:24',298.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31313,'1000','121681667059','2023-04-16 21:12:24',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31314,'4000','121681667059','2023-04-16 21:12:24',NULL,500.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31315,'1110','121681668752','2023-04-16 22:34:02',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(31316,'5500','121681668752','2023-04-16 22:34:02',570.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31317,'1000','121681668752','2023-04-16 22:34:02',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31318,'4000','121681668752','2023-04-16 22:34:02',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(31319,'1110','121681676874','2023-04-16 23:28:26',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31320,'1110','121681676874','2023-04-16 23:28:26',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31321,'5500','121681676874','2023-04-16 23:28:26',885.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31322,'1000','121681676874','2023-04-16 23:28:26',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31323,'4000','121681676874','2023-04-16 23:28:26',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31324,'4000','121681676874','2023-04-16 23:28:26',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31325,'1110','121681678293','2023-04-16 23:51:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31326,'5500','121681678293','2023-04-16 23:51:41',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31327,'1000','121681678293','2023-04-16 23:51:41',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31328,'4000','121681678293','2023-04-16 23:51:41',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31329,'1110','121681678306','2023-04-17 00:30:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101603607','','No',NULL,NULL,''),(31330,'5500','121681678306','2023-04-17 00:30:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31331,'1000','121681678306','2023-04-17 00:30:03',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31332,'4000','121681678306','2023-04-17 00:30:03',NULL,350.00,'','12','1','Good sold','1','','sales','6161101603607','','No',NULL,NULL,''),(31333,'1110','121681680685','2023-04-17 00:55:39',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31334,'1110','121681680685','2023-04-17 00:55:39',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31335,'5500','121681680685','2023-04-17 00:55:39',285.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31336,'1000','121681680685','2023-04-17 00:55:39',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31337,'4000','121681680685','2023-04-17 00:55:39',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31338,'4000','121681680685','2023-04-17 00:55:39',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31339,'1110','121681682143','2023-04-17 01:17:34',NULL,236.00,'','12','1','Inventory sold','1','','sales','6161101604987','','No',NULL,NULL,''),(31340,'1110','121681682143','2023-04-17 01:17:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(31341,'5500','121681682143','2023-04-17 01:17:34',289.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31342,'1000','121681682143','2023-04-17 01:17:34',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31343,'4000','121681682143','2023-04-17 01:17:34',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604987','','No',NULL,NULL,''),(31344,'4000','121681682143','2023-04-17 01:17:34',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(31345,'1110','121681683458','2023-04-17 01:27:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31346,'5500','121681683458','2023-04-17 01:27:08',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31347,'1000','121681683458','2023-04-17 01:27:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31348,'4000','121681683458','2023-04-17 01:27:08',NULL,270.00,'','12','1','Good sold','1','','sales','6161101604864','','No',NULL,NULL,''),(31349,'1110','121681721469','2023-04-17 12:01:16',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(31350,'5500','121681721469','2023-04-17 12:01:16',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31351,'1000','121681721469','2023-04-17 12:01:16',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31352,'4000','121681721469','2023-04-17 12:01:16',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(31353,'1110','121681766833','2023-04-18 00:27:23',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31354,'5500','121681766833','2023-04-18 00:27:23',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31355,'1000','121681766833','2023-04-18 00:27:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31356,'4000','121681766833','2023-04-18 00:27:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31357,'1110','121681768012','2023-04-18 00:49:08',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31358,'1110','121681768012','2023-04-18 00:49:08',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31359,'1110','121681768012','2023-04-18 00:49:08',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31360,'1110','121681768012','2023-04-18 00:49:08',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31361,'1110','121681768012','2023-04-18 00:49:08',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31362,'5500','121681768012','2023-04-18 00:49:08',858.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31363,'1000','121681768012','2023-04-18 00:49:08',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31364,'4000','121681768012','2023-04-18 00:49:08',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31365,'4000','121681768012','2023-04-18 00:49:08',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31366,'4000','121681768012','2023-04-18 00:49:08',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31367,'4000','121681768012','2023-04-18 00:49:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31368,'4000','121681768012','2023-04-18 00:49:08',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31369,'1110','121681836585','2023-04-18 19:52:23',NULL,428.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31370,'1110','121681836585','2023-04-18 19:52:23',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31371,'1110','121681836585','2023-04-18 19:52:23',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31372,'1110','121681836585','2023-04-18 19:52:23',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31373,'5500','121681836585','2023-04-18 19:52:23',1782.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31374,'1000','121681836585','2023-04-18 19:52:23',2550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31375,'4000','121681836585','2023-04-18 19:52:23',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31376,'4000','121681836585','2023-04-18 19:52:23',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31377,'4000','121681836585','2023-04-18 19:52:23',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31378,'4000','121681836585','2023-04-18 19:52:23',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31379,'1110','121681836750','2023-04-18 20:13:30',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31380,'5500','121681836750','2023-04-18 20:13:30',360.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31381,'1000','121681836750','2023-04-18 20:13:30',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31382,'4000','121681836750','2023-04-18 20:13:30',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31383,'1110','121681838039','2023-04-18 21:53:43',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31384,'1110','121681838039','2023-04-18 21:53:43',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31385,'1110','121681838039','2023-04-18 21:53:43',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31386,'5500','121681838039','2023-04-18 21:53:43',1448.28,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31387,'1000','121681838039','2023-04-18 21:53:43',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31388,'4000','121681838039','2023-04-18 21:53:43',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31389,'4000','121681838039','2023-04-18 21:53:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31390,'4000','121681838039','2023-04-18 21:53:43',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31391,'1110','121681844027','2023-04-18 22:37:52',NULL,740.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(31392,'1110','121681844027','2023-04-18 22:37:52',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31393,'1110','121681844027','2023-04-18 22:37:52',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31394,'1110','121681844027','2023-04-18 22:37:52',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31395,'1110','121681844027','2023-04-18 22:37:52',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(31396,'5500','121681844027','2023-04-18 22:37:52',1152.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31397,'1000','121681844027','2023-04-18 22:37:52',1710.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31398,'4000','121681844027','2023-04-18 22:37:52',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(31399,'4000','121681844027','2023-04-18 22:37:52',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31400,'4000','121681844027','2023-04-18 22:37:52',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31401,'4000','121681844027','2023-04-18 22:37:52',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31402,'4000','121681844027','2023-04-18 22:37:52',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(31403,'1110','121681864105','2023-04-19 04:23:00',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31404,'1110','121681864105','2023-04-19 04:23:00',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31405,'5500','121681864105','2023-04-19 04:23:00',604.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31406,'1000','121681864105','2023-04-19 04:23:00',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31407,'4000','121681864105','2023-04-19 04:23:00',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31408,'4000','121681864105','2023-04-19 04:23:00',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31409,'1110','121681909290','2023-04-19 18:00:23',NULL,1284.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31410,'5500','121681909290','2023-04-19 18:00:23',1284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31411,'1000','121681909290','2023-04-19 18:00:23',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31412,'4000','121681909290','2023-04-19 18:00:23',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31413,'1110','121681918258','2023-04-19 18:31:13',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(31414,'5500','121681918258','2023-04-19 18:31:13',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31415,'1000','121681918258','2023-04-19 18:31:13',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31416,'4000','121681918258','2023-04-19 18:31:13',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(31417,'1110','121681918284','2023-04-19 19:00:29',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31418,'5500','121681918284','2023-04-19 19:00:29',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31419,'1000','121681918284','2023-04-19 19:00:29',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31420,'4000','121681918284','2023-04-19 19:00:29',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31421,'1110','121681920053','2023-04-19 19:55:27',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(31422,'1110','121681920053','2023-04-19 19:55:27',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31423,'5500','121681920053','2023-04-19 19:55:27',380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31424,'1000','121681920053','2023-04-19 19:55:27',570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31425,'4000','121681920053','2023-04-19 19:55:27',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(31426,'4000','121681920053','2023-04-19 19:55:27',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31427,'1110','121681923417','2023-04-19 20:17:03',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800783','','No',NULL,NULL,''),(31428,'1110','121681923417','2023-04-19 20:17:03',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31429,'5500','121681923417','2023-04-19 20:17:03',1802.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31430,'1000','121681923417','2023-04-19 20:17:03',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31431,'4000','121681923417','2023-04-19 20:17:03',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800783','','No',NULL,NULL,''),(31432,'4000','121681923417','2023-04-19 20:17:03',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31433,'1110','121681924631','2023-04-19 20:17:41',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31434,'1110','121681924631','2023-04-19 20:17:41',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31435,'1110','121681924631','2023-04-19 20:17:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31436,'5500','121681924631','2023-04-19 20:17:41',445.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31437,'1000','121681924631','2023-04-19 20:17:41',670.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31438,'4000','121681924631','2023-04-19 20:17:41',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31439,'4000','121681924631','2023-04-19 20:17:41',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31440,'4000','121681924631','2023-04-19 20:17:41',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31441,'1110','121681925641','2023-04-19 22:30:50',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31442,'1110','121681925641','2023-04-19 22:30:50',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(31443,'5500','121681925641','2023-04-19 22:30:50',1093.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31444,'1000','121681925641','2023-04-19 22:30:50',1950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31445,'4000','121681925641','2023-04-19 22:30:50',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31446,'4000','121681925641','2023-04-19 22:30:50',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(31447,'1110','121681932763','2023-04-19 22:33:02',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31448,'5500','121681932763','2023-04-19 22:33:02',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31449,'1000','121681932763','2023-04-19 22:33:02',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31450,'4000','121681932763','2023-04-19 22:33:02',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31451,'1110','121681934270','2023-04-19 22:58:01',NULL,1080.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31452,'5500','121681934270','2023-04-19 22:58:01',1080.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31453,'1000','121681934270','2023-04-19 22:58:01',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31454,'4000','121681934270','2023-04-19 22:58:01',NULL,1500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31455,'1110','121681934349','2023-04-19 23:07:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31456,'5500','121681934349','2023-04-19 23:07:58',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31457,'1000','121681934349','2023-04-19 23:07:58',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31458,'4000','121681934349','2023-04-19 23:07:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31459,'1110','121681934884','2023-04-19 23:40:49',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(31460,'1110','121681934884','2023-04-19 23:40:49',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31461,'5500','121681934884','2023-04-19 23:40:49',2909.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31462,'1000','121681934884','2023-04-19 23:40:49',4150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31463,'4000','121681934884','2023-04-19 23:40:49',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(31464,'4000','121681934884','2023-04-19 23:40:49',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31465,'1110','121681938300','2023-04-20 00:35:57',NULL,1406.00,'','12','1','Inventory sold','1','','sales','5000267024608','','No',NULL,NULL,''),(31466,'5500','121681938300','2023-04-20 00:35:57',1406.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31467,'1000','121681938300','2023-04-20 00:35:57',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31468,'4000','121681938300','2023-04-20 00:35:57',NULL,2000.00,'','12','1','Good sold','1','','sales','5000267024608','','No',NULL,NULL,''),(31469,'1110','121681941500','2023-04-20 00:59:55',NULL,1406.00,'','12','1','Inventory sold','1','','sales','5000267024608','','No',NULL,NULL,''),(31470,'1110','121681941500','2023-04-20 00:59:55',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31471,'5500','121681941500','2023-04-20 00:59:55',1553.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31472,'1000','121681941500','2023-04-20 00:59:55',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31473,'4000','121681941500','2023-04-20 00:59:55',NULL,2000.00,'','12','1','Good sold','1','','sales','5000267024608','','No',NULL,NULL,''),(31474,'4000','121681941500','2023-04-20 00:59:55',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31475,'1110','121681941663','2023-04-20 01:07:09',NULL,1350.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(31476,'1110','121681941663','2023-04-20 01:07:09',NULL,290.00,'','12','1','Inventory sold','1','','sales','6161100420786','','No',NULL,NULL,''),(31477,'1110','121681941663','2023-04-20 01:07:09',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31478,'5500','121681941663','2023-04-20 01:07:09',1938.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31479,'1000','121681941663','2023-04-20 01:07:09',2900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31480,'4000','121681941663','2023-04-20 01:07:09',NULL,1900.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(31481,'4000','121681941663','2023-04-20 01:07:09',NULL,400.00,'','12','1','Good sold','1','','sales','6161100420786','','No',NULL,NULL,''),(31482,'4000','121681941663','2023-04-20 01:07:09',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31483,'1110','121681942033','2023-04-20 01:42:18',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31484,'5500','121681942033','2023-04-20 01:42:18',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31485,'1000','121681942033','2023-04-20 01:42:18',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31486,'4000','121681942033','2023-04-20 01:42:18',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31487,'1110','121681944143','2023-04-20 02:30:07',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31488,'1110','121681944143','2023-04-20 02:30:07',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530800783','','No',NULL,NULL,''),(31489,'1110','121681944143','2023-04-20 02:30:07',NULL,1092.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31490,'5500','121681944143','2023-04-20 02:30:07',2332.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31491,'1000','121681944143','2023-04-20 02:30:07',3650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31492,'4000','121681944143','2023-04-20 02:30:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31493,'4000','121681944143','2023-04-20 02:30:07',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530800783','','No',NULL,NULL,''),(31494,'4000','121681944143','2023-04-20 02:30:07',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31495,'1110','121681984475','2023-04-20 12:55:05',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31496,'1110','121681984475','2023-04-20 12:55:05',NULL,159.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31497,'5500','121681984475','2023-04-20 12:55:05',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31498,'1000','121681984475','2023-04-20 12:55:05',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31499,'4000','121681984475','2023-04-20 12:55:05',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31500,'4000','121681984475','2023-04-20 12:55:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31501,'1110','121681988103','2023-04-20 13:55:10',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31502,'5500','121681988103','2023-04-20 13:55:10',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31503,'1000','121681988103','2023-04-20 13:55:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31504,'4000','121681988103','2023-04-20 13:55:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31505,'1110','121682002895','2023-04-20 18:02:28',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(31506,'5500','121682002895','2023-04-20 18:02:28',787.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31507,'1000','121682002895','2023-04-20 18:02:28',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31508,'4000','121682002895','2023-04-20 18:02:28',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(31509,'1110','121682004576','2023-04-20 18:29:42',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(31510,'5500','121682004576','2023-04-20 18:29:42',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31511,'1000','121682004576','2023-04-20 18:29:42',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31512,'4000','121682004576','2023-04-20 18:29:42',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(31513,'1110','121682005553','2023-04-20 19:08:45',NULL,3540.00,'','12','1','Inventory sold','1','','sales','5000267125046','','No',NULL,NULL,''),(31514,'1110','121682005553','2023-04-20 19:08:45',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31515,'1110','121682005553','2023-04-20 19:08:45',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31516,'5500','121682005553','2023-04-20 19:08:45',3637.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31517,'1000','121682005553','2023-04-20 19:08:45',5480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31518,'4000','121682005553','2023-04-20 19:08:45',NULL,5300.00,'','12','1','Good sold','1','','sales','5000267125046','','No',NULL,NULL,''),(31519,'4000','121682005553','2023-04-20 19:08:45',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31520,'4000','121682005553','2023-04-20 19:08:45',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31521,'1110','121682006980','2023-04-20 20:25:59',NULL,1040.00,'','12','1','Inventory sold','1','','sales','5011013100194','','No',NULL,NULL,''),(31522,'5500','121682006980','2023-04-20 20:25:59',1040.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31523,'1000','121682006980','2023-04-20 20:25:59',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31524,'4000','121682006980','2023-04-20 20:25:59',NULL,1600.00,'','12','1','Good sold','1','','sales','5011013100194','','No',NULL,NULL,''),(31525,'4000','121682006980','2023-04-20 20:27:48',1600.00,NULL,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(31526,'1000','121682006980','2023-04-20 20:27:48',NULL,1600.00,'','12','1','Returned products','1','','return','','','No',NULL,NULL,''),(31527,'5500','121682006980','2023-04-20 20:27:48',NULL,1040.00,'','12','1','Cost of goods returned','1','','sales','5011013100194','','No',NULL,NULL,''),(31528,'1110','121682006980','2023-04-20 20:27:48',1040.00,NULL,'','12','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(31529,'1110','121682018770','2023-04-20 22:27:09',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31530,'5500','121682018770','2023-04-20 22:27:09',1142.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31531,'1000','121682018770','2023-04-20 22:27:09',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31532,'4000','121682018770','2023-04-20 22:27:09',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31533,'1110','121682018834','2023-04-20 22:27:54',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31534,'5500','121682018834','2023-04-20 22:27:54',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31535,'1000','121682018834','2023-04-20 22:27:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31536,'4000','121682018834','2023-04-20 22:27:54',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31537,'1110','121682018879','2023-04-20 23:21:23',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31538,'5500','121682018879','2023-04-20 23:21:23',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31539,'1000','121682018879','2023-04-20 23:21:23',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31540,'4000','121682018879','2023-04-20 23:21:23',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31541,'1110','121682022089','2023-04-20 23:28:50',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31542,'5500','121682022089','2023-04-20 23:28:50',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31543,'1000','121682022089','2023-04-20 23:28:50',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31544,'4000','121682022089','2023-04-20 23:28:50',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31545,'1110','121682022534','2023-04-21 00:24:19',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(31546,'5500','121682022534','2023-04-21 00:24:19',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31547,'1000','121682022534','2023-04-21 00:24:19',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31548,'4000','121682022534','2023-04-21 00:24:19',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(31549,'1110','121682026925','2023-04-21 00:42:15',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31550,'5500','121682026925','2023-04-21 00:42:15',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31551,'1000','121682026925','2023-04-21 00:42:15',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31552,'4000','121682026925','2023-04-21 00:42:15',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31553,'1110','121682026953','2023-04-21 01:18:06',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(31554,'5500','121682026953','2023-04-21 01:18:06',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31555,'1000','121682026953','2023-04-21 01:18:06',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31556,'4000','121682026953','2023-04-21 01:18:06',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(31557,'1110','121682029176','2023-04-21 02:23:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31558,'5500','121682029176','2023-04-21 02:23:02',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31559,'1000','121682029176','2023-04-21 02:23:02',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31560,'4000','121682029176','2023-04-21 02:23:02',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31561,'1110','121682035556','2023-04-21 03:06:12',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31562,'1110','121682035556','2023-04-21 03:06:12',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31563,'5500','121682035556','2023-04-21 03:06:12',371.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31564,'1000','121682035556','2023-04-21 03:06:12',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31565,'4000','121682035556','2023-04-21 03:06:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31566,'4000','121682035556','2023-04-21 03:06:12',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31567,'1110','121682035577','2023-04-21 03:37:56',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561532','','No',NULL,NULL,''),(31568,'5500','121682035577','2023-04-21 03:37:56',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31569,'1000','121682035577','2023-04-21 03:37:56',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31570,'4000','121682035577','2023-04-21 03:37:56',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561532','','No',NULL,NULL,''),(31571,'1110','121682037711','2023-04-21 04:02:03',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31572,'5500','121682037711','2023-04-21 04:02:03',190.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31573,'1000','121682037711','2023-04-21 04:02:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31574,'4000','121682037711','2023-04-21 04:02:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31575,'1110','121682041569','2023-04-21 04:46:44',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31576,'5500','121682041569','2023-04-21 04:46:44',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31577,'1000','121682041569','2023-04-21 04:46:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31578,'4000','121682041569','2023-04-21 04:46:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31579,'1110','121682042638','2023-04-21 05:04:59',NULL,1550.00,'','12','1','Inventory sold','1','','sales','5010327000046','','No',NULL,NULL,''),(31580,'1110','121682042638','2023-04-21 05:04:59',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31581,'5500','121682042638','2023-04-21 05:04:59',1844.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31582,'1000','121682042638','2023-04-21 05:04:59',2750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31583,'4000','121682042638','2023-04-21 05:04:59',NULL,2250.00,'','12','1','Good sold','1','','sales','5010327000046','','No',NULL,NULL,''),(31584,'4000','121682042638','2023-04-21 05:04:59',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31585,'1110','121682042730','2023-04-21 05:10:56',NULL,570.00,'','12','1','Inventory sold','1','','sales','6161101561549','','No',NULL,NULL,''),(31586,'5500','121682042730','2023-04-21 05:10:56',570.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31587,'1000','121682042730','2023-04-21 05:10:56',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31588,'4000','121682042730','2023-04-21 05:10:56',NULL,950.00,'','12','1','Good sold','1','','sales','6161101561549','','No',NULL,NULL,''),(31589,'1110','121682096961','2023-04-21 20:09:44',NULL,49.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31590,'5500','121682096961','2023-04-21 20:09:44',49.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31591,'1000','121682096961','2023-04-21 20:09:44',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31592,'4000','121682096961','2023-04-21 20:09:44',NULL,100.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(31593,'1110','121682100172','2023-04-21 21:06:31',NULL,1353.00,'','12','1','Inventory sold','1','','sales','5010103800303','','No',NULL,NULL,''),(31594,'1110','121682100172','2023-04-21 21:06:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31595,'1110','121682100172','2023-04-21 21:06:31',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31596,'1110','121682100172','2023-04-21 21:06:31',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31597,'1110','121682100172','2023-04-21 21:06:31',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(31598,'1110','121682100172','2023-04-21 21:06:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31599,'5500','121682100172','2023-04-21 21:06:31',2390.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31600,'1000','121682100172','2023-04-21 21:06:31',3530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31601,'4000','121682100172','2023-04-21 21:06:31',NULL,1900.00,'','12','1','Good sold','1','','sales','5010103800303','','No',NULL,NULL,''),(31602,'4000','121682100172','2023-04-21 21:06:31',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31603,'4000','121682100172','2023-04-21 21:06:31',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31604,'4000','121682100172','2023-04-21 21:06:31',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(31605,'4000','121682100172','2023-04-21 21:06:31',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(31606,'4000','121682100172','2023-04-21 21:06:31',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31607,'1110','121682100402','2023-04-21 22:43:51',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31608,'5500','121682100402','2023-04-21 22:43:51',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31609,'1000','121682100402','2023-04-21 22:43:51',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31610,'4000','121682100402','2023-04-21 22:43:51',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31611,'1110','121682106237','2023-04-21 22:50:36',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31612,'5500','121682106237','2023-04-21 22:50:36',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31613,'1000','121682106237','2023-04-21 22:50:36',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31614,'4000','121682106237','2023-04-21 22:50:36',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31615,'1110','121682106642','2023-04-21 23:03:26',NULL,402.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31616,'5500','121682106642','2023-04-21 23:03:26',402.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31617,'1000','121682106642','2023-04-21 23:03:26',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31618,'4000','121682106642','2023-04-21 23:03:26',NULL,600.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(31619,'1110','121682107577','2023-04-21 23:17:42',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31620,'5500','121682107577','2023-04-21 23:17:42',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31621,'1000','121682107577','2023-04-21 23:17:42',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31622,'4000','121682107577','2023-04-21 23:17:42',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31623,'1110','121682108270','2023-04-21 23:44:52',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31624,'1110','121682108270','2023-04-21 23:44:52',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31625,'1110','121682108270','2023-04-21 23:44:52',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31626,'5500','121682108270','2023-04-21 23:44:52',355.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31627,'1000','121682108270','2023-04-21 23:44:52',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31628,'4000','121682108270','2023-04-21 23:44:52',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31629,'4000','121682108270','2023-04-21 23:44:52',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31630,'4000','121682108270','2023-04-21 23:44:52',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31631,'1110','121682110101','2023-04-22 00:22:58',NULL,5120.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(31632,'1110','121682110101','2023-04-22 00:22:58',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31633,'1110','121682110101','2023-04-22 00:22:58',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31634,'1110','121682110101','2023-04-22 00:22:58',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31635,'5500','121682110101','2023-04-22 00:22:58',5864.73,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31636,'1000','121682110101','2023-04-22 00:22:58',8150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31637,'4000','121682110101','2023-04-22 00:22:58',NULL,7000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(31638,'4000','121682110101','2023-04-22 00:22:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31639,'4000','121682110101','2023-04-22 00:22:58',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31640,'4000','121682110101','2023-04-22 00:22:58',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31641,'1110','121682112244','2023-04-22 00:40:16',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31642,'5500','121682112244','2023-04-22 00:40:16',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31643,'1000','121682112244','2023-04-22 00:40:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31644,'4000','121682112244','2023-04-22 00:40:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31645,'1110','121682113221','2023-04-22 02:06:32',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31646,'1110','121682113221','2023-04-22 02:06:32',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31647,'5500','121682113221','2023-04-22 02:06:32',590.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31648,'1000','121682113221','2023-04-22 02:06:32',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31649,'4000','121682113221','2023-04-22 02:06:32',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31650,'4000','121682113221','2023-04-22 02:06:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31651,'1110','121682118428','2023-04-22 02:20:20',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31652,'1110','121682118428','2023-04-22 02:20:20',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(31653,'5500','121682118428','2023-04-22 02:20:20',1471.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31654,'1000','121682118428','2023-04-22 02:20:20',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31655,'4000','121682118428','2023-04-22 02:20:20',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31656,'4000','121682118428','2023-04-22 02:20:20',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(31657,'1110','121682236146','2023-04-23 10:50:44',NULL,2250.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31658,'1110','121682236146','2023-04-23 10:50:44',NULL,238.66,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31659,'1110','121682236146','2023-04-23 10:50:44',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31660,'5500','121682236146','2023-04-23 10:50:44',2639.11,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31661,'1000','121682236146','2023-04-23 10:50:44',4150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31662,'4000','121682236146','2023-04-23 10:50:44',NULL,3500.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(31663,'4000','121682236146','2023-04-23 10:50:44',NULL,400.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(31664,'4000','121682236146','2023-04-23 10:50:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(31665,'1110','121682251318','2023-04-23 15:26:57',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31666,'5500','121682251318','2023-04-23 15:26:57',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31667,'1000','121682251318','2023-04-23 15:26:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31668,'4000','121682251318','2023-04-23 15:26:57',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31669,'1110','121682252822','2023-04-23 17:32:58',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(31670,'1110','121682252822','2023-04-23 17:32:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31671,'5500','121682252822','2023-04-23 17:32:58',1199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31672,'1000','121682252822','2023-04-23 17:32:58',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31673,'4000','121682252822','2023-04-23 17:32:58',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(31674,'4000','121682252822','2023-04-23 17:32:58',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31675,'1110','121682268778','2023-04-23 19:53:08',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31676,'5500','121682268778','2023-04-23 19:53:08',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31677,'1000','121682268778','2023-04-23 19:53:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31678,'4000','121682268778','2023-04-23 19:53:08',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31679,'1110','121682268794','2023-04-23 20:18:49',NULL,5120.00,'','12','1','Inventory sold','1','','sales','5000267112077','','No',NULL,NULL,''),(31680,'1110','121682268794','2023-04-23 20:18:49',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31681,'1110','121682268794','2023-04-23 20:18:49',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31682,'1110','121682268794','2023-04-23 20:18:49',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31683,'5500','121682268794','2023-04-23 20:18:49',6486.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31684,'1000','121682268794','2023-04-23 20:18:49',9000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31685,'4000','121682268794','2023-04-23 20:18:49',NULL,7000.00,'','12','1','Good sold','1','','sales','5000267112077','','No',NULL,NULL,''),(31686,'4000','121682268794','2023-04-23 20:18:49',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31687,'4000','121682268794','2023-04-23 20:18:49',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31688,'4000','121682268794','2023-04-23 20:18:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31689,'1110','121682272754','2023-04-23 21:01:20',NULL,1325.00,'','12','1','Inventory sold','1','','sales','6002323413530','','No',NULL,NULL,''),(31690,'1110','121682272754','2023-04-23 21:01:20',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(31691,'5500','121682272754','2023-04-23 21:01:20',2475.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31692,'1000','121682272754','2023-04-23 21:01:20',3600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31693,'4000','121682272754','2023-04-23 21:01:20',NULL,2000.00,'','12','1','Good sold','1','','sales','6002323413530','','No',NULL,NULL,''),(31694,'4000','121682272754','2023-04-23 21:01:20',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(31695,'1110','121682276024','2023-04-23 21:57:21',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31696,'1110','121682276024','2023-04-23 21:57:21',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(31697,'5500','121682276024','2023-04-23 21:57:21',1580.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31698,'1000','121682276024','2023-04-23 21:57:21',2250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31699,'4000','121682276024','2023-04-23 21:57:21',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31700,'4000','121682276024','2023-04-23 21:57:21',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(31701,'1110','121682276352','2023-04-23 21:59:50',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(31702,'5500','121682276352','2023-04-23 21:59:50',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31703,'1000','121682276352','2023-04-23 21:59:50',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31704,'4000','121682276352','2023-04-23 21:59:50',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(31705,'1110','121682276395','2023-04-23 22:03:58',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31706,'5500','121682276395','2023-04-23 22:03:58',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31707,'1000','121682276395','2023-04-23 22:03:58',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31708,'4000','121682276395','2023-04-23 22:03:58',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31709,'1110','121682276642','2023-04-23 22:14:08',NULL,1587.60,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(31710,'5500','121682276642','2023-04-23 22:14:08',1587.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31711,'1000','121682276642','2023-04-23 22:14:08',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31712,'4000','121682276642','2023-04-23 22:14:08',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(31713,'1110','121682277257','2023-04-23 22:32:30',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31714,'1110','121682277257','2023-04-23 22:32:30',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31715,'5500','121682277257','2023-04-23 22:32:30',705.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31716,'1000','121682277257','2023-04-23 22:32:30',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31717,'4000','121682277257','2023-04-23 22:32:30',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31718,'4000','121682277257','2023-04-23 22:32:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31719,'1110','121682278408','2023-04-23 22:39:59',NULL,2200.00,'','12','1','Inventory sold','1','','sales','5000291025824','','No',NULL,NULL,''),(31720,'5500','121682278408','2023-04-23 22:39:59',2200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31721,'1000','121682278408','2023-04-23 22:39:59',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31722,'4000','121682278408','2023-04-23 22:39:59',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291025824','','No',NULL,NULL,''),(31723,'1110','121682279153','2023-04-23 23:17:52',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31724,'5500','121682279153','2023-04-23 23:17:52',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31725,'1000','121682279153','2023-04-23 23:17:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31726,'4000','121682279153','2023-04-23 23:17:52',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31727,'1110','121682281317','2023-04-23 23:22:29',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31728,'1110','121682281317','2023-04-23 23:22:29',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(31729,'5500','121682281317','2023-04-23 23:22:29',323.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31730,'1000','121682281317','2023-04-23 23:22:29',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31731,'4000','121682281317','2023-04-23 23:22:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31732,'4000','121682281317','2023-04-23 23:22:29',NULL,200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(31733,'1110','121682282969','2023-04-23 23:49:55',NULL,910.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31734,'1110','121682282969','2023-04-23 23:49:55',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31735,'5500','121682282969','2023-04-23 23:49:55',1016.66,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31736,'1000','121682282969','2023-04-23 23:49:55',1660.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31737,'4000','121682282969','2023-04-23 23:49:55',NULL,1500.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31738,'4000','121682282969','2023-04-23 23:49:55',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31739,'1110','121682283003','2023-04-24 00:26:00',NULL,610.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(31740,'1110','121682283003','2023-04-24 00:26:00',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31741,'5500','121682283003','2023-04-24 00:26:00',663.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31742,'1000','121682283003','2023-04-24 00:26:00',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31743,'4000','121682283003','2023-04-24 00:26:00',NULL,900.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(31744,'4000','121682283003','2023-04-24 00:26:00',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(31745,'1110','121682288114','2023-04-24 01:30:05',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(31746,'5500','121682288114','2023-04-24 01:30:05',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31747,'1000','121682288114','2023-04-24 01:30:05',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31748,'4000','121682288114','2023-04-24 01:30:05',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(31749,'1110','121682344891','2023-04-24 17:33:02',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31750,'5500','121682344891','2023-04-24 17:33:02',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31751,'1000','121682344891','2023-04-24 17:33:02',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31752,'4000','121682344891','2023-04-24 17:33:02',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(31753,'1110','121682346789','2023-04-24 18:21:42',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31754,'1110','121682346789','2023-04-24 18:21:42',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31755,'5500','121682346789','2023-04-24 18:21:42',568.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31756,'1000','121682346789','2023-04-24 18:21:42',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31757,'4000','121682346789','2023-04-24 18:21:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31758,'4000','121682346789','2023-04-24 18:21:42',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31759,'1110','121682349708','2023-04-24 19:11:25',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31760,'5500','121682349708','2023-04-24 19:11:25',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31761,'1000','121682349708','2023-04-24 19:11:25',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31762,'4000','121682349708','2023-04-24 19:11:25',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31763,'1110','121682352694','2023-04-24 19:28:08',NULL,636.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31764,'5500','121682352694','2023-04-24 19:28:08',636.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31765,'1000','121682352694','2023-04-24 19:28:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31766,'4000','121682352694','2023-04-24 19:28:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31767,'1110','121682353728','2023-04-24 19:29:36',NULL,376.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31768,'1110','121682353728','2023-04-24 19:29:36',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31769,'5500','121682353728','2023-04-24 19:29:36',566.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31770,'1000','121682353728','2023-04-24 19:29:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31771,'4000','121682353728','2023-04-24 19:29:36',NULL,500.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(31772,'4000','121682353728','2023-04-24 19:29:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31773,'1110','121682353883','2023-04-24 20:04:10',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31774,'1110','121682353883','2023-04-24 20:04:10',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31775,'5500','121682353883','2023-04-24 20:04:10',1059.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31776,'1000','121682353883','2023-04-24 20:04:10',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31777,'4000','121682353883','2023-04-24 20:04:10',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31778,'4000','121682353883','2023-04-24 20:04:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31779,'1110','121682355936','2023-04-24 20:06:19',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31780,'5500','121682355936','2023-04-24 20:06:19',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31781,'1000','121682355936','2023-04-24 20:06:19',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31782,'4000','121682355936','2023-04-24 20:06:19',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31783,'1110','121682355984','2023-04-24 20:38:04',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31784,'5500','121682355984','2023-04-24 20:38:04',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31785,'1000','121682355984','2023-04-24 20:38:04',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31786,'4000','121682355984','2023-04-24 20:38:04',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31787,'1110','121682357961','2023-04-24 20:40:27',NULL,1713.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31788,'1110','121682357961','2023-04-24 20:40:27',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(31789,'5500','121682357961','2023-04-24 20:40:27',1773.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31790,'1000','121682357961','2023-04-24 20:40:27',2330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31791,'4000','121682357961','2023-04-24 20:40:27',NULL,2250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(31792,'4000','121682357961','2023-04-24 20:40:27',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(31793,'1110','121682358309','2023-04-24 21:14:18',NULL,624.00,'','12','1','Inventory sold','1','','sales','6161101603942','','No',NULL,NULL,''),(31794,'1110','121682358309','2023-04-24 21:14:18',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(31795,'1110','121682358309','2023-04-24 21:14:18',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31796,'5500','121682358309','2023-04-24 21:14:18',751.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31797,'1000','121682358309','2023-04-24 21:14:18',1330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31798,'4000','121682358309','2023-04-24 21:14:18',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101603942','','No',NULL,NULL,''),(31799,'4000','121682358309','2023-04-24 21:14:18',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(31800,'4000','121682358309','2023-04-24 21:14:18',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31801,'1110','121682363141','2023-04-24 22:09:37',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(31802,'1110','121682363141','2023-04-24 22:09:37',NULL,230.00,'','12','1','Inventory sold','1','','sales','6008835000947','','No',NULL,NULL,''),(31803,'5500','121682363141','2023-04-24 22:09:37',1360.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31804,'1000','121682363141','2023-04-24 22:09:37',2180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31805,'4000','121682363141','2023-04-24 22:09:37',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(31806,'4000','121682363141','2023-04-24 22:09:37',NULL,380.00,'','12','1','Good sold','1','','sales','6008835000947','','No',NULL,NULL,''),(31807,'1110','121682363466','2023-04-24 22:18:10',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(31808,'1110','121682363466','2023-04-24 22:18:10',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(31809,'5500','121682363466','2023-04-24 22:18:10',763.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31810,'1000','121682363466','2023-04-24 22:18:10',1030.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31811,'4000','121682363466','2023-04-24 22:18:10',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(31812,'4000','121682363466','2023-04-24 22:18:10',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(31813,'1110','121682363942','2023-04-24 22:22:16',NULL,180.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31814,'5500','121682363942','2023-04-24 22:22:16',180.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31815,'1000','121682363942','2023-04-24 22:22:16',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31816,'4000','121682363942','2023-04-24 22:22:16',NULL,250.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(31817,'1110','121682364153','2023-04-24 22:53:10',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31818,'5500','121682364153','2023-04-24 22:53:10',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31819,'1000','121682364153','2023-04-24 22:53:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31820,'4000','121682364153','2023-04-24 22:53:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31821,'1110','121682367004','2023-04-24 23:10:39',NULL,787.00,'','12','1','Inventory sold','1','','sales','6161100421509','','No',NULL,NULL,''),(31822,'1110','121682367004','2023-04-24 23:10:39',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31823,'5500','121682367004','2023-04-24 23:10:39',1288.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31824,'1000','121682367004','2023-04-24 23:10:39',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31825,'4000','121682367004','2023-04-24 23:10:39',NULL,1350.00,'','12','1','Good sold','1','','sales','6161100421509','','No',NULL,NULL,''),(31826,'4000','121682367004','2023-04-24 23:10:39',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(31827,'1110','121682368408','2023-04-24 23:34:48',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31828,'1110','121682368408','2023-04-24 23:34:48',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(31829,'1110','121682368408','2023-04-24 23:34:48',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31830,'1110','121682368408','2023-04-24 23:34:48',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31831,'5500','121682368408','2023-04-24 23:34:48',893.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31832,'1000','121682368408','2023-04-24 23:34:48',1390.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31833,'4000','121682368408','2023-04-24 23:34:48',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(31834,'4000','121682368408','2023-04-24 23:34:48',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(31835,'4000','121682368408','2023-04-24 23:34:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(31836,'4000','121682368408','2023-04-24 23:34:48',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31837,'1110','121682368549','2023-04-24 23:52:32',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31838,'5500','121682368549','2023-04-24 23:52:32',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31839,'1000','121682368549','2023-04-24 23:52:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31840,'4000','121682368549','2023-04-24 23:52:32',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31841,'1110','121682377147','2023-04-25 01:59:22',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31842,'5500','121682377147','2023-04-25 01:59:22',518.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31843,'1000','121682377147','2023-04-25 01:59:22',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31844,'4000','121682377147','2023-04-25 01:59:22',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31845,'1110','121682418227','2023-04-25 13:24:33',NULL,1587.60,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31846,'5500','121682418227','2023-04-25 13:24:33',1587.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31847,'1000','121682418227','2023-04-25 13:24:33',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31848,'4000','121682418227','2023-04-25 13:24:33',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(31849,'1110','121682418278','2023-04-25 13:24:55',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31850,'5500','121682418278','2023-04-25 13:24:55',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31851,'1000','121682418278','2023-04-25 13:24:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31852,'4000','121682418278','2023-04-25 13:24:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31853,'1110','121682447918','2023-04-25 21:38:51',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(31854,'5500','121682447918','2023-04-25 21:38:51',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31855,'1000','121682447918','2023-04-25 21:38:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31856,'4000','121682447918','2023-04-25 21:38:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(31857,'1110','121682451005','2023-04-25 22:32:04',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(31858,'5500','121682451005','2023-04-25 22:32:04',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31859,'1000','121682451005','2023-04-25 22:32:04',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31860,'4000','121682451005','2023-04-25 22:32:04',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(31861,'1110','121682451857','2023-04-25 22:44:31',NULL,691.33,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31862,'5500','121682451857','2023-04-25 22:44:31',691.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31863,'1000','121682451857','2023-04-25 22:44:31',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31864,'4000','121682451857','2023-04-25 22:44:31',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31865,'1110','121682451877','2023-04-25 22:58:08',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31866,'5500','121682451877','2023-04-25 22:58:08',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31867,'1000','121682451877','2023-04-25 22:58:08',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31868,'4000','121682451877','2023-04-25 22:58:08',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31869,'1110','121682453736','2023-04-25 23:15:49',NULL,364.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31870,'5500','121682453736','2023-04-25 23:15:49',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31871,'1000','121682453736','2023-04-25 23:15:49',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31872,'4000','121682453736','2023-04-25 23:15:49',NULL,600.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(31873,'1110','121682453755','2023-04-26 00:52:48',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31874,'5500','121682453755','2023-04-26 00:52:48',364.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31875,'1000','121682453755','2023-04-26 00:52:48',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31876,'4000','121682453755','2023-04-26 00:52:48',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31877,'1110','121682460232','2023-04-26 01:15:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31878,'5500','121682460232','2023-04-26 01:15:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31879,'1000','121682460232','2023-04-26 01:15:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31880,'4000','121682460232','2023-04-26 01:15:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31881,'1110','121682463809','2023-04-26 02:07:47',NULL,4350.00,'','12','1','Inventory sold','1','','sales','3245990250203','','No',NULL,NULL,''),(31882,'1110','121682463809','2023-04-26 02:07:47',NULL,298.32,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31883,'1110','121682463809','2023-04-26 02:07:47',NULL,2700.00,'','12','1','Inventory sold','1','','sales','4840709004338','','No',NULL,NULL,''),(31884,'1110','121682463809','2023-04-26 02:07:47',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31885,'1110','121682463809','2023-04-26 02:07:47',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31886,'1110','121682463809','2023-04-26 02:07:47',NULL,42.00,'','12','1','Inventory sold','1','','sales','6164002099210','','No',NULL,NULL,''),(31887,'1110','121682463809','2023-04-26 02:07:47',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31888,'1110','121682463809','2023-04-26 02:07:47',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(31889,'1110','121682463809','2023-04-26 02:07:47',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(31890,'5500','121682463809','2023-04-26 02:07:47',8117.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31891,'1000','121682463809','2023-04-26 02:07:47',13300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31892,'4000','121682463809','2023-04-26 02:07:47',NULL,6000.00,'','12','1','Good sold','1','','sales','3245990250203','','No',NULL,NULL,''),(31893,'4000','121682463809','2023-04-26 02:07:47',NULL,600.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(31894,'4000','121682463809','2023-04-26 02:07:47',NULL,5400.00,'','12','1','Good sold','1','','sales','4840709004338','','No',NULL,NULL,''),(31895,'4000','121682463809','2023-04-26 02:07:47',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31896,'4000','121682463809','2023-04-26 02:07:47',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(31897,'4000','121682463809','2023-04-26 02:07:47',NULL,100.00,'','12','1','Good sold','1','','sales','6164002099210','','No',NULL,NULL,''),(31898,'4000','121682463809','2023-04-26 02:07:47',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(31899,'4000','121682463809','2023-04-26 02:07:47',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(31900,'4000','121682463809','2023-04-26 02:07:47',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(31901,'1110','121682514760','2023-04-26 17:52:11',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31902,'1110','121682514760','2023-04-26 17:52:11',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(31903,'5500','121682514760','2023-04-26 17:52:11',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31904,'1000','121682514760','2023-04-26 17:52:11',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31905,'4000','121682514760','2023-04-26 17:52:11',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(31906,'4000','121682514760','2023-04-26 17:52:11',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(31907,'1110','121682520738','2023-04-26 17:56:34',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(31908,'1110','121682520738','2023-04-26 17:56:34',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(31909,'1110','121682520738','2023-04-26 17:56:34',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(31910,'1110','121682520738','2023-04-26 17:56:34',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(31911,'5500','121682520738','2023-04-26 17:56:34',1567.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31912,'1000','121682520738','2023-04-26 17:56:34',2380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31913,'4000','121682520738','2023-04-26 17:56:34',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(31914,'4000','121682520738','2023-04-26 17:56:34',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(31915,'4000','121682520738','2023-04-26 17:56:34',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(31916,'4000','121682520738','2023-04-26 17:56:34',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(31917,'1110','121682523162','2023-04-26 19:13:56',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31918,'5500','121682523162','2023-04-26 19:13:56',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31919,'1000','121682523162','2023-04-26 19:13:56',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31920,'4000','121682523162','2023-04-26 19:13:56',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(31921,'1110','121682525640','2023-04-26 20:02:28',NULL,2700.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(31922,'5500','121682525640','2023-04-26 20:02:28',2700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31923,'1000','121682525640','2023-04-26 20:02:28',3800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31924,'4000','121682525640','2023-04-26 20:02:28',NULL,3800.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(31925,'1110','121682528887','2023-04-26 20:41:27',NULL,835.00,'','12','1','Inventory sold','1','','sales','6001506910347','','No',NULL,NULL,''),(31926,'5500','121682528887','2023-04-26 20:41:27',835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31927,'1000','121682528887','2023-04-26 20:41:27',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31928,'4000','121682528887','2023-04-26 20:41:27',NULL,1500.00,'','12','1','Good sold','1','','sales','6001506910347','','No',NULL,NULL,''),(31929,'1110','121682532946','2023-04-26 21:16:22',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31930,'1110','121682532946','2023-04-26 21:16:22',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31931,'1110','121682532946','2023-04-26 21:16:22',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31932,'5500','121682532946','2023-04-26 21:16:22',568.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31933,'1000','121682532946','2023-04-26 21:16:22',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31934,'4000','121682532946','2023-04-26 21:16:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(31935,'4000','121682532946','2023-04-26 21:16:22',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31936,'4000','121682532946','2023-04-26 21:16:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(31937,'1110','121682533006','2023-04-26 21:53:37',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31938,'1110','121682533006','2023-04-26 21:53:37',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(31939,'5500','121682533006','2023-04-26 21:53:37',325.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31940,'1000','121682533006','2023-04-26 21:53:37',480.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31941,'4000','121682533006','2023-04-26 21:53:37',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(31942,'4000','121682533006','2023-04-26 21:53:37',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(31943,'1110','121682535408','2023-04-26 21:56:59',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31944,'5500','121682535408','2023-04-26 21:56:59',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31945,'1000','121682535408','2023-04-26 21:56:59',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31946,'4000','121682535408','2023-04-26 21:56:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(31947,'1110','121682535426','2023-04-26 22:17:43',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(31948,'1110','121682535426','2023-04-26 22:17:43',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(31949,'5500','121682535426','2023-04-26 22:17:43',806.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31950,'1000','121682535426','2023-04-26 22:17:43',1540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31951,'4000','121682535426','2023-04-26 22:17:43',NULL,1400.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(31952,'4000','121682535426','2023-04-26 22:17:43',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(31953,'1110','121682537248','2023-04-26 22:56:00',NULL,1050.00,'','12','1','Inventory sold','1','','sales','8000530300474','','No',NULL,NULL,''),(31954,'5500','121682537248','2023-04-26 22:56:00',1050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31955,'1000','121682537248','2023-04-26 22:56:00',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31956,'4000','121682537248','2023-04-26 22:56:00',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530300474','','No',NULL,NULL,''),(31957,'1110','121682539041','2023-04-26 23:47:03',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(31958,'1110','121682539041','2023-04-26 23:47:03',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31959,'1110','121682539041','2023-04-26 23:47:03',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(31960,'5500','121682539041','2023-04-26 23:47:03',537.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31961,'1000','121682539041','2023-04-26 23:47:03',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31962,'4000','121682539041','2023-04-26 23:47:03',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(31963,'4000','121682539041','2023-04-26 23:47:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31964,'4000','121682539041','2023-04-26 23:47:03',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(31965,'1110','121682544541','2023-04-27 00:29:50',NULL,472.00,'','12','1','Inventory sold','1','','sales','6161101604987','','No',NULL,NULL,''),(31966,'1110','121682544541','2023-04-27 00:29:50',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31967,'5500','121682544541','2023-04-27 00:29:50',575.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31968,'1000','121682544541','2023-04-27 00:29:50',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31969,'4000','121682544541','2023-04-27 00:29:50',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604987','','No',NULL,NULL,''),(31970,'4000','121682544541','2023-04-27 00:29:50',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31971,'1110','121682544632','2023-04-27 01:06:13',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(31972,'1110','121682544632','2023-04-27 01:06:13',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31973,'5500','121682544632','2023-04-27 01:06:13',694.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31974,'1000','121682544632','2023-04-27 01:06:13',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31975,'4000','121682544632','2023-04-27 01:06:13',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(31976,'4000','121682544632','2023-04-27 01:06:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(31977,'1110','121682546835','2023-04-27 01:10:57',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31978,'5500','121682546835','2023-04-27 01:10:57',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31979,'1000','121682546835','2023-04-27 01:10:57',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31980,'4000','121682546835','2023-04-27 01:10:57',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(31981,'1110','121682547068','2023-04-27 01:52:01',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31982,'5500','121682547068','2023-04-27 01:52:01',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31983,'1000','121682547068','2023-04-27 01:52:01',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31984,'4000','121682547068','2023-04-27 01:52:01',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(31985,'1110','121682549528','2023-04-27 01:53:30',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31986,'5500','121682549528','2023-04-27 01:53:30',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31987,'1000','121682549528','2023-04-27 01:53:30',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31988,'4000','121682549528','2023-04-27 01:53:30',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(31989,'1110','121682550855','2023-04-27 02:14:20',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(31990,'5500','121682550855','2023-04-27 02:14:20',388.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31991,'1000','121682550855','2023-04-27 02:14:20',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31992,'4000','121682550855','2023-04-27 02:14:20',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(31993,'1110','121682551044','2023-04-27 02:29:17',NULL,214.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31994,'5500','121682551044','2023-04-27 02:29:17',214.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31995,'1000','121682551044','2023-04-27 02:29:17',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(31996,'4000','121682551044','2023-04-27 02:29:17',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(31997,'1110','121682551866','2023-04-27 03:11:53',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(31998,'5500','121682551866','2023-04-27 03:11:53',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(31999,'1000','121682551866','2023-04-27 03:11:53',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32000,'4000','121682551866','2023-04-27 03:11:53',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(32001,'1110','121682556879','2023-04-27 03:55:02',NULL,610.00,'','12','1','Inventory sold','1','','sales','6001496011772','','No',NULL,NULL,''),(32002,'1110','121682556879','2023-04-27 03:55:02',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32003,'5500','121682556879','2023-04-27 03:55:02',663.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32004,'1000','121682556879','2023-04-27 03:55:02',980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32005,'4000','121682556879','2023-04-27 03:55:02',NULL,900.00,'','12','1','Good sold','1','','sales','6001496011772','','No',NULL,NULL,''),(32006,'4000','121682556879','2023-04-27 03:55:02',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32007,'1110','121682577895','2023-04-27 09:45:11',NULL,1590.00,'','12','1','Inventory sold','1','','sales','089540448992','','No',NULL,NULL,''),(32008,'5500','121682577895','2023-04-27 09:45:11',1590.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32009,'1000','121682577895','2023-04-27 09:45:11',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32010,'4000','121682577895','2023-04-27 09:45:11',NULL,2150.00,'','12','1','Good sold','1','','sales','089540448992','','No',NULL,NULL,''),(32011,'1110','121682585395','2023-04-27 11:50:13',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(32012,'5500','121682585395','2023-04-27 11:50:13',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32013,'1000','121682585395','2023-04-27 11:50:13',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32014,'4000','121682585395','2023-04-27 11:50:13',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(32015,'1110','121682585421','2023-04-27 12:29:10',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32016,'5500','121682585421','2023-04-27 12:29:10',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32017,'1000','121682585421','2023-04-27 12:29:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32018,'4000','121682585421','2023-04-27 12:29:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32019,'1110','121682605413','2023-04-27 17:23:47',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32020,'5500','121682605413','2023-04-27 17:23:47',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32021,'1000','121682605413','2023-04-27 17:23:47',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32022,'4000','121682605413','2023-04-27 17:23:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32023,'1110','121682605434','2023-04-27 18:09:44',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32024,'5500','121682605434','2023-04-27 18:09:44',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32025,'1000','121682605434','2023-04-27 18:09:44',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32026,'4000','121682605434','2023-04-27 18:09:44',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32027,'1110','121682621624','2023-04-27 22:11:40',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32028,'1110','121682621624','2023-04-27 22:11:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32029,'1110','121682621624','2023-04-27 22:11:40',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(32030,'5500','121682621624','2023-04-27 22:11:40',1173.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32031,'1000','121682621624','2023-04-27 22:11:40',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32032,'4000','121682621624','2023-04-27 22:11:40',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32033,'4000','121682621624','2023-04-27 22:11:40',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32034,'4000','121682621624','2023-04-27 22:11:40',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(32035,'1110','121682622746','2023-04-27 22:33:42',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32036,'1110','121682622746','2023-04-27 22:33:42',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32037,'5500','121682622746','2023-04-27 22:33:42',371.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32038,'1000','121682622746','2023-04-27 22:33:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32039,'4000','121682622746','2023-04-27 22:33:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32040,'4000','121682622746','2023-04-27 22:33:42',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32041,'1110','121682626368','2023-04-27 23:13:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(32042,'1110','121682626368','2023-04-27 23:13:06',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32043,'5500','121682626368','2023-04-27 23:13:06',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32044,'1000','121682626368','2023-04-27 23:13:06',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32045,'4000','121682626368','2023-04-27 23:13:06',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(32046,'4000','121682626368','2023-04-27 23:13:06',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32047,'1110','121682630908','2023-04-28 00:42:05',NULL,8000.00,'','12','1','Inventory sold','1','','sales','3219820005899','','No',NULL,NULL,''),(32048,'5500','121682630908','2023-04-28 00:42:05',8000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32049,'1000','121682630908','2023-04-28 00:42:05',11000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32050,'4000','121682630908','2023-04-28 00:42:05',NULL,11000.00,'','12','1','Good sold','1','','sales','3219820005899','','No',NULL,NULL,''),(32051,'1110','121682635997','2023-04-28 01:55:20',NULL,692.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32052,'5500','121682635997','2023-04-28 01:55:20',692.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32053,'1000','121682635997','2023-04-28 01:55:20',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32054,'4000','121682635997','2023-04-28 01:55:20',NULL,1100.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32055,'1110','121682687743','2023-04-28 16:15:57',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(32056,'5500','121682687743','2023-04-28 16:15:57',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32057,'1000','121682687743','2023-04-28 16:15:57',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32058,'4000','121682687743','2023-04-28 16:15:57',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(32059,'1110','121682694891','2023-04-28 19:11:10',NULL,518.50,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32060,'1110','121682694891','2023-04-28 19:11:10',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32061,'5500','121682694891','2023-04-28 19:11:10',708.87,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32062,'1000','121682694891','2023-04-28 19:11:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32063,'4000','121682694891','2023-04-28 19:11:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32064,'4000','121682694891','2023-04-28 19:11:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32065,'1110','121682698274','2023-04-28 19:19:58',NULL,9000.00,'','12','1','Inventory sold','1','','sales','3219820000078','','No',NULL,NULL,''),(32066,'1110','121682698274','2023-04-28 19:19:58',NULL,309.90,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32067,'1110','121682698274','2023-04-28 19:19:58',NULL,588.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(32068,'1110','121682698274','2023-04-28 19:19:58',NULL,0.00,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32069,'1110','121682698274','2023-04-28 19:19:58',NULL,112.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(32070,'1110','121682698274','2023-04-28 19:19:58',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(32071,'1110','121682698274','2023-04-28 19:19:58',NULL,160.00,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32072,'5500','121682698274','2023-04-28 19:19:58',10276.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32073,'1000','121682698274','2023-04-28 19:19:58',15240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32074,'4000','121682698274','2023-04-28 19:19:58',NULL,13200.00,'','12','1','Good sold','1','','sales','3219820000078','','No',NULL,NULL,''),(32075,'4000','121682698274','2023-04-28 19:19:58',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32076,'4000','121682698274','2023-04-28 19:19:58',NULL,1000.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(32077,'4000','121682698274','2023-04-28 19:19:58',NULL,0.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32078,'4000','121682698274','2023-04-28 19:19:58',NULL,160.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(32079,'4000','121682698274','2023-04-28 19:19:58',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(32080,'4000','121682698274','2023-04-28 19:19:58',NULL,240.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(32081,'1110','121682699017','2023-04-28 19:32:10',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(32082,'5500','121682699017','2023-04-28 19:32:10',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32083,'1000','121682699017','2023-04-28 19:32:10',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32084,'4000','121682699017','2023-04-28 19:32:10',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(32085,'1110','121682699534','2023-04-28 19:59:09',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32086,'5500','121682699534','2023-04-28 19:59:09',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32087,'1000','121682699534','2023-04-28 19:59:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32088,'4000','121682699534','2023-04-28 19:59:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32089,'1110','121682701154','2023-04-28 20:03:23',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(32090,'5500','121682701154','2023-04-28 20:03:23',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32091,'1000','121682701154','2023-04-28 20:03:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32092,'4000','121682701154','2023-04-28 20:03:23',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(32093,'1110','121682701457','2023-04-28 20:49:20',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32094,'1110','121682701457','2023-04-28 20:49:20',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32095,'5500','121682701457','2023-04-28 20:49:20',1626.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32096,'1000','121682701457','2023-04-28 20:49:20',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32097,'4000','121682701457','2023-04-28 20:49:20',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32098,'4000','121682701457','2023-04-28 20:49:20',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32099,'1110','121682704180','2023-04-28 20:53:16',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32100,'5500','121682704180','2023-04-28 20:53:16',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32101,'1000','121682704180','2023-04-28 20:53:16',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32102,'4000','121682704180','2023-04-28 20:53:16',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32103,'1110','121682704411','2023-04-28 20:53:42',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32104,'5500','121682704411','2023-04-28 20:53:42',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32105,'1000','121682704411','2023-04-28 20:53:42',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32106,'4000','121682704411','2023-04-28 20:53:42',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32107,'1110','121682704690','2023-04-28 20:58:17',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(32108,'5500','121682704690','2023-04-28 20:58:17',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32109,'1000','121682704690','2023-04-28 20:58:17',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32110,'4000','121682704690','2023-04-28 20:58:17',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(32111,'1110','121682704748','2023-04-28 20:59:17',NULL,740.00,'','12','1','Inventory sold','1','','sales','6161101560108','','No',NULL,NULL,''),(32112,'5500','121682704748','2023-04-28 20:59:17',740.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32113,'1000','121682704748','2023-04-28 20:59:17',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32114,'4000','121682704748','2023-04-28 20:59:17',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101560108','','No',NULL,NULL,''),(32115,'1110','121682704762','2023-04-28 21:22:02',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(32116,'1110','121682704762','2023-04-28 21:22:02',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32117,'5500','121682704762','2023-04-28 21:22:02',2540.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32118,'1000','121682704762','2023-04-28 21:22:02',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32119,'4000','121682704762','2023-04-28 21:22:02',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(32120,'4000','121682704762','2023-04-28 21:22:02',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32121,'1110','121682709901','2023-04-28 22:25:38',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32122,'5500','121682709901','2023-04-28 22:25:38',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32123,'1000','121682709901','2023-04-28 22:25:38',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32124,'4000','121682709901','2023-04-28 22:25:38',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32125,'1110','121682709943','2023-04-28 22:49:39',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32126,'1110','121682709943','2023-04-28 22:49:39',NULL,603.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(32127,'1110','121682709943','2023-04-28 22:49:39',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32128,'5500','121682709943','2023-04-28 22:49:39',2365.05,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32129,'1000','121682709943','2023-04-28 22:49:39',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32130,'4000','121682709943','2023-04-28 22:49:39',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32131,'4000','121682709943','2023-04-28 22:49:39',NULL,900.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(32132,'4000','121682709943','2023-04-28 22:49:39',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32133,'1110','121682714764','2023-04-28 23:46:13',NULL,198.00,'','12','1','Inventory sold','1','','sales','6161100420823','','No',NULL,NULL,''),(32134,'5500','121682714764','2023-04-28 23:46:13',198.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32135,'1000','121682714764','2023-04-28 23:46:13',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32136,'4000','121682714764','2023-04-28 23:46:13',NULL,300.00,'','12','1','Good sold','1','','sales','6161100420823','','No',NULL,NULL,''),(32137,'1110','121682715118','2023-04-28 23:52:11',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32138,'5500','121682715118','2023-04-28 23:52:11',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32139,'1000','121682715118','2023-04-28 23:52:11',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32140,'4000','121682715118','2023-04-28 23:52:11',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32141,'1110','121682715142','2023-04-29 00:12:32',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32142,'5500','121682715142','2023-04-29 00:12:32',83.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32143,'1000','121682715142','2023-04-29 00:12:32',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32144,'4000','121682715142','2023-04-29 00:12:32',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32145,'1110','121682716740','2023-04-29 00:19:21',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32146,'5500','121682716740','2023-04-29 00:19:21',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32147,'1000','121682716740','2023-04-29 00:19:21',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32148,'4000','121682716740','2023-04-29 00:19:21',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32149,'1110','121682716767','2023-04-29 00:19:54',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32150,'1110','121682716767','2023-04-29 00:19:54',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(32151,'5500','121682716767','2023-04-29 00:19:54',1744.05,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32152,'1000','121682716767','2023-04-29 00:19:54',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32153,'4000','121682716767','2023-04-29 00:19:54',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32154,'4000','121682716767','2023-04-29 00:19:54',NULL,800.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(32155,'1110','121682716801','2023-04-29 00:39:44',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32156,'1110','121682716801','2023-04-29 00:39:44',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32157,'5500','121682716801','2023-04-29 00:39:44',371.46,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32158,'1000','121682716801','2023-04-29 00:39:44',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32159,'4000','121682716801','2023-04-29 00:39:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32160,'4000','121682716801','2023-04-29 00:39:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32161,'1110','121682717992','2023-04-29 00:52:50',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32162,'5500','121682717992','2023-04-29 00:52:50',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32163,'1000','121682717992','2023-04-29 00:52:50',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32164,'4000','121682717992','2023-04-29 00:52:50',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32165,'1110','121682718774','2023-04-29 00:56:10',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32166,'1110','121682718774','2023-04-29 00:56:10',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32167,'5500','121682718774','2023-04-29 00:56:10',377.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32168,'1000','121682718774','2023-04-29 00:56:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32169,'4000','121682718774','2023-04-29 00:56:10',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32170,'4000','121682718774','2023-04-29 00:56:10',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32171,'1110','121682723987','2023-04-29 02:20:17',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32172,'1110','121682723987','2023-04-29 02:20:17',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32173,'5500','121682723987','2023-04-29 02:20:17',372.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32174,'1000','121682723987','2023-04-29 02:20:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32175,'4000','121682723987','2023-04-29 02:20:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32176,'4000','121682723987','2023-04-29 02:20:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32177,'1110','121682725641','2023-04-29 02:48:02',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32178,'1110','121682725641','2023-04-29 02:48:02',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32179,'5500','121682725641','2023-04-29 02:48:02',495.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32180,'1000','121682725641','2023-04-29 02:48:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32181,'4000','121682725641','2023-04-29 02:48:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32182,'4000','121682725641','2023-04-29 02:48:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32183,'1110','121682725691','2023-04-29 02:55:31',NULL,272.00,'','12','1','Inventory sold','1','','sales','6001106225421','','No',NULL,NULL,''),(32184,'5500','121682725691','2023-04-29 02:55:31',272.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32185,'1000','121682725691','2023-04-29 02:55:31',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32186,'4000','121682725691','2023-04-29 02:55:31',NULL,600.00,'','12','1','Good sold','1','','sales','6001106225421','','No',NULL,NULL,''),(32187,'1110','121682731266','2023-04-29 04:21:24',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32188,'5500','121682731266','2023-04-29 04:21:24',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32189,'1000','121682731266','2023-04-29 04:21:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32190,'4000','121682731266','2023-04-29 04:21:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32191,'1110','121682733655','2023-04-29 05:01:04',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(32192,'5500','121682733655','2023-04-29 05:01:04',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32193,'1000','121682733655','2023-04-29 05:01:04',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32194,'4000','121682733655','2023-04-29 05:01:04',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(32195,'1110','121682760782','2023-04-29 13:28:59',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32196,'5500','121682760782','2023-04-29 13:28:59',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32197,'1000','121682760782','2023-04-29 13:28:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32198,'4000','121682760782','2023-04-29 13:28:59',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32199,'1110','121682764145','2023-04-29 14:08:54',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32200,'5500','121682764145','2023-04-29 14:08:54',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32201,'1000','121682764145','2023-04-29 14:08:54',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32202,'4000','121682764145','2023-04-29 14:08:54',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32203,'1110','121682766540','2023-04-29 14:21:25',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32204,'1110','121682766540','2023-04-29 14:21:25',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32205,'1110','121682766540','2023-04-29 14:21:25',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32206,'5500','121682766540','2023-04-29 14:21:25',552.88,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32207,'1000','121682766540','2023-04-29 14:21:25',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32208,'4000','121682766540','2023-04-29 14:21:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32209,'4000','121682766540','2023-04-29 14:21:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32210,'4000','121682766540','2023-04-29 14:21:25',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32211,'1110','121682777323','2023-04-29 17:09:03',NULL,545.12,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32212,'1110','121682777323','2023-04-29 17:09:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32213,'5500','121682777323','2023-04-29 17:09:03',737.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32214,'1000','121682777323','2023-04-29 17:09:03',1020.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32215,'4000','121682777323','2023-04-29 17:09:03',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32216,'4000','121682777323','2023-04-29 17:09:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32217,'1110','121682777348','2023-04-29 19:22:28',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32218,'5500','121682777348','2023-04-29 19:22:28',642.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32219,'1000','121682777348','2023-04-29 19:22:28',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32220,'4000','121682777348','2023-04-29 19:22:28',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32221,'1110','121682785362','2023-04-29 19:35:52',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32222,'1110','121682785362','2023-04-29 19:35:52',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32223,'1110','121682785362','2023-04-29 19:35:52',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32224,'1110','121682785362','2023-04-29 19:35:52',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32225,'5500','121682785362','2023-04-29 19:35:52',1379.49,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32226,'1000','121682785362','2023-04-29 19:35:52',2180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32227,'4000','121682785362','2023-04-29 19:35:52',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32228,'4000','121682785362','2023-04-29 19:35:52',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32229,'4000','121682785362','2023-04-29 19:35:52',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32230,'4000','121682785362','2023-04-29 19:35:52',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32231,'1110','121682786286','2023-04-29 21:27:28',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32232,'5500','121682786286','2023-04-29 21:27:28',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32233,'1000','121682786286','2023-04-29 21:27:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32234,'4000','121682786286','2023-04-29 21:27:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32235,'1110','121682792857','2023-04-29 21:38:52',NULL,1284.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32236,'1110','121682792857','2023-04-29 21:38:52',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32237,'5500','121682792857','2023-04-29 21:38:52',2186.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32238,'1000','121682792857','2023-04-29 21:38:52',3300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32239,'4000','121682792857','2023-04-29 21:38:52',NULL,1800.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32240,'4000','121682792857','2023-04-29 21:38:52',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32241,'1110','121682793708','2023-04-29 21:55:31',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32242,'1110','121682793708','2023-04-29 21:55:31',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32243,'1110','121682793708','2023-04-29 21:55:31',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32244,'5500','121682793708','2023-04-29 21:55:31',1352.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32245,'1000','121682793708','2023-04-29 21:55:31',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32246,'4000','121682793708','2023-04-29 21:55:31',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32247,'4000','121682793708','2023-04-29 21:55:31',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32248,'4000','121682793708','2023-04-29 21:55:31',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32249,'1110','121682794535','2023-04-29 22:52:07',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32250,'5500','121682794535','2023-04-29 22:52:07',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32251,'1000','121682794535','2023-04-29 22:52:07',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32252,'4000','121682794535','2023-04-29 22:52:07',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32253,'1110','121682797962','2023-04-29 22:57:34',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32254,'5500','121682797962','2023-04-29 22:57:34',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32255,'1000','121682797962','2023-04-29 22:57:34',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32256,'4000','121682797962','2023-04-29 22:57:34',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32257,'1110','121682798261','2023-04-29 23:07:57',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32258,'1110','121682798261','2023-04-29 23:07:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32259,'5500','121682798261','2023-04-29 23:07:57',1199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32260,'1000','121682798261','2023-04-29 23:07:57',1650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32261,'4000','121682798261','2023-04-29 23:07:57',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32262,'4000','121682798261','2023-04-29 23:07:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32263,'1110','121682798885','2023-04-29 23:16:09',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(32264,'5500','121682798885','2023-04-29 23:16:09',1.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32265,'1000','121682798885','2023-04-29 23:16:09',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32266,'4000','121682798885','2023-04-29 23:16:09',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(32267,'1110','121682799374','2023-04-29 23:17:18',NULL,1203.60,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32268,'1110','121682799374','2023-04-29 23:17:18',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32269,'5500','121682799374','2023-04-29 23:17:18',1509.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32270,'1000','121682799374','2023-04-29 23:17:18',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32271,'4000','121682799374','2023-04-29 23:17:18',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32272,'4000','121682799374','2023-04-29 23:17:18',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32273,'1110','121682802351','2023-04-30 00:06:27',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32274,'1110','121682802351','2023-04-30 00:06:27',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32275,'5500','121682802351','2023-04-30 00:06:27',846.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32276,'1000','121682802351','2023-04-30 00:06:27',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32277,'4000','121682802351','2023-04-30 00:06:27',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32278,'4000','121682802351','2023-04-30 00:06:27',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32279,'1110','121682802393','2023-04-30 00:29:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32280,'1110','121682802393','2023-04-30 00:29:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32281,'1110','121682802393','2023-04-30 00:29:51',NULL,1350.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(32282,'1110','121682802393','2023-04-30 00:29:51',NULL,4450.00,'','12','1','Inventory sold','1','','sales','5000281021621','','No',NULL,NULL,''),(32283,'1110','121682802393','2023-04-30 00:29:51',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32284,'1110','121682802393','2023-04-30 00:29:51',NULL,188.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32285,'5500','121682802393','2023-04-30 00:29:51',7242.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32286,'1000','121682802393','2023-04-30 00:29:51',10680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32287,'4000','121682802393','2023-04-30 00:29:51',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32288,'4000','121682802393','2023-04-30 00:29:51',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32289,'4000','121682802393','2023-04-30 00:29:51',NULL,1900.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(32290,'4000','121682802393','2023-04-30 00:29:51',NULL,6500.00,'','12','1','Good sold','1','','sales','5000281021621','','No',NULL,NULL,''),(32291,'4000','121682802393','2023-04-30 00:29:51',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32292,'4000','121682802393','2023-04-30 00:29:51',NULL,250.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32293,'1110','121682803802','2023-04-30 00:58:58',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(32294,'1110','121682803802','2023-04-30 00:58:58',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32295,'1110','121682803802','2023-04-30 00:58:58',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32296,'1110','121682803802','2023-04-30 00:58:58',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32297,'5500','121682803802','2023-04-30 00:58:58',1218.95,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32298,'1000','121682803802','2023-04-30 00:58:58',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32299,'4000','121682803802','2023-04-30 00:58:58',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(32300,'4000','121682803802','2023-04-30 00:58:58',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32301,'4000','121682803802','2023-04-30 00:58:58',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32302,'4000','121682803802','2023-04-30 00:58:58',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32303,'1110','121682807886','2023-04-30 01:38:21',NULL,188.00,'','12','1','Inventory sold','1','','sales','6161100421929','','No',NULL,NULL,''),(32304,'5500','121682807886','2023-04-30 01:38:21',188.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32305,'1000','121682807886','2023-04-30 01:38:21',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32306,'4000','121682807886','2023-04-30 01:38:21',NULL,300.00,'','12','1','Good sold','1','','sales','6161100421929','','No',NULL,NULL,''),(32307,'1110','121682807949','2023-04-30 01:40:31',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(32308,'5500','121682807949','2023-04-30 01:40:31',2835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32309,'1000','121682807949','2023-04-30 01:40:31',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32310,'4000','121682807949','2023-04-30 01:40:31',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(32311,'1110','121682808107','2023-04-30 02:27:50',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(32312,'5500','121682808107','2023-04-30 02:27:50',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32313,'1000','121682808107','2023-04-30 02:27:50',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32314,'4000','121682808107','2023-04-30 02:27:50',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(32315,'1110','121682810923','2023-04-30 02:29:13',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32316,'1110','121682810923','2023-04-30 02:29:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32317,'5500','121682810923','2023-04-30 02:29:13',569.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32318,'1000','121682810923','2023-04-30 02:29:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32319,'4000','121682810923','2023-04-30 02:29:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32320,'4000','121682810923','2023-04-30 02:29:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32321,'1110','121682812349','2023-04-30 02:53:27',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(32322,'1110','121682812349','2023-04-30 02:53:27',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007968','','No',NULL,NULL,''),(32323,'5500','121682812349','2023-04-30 02:53:27',594.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32324,'1000','121682812349','2023-04-30 02:53:27',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32325,'4000','121682812349','2023-04-30 02:53:27',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(32326,'4000','121682812349','2023-04-30 02:53:27',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007968','','No',NULL,NULL,''),(32327,'1110','121682812443','2023-04-30 03:03:52',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32328,'5500','121682812443','2023-04-30 03:03:52',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32329,'1000','121682812443','2023-04-30 03:03:52',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32330,'4000','121682812443','2023-04-30 03:03:52',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32331,'1110','121682813173','2023-04-30 03:07:41',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32332,'1110','121682813173','2023-04-30 03:07:41',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32333,'1110','121682813173','2023-04-30 03:07:41',NULL,83.64,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32334,'1110','121682813173','2023-04-30 03:07:41',NULL,114.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32335,'1110','121682813173','2023-04-30 03:07:41',NULL,655.00,'','12','1','Inventory sold','1','','sales','6001496566050','','No',NULL,NULL,''),(32336,'1110','121682813173','2023-04-30 03:07:41',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32337,'5500','121682813173','2023-04-30 03:07:41',1693.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32338,'1000','121682813173','2023-04-30 03:07:41',2780.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32339,'4000','121682813173','2023-04-30 03:07:41',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32340,'4000','121682813173','2023-04-30 03:07:41',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32341,'4000','121682813173','2023-04-30 03:07:41',NULL,160.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32342,'4000','121682813173','2023-04-30 03:07:41',NULL,300.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32343,'4000','121682813173','2023-04-30 03:07:41',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496566050','','No',NULL,NULL,''),(32344,'4000','121682813173','2023-04-30 03:07:41',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32345,'1110','121682813273','2023-04-30 03:25:07',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32346,'5500','121682813273','2023-04-30 03:25:07',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32347,'1000','121682813273','2023-04-30 03:25:07',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32348,'4000','121682813273','2023-04-30 03:25:07',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32349,'1110','121682815121','2023-04-30 03:40:16',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(32350,'5500','121682815121','2023-04-30 03:40:16',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32351,'1000','121682815121','2023-04-30 03:40:16',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32352,'4000','121682815121','2023-04-30 03:40:16',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(32353,'1110','121682815232','2023-04-30 04:08:35',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32354,'1110','121682815232','2023-04-30 04:08:35',NULL,642.00,'','12','1','Inventory sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32355,'1110','121682815232','2023-04-30 04:08:35',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32356,'5500','121682815232','2023-04-30 04:08:35',1047.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32357,'1000','121682815232','2023-04-30 04:08:35',1530.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32358,'4000','121682815232','2023-04-30 04:08:35',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32359,'4000','121682815232','2023-04-30 04:08:35',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900663','','No',NULL,NULL,''),(32360,'4000','121682815232','2023-04-30 04:08:35',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32361,'1110','121682818200','2023-04-30 04:32:13',NULL,6000.00,'','12','1','Inventory sold','1','','sales','5000281026626','','No',NULL,NULL,''),(32362,'1110','121682818200','2023-04-30 04:32:13',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(32363,'1110','121682818200','2023-04-30 04:32:13',NULL,752.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32364,'1110','121682818200','2023-04-30 04:32:13',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32365,'1110','121682818200','2023-04-30 04:32:13',NULL,1098.00,'','12','1','Inventory sold','1','','sales','6001495062478','','No',NULL,NULL,''),(32366,'1110','121682818200','2023-04-30 04:32:13',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32367,'5500','121682818200','2023-04-30 04:32:13',8743.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32368,'1000','121682818200','2023-04-30 04:32:13',12150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32369,'4000','121682818200','2023-04-30 04:32:13',NULL,8200.00,'','12','1','Good sold','1','','sales','5000281026626','','No',NULL,NULL,''),(32370,'4000','121682818200','2023-04-30 04:32:13',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(32371,'4000','121682818200','2023-04-30 04:32:13',NULL,1000.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32372,'4000','121682818200','2023-04-30 04:32:13',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32373,'4000','121682818200','2023-04-30 04:32:13',NULL,1600.00,'','12','1','Good sold','1','','sales','6001495062478','','No',NULL,NULL,''),(32374,'4000','121682818200','2023-04-30 04:32:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32375,'1110','121682837583','2023-04-30 09:53:49',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32376,'5500','121682837583','2023-04-30 09:53:49',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32377,'1000','121682837583','2023-04-30 09:53:49',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32378,'4000','121682837583','2023-04-30 09:53:49',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32379,'1110','121682837636','2023-04-30 09:54:09',NULL,580.00,'','12','1','Inventory sold','1','','sales','6161100421868','','No',NULL,NULL,''),(32380,'5500','121682837636','2023-04-30 09:54:09',580.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32381,'1000','121682837636','2023-04-30 09:54:09',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32382,'4000','121682837636','2023-04-30 09:54:09',NULL,850.00,'','12','1','Good sold','1','','sales','6161100421868','','No',NULL,NULL,''),(32383,'1110','121682837654','2023-04-30 09:54:24',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32384,'5500','121682837654','2023-04-30 09:54:24',103.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32385,'1000','121682837654','2023-04-30 09:54:24',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32386,'4000','121682837654','2023-04-30 09:54:24',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32387,'1110','121682837669','2023-04-30 09:54:46',NULL,114.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32388,'5500','121682837669','2023-04-30 09:54:46',114.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32389,'1000','121682837669','2023-04-30 09:54:46',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32390,'4000','121682837669','2023-04-30 09:54:46',NULL,300.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32391,'1110','121682837701','2023-04-30 09:55:16',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32392,'5500','121682837701','2023-04-30 09:55:16',247.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32393,'1000','121682837701','2023-04-30 09:55:16',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32394,'4000','121682837701','2023-04-30 09:55:16',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32395,'1110','121682837720','2023-04-30 11:00:21',NULL,568.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(32396,'1110','121682837720','2023-04-30 11:00:21',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32397,'1110','121682837720','2023-04-30 11:00:21',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32398,'5500','121682837720','2023-04-30 11:00:21',973.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32399,'1000','121682837720','2023-04-30 11:00:21',1430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32400,'4000','121682837720','2023-04-30 11:00:21',NULL,800.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(32401,'4000','121682837720','2023-04-30 11:00:21',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32402,'4000','121682837720','2023-04-30 11:00:21',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(32403,'1110','121682841693','2023-04-30 12:06:22',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32404,'5500','121682841693','2023-04-30 12:06:22',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32405,'1000','121682841693','2023-04-30 12:06:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32406,'4000','121682841693','2023-04-30 12:06:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32407,'1110','121682845587','2023-04-30 12:06:45',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32408,'5500','121682845587','2023-04-30 12:06:45',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32409,'1000','121682845587','2023-04-30 12:06:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32410,'4000','121682845587','2023-04-30 12:06:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32411,'1110','121682856769','2023-04-30 15:13:46',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(32412,'5500','121682856769','2023-04-30 15:13:46',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32413,'1000','121682856769','2023-04-30 15:13:46',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32414,'4000','121682856769','2023-04-30 15:13:46',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(32415,'1110','121682856831','2023-04-30 15:53:47',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(32416,'1110','121682856831','2023-04-30 15:53:47',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(32417,'5500','121682856831','2023-04-30 15:53:47',127.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32418,'1000','121682856831','2023-04-30 15:53:47',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32419,'4000','121682856831','2023-04-30 15:53:47',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(32420,'4000','121682856831','2023-04-30 15:53:47',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(32421,'1110','121682859233','2023-04-30 16:44:47',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(32422,'5500','121682859233','2023-04-30 16:44:47',2835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32423,'1000','121682859233','2023-04-30 16:44:47',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32424,'4000','121682859233','2023-04-30 16:44:47',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(32425,'1110','121682862297','2023-04-30 17:12:42',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32426,'5500','121682862297','2023-04-30 17:12:42',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32427,'1000','121682862297','2023-04-30 17:12:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32428,'4000','121682862297','2023-04-30 17:12:42',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32429,'1110','121682863966','2023-04-30 17:54:51',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32430,'5500','121682863966','2023-04-30 17:54:51',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32431,'1000','121682863966','2023-04-30 17:54:51',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32432,'4000','121682863966','2023-04-30 17:54:51',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32433,'1110','121682867606','2023-04-30 18:13:49',NULL,546.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(32434,'1110','121682867606','2023-04-30 18:13:49',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32435,'5500','121682867606','2023-04-30 18:13:49',736.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32436,'1000','121682867606','2023-04-30 18:13:49',1150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32437,'4000','121682867606','2023-04-30 18:13:49',NULL,900.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(32438,'4000','121682867606','2023-04-30 18:13:49',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32439,'1110','121682871496','2023-04-30 19:18:40',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(32440,'1110','121682871496','2023-04-30 19:18:40',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32441,'5500','121682871496','2023-04-30 19:18:40',558.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32442,'1000','121682871496','2023-04-30 19:18:40',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32443,'4000','121682871496','2023-04-30 19:18:40',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(32444,'4000','121682871496','2023-04-30 19:18:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32445,'1110','121682871582','2023-04-30 19:50:11',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32446,'5500','121682871582','2023-04-30 19:50:11',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32447,'1000','121682871582','2023-04-30 19:50:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32448,'4000','121682871582','2023-04-30 19:50:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32449,'1110','121682873611','2023-04-30 19:53:39',NULL,564.00,'','12','1','Inventory sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32450,'5500','121682873611','2023-04-30 19:53:39',564.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32451,'1000','121682873611','2023-04-30 19:53:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32452,'4000','121682873611','2023-04-30 19:53:39',NULL,750.00,'','12','1','Good sold','1','','sales','3155930006015','','No',NULL,NULL,''),(32453,'1110','121682873680','2023-04-30 21:13:02',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32454,'1110','121682873680','2023-04-30 21:13:02',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32455,'5500','121682873680','2023-04-30 21:13:02',544.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32456,'1000','121682873680','2023-04-30 21:13:02',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32457,'4000','121682873680','2023-04-30 21:13:02',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32458,'4000','121682873680','2023-04-30 21:13:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32459,'1110','121682878412','2023-04-30 21:23:50',NULL,425.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(32460,'5500','121682878412','2023-04-30 21:23:50',425.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32461,'1000','121682878412','2023-04-30 21:23:50',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32462,'4000','121682878412','2023-04-30 21:23:50',NULL,600.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(32463,'1110','121682879106','2023-04-30 22:04:16',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32464,'5500','121682879106','2023-04-30 22:04:16',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32465,'1000','121682879106','2023-04-30 22:04:16',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32466,'4000','121682879106','2023-04-30 22:04:16',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32467,'1110','121682881463','2023-04-30 22:16:32',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32468,'5500','121682881463','2023-04-30 22:16:32',38.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32469,'1000','121682881463','2023-04-30 22:16:32',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32470,'4000','121682881463','2023-04-30 22:16:32',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32471,'1110','121682882199','2023-04-30 22:56:53',NULL,260.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(32472,'5500','121682882199','2023-04-30 22:56:53',260.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32473,'1000','121682882199','2023-04-30 22:56:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32474,'4000','121682882199','2023-04-30 22:56:53',NULL,500.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(32475,'1110','121682884690','2023-04-30 23:03:38',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32476,'5500','121682884690','2023-04-30 23:03:38',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32477,'1000','121682884690','2023-04-30 23:03:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32478,'4000','121682884690','2023-04-30 23:03:38',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32479,'1110','121682885027','2023-04-30 23:16:00',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32480,'1110','121682885027','2023-04-30 23:16:00',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32481,'1110','121682885027','2023-04-30 23:16:00',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32482,'5500','121682885027','2023-04-30 23:16:00',440.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32483,'1000','121682885027','2023-04-30 23:16:00',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32484,'4000','121682885027','2023-04-30 23:16:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32485,'4000','121682885027','2023-04-30 23:16:00',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32486,'4000','121682885027','2023-04-30 23:16:00',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32487,'1110','121682885856','2023-04-30 23:17:44',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32488,'5500','121682885856','2023-04-30 23:17:44',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32489,'1000','121682885856','2023-04-30 23:17:44',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32490,'4000','121682885856','2023-04-30 23:17:44',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32491,'1110','121682886216','2023-05-01 00:08:08',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32492,'5500','121682886216','2023-05-01 00:08:08',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32493,'1000','121682886216','2023-05-01 00:08:08',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32494,'4000','121682886216','2023-05-01 00:08:08',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32495,'1110','121682888916','2023-05-01 00:27:47',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32496,'5500','121682888916','2023-05-01 00:27:47',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32497,'1000','121682888916','2023-05-01 00:27:47',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32498,'4000','121682888916','2023-05-01 00:27:47',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32499,'1110','121682890072','2023-05-01 00:30:08',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32500,'1110','121682890072','2023-05-01 00:30:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32501,'1110','121682890072','2023-05-01 00:30:08',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(32502,'1110','121682890072','2023-05-01 00:30:08',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32503,'5500','121682890072','2023-05-01 00:30:08',1615.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32504,'1000','121682890072','2023-05-01 00:30:08',2240.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32505,'4000','121682890072','2023-05-01 00:30:08',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930963','','No',NULL,NULL,''),(32506,'4000','121682890072','2023-05-01 00:30:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32507,'4000','121682890072','2023-05-01 00:30:08',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(32508,'4000','121682890072','2023-05-01 00:30:08',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32509,'1110','121682890215','2023-05-01 00:30:33',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004338','','No',NULL,NULL,''),(32510,'5500','121682890215','2023-05-01 00:30:33',900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32511,'1000','121682890215','2023-05-01 00:30:33',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32512,'4000','121682890215','2023-05-01 00:30:33',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004338','','No',NULL,NULL,''),(32513,'1110','121682890238','2023-05-01 01:53:41',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(32514,'1110','121682890238','2023-05-01 01:53:41',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32515,'5500','121682890238','2023-05-01 01:53:41',738.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32516,'1000','121682890238','2023-05-01 01:53:41',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32517,'4000','121682890238','2023-05-01 01:53:41',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(32518,'4000','121682890238','2023-05-01 01:53:41',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32519,'1110','121682896195','2023-05-01 02:29:36',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32520,'1110','121682896195','2023-05-01 02:29:36',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32521,'1110','121682896195','2023-05-01 02:29:36',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32522,'1110','121682896195','2023-05-01 02:29:36',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32523,'1110','121682896195','2023-05-01 02:29:36',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32524,'5500','121682896195','2023-05-01 02:29:36',1173.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32525,'1000','121682896195','2023-05-01 02:29:36',1620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32526,'4000','121682896195','2023-05-01 02:29:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32527,'4000','121682896195','2023-05-01 02:29:36',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32528,'4000','121682896195','2023-05-01 02:29:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32529,'4000','121682896195','2023-05-01 02:29:36',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32530,'4000','121682896195','2023-05-01 02:29:36',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32531,'1110','121682908070','2023-05-01 05:28:10',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32532,'1110','121682908070','2023-05-01 05:28:10',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32533,'5500','121682908070','2023-05-01 05:28:10',876.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32534,'1000','121682908070','2023-05-01 05:28:10',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32535,'4000','121682908070','2023-05-01 05:28:10',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32536,'4000','121682908070','2023-05-01 05:28:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32537,'1110','121683055692','2023-05-02 22:30:40',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32538,'1110','121683055692','2023-05-02 22:30:40',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32539,'5500','121683055692','2023-05-02 22:30:40',477.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32540,'1000','121683055692','2023-05-02 22:30:40',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32541,'4000','121683055692','2023-05-02 22:30:40',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32542,'4000','121683055692','2023-05-02 22:30:40',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32543,'1110','121683056196','2023-05-02 22:58:06',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32544,'1110','121683056196','2023-05-02 22:58:06',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32545,'5500','121683056196','2023-05-02 22:58:06',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32546,'1000','121683056196','2023-05-02 22:58:06',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32547,'4000','121683056196','2023-05-02 22:58:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32548,'4000','121683056196','2023-05-02 22:58:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32549,'1110','121683057490','2023-05-02 23:30:16',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(32550,'5500','121683057490','2023-05-02 23:30:16',1465.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32551,'1000','121683057490','2023-05-02 23:30:16',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32552,'4000','121683057490','2023-05-02 23:30:16',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(32553,'1110','121683059458','2023-05-02 23:54:50',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32554,'5500','121683059458','2023-05-02 23:54:50',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32555,'1000','121683059458','2023-05-02 23:54:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32556,'4000','121683059458','2023-05-02 23:54:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32557,'1110','121683060898','2023-05-03 00:33:41',NULL,247.00,'','12','1','Inventory sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32558,'1110','121683060898','2023-05-03 00:33:41',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32559,'1110','121683060898','2023-05-03 00:33:41',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(32560,'1110','121683060898','2023-05-03 00:33:41',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32561,'1110','121683060898','2023-05-03 00:33:41',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(32562,'5500','121683060898','2023-05-03 00:33:41',688.41,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32563,'1000','121683060898','2023-05-03 00:33:41',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32564,'4000','121683060898','2023-05-03 00:33:41',NULL,400.00,'','12','1','Good sold','1','','sales','6161101602211','','No',NULL,NULL,''),(32565,'4000','121683060898','2023-05-03 00:33:41',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32566,'4000','121683060898','2023-05-03 00:33:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(32567,'4000','121683060898','2023-05-03 00:33:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32568,'4000','121683060898','2023-05-03 00:33:41',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(32569,'1110','121683064371','2023-05-03 01:38:51',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32570,'1110','121683064371','2023-05-03 01:38:51',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32571,'1110','121683064371','2023-05-03 01:38:51',NULL,119.33,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(32572,'5500','121683064371','2023-05-03 01:38:51',447.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32573,'1000','121683064371','2023-05-03 01:38:51',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32574,'4000','121683064371','2023-05-03 01:38:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32575,'4000','121683064371','2023-05-03 01:38:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32576,'4000','121683064371','2023-05-03 01:38:51',NULL,200.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(32577,'1110','121683067136','2023-05-03 01:48:04',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32578,'5500','121683067136','2023-05-03 01:48:04',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32579,'1000','121683067136','2023-05-03 01:48:04',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32580,'4000','121683067136','2023-05-03 01:48:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32581,'1110','121683072084','2023-05-03 03:02:07',NULL,5200.00,'','12','1','Inventory sold','1','','sales','080432402825','','No',NULL,NULL,''),(32582,'1110','121683072084','2023-05-03 03:02:07',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32583,'5500','121683072084','2023-05-03 03:02:07',5358.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32584,'1000','121683072084','2023-05-03 03:02:07',7750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32585,'4000','121683072084','2023-05-03 03:02:07',NULL,7500.00,'','12','1','Good sold','1','','sales','080432402825','','No',NULL,NULL,''),(32586,'4000','121683072084','2023-05-03 03:02:07',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32587,'1110','121683072247','2023-05-03 03:31:36',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32588,'5500','121683072247','2023-05-03 03:31:36',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32589,'1000','121683072247','2023-05-03 03:31:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32590,'4000','121683072247','2023-05-03 03:31:36',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32591,'1110','121683073903','2023-05-03 04:04:41',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32592,'5500','121683073903','2023-05-03 04:04:41',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32593,'1000','121683073903','2023-05-03 04:04:41',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32594,'4000','121683073903','2023-05-03 04:04:41',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32595,'1110','121683097382','2023-05-03 10:05:08',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32596,'1110','121683097382','2023-05-03 10:05:08',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32597,'1110','121683097382','2023-05-03 10:05:08',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(32598,'5500','121683097382','2023-05-03 10:05:08',816.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32599,'1000','121683097382','2023-05-03 10:05:08',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32600,'4000','121683097382','2023-05-03 10:05:08',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32601,'4000','121683097382','2023-05-03 10:05:08',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32602,'4000','121683097382','2023-05-03 10:05:08',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(32603,'1110','121683101489','2023-05-03 11:13:28',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(32604,'5500','121683101489','2023-05-03 11:13:28',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32605,'1000','121683101489','2023-05-03 11:13:28',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32606,'4000','121683101489','2023-05-03 11:13:28',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(32607,'1110','121683135273','2023-05-03 20:44:13',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32608,'1110','121683135273','2023-05-03 20:44:13',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(32609,'5500','121683135273','2023-05-03 20:44:13',240.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32610,'1000','121683135273','2023-05-03 20:44:13',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32611,'4000','121683135273','2023-05-03 20:44:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32612,'4000','121683135273','2023-05-03 20:44:13',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(32613,'1110','121683135858','2023-05-03 20:48:32',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(32614,'5500','121683135858','2023-05-03 20:48:32',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32615,'1000','121683135858','2023-05-03 20:48:32',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32616,'4000','121683135858','2023-05-03 20:48:32',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(32617,'1110','121683136125','2023-05-03 21:38:52',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32618,'5500','121683136125','2023-05-03 21:38:52',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32619,'1000','121683136125','2023-05-03 21:38:52',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32620,'4000','121683136125','2023-05-03 21:38:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32621,'1110','121683139490','2023-05-03 21:44:59',NULL,619.80,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32622,'5500','121683139490','2023-05-03 21:44:59',619.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32623,'1000','121683139490','2023-05-03 21:44:59',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32624,'4000','121683139490','2023-05-03 21:44:59',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(32625,'1110','121683143110','2023-05-03 22:45:21',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32626,'5500','121683143110','2023-05-03 22:45:21',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32627,'1000','121683143110','2023-05-03 22:45:21',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32628,'4000','121683143110','2023-05-03 22:45:21',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32629,'1110','121683143126','2023-05-03 23:18:10',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32630,'5500','121683143126','2023-05-03 23:18:10',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32631,'1000','121683143126','2023-05-03 23:18:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32632,'4000','121683143126','2023-05-03 23:18:10',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32633,'1110','121683146635','2023-05-03 23:44:09',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32634,'5500','121683146635','2023-05-03 23:44:09',76.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32635,'1000','121683146635','2023-05-03 23:44:09',200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32636,'4000','121683146635','2023-05-03 23:44:09',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32637,'1110','121683146654','2023-05-04 00:09:10',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32638,'5500','121683146654','2023-05-04 00:09:10',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32639,'1000','121683146654','2023-05-04 00:09:10',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32640,'4000','121683146654','2023-05-04 00:09:10',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32641,'1110','121683151524','2023-05-04 01:05:48',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32642,'5500','121683151524','2023-05-04 01:05:48',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32643,'1000','121683151524','2023-05-04 01:05:48',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32644,'4000','121683151524','2023-05-04 01:05:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32645,'1110','121683158170','2023-05-04 02:56:23',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32646,'5500','121683158170','2023-05-04 02:56:23',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32647,'1000','121683158170','2023-05-04 02:56:23',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32648,'4000','121683158170','2023-05-04 02:56:23',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32649,'1110','121683170012','2023-05-04 06:13:43',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32650,'5500','121683170012','2023-05-04 06:13:43',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32651,'1000','121683170012','2023-05-04 06:13:43',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32652,'4000','121683170012','2023-05-04 06:13:43',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32653,'1110','121683170029','2023-05-04 07:23:39',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(32654,'5500','121683170029','2023-05-04 07:23:39',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32655,'1000','121683170029','2023-05-04 07:23:39',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32656,'4000','121683170029','2023-05-04 07:23:39',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(32657,'1110','121683214546','2023-05-04 18:40:53',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101602433','','No',NULL,NULL,''),(32658,'1110','121683214546','2023-05-04 18:40:53',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32659,'1110','121683214546','2023-05-04 18:40:53',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32660,'5500','121683214546','2023-05-04 18:40:53',1286.20,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32661,'1000','121683214546','2023-05-04 18:40:53',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32662,'4000','121683214546','2023-05-04 18:40:53',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101602433','','No',NULL,NULL,''),(32663,'4000','121683214546','2023-05-04 18:40:53',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32664,'4000','121683214546','2023-05-04 18:40:53',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32665,'1110','121683214862','2023-05-04 18:42:30',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32666,'5500','121683214862','2023-05-04 18:42:30',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32667,'1000','121683214862','2023-05-04 18:42:30',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32668,'4000','121683214862','2023-05-04 18:42:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32669,'1110','121683214958','2023-05-04 18:43:29',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32670,'1110','121683214958','2023-05-04 18:43:29',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32671,'5500','121683214958','2023-05-04 18:43:29',539.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32672,'1000','121683214958','2023-05-04 18:43:29',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32673,'4000','121683214958','2023-05-04 18:43:29',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(32674,'4000','121683214958','2023-05-04 18:43:29',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32675,'1110','121683215018','2023-05-04 18:53:59',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930864','','No',NULL,NULL,''),(32676,'5500','121683215018','2023-05-04 18:53:59',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32677,'1000','121683215018','2023-05-04 18:53:59',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32678,'4000','121683215018','2023-05-04 18:53:59',NULL,1500.00,'','12','1','Good sold','1','','sales','5010103930864','','No',NULL,NULL,''),(32679,'1110','121683216627','2023-05-04 19:53:01',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32680,'5500','121683216627','2023-05-04 19:53:01',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32681,'1000','121683216627','2023-05-04 19:53:01',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32682,'4000','121683216627','2023-05-04 19:53:01',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32683,'1110','121683220358','2023-05-04 20:13:10',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32684,'1110','121683220358','2023-05-04 20:13:10',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32685,'5500','121683220358','2023-05-04 20:13:10',742.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32686,'1000','121683220358','2023-05-04 20:13:10',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32687,'4000','121683220358','2023-05-04 20:13:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32688,'4000','121683220358','2023-05-04 20:13:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32689,'1110','121683220396','2023-05-04 20:33:48',NULL,1144.00,'','12','1','Inventory sold','1','','sales','6161101600934','','No',NULL,NULL,''),(32690,'5500','121683220396','2023-05-04 20:33:48',1144.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32691,'1000','121683220396','2023-05-04 20:33:48',1600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32692,'4000','121683220396','2023-05-04 20:33:48',NULL,1600.00,'','12','1','Good sold','1','','sales','6161101600934','','No',NULL,NULL,''),(32693,'1110','121683221635','2023-05-04 20:48:48',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32694,'1110','121683221635','2023-05-04 20:48:48',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32695,'1110','121683221635','2023-05-04 20:48:48',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32696,'5500','121683221635','2023-05-04 20:48:48',2215.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32697,'1000','121683221635','2023-05-04 20:48:48',3330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32698,'4000','121683221635','2023-05-04 20:48:48',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32699,'4000','121683221635','2023-05-04 20:48:48',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32700,'4000','121683221635','2023-05-04 20:48:48',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32701,'1110','121683230670','2023-05-04 23:04:47',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32702,'5500','121683230670','2023-05-04 23:04:47',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32703,'1000','121683230670','2023-05-04 23:04:47',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32704,'4000','121683230670','2023-05-04 23:04:47',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32705,'1110','121683230693','2023-05-04 23:13:49',NULL,336.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(32706,'5500','121683230693','2023-05-04 23:13:49',336.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32707,'1000','121683230693','2023-05-04 23:13:49',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32708,'4000','121683230693','2023-05-04 23:13:49',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(32709,'1110','121683231236','2023-05-05 00:37:31',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32710,'1110','121683231236','2023-05-05 00:37:31',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32711,'1110','121683231236','2023-05-05 00:37:31',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(32712,'5500','121683231236','2023-05-05 00:37:31',505.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32713,'1000','121683231236','2023-05-05 00:37:31',700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32714,'4000','121683231236','2023-05-05 00:37:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32715,'4000','121683231236','2023-05-05 00:37:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32716,'4000','121683231236','2023-05-05 00:37:31',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(32717,'1110','121683236257','2023-05-05 01:09:24',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32718,'1110','121683236257','2023-05-05 01:09:24',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(32719,'5500','121683236257','2023-05-05 01:09:24',258.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32720,'1000','121683236257','2023-05-05 01:09:24',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32721,'4000','121683236257','2023-05-05 01:09:24',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32722,'4000','121683236257','2023-05-05 01:09:24',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(32723,'1110','121683242826','2023-05-05 02:27:21',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(32724,'5500','121683242826','2023-05-05 02:27:21',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32725,'1000','121683242826','2023-05-05 02:27:21',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32726,'4000','121683242826','2023-05-05 02:27:21',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(32727,'1110','121683244458','2023-05-05 02:54:50',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(32728,'5500','121683244458','2023-05-05 02:54:50',201.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32729,'1000','121683244458','2023-05-05 02:54:50',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32730,'4000','121683244458','2023-05-05 02:54:50',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(32731,'1110','121683258554','2023-05-05 06:49:31',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32732,'5500','121683258554','2023-05-05 06:49:31',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32733,'1000','121683258554','2023-05-05 06:49:31',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32734,'4000','121683258554','2023-05-05 06:49:31',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32735,'1110','121683300171','2023-05-05 18:25:36',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32736,'1110','121683300171','2023-05-05 18:25:36',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32737,'5500','121683300171','2023-05-05 18:25:36',521.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32738,'1000','121683300171','2023-05-05 18:25:36',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32739,'4000','121683300171','2023-05-05 18:25:36',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32740,'4000','121683300171','2023-05-05 18:25:36',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32741,'1110','121683300344','2023-05-05 18:26:29',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32742,'5500','121683300344','2023-05-05 18:26:29',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32743,'1000','121683300344','2023-05-05 18:26:29',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32744,'4000','121683300344','2023-05-05 18:26:29',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32745,'1110','121683300394','2023-05-05 18:27:16',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32746,'1110','121683300394','2023-05-05 18:27:16',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32747,'5500','121683300394','2023-05-05 18:27:16',210.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32748,'1000','121683300394','2023-05-05 18:27:16',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32749,'4000','121683300394','2023-05-05 18:27:16',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32750,'4000','121683300394','2023-05-05 18:27:16',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32751,'1110','121683300443','2023-05-05 18:27:36',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32752,'5500','121683300443','2023-05-05 18:27:36',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32753,'1000','121683300443','2023-05-05 18:27:36',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32754,'4000','121683300443','2023-05-05 18:27:36',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32755,'1110','121683308227','2023-05-05 20:37:34',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32756,'1110','121683308227','2023-05-05 20:37:34',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(32757,'5500','121683308227','2023-05-05 20:37:34',604.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32758,'1000','121683308227','2023-05-05 20:37:34',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32759,'4000','121683308227','2023-05-05 20:37:34',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(32760,'4000','121683308227','2023-05-05 20:37:34',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(32761,'1110','121683314658','2023-05-05 22:24:55',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32762,'1110','121683314658','2023-05-05 22:24:55',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32763,'1110','121683314658','2023-05-05 22:24:55',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32764,'5500','121683314658','2023-05-05 22:24:55',124.40,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32765,'1000','121683314658','2023-05-05 22:24:55',280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32766,'4000','121683314658','2023-05-05 22:24:55',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(32767,'4000','121683314658','2023-05-05 22:24:55',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32768,'4000','121683314658','2023-05-05 22:24:55',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32769,'1110','121683315199','2023-05-05 22:33:26',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32770,'5500','121683315199','2023-05-05 22:33:26',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32771,'1000','121683315199','2023-05-05 22:33:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32772,'4000','121683315199','2023-05-05 22:33:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(32773,'1110','121683315210','2023-05-05 23:24:41',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32774,'1110','121683315210','2023-05-05 23:24:41',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32775,'5500','121683315210','2023-05-05 23:24:41',234.96,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32776,'1000','121683315210','2023-05-05 23:24:41',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32777,'4000','121683315210','2023-05-05 23:24:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32778,'4000','121683315210','2023-05-05 23:24:41',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32779,'1110','121683319794','2023-05-05 23:50:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32780,'1110','121683319794','2023-05-05 23:50:10',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(32781,'5500','121683319794','2023-05-05 23:50:10',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32782,'1000','121683319794','2023-05-05 23:50:10',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32783,'4000','121683319794','2023-05-05 23:50:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32784,'4000','121683319794','2023-05-05 23:50:10',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(32785,'1110','121683319814','2023-05-06 01:11:58',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32786,'1110','121683319814','2023-05-06 01:11:58',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32787,'5500','121683319814','2023-05-06 01:11:58',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32788,'1000','121683319814','2023-05-06 01:11:58',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32789,'4000','121683319814','2023-05-06 01:11:58',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32790,'4000','121683319814','2023-05-06 01:11:58',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32791,'1110','121683325411','2023-05-06 01:23:39',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32792,'5500','121683325411','2023-05-06 01:23:39',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32793,'1000','121683325411','2023-05-06 01:23:39',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32794,'4000','121683325411','2023-05-06 01:23:39',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(32795,'1110','121683326969','2023-05-06 01:49:41',NULL,1465.00,'','12','1','Inventory sold','1','','sales','5000267014005','','No',NULL,NULL,''),(32796,'5500','121683326969','2023-05-06 01:49:41',1465.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32797,'1000','121683326969','2023-05-06 01:49:41',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32798,'4000','121683326969','2023-05-06 01:49:41',NULL,2500.00,'','12','1','Good sold','1','','sales','5000267014005','','No',NULL,NULL,''),(32799,'1110','121683326987','2023-05-06 02:00:57',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32800,'5500','121683326987','2023-05-06 02:00:57',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32801,'1000','121683326987','2023-05-06 02:00:57',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32802,'4000','121683326987','2023-05-06 02:00:57',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32803,'1110','121683327663','2023-05-06 02:48:09',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(32804,'5500','121683327663','2023-05-06 02:48:09',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32805,'1000','121683327663','2023-05-06 02:48:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32806,'4000','121683327663','2023-05-06 02:48:09',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(32807,'1110','121683341020','2023-05-06 05:44:15',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32808,'5500','121683341020','2023-05-06 05:44:15',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32809,'1000','121683341020','2023-05-06 05:44:15',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32810,'4000','121683341020','2023-05-06 05:44:15',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32811,'1110','121683342591','2023-05-06 06:10:07',NULL,850.00,'','12','1','Inventory sold','1','','sales','6001108016034','','No',NULL,NULL,''),(32812,'5500','121683342591','2023-05-06 06:10:07',850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32813,'1000','121683342591','2023-05-06 06:10:07',1200.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32814,'4000','121683342591','2023-05-06 06:10:07',NULL,1200.00,'','12','1','Good sold','1','','sales','6001108016034','','No',NULL,NULL,''),(32815,'1110','121683342612','2023-05-06 06:58:10',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32816,'5500','121683342612','2023-05-06 06:58:10',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32817,'1000','121683342612','2023-05-06 06:58:10',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32818,'4000','121683342612','2023-05-06 06:58:10',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(32819,'1110','121683345524','2023-05-06 07:17:00',NULL,184.00,'','12','1','Inventory sold','1','','sales','6161101602075','','No',NULL,NULL,''),(32820,'5500','121683345524','2023-05-06 07:17:00',184.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32821,'1000','121683345524','2023-05-06 07:17:00',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32822,'4000','121683345524','2023-05-06 07:17:00',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602075','','No',NULL,NULL,''),(32823,'1110','121683350016','2023-05-06 08:14:06',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32824,'1110','121683350016','2023-05-06 08:14:06',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32825,'1110','121683350016','2023-05-06 08:14:06',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32826,'5500','121683350016','2023-05-06 08:14:06',628.12,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32827,'1000','121683350016','2023-05-06 08:14:06',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32828,'4000','121683350016','2023-05-06 08:14:06',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(32829,'4000','121683350016','2023-05-06 08:14:06',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32830,'4000','121683350016','2023-05-06 08:14:06',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(32831,'1110','121683379307','2023-05-06 16:22:46',NULL,1417.00,'','12','1','Inventory sold','1','','sales','6161101600927','','No',NULL,NULL,''),(32832,'1110','121683379307','2023-05-06 16:22:46',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(32833,'1110','121683379307','2023-05-06 16:22:46',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32834,'5500','121683379307','2023-05-06 16:22:46',1670.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32835,'1000','121683379307','2023-05-06 16:22:46',2300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32836,'4000','121683379307','2023-05-06 16:22:46',NULL,1900.00,'','12','1','Good sold','1','','sales','6161101600927','','No',NULL,NULL,''),(32837,'4000','121683379307','2023-05-06 16:22:46',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(32838,'4000','121683379307','2023-05-06 16:22:46',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32839,'1110','121683388796','2023-05-06 19:00:07',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32840,'5500','121683388796','2023-05-06 19:00:07',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32841,'1000','121683388796','2023-05-06 19:00:07',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32842,'4000','121683388796','2023-05-06 19:00:07',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32843,'1110','121683388812','2023-05-06 20:50:56',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(32844,'1110','121683388812','2023-05-06 20:50:56',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32845,'5500','121683388812','2023-05-06 20:50:56',1946.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32846,'1000','121683388812','2023-05-06 20:50:56',2960.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32847,'4000','121683388812','2023-05-06 20:50:56',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(32848,'4000','121683388812','2023-05-06 20:50:56',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32849,'1110','121683397281','2023-05-06 21:21:27',NULL,603.00,'','12','1','Inventory sold','1','','sales','6161100421899','','No',NULL,NULL,''),(32850,'5500','121683397281','2023-05-06 21:21:27',603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32851,'1000','121683397281','2023-05-06 21:21:27',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32852,'4000','121683397281','2023-05-06 21:21:27',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421899','','No',NULL,NULL,''),(32853,'1110','121683397293','2023-05-06 21:41:55',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(32854,'5500','121683397293','2023-05-06 21:41:55',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32855,'1000','121683397293','2023-05-06 21:41:55',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32856,'4000','121683397293','2023-05-06 21:41:55',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(32857,'1110','121683398520','2023-05-06 21:45:02',NULL,542.00,'','12','1','Inventory sold','1','','sales','5010103930970','','No',NULL,NULL,''),(32858,'1110','121683398520','2023-05-06 21:45:02',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(32859,'5500','121683398520','2023-05-06 21:45:02',565.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32860,'1000','121683398520','2023-05-06 21:45:02',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32861,'4000','121683398520','2023-05-06 21:45:02',NULL,750.00,'','12','1','Good sold','1','','sales','5010103930970','','No',NULL,NULL,''),(32862,'4000','121683398520','2023-05-06 21:45:02',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(32863,'1110','121683398708','2023-05-06 22:21:09',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32864,'5500','121683398708','2023-05-06 22:21:09',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32865,'1000','121683398708','2023-05-06 22:21:09',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32866,'4000','121683398708','2023-05-06 22:21:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(32867,'1110','121683400888','2023-05-06 22:28:58',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32868,'1110','121683400888','2023-05-06 22:28:58',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32869,'5500','121683400888','2023-05-06 22:28:58',1231.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32870,'1000','121683400888','2023-05-06 22:28:58',1910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32871,'4000','121683400888','2023-05-06 22:28:58',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32872,'4000','121683400888','2023-05-06 22:28:58',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32873,'1110','121683403649','2023-05-06 23:07:36',NULL,655.00,'','12','1','Inventory sold','1','','sales','6001496566050','','No',NULL,NULL,''),(32874,'5500','121683403649','2023-05-06 23:07:36',655.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32875,'1000','121683403649','2023-05-06 23:07:36',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32876,'4000','121683403649','2023-05-06 23:07:36',NULL,1000.00,'','12','1','Good sold','1','','sales','6001496566050','','No',NULL,NULL,''),(32877,'1110','121683403660','2023-05-06 23:19:23',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32878,'5500','121683403660','2023-05-06 23:19:23',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32879,'1000','121683403660','2023-05-06 23:19:23',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32880,'4000','121683403660','2023-05-06 23:19:23',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(32881,'1110','121683404367','2023-05-06 23:35:53',NULL,184.00,'','12','1','Inventory sold','1','','sales','6161101602075','','No',NULL,NULL,''),(32882,'5500','121683404367','2023-05-06 23:35:53',184.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32883,'1000','121683404367','2023-05-06 23:35:53',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32884,'4000','121683404367','2023-05-06 23:35:53',NULL,350.00,'','12','1','Good sold','1','','sales','6161101602075','','No',NULL,NULL,''),(32885,'1110','121683405357','2023-05-06 23:43:43',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(32886,'1110','121683405357','2023-05-06 23:43:43',NULL,98.00,'','12','1','Inventory sold','1','','sales','5449000014536','','No',NULL,NULL,''),(32887,'5500','121683405357','2023-05-06 23:43:43',1998.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32888,'1000','121683405357','2023-05-06 23:43:43',3000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32889,'4000','121683405357','2023-05-06 23:43:43',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(32890,'4000','121683405357','2023-05-06 23:43:43',NULL,200.00,'','12','1','Good sold','1','','sales','5449000014536','','No',NULL,NULL,''),(32891,'1110','121683405914','2023-05-06 23:46:29',NULL,970.00,'','12','1','Inventory sold','1','','sales','7804320559001','','No',NULL,NULL,''),(32892,'1110','121683405914','2023-05-06 23:46:29',NULL,585.00,'','12','1','Inventory sold','1','','sales','6009676519216','','No',NULL,NULL,''),(32893,'1110','121683405914','2023-05-06 23:46:29',NULL,970.00,'','12','1','Inventory sold','1','','sales','7804320556000','','No',NULL,NULL,''),(32894,'5500','121683405914','2023-05-06 23:46:29',2525.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32895,'1000','121683405914','2023-05-06 23:46:29',3900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32896,'4000','121683405914','2023-05-06 23:46:29',NULL,1500.00,'','12','1','Good sold','1','','sales','7804320559001','','No',NULL,NULL,''),(32897,'4000','121683405914','2023-05-06 23:46:29',NULL,1000.00,'','12','1','Good sold','1','','sales','6009676519216','','No',NULL,NULL,''),(32898,'4000','121683405914','2023-05-06 23:46:29',NULL,1400.00,'','12','1','Good sold','1','','sales','7804320556000','','No',NULL,NULL,''),(32899,'1110','121683407336','2023-05-07 00:09:05',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32900,'5500','121683407336','2023-05-07 00:09:05',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32901,'1000','121683407336','2023-05-07 00:09:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32902,'4000','121683407336','2023-05-07 00:09:05',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(32903,'1110','121683407349','2023-05-07 00:09:21',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32904,'5500','121683407349','2023-05-07 00:09:21',300.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32905,'1000','121683407349','2023-05-07 00:09:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32906,'4000','121683407349','2023-05-07 00:09:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32907,'1110','121683407365','2023-05-07 00:18:06',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32908,'1110','121683407365','2023-05-07 00:18:06',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(32909,'5500','121683407365','2023-05-07 00:18:06',629.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32910,'1000','121683407365','2023-05-07 00:18:06',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32911,'4000','121683407365','2023-05-07 00:18:06',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(32912,'4000','121683407365','2023-05-07 00:18:06',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(32913,'1110','121683407914','2023-05-07 00:27:55',NULL,430.00,'','12','1','Inventory sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32914,'5500','121683407914','2023-05-07 00:27:55',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32915,'1000','121683407914','2023-05-07 00:27:55',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32916,'4000','121683407914','2023-05-07 00:27:55',NULL,600.00,'','12','1','Good sold','1','','sales','5000292263171','','No',NULL,NULL,''),(32917,'1110','121683408612','2023-05-07 00:30:29',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(32918,'1110','121683408612','2023-05-07 00:30:29',NULL,46.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(32919,'5500','121683408612','2023-05-07 00:30:29',238.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32920,'1000','121683408612','2023-05-07 00:30:29',430.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32921,'4000','121683408612','2023-05-07 00:30:29',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(32922,'4000','121683408612','2023-05-07 00:30:29',NULL,160.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(32923,'1110','121683408756','2023-05-07 01:15:37',NULL,580.00,'','12','1','Inventory sold','1','','sales','6161100421868','','No',NULL,NULL,''),(32924,'5500','121683408756','2023-05-07 01:15:37',580.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32925,'1000','121683408756','2023-05-07 01:15:37',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32926,'4000','121683408756','2023-05-07 01:15:37',NULL,850.00,'','12','1','Good sold','1','','sales','6161100421868','','No',NULL,NULL,''),(32927,'1110','121683427463','2023-05-07 05:46:09',NULL,640.00,'','12','1','Inventory sold','1','','sales','6161100421677','','No',NULL,NULL,''),(32928,'1110','121683427463','2023-05-07 05:46:09',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32929,'1110','121683427463','2023-05-07 05:46:09',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32930,'1110','121683427463','2023-05-07 05:46:09',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32931,'1110','121683427463','2023-05-07 05:46:09',NULL,561.00,'','12','1','Inventory sold','1','','sales','6161100421219','','No',NULL,NULL,''),(32932,'5500','121683427463','2023-05-07 05:46:09',2056.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32933,'1000','121683427463','2023-05-07 05:46:09',3050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32934,'4000','121683427463','2023-05-07 05:46:09',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421677','','No',NULL,NULL,''),(32935,'4000','121683427463','2023-05-07 05:46:09',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(32936,'4000','121683427463','2023-05-07 05:46:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32937,'4000','121683427463','2023-05-07 05:46:09',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32938,'4000','121683427463','2023-05-07 05:46:09',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421219','','No',NULL,NULL,''),(32939,'1110','121683427667','2023-05-07 05:48:11',NULL,518.25,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32940,'1110','121683427667','2023-05-07 05:48:11',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32941,'5500','121683427667','2023-05-07 05:48:11',819.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32942,'1000','121683427667','2023-05-07 05:48:11',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32943,'4000','121683427667','2023-05-07 05:48:11',NULL,750.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(32944,'4000','121683427667','2023-05-07 05:48:11',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(32945,'1110','121683427701','2023-05-07 05:48:57',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32946,'1110','121683427701','2023-05-07 05:48:57',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32947,'5500','121683427701','2023-05-07 05:48:57',1199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32948,'1000','121683427701','2023-05-07 05:48:57',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32949,'4000','121683427701','2023-05-07 05:48:57',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(32950,'4000','121683427701','2023-05-07 05:48:57',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(32951,'1110','121683427743','2023-05-07 06:01:41',NULL,56.00,'','12','1','Inventory sold','1','','sales','50112753','','No',NULL,NULL,''),(32952,'5500','121683427743','2023-05-07 06:01:41',56.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32953,'1000','121683427743','2023-05-07 06:01:41',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32954,'4000','121683427743','2023-05-07 06:01:41',NULL,80.00,'','12','1','Good sold','1','','sales','50112753','','No',NULL,NULL,''),(32955,'1110','121683438858','2023-05-07 08:54:39',NULL,571.13,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32956,'5500','121683438858','2023-05-07 08:54:39',571.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32957,'1000','121683438858','2023-05-07 08:54:39',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32958,'4000','121683438858','2023-05-07 08:54:39',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(32959,'1110','121683458089','2023-05-07 14:15:51',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(32960,'1110','121683458089','2023-05-07 14:15:51',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(32961,'5500','121683458089','2023-05-07 14:15:51',1669.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32962,'1000','121683458089','2023-05-07 14:15:51',2600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32963,'4000','121683458089','2023-05-07 14:15:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(32964,'4000','121683458089','2023-05-07 14:15:51',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(32965,'1110','121683488794','2023-05-07 22:46:50',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32966,'5500','121683488794','2023-05-07 22:46:50',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32967,'1000','121683488794','2023-05-07 22:46:50',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32968,'4000','121683488794','2023-05-07 22:46:50',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(32969,'1110','121683488816','2023-05-07 23:03:37',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32970,'5500','121683488816','2023-05-07 23:03:37',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32971,'1000','121683488816','2023-05-07 23:03:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32972,'4000','121683488816','2023-05-07 23:03:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32973,'1110','121683492394','2023-05-07 23:47:15',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(32974,'1110','121683492394','2023-05-07 23:47:15',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32975,'1110','121683492394','2023-05-07 23:47:15',NULL,46.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(32976,'1110','121683492394','2023-05-07 23:47:15',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32977,'5500','121683492394','2023-05-07 23:47:15',996.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32978,'1000','121683492394','2023-05-07 23:47:15',2190.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32979,'4000','121683492394','2023-05-07 23:47:15',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(32980,'4000','121683492394','2023-05-07 23:47:15',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(32981,'4000','121683492394','2023-05-07 23:47:15',NULL,160.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(32982,'4000','121683492394','2023-05-07 23:47:15',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(32983,'1110','121683492605','2023-05-07 23:50:32',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32984,'1110','121683492605','2023-05-07 23:50:32',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32985,'5500','121683492605','2023-05-07 23:50:32',547.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32986,'1000','121683492605','2023-05-07 23:50:32',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32987,'4000','121683492605','2023-05-07 23:50:32',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(32988,'4000','121683492605','2023-05-07 23:50:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(32989,'1110','121683494544','2023-05-08 00:22:54',NULL,624.00,'','12','1','Inventory sold','1','','sales','6161101604857','','No',NULL,NULL,''),(32990,'5500','121683494544','2023-05-08 00:22:54',624.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32991,'1000','121683494544','2023-05-08 00:22:54',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32992,'4000','121683494544','2023-05-08 00:22:54',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604857','','No',NULL,NULL,''),(32993,'1110','121683501870','2023-05-08 02:24:37',NULL,1125.00,'','12','1','Inventory sold','1','','sales','6161101606561','','No',NULL,NULL,''),(32994,'5500','121683501870','2023-05-08 02:24:37',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(32995,'1000','121683501870','2023-05-08 02:24:37',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(32996,'4000','121683501870','2023-05-08 02:24:37',NULL,1850.00,'','12','1','Good sold','1','','sales','6161101606561','','No',NULL,NULL,''),(32997,'1110','121683652978','2023-05-09 20:23:29',NULL,920.00,'','12','1','Inventory sold','1','','sales','5011007003654','','No',NULL,NULL,''),(32998,'1110','121683652978','2023-05-09 20:23:29',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(32999,'1110','121683652978','2023-05-09 20:23:29',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33000,'5500','121683652978','2023-05-09 20:23:29',1200.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33001,'1000','121683652978','2023-05-09 20:23:29',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33002,'4000','121683652978','2023-05-09 20:23:29',NULL,1500.00,'','12','1','Good sold','1','','sales','5011007003654','','No',NULL,NULL,''),(33003,'4000','121683652978','2023-05-09 20:23:29',NULL,300.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(33004,'4000','121683652978','2023-05-09 20:23:29',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33005,'1110','121683653033','2023-05-09 20:58:37',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(33006,'1110','121683653033','2023-05-09 20:58:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33007,'5500','121683653033','2023-05-09 20:58:37',327.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33008,'1000','121683653033','2023-05-09 20:58:37',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33009,'4000','121683653033','2023-05-09 20:58:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(33010,'4000','121683653033','2023-05-09 20:58:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33011,'1110','121683660624','2023-05-09 22:37:16',NULL,1075.00,'','12','1','Inventory sold','1','','sales','6001812011950','','No',NULL,NULL,''),(33012,'1110','121683660624','2023-05-09 22:37:16',NULL,1080.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33013,'1110','121683660624','2023-05-09 22:37:16',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33014,'1110','121683660624','2023-05-09 22:37:16',NULL,863.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33015,'5500','121683660624','2023-05-09 22:37:16',4055.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33016,'1000','121683660624','2023-05-09 22:37:16',5850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33017,'4000','121683660624','2023-05-09 22:37:16',NULL,1600.00,'','12','1','Good sold','1','','sales','6001812011950','','No',NULL,NULL,''),(33018,'4000','121683660624','2023-05-09 22:37:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33019,'4000','121683660624','2023-05-09 22:37:16',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33020,'4000','121683660624','2023-05-09 22:37:16',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33021,'1110','121683740788','2023-05-10 20:51:05',NULL,865.00,'','12','1','Inventory sold','1','','sales','6001506908146','','No',NULL,NULL,''),(33022,'1110','121683740788','2023-05-10 20:51:05',NULL,1200.00,'','12','1','Inventory sold','1','','sales','7804320301174','','No',NULL,NULL,''),(33023,'5500','121683740788','2023-05-10 20:51:05',2065.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33024,'1000','121683740788','2023-05-10 20:51:05',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33025,'4000','121683740788','2023-05-10 20:51:05',NULL,1500.00,'','12','1','Good sold','1','','sales','6001506908146','','No',NULL,NULL,''),(33026,'4000','121683740788','2023-05-10 20:51:05',NULL,2000.00,'','12','1','Good sold','1','','sales','7804320301174','','No',NULL,NULL,''),(33027,'1110','121683742970','2023-05-10 21:26:20',NULL,665.00,'','12','1','Inventory sold','1','','sales','6161101561327','','No',NULL,NULL,''),(33028,'5500','121683742970','2023-05-10 21:26:20',665.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33029,'1000','121683742970','2023-05-10 21:26:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33030,'4000','121683742970','2023-05-10 21:26:20',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101561327','','No',NULL,NULL,''),(33031,'1110','121683743308','2023-05-10 22:01:35',NULL,920.00,'','12','1','Inventory sold','1','','sales','5011007003654','','No',NULL,NULL,''),(33032,'5500','121683743308','2023-05-10 22:01:35',920.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33033,'1000','121683743308','2023-05-10 22:01:35',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33034,'4000','121683743308','2023-05-10 22:01:35',NULL,1500.00,'','12','1','Good sold','1','','sales','5011007003654','','No',NULL,NULL,''),(33035,'1110','121683750059','2023-05-10 23:21:23',NULL,2300.00,'','12','1','Inventory sold','1','','sales','080432115305','','No',NULL,NULL,''),(33036,'5500','121683750059','2023-05-10 23:21:23',2300.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33037,'1000','121683750059','2023-05-10 23:21:23',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33038,'4000','121683750059','2023-05-10 23:21:23',NULL,3400.00,'','12','1','Good sold','1','','sales','080432115305','','No',NULL,NULL,''),(33039,'1110','121683750090','2023-05-11 00:54:59',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33040,'1110','121683750090','2023-05-11 00:54:59',NULL,1075.00,'','12','1','Inventory sold','1','','sales','6001812011950','','No',NULL,NULL,''),(33041,'1110','121683750090','2023-05-11 00:54:59',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(33042,'1110','121683750090','2023-05-11 00:54:59',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33043,'1110','121683750090','2023-05-11 00:54:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(33044,'1110','121683750090','2023-05-11 00:54:59',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(33045,'5500','121683750090','2023-05-11 00:54:59',2270.91,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33046,'1000','121683750090','2023-05-11 00:54:59',3280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33047,'4000','121683750090','2023-05-11 00:54:59',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33048,'4000','121683750090','2023-05-11 00:54:59',NULL,1600.00,'','12','1','Good sold','1','','sales','6001812011950','','No',NULL,NULL,''),(33049,'4000','121683750090','2023-05-11 00:54:59',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(33050,'4000','121683750090','2023-05-11 00:54:59',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33051,'4000','121683750090','2023-05-11 00:54:59',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(33052,'4000','121683750090','2023-05-11 00:54:59',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(33053,'1110','121683763694','2023-05-11 03:08:22',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33054,'5500','121683763694','2023-05-11 03:08:22',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33055,'1000','121683763694','2023-05-11 03:08:22',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33056,'4000','121683763694','2023-05-11 03:08:22',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33057,'1110','121683772546','2023-05-11 05:36:10',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(33058,'5500','121683772546','2023-05-11 05:36:10',284.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33059,'1000','121683772546','2023-05-11 05:36:10',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33060,'4000','121683772546','2023-05-11 05:36:10',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(33061,'1110','121683828846','2023-05-11 21:14:23',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004338','','No',NULL,NULL,''),(33062,'1110','121683828846','2023-05-11 21:14:23',NULL,1150.00,'','12','1','Inventory sold','1','','sales','6001452258005','','No',NULL,NULL,''),(33063,'5500','121683828846','2023-05-11 21:14:23',2050.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33064,'1000','121683828846','2023-05-11 21:14:23',3400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33065,'4000','121683828846','2023-05-11 21:14:23',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004338','','No',NULL,NULL,''),(33066,'4000','121683828846','2023-05-11 21:14:23',NULL,1600.00,'','12','1','Good sold','1','','sales','6001452258005','','No',NULL,NULL,''),(33067,'1110','121683842392','2023-05-12 01:04:29',NULL,520.00,'','12','1','Inventory sold','1','','sales','6161101603614','','No',NULL,NULL,''),(33068,'1110','121683842392','2023-05-12 01:04:29',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33069,'5500','121683842392','2023-05-12 01:04:29',623.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33070,'1000','121683842392','2023-05-12 01:04:29',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33071,'4000','121683842392','2023-05-12 01:04:29',NULL,950.00,'','12','1','Good sold','1','','sales','6161101603614','','No',NULL,NULL,''),(33072,'4000','121683842392','2023-05-12 01:04:29',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33073,'1110','121683915246','2023-05-12 22:42:17',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(33074,'5500','121683915246','2023-05-12 22:42:17',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33075,'1000','121683915246','2023-05-12 22:42:17',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33076,'4000','121683915246','2023-05-12 22:42:17',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(33077,'1110','121683928670','2023-05-13 01:46:32',NULL,1130.00,'','12','1','Inventory sold','1','','sales','50196081','','No',NULL,NULL,''),(33078,'5500','121683928670','2023-05-13 01:46:32',1130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33079,'1000','121683928670','2023-05-13 01:46:32',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33080,'4000','121683928670','2023-05-13 01:46:32',NULL,1800.00,'','12','1','Good sold','1','','sales','50196081','','No',NULL,NULL,''),(33081,'1110','121683931598','2023-05-13 03:05:35',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33082,'1110','121683931598','2023-05-13 03:05:35',NULL,53.33,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(33083,'5500','121683931598','2023-05-13 03:05:35',629.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33084,'1000','121683931598','2023-05-13 03:05:35',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33085,'4000','121683931598','2023-05-13 03:05:35',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33086,'4000','121683931598','2023-05-13 03:05:35',NULL,80.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(33087,'1110','121683953690','2023-05-13 07:55:13',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33088,'5500','121683953690','2023-05-13 07:55:13',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33089,'1000','121683953690','2023-05-13 07:55:13',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33090,'4000','121683953690','2023-05-13 07:55:13',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33091,'1110','121683953718','2023-05-13 07:55:42',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33092,'5500','121683953718','2023-05-13 07:55:42',360.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33093,'1000','121683953718','2023-05-13 07:55:42',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33094,'4000','121683953718','2023-05-13 07:55:42',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055231','','No',NULL,NULL,''),(33095,'1110','121683953749','2023-05-13 07:56:07',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33096,'5500','121683953749','2023-05-13 07:56:07',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33097,'1000','121683953749','2023-05-13 07:56:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33098,'4000','121683953749','2023-05-13 07:56:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33099,'1110','121683953772','2023-05-13 07:57:51',NULL,335.00,'','12','1','Inventory sold','1','','sales','5010103930840','','No',NULL,NULL,''),(33100,'5500','121683953772','2023-05-13 07:57:51',335.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33101,'1000','121683953772','2023-05-13 07:57:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33102,'4000','121683953772','2023-05-13 07:57:51',NULL,500.00,'','12','1','Good sold','1','','sales','5010103930840','','No',NULL,NULL,''),(33103,'1110','121683953961','2023-05-13 08:00:12',NULL,245.00,'','12','1','Inventory sold','1','','sales','6161101560832','','No',NULL,NULL,''),(33104,'1110','121683953961','2023-05-13 08:00:12',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(33105,'1110','121683953961','2023-05-13 08:00:12',NULL,284.00,'','12','1','Inventory sold','1','','sales','6161101604550','','No',NULL,NULL,''),(33106,'5500','121683953961','2023-05-13 08:00:12',635.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33107,'1000','121683953961','2023-05-13 08:00:12',910.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33108,'4000','121683953961','2023-05-13 08:00:12',NULL,350.00,'','12','1','Good sold','1','','sales','6161101560832','','No',NULL,NULL,''),(33109,'4000','121683953961','2023-05-13 08:00:12',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(33110,'4000','121683953961','2023-05-13 08:00:12',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604550','','No',NULL,NULL,''),(33111,'1110','121684003174','2023-05-13 22:40:09',NULL,1846.00,'','12','1','Inventory sold','1','','sales','080480280024','','No',NULL,NULL,''),(33112,'1110','121684003174','2023-05-13 22:40:09',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33113,'5500','121684003174','2023-05-13 22:40:09',2140.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33114,'1000','121684003174','2023-05-13 22:40:09',3100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33115,'4000','121684003174','2023-05-13 22:40:09',NULL,2600.00,'','12','1','Good sold','1','','sales','080480280024','','No',NULL,NULL,''),(33116,'4000','121684003174','2023-05-13 22:40:09',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33117,'1110','121684006925','2023-05-13 22:46:47',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33118,'1110','121684006925','2023-05-13 22:46:47',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33119,'1110','121684006925','2023-05-13 22:46:47',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(33120,'1110','121684006925','2023-05-13 22:46:47',NULL,631.57,'','12','1','Inventory sold','1','','sales','5010232953925','','No',NULL,NULL,''),(33121,'5500','121684006925','2023-05-13 22:46:47',2266.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33122,'1000','121684006925','2023-05-13 22:46:47',3850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33123,'4000','121684006925','2023-05-13 22:46:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33124,'4000','121684006925','2023-05-13 22:46:47',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33125,'4000','121684006925','2023-05-13 22:46:47',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(33126,'4000','121684006925','2023-05-13 22:46:47',NULL,1400.00,'','12','1','Good sold','1','','sales','5010232953925','','No',NULL,NULL,''),(33127,'1110','121684007412','2023-05-13 23:08:20',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(33128,'1110','121684007412','2023-05-13 23:08:20',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33129,'5500','121684007412','2023-05-13 23:08:20',748.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33130,'1000','121684007412','2023-05-13 23:08:20',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33131,'4000','121684007412','2023-05-13 23:08:20',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(33132,'4000','121684007412','2023-05-13 23:08:20',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33133,'1110','121684008512','2023-05-13 23:28:51',NULL,1600.00,'','12','1','Inventory sold','1','','sales','5010327000046','','No',NULL,NULL,''),(33134,'1110','121684008512','2023-05-13 23:28:51',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33135,'5500','121684008512','2023-05-13 23:28:51',1653.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33136,'1000','121684008512','2023-05-13 23:28:51',2380.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33137,'4000','121684008512','2023-05-13 23:28:51',NULL,2300.00,'','12','1','Good sold','1','','sales','5010327000046','','No',NULL,NULL,''),(33138,'4000','121684008512','2023-05-13 23:28:51',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33139,'1110','121684009805','2023-05-13 23:50:18',NULL,1141.00,'','12','1','Inventory sold','1','','sales','5000292001001','','No',NULL,NULL,''),(33140,'1110','121684009805','2023-05-13 23:50:18',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33141,'5500','121684009805','2023-05-13 23:50:18',1244.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33142,'1000','121684009805','2023-05-13 23:50:18',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33143,'4000','121684009805','2023-05-13 23:50:18',NULL,1600.00,'','12','1','Good sold','1','','sales','5000292001001','','No',NULL,NULL,''),(33144,'4000','121684009805','2023-05-13 23:50:18',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33145,'1110','121684011023','2023-05-14 00:15:22',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(33146,'1110','121684011023','2023-05-14 00:15:22',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33147,'1110','121684011023','2023-05-14 00:15:22',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33148,'1110','121684011023','2023-05-14 00:15:22',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(33149,'5500','121684011023','2023-05-14 00:15:22',1381.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33150,'1000','121684011023','2023-05-14 00:15:22',2330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33151,'4000','121684011023','2023-05-14 00:15:22',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(33152,'4000','121684011023','2023-05-14 00:15:22',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33153,'4000','121684011023','2023-05-14 00:15:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33154,'4000','121684011023','2023-05-14 00:15:22',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(33155,'1110','121684012659','2023-05-14 00:17:59',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33156,'1110','121684012659','2023-05-14 00:17:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(33157,'5500','121684012659','2023-05-14 00:17:59',156.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33158,'1000','121684012659','2023-05-14 00:17:59',230.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33159,'4000','121684012659','2023-05-14 00:17:59',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33160,'4000','121684012659','2023-05-14 00:17:59',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(33161,'1110','121684021430','2023-05-14 02:44:21',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33162,'1110','121684021430','2023-05-14 02:44:21',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33163,'1110','121684021430','2023-05-14 02:44:21',NULL,201.00,'','12','1','Inventory sold','1','','sales','6001108028044','','No',NULL,NULL,''),(33164,'5500','121684021430','2023-05-14 02:44:21',728.21,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33165,'1000','121684021430','2023-05-14 02:44:21',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33166,'4000','121684021430','2023-05-14 02:44:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33167,'4000','121684021430','2023-05-14 02:44:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33168,'4000','121684021430','2023-05-14 02:44:21',NULL,300.00,'','12','1','Good sold','1','','sales','6001108028044','','No',NULL,NULL,''),(33169,'1110','121684021524','2023-05-14 02:46:00',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33170,'1110','121684021524','2023-05-14 02:46:00',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33171,'1110','121684021524','2023-05-14 02:46:00',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33172,'5500','121684021524','2023-05-14 02:46:00',618.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33173,'1000','121684021524','2023-05-14 02:46:00',900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33174,'4000','121684021524','2023-05-14 02:46:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33175,'4000','121684021524','2023-05-14 02:46:00',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33176,'4000','121684021524','2023-05-14 02:46:00',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33177,'1110','121684024680','2023-05-14 03:40:55',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33178,'1110','121684024680','2023-05-14 03:40:55',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33179,'1110','121684024680','2023-05-14 03:40:55',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33180,'1110','121684024680','2023-05-14 03:40:55',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33181,'1110','121684024680','2023-05-14 03:40:55',NULL,68.00,'','12','1','Inventory sold','1','','sales','90490279','','No',NULL,NULL,''),(33182,'5500','121684024680','2023-05-14 03:40:55',1080.64,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33183,'1000','121684024680','2023-05-14 03:40:55',1730.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33184,'4000','121684024680','2023-05-14 03:40:55',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33185,'4000','121684024680','2023-05-14 03:40:55',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33186,'4000','121684024680','2023-05-14 03:40:55',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33187,'4000','121684024680','2023-05-14 03:40:55',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33188,'4000','121684024680','2023-05-14 03:40:55',NULL,100.00,'','12','1','Good sold','1','','sales','90490279','','No',NULL,NULL,''),(33189,'1110','121684090827','2023-05-14 22:04:28',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33190,'5500','121684090827','2023-05-14 22:04:28',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33191,'1000','121684090827','2023-05-14 22:04:28',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33192,'4000','121684090827','2023-05-14 22:04:28',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33193,'1110','121684093775','2023-05-14 23:39:44',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33194,'1110','121684093775','2023-05-14 23:39:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(33195,'5500','121684093775','2023-05-14 23:39:44',200.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33196,'1000','121684093775','2023-05-14 23:39:44',320.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33197,'4000','121684093775','2023-05-14 23:39:44',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33198,'4000','121684093775','2023-05-14 23:39:44',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(33199,'1110','121684261140','2023-05-16 21:25:40',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5000267184210','','No',NULL,NULL,''),(33200,'1110','121684261140','2023-05-16 21:25:40',NULL,900.00,'','12','1','Inventory sold','1','','sales','4840709004338','','No',NULL,NULL,''),(33201,'1110','121684261140','2023-05-16 21:25:40',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33202,'5500','121684261140','2023-05-16 21:25:40',1974.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33203,'1000','121684261140','2023-05-16 21:25:40',3450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33204,'4000','121684261140','2023-05-16 21:25:40',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267184210','','No',NULL,NULL,''),(33205,'4000','121684261140','2023-05-16 21:25:40',NULL,1800.00,'','12','1','Good sold','1','','sales','4840709004338','','No',NULL,NULL,''),(33206,'4000','121684261140','2023-05-16 21:25:40',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33207,'1110','121684261555','2023-05-16 21:26:53',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33208,'1110','121684261555','2023-05-16 21:26:53',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33209,'5500','121684261555','2023-05-16 21:26:53',209.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33210,'1000','121684261555','2023-05-16 21:26:53',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33211,'4000','121684261555','2023-05-16 21:26:53',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33212,'4000','121684261555','2023-05-16 21:26:53',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33213,'1110','121684263371','2023-05-16 21:56:20',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(33214,'5500','121684263371','2023-05-16 21:56:20',659.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33215,'1000','121684263371','2023-05-16 21:56:20',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33216,'4000','121684263371','2023-05-16 21:56:20',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(33217,'1110','121684263384','2023-05-16 22:13:31',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33218,'1110','121684263384','2023-05-16 22:13:31',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33219,'5500','121684263384','2023-05-16 22:13:31',646.57,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33220,'1000','121684263384','2023-05-16 22:13:31',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33221,'4000','121684263384','2023-05-16 22:13:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33222,'4000','121684263384','2023-05-16 22:13:31',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33223,'1110','121684264417','2023-05-16 22:22:52',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33224,'1110','121684264417','2023-05-16 22:22:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33225,'1110','121684264417','2023-05-16 22:22:52',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(33226,'5500','121684264417','2023-05-16 22:22:52',522.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33227,'1000','121684264417','2023-05-16 22:22:52',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33228,'4000','121684264417','2023-05-16 22:22:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33229,'4000','121684264417','2023-05-16 22:22:52',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33230,'4000','121684264417','2023-05-16 22:22:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(33231,'1110','121684265073','2023-05-16 22:56:24',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33232,'5500','121684265073','2023-05-16 22:56:24',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33233,'1000','121684265073','2023-05-16 22:56:24',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33234,'4000','121684265073','2023-05-16 22:56:24',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33235,'1110','121684270997','2023-05-17 01:23:51',NULL,659.00,'','12','1','Inventory sold','1','','sales','5010752000420','','No',NULL,NULL,''),(33236,'1110','121684270997','2023-05-17 01:23:51',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33237,'1110','121684270997','2023-05-17 01:23:51',NULL,59.67,'','12','1','Inventory sold','1','','sales','90399480','','No',NULL,NULL,''),(33238,'5500','121684270997','2023-05-17 01:23:51',909.04,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33239,'1000','121684270997','2023-05-17 01:23:51',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33240,'4000','121684270997','2023-05-17 01:23:51',NULL,1000.00,'','12','1','Good sold','1','','sales','5010752000420','','No',NULL,NULL,''),(33241,'4000','121684270997','2023-05-17 01:23:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33242,'4000','121684270997','2023-05-17 01:23:51',NULL,100.00,'','12','1','Good sold','1','','sales','90399480','','No',NULL,NULL,''),(33243,'1110','121684283690','2023-05-17 03:34:58',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33244,'5500','121684283690','2023-05-17 03:34:58',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33245,'1000','121684283690','2023-05-17 03:34:58',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33246,'4000','121684283690','2023-05-17 03:34:58',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33247,'1110','121684336771','2023-05-17 18:20:42',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33248,'1110','121684336771','2023-05-17 18:20:42',NULL,106.66,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(33249,'1110','121684336771','2023-05-17 18:20:42',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33250,'5500','121684336771','2023-05-17 18:20:42',1268.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33251,'1000','121684336771','2023-05-17 18:20:42',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33252,'4000','121684336771','2023-05-17 18:20:42',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33253,'4000','121684336771','2023-05-17 18:20:42',NULL,160.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(33254,'4000','121684336771','2023-05-17 18:20:42',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33255,'1110','121684336850','2023-05-17 18:21:38',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33256,'1110','121684336850','2023-05-17 18:21:38',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33257,'5500','121684336850','2023-05-17 18:21:38',363.13,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33258,'1000','121684336850','2023-05-17 18:21:38',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33259,'4000','121684336850','2023-05-17 18:21:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33260,'4000','121684336850','2023-05-17 18:21:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33261,'1110','121684345276','2023-05-17 20:43:11',NULL,4920.00,'','12','1','Inventory sold','1','','sales','5000329002230','','No',NULL,NULL,''),(33262,'1110','121684345276','2023-05-17 20:43:11',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(33263,'1110','121684345276','2023-05-17 20:43:11',NULL,319.98,'','12','1','Inventory sold','1','','sales','50112265','','No',NULL,NULL,''),(33264,'5500','121684345276','2023-05-17 20:43:11',5364.98,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33265,'1000','121684345276','2023-05-17 20:43:11',7680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33266,'4000','121684345276','2023-05-17 20:43:11',NULL,7000.00,'','12','1','Good sold','1','','sales','5000329002230','','No',NULL,NULL,''),(33267,'4000','121684345276','2023-05-17 20:43:11',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(33268,'4000','121684345276','2023-05-17 20:43:11',NULL,480.00,'','12','1','Good sold','1','','sales','50112265','','No',NULL,NULL,''),(33269,'1110','121684349395','2023-05-17 21:50:52',NULL,728.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33270,'1110','121684349395','2023-05-17 21:50:52',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33271,'1110','121684349395','2023-05-17 21:50:52',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33272,'5500','121684349395','2023-05-17 21:50:52',1076.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33273,'1000','121684349395','2023-05-17 21:50:52',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33274,'4000','121684349395','2023-05-17 21:50:52',NULL,1200.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33275,'4000','121684349395','2023-05-17 21:50:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33276,'4000','121684349395','2023-05-17 21:50:52',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33277,'1110','121684350249','2023-05-17 22:04:47',NULL,908.54,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33278,'1110','121684350249','2023-05-17 22:04:47',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33279,'1110','121684350249','2023-05-17 22:04:47',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33280,'5500','121684350249','2023-05-17 22:04:47',1466.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33281,'1000','121684350249','2023-05-17 22:04:47',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33282,'4000','121684350249','2023-05-17 22:04:47',NULL,1250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33283,'4000','121684350249','2023-05-17 22:04:47',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33284,'4000','121684350249','2023-05-17 22:04:47',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33285,'1110','121684350291','2023-05-18 00:48:03',NULL,788.00,'','12','1','Inventory sold','1','','sales','6161101604543','','No',NULL,NULL,''),(33286,'5500','121684350291','2023-05-18 00:48:03',788.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33287,'1000','121684350291','2023-05-18 00:48:03',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33288,'4000','121684350291','2023-05-18 00:48:03',NULL,1800.00,'','12','1','Good sold','1','','sales','6161101604543','','No',NULL,NULL,''),(33289,'1110','121684360094','2023-05-18 01:24:03',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(33290,'5500','121684360094','2023-05-18 01:24:03',130.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33291,'1000','121684360094','2023-05-18 01:24:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33292,'4000','121684360094','2023-05-18 01:24:03',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(33293,'1110','121684362257','2023-05-18 02:05:46',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(33294,'5500','121684362257','2023-05-18 02:05:46',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33295,'1000','121684362257','2023-05-18 02:05:46',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33296,'4000','121684362257','2023-05-18 02:05:46',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(33297,'1110','121684365003','2023-05-18 02:17:00',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33298,'5500','121684365003','2023-05-18 02:17:00',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33299,'1000','121684365003','2023-05-18 02:17:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33300,'4000','121684365003','2023-05-18 02:17:00',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33301,'1110','121684372369','2023-05-18 04:13:13',NULL,520.00,'','12','1','Inventory sold','1','','sales','6161101604871','','No',NULL,NULL,''),(33302,'1110','121684372369','2023-05-18 04:13:13',NULL,459.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33303,'5500','121684372369','2023-05-18 04:13:13',979.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33304,'1000','121684372369','2023-05-18 04:13:13',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33305,'4000','121684372369','2023-05-18 04:13:13',NULL,950.00,'','12','1','Good sold','1','','sales','6161101604871','','No',NULL,NULL,''),(33306,'4000','121684372369','2023-05-18 04:13:13',NULL,750.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33307,'1110','121684427886','2023-05-18 19:38:38',NULL,600.00,'','12','1','Inventory sold','1','','sales','6161101560009','','No',NULL,NULL,''),(33308,'1110','121684427886','2023-05-18 19:38:38',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33309,'5500','121684427886','2023-05-18 19:38:38',659.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33310,'1000','121684427886','2023-05-18 19:38:38',1080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33311,'4000','121684427886','2023-05-18 19:38:38',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101560009','','No',NULL,NULL,''),(33312,'4000','121684427886','2023-05-18 19:38:38',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33313,'1110','121684427924','2023-05-18 19:39:11',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33314,'5500','121684427924','2023-05-18 19:39:11',392.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33315,'1000','121684427924','2023-05-18 19:39:11',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33316,'4000','121684427924','2023-05-18 19:39:11',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33317,'1110','121684427962','2023-05-18 19:39:34',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(33318,'5500','121684427962','2023-05-18 19:39:34',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33319,'1000','121684427962','2023-05-18 19:39:34',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33320,'4000','121684427962','2023-05-18 19:39:34',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(33321,'1110','121684427982','2023-05-18 19:40:35',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33322,'1110','121684427982','2023-05-18 19:40:35',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33323,'5500','121684427982','2023-05-18 19:40:35',340.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33324,'1000','121684427982','2023-05-18 19:40:35',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33325,'4000','121684427982','2023-05-18 19:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33326,'4000','121684427982','2023-05-18 19:40:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33327,'1110','121684520917','2023-05-19 21:29:42',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33328,'1110','121684520917','2023-05-19 21:29:42',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33329,'1110','121684520917','2023-05-19 21:29:42',NULL,1190.70,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33330,'5500','121684520917','2023-05-19 21:29:42',2135.22,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33331,'1000','121684520917','2023-05-19 21:29:42',3080.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33332,'4000','121684520917','2023-05-19 21:29:42',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33333,'4000','121684520917','2023-05-19 21:29:42',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33334,'4000','121684520917','2023-05-19 21:29:42',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33335,'1110','121684520989','2023-05-19 21:46:03',NULL,392.00,'','12','1','Inventory sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33336,'1110','121684520989','2023-05-19 21:46:03',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33337,'5500','121684520989','2023-05-19 21:46:03',430.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33338,'1000','121684520989','2023-05-19 21:46:03',650.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33339,'4000','121684520989','2023-05-19 21:46:03',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602051','','No',NULL,NULL,''),(33340,'4000','121684520989','2023-05-19 21:46:03',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33341,'1110','121684532026','2023-05-20 00:33:59',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33342,'5500','121684532026','2023-05-20 00:33:59',360.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33343,'1000','121684532026','2023-05-20 00:33:59',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33344,'4000','121684532026','2023-05-20 00:33:59',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33345,'1110','121684532044','2023-05-20 00:38:07',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33346,'1110','121684532044','2023-05-20 00:38:07',NULL,106.67,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(33347,'5500','121684532044','2023-05-20 00:38:07',279.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33348,'1000','121684532044','2023-05-20 00:38:07',410.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33349,'4000','121684532044','2023-05-20 00:38:07',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33350,'4000','121684532044','2023-05-20 00:38:07',NULL,160.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(33351,'1110','121684532293','2023-05-20 01:53:27',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33352,'1110','121684532293','2023-05-20 01:53:27',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33353,'5500','121684532293','2023-05-20 01:53:27',297.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33354,'1000','121684532293','2023-05-20 01:53:27',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33355,'4000','121684532293','2023-05-20 01:53:27',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33356,'4000','121684532293','2023-05-20 01:53:27',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33357,'1110','121684536813','2023-05-20 02:38:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33358,'1110','121684536813','2023-05-20 02:38:39',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33359,'1110','121684536813','2023-05-20 02:38:39',NULL,520.00,'','12','1','Inventory sold','1','','sales','6161101604871','','No',NULL,NULL,''),(33360,'1110','121684536813','2023-05-20 02:38:39',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33361,'1110','121684536813','2023-05-20 02:38:39',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33362,'5500','121684536813','2023-05-20 02:38:39',1152.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33363,'1000','121684536813','2023-05-20 02:38:39',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33364,'4000','121684536813','2023-05-20 02:38:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33365,'4000','121684536813','2023-05-20 02:38:39',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33366,'4000','121684536813','2023-05-20 02:38:39',NULL,950.00,'','12','1','Good sold','1','','sales','6161101604871','','No',NULL,NULL,''),(33367,'4000','121684536813','2023-05-20 02:38:39',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33368,'4000','121684536813','2023-05-20 02:38:39',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33369,'1110','121684539592','2023-05-20 03:00:59',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(33370,'1110','121684539592','2023-05-20 03:00:59',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(33371,'1110','121684539592','2023-05-20 03:00:59',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(33372,'1110','121684539592','2023-05-20 03:00:59',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33373,'1110','121684539592','2023-05-20 03:00:59',NULL,2560.00,'','12','1','Inventory sold','1','','sales','5011013100118','','No',NULL,NULL,''),(33374,'5500','121684539592','2023-05-20 03:00:59',2923.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33375,'1000','121684539592','2023-05-20 03:00:59',4280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33376,'4000','121684539592','2023-05-20 03:00:59',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(33377,'4000','121684539592','2023-05-20 03:00:59',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(33378,'4000','121684539592','2023-05-20 03:00:59',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(33379,'4000','121684539592','2023-05-20 03:00:59',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33380,'4000','121684539592','2023-05-20 03:00:59',NULL,3700.00,'','12','1','Good sold','1','','sales','5011013100118','','No',NULL,NULL,''),(33381,'1110','121684540981','2023-05-20 04:05:05',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33382,'5500','121684540981','2023-05-20 04:05:05',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33383,'1000','121684540981','2023-05-20 04:05:05',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33384,'4000','121684540981','2023-05-20 04:05:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33385,'1110','121684544711','2023-05-20 05:56:20',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33386,'1110','121684544711','2023-05-20 05:56:20',NULL,125.00,'','12','1','Inventory sold','1','','sales','40262144','','No',NULL,NULL,''),(33387,'5500','121684544711','2023-05-20 05:56:20',199.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33388,'1000','121684544711','2023-05-20 05:56:20',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33389,'4000','121684544711','2023-05-20 05:56:20',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33390,'4000','121684544711','2023-05-20 05:56:20',NULL,200.00,'','12','1','Good sold','1','','sales','40262144','','No',NULL,NULL,''),(33391,'1110','121684551393','2023-05-20 05:59:34',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33392,'5500','121684551393','2023-05-20 05:59:34',59.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33393,'1000','121684551393','2023-05-20 05:59:34',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33394,'4000','121684551393','2023-05-20 05:59:34',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33395,'1110','121684564380','2023-05-20 09:34:17',NULL,1587.60,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33396,'5500','121684564380','2023-05-20 09:34:17',1587.60,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33397,'1000','121684564380','2023-05-20 09:34:17',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33398,'4000','121684564380','2023-05-20 09:34:17',NULL,2000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33399,'1110','121684584882','2023-05-20 15:15:01',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(33400,'5500','121684584882','2023-05-20 15:15:01',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33401,'1000','121684584882','2023-05-20 15:15:01',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33402,'4000','121684584882','2023-05-20 15:15:01',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(33403,'1110','121684591363','2023-05-20 17:02:54',NULL,2246.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33404,'5500','121684591363','2023-05-20 17:02:54',2246.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33405,'1000','121684591363','2023-05-20 17:02:54',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33406,'4000','121684591363','2023-05-20 17:02:54',NULL,3250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33407,'1110','121684601223','2023-05-20 19:47:17',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33408,'5500','121684601223','2023-05-20 19:47:17',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33409,'1000','121684601223','2023-05-20 19:47:17',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33410,'4000','121684601223','2023-05-20 19:47:17',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33411,'1110','121684601243','2023-05-20 20:30:08',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33412,'5500','121684601243','2023-05-20 20:30:08',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33413,'1000','121684601243','2023-05-20 20:30:08',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33414,'4000','121684601243','2023-05-20 20:30:08',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33415,'1110','121684603814','2023-05-20 21:46:58',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33416,'1110','121684603814','2023-05-20 21:46:58',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33417,'5500','121684603814','2023-05-20 21:46:58',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33418,'1000','121684603814','2023-05-20 21:46:58',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33419,'4000','121684603814','2023-05-20 21:46:58',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33420,'4000','121684603814','2023-05-20 21:46:58',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33421,'1110','121684608424','2023-05-20 21:49:31',NULL,544.00,'','12','1','Inventory sold','1','','sales','6161101600941','','No',NULL,NULL,''),(33422,'1110','121684608424','2023-05-20 21:49:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(33423,'5500','121684608424','2023-05-20 21:49:31',597.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33424,'1000','121684608424','2023-05-20 21:49:31',830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33425,'4000','121684608424','2023-05-20 21:49:31',NULL,750.00,'','12','1','Good sold','1','','sales','6161101600941','','No',NULL,NULL,''),(33426,'4000','121684608424','2023-05-20 21:49:31',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(33427,'1110','121684608676','2023-05-20 22:49:14',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33428,'5500','121684608676','2023-05-20 22:49:14',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33429,'1000','121684608676','2023-05-20 22:49:14',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33430,'4000','121684608676','2023-05-20 22:49:14',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33431,'1110','121684612162','2023-05-20 23:09:10',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33432,'1110','121684612162','2023-05-20 23:09:10',NULL,2600.00,'','12','1','Inventory sold','1','','sales','082184090473','','No',NULL,NULL,''),(33433,'1110','121684612162','2023-05-20 23:09:10',NULL,306.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33434,'1110','121684612162','2023-05-20 23:09:10',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33435,'5500','121684612162','2023-05-20 23:09:10',3085.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33436,'1000','121684612162','2023-05-20 23:09:10',4850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33437,'4000','121684612162','2023-05-20 23:09:10',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33438,'4000','121684612162','2023-05-20 23:09:10',NULL,4000.00,'','12','1','Good sold','1','','sales','082184090473','','No',NULL,NULL,''),(33439,'4000','121684612162','2023-05-20 23:09:10',NULL,500.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33440,'4000','121684612162','2023-05-20 23:09:10',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33441,'1110','121684613905','2023-05-20 23:34:26',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33442,'1110','121684613905','2023-05-20 23:34:26',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33443,'5500','121684613905','2023-05-20 23:34:26',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33444,'1000','121684613905','2023-05-20 23:34:26',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33445,'4000','121684613905','2023-05-20 23:34:26',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33446,'4000','121684613905','2023-05-20 23:34:26',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33447,'1110','121684614872','2023-05-20 23:49:48',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(33448,'5500','121684614872','2023-05-20 23:49:48',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33449,'1000','121684614872','2023-05-20 23:49:48',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33450,'4000','121684614872','2023-05-20 23:49:48',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(33451,'1110','121684615793','2023-05-20 23:57:52',NULL,1142.25,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33452,'1110','121684615793','2023-05-20 23:57:52',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33453,'1110','121684615793','2023-05-20 23:57:52',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33454,'5500','121684615793','2023-05-20 23:57:52',2055.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33455,'1000','121684615793','2023-05-20 23:57:52',2850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33456,'4000','121684615793','2023-05-20 23:57:52',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33457,'4000','121684615793','2023-05-20 23:57:52',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33458,'4000','121684615793','2023-05-20 23:57:52',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33459,'1110','121684616278','2023-05-21 00:04:03',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(33460,'1110','121684616278','2023-05-21 00:04:03',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33461,'1110','121684616278','2023-05-21 00:04:03',NULL,76.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33462,'1110','121684616278','2023-05-21 00:04:03',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33463,'5500','121684616278','2023-05-21 00:04:03',2409.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33464,'1000','121684616278','2023-05-21 00:04:03',3470.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33465,'4000','121684616278','2023-05-21 00:04:03',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(33466,'4000','121684616278','2023-05-21 00:04:03',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33467,'4000','121684616278','2023-05-21 00:04:03',NULL,200.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33468,'4000','121684616278','2023-05-21 00:04:03',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33469,'1110','121684616773','2023-05-21 00:25:29',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(33470,'1110','121684616773','2023-05-21 00:25:29',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33471,'1110','121684616773','2023-05-21 00:25:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33472,'1110','121684616773','2023-05-21 00:25:29',NULL,23.00,'','12','1','Inventory sold','1','','sales','87303322','','No',NULL,NULL,''),(33473,'5500','121684616773','2023-05-21 00:25:29',434.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33474,'1000','121684616773','2023-05-21 00:25:29',720.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33475,'4000','121684616773','2023-05-21 00:25:29',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(33476,'4000','121684616773','2023-05-21 00:25:29',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33477,'4000','121684616773','2023-05-21 00:25:29',NULL,300.00,'','12','1','Good sold','1','','sales','8712000900045','','No',NULL,NULL,''),(33478,'4000','121684616773','2023-05-21 00:25:29',NULL,80.00,'','12','1','Good sold','1','','sales','87303322','','No',NULL,NULL,''),(33479,'1110','121684617983','2023-05-21 00:32:29',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33480,'5500','121684617983','2023-05-21 00:32:29',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33481,'1000','121684617983','2023-05-21 00:32:29',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33482,'4000','121684617983','2023-05-21 00:32:29',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33483,'1110','121684618354','2023-05-21 00:50:38',NULL,1350.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(33484,'5500','121684618354','2023-05-21 00:50:38',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33485,'1000','121684618354','2023-05-21 00:50:38',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33486,'4000','121684618354','2023-05-21 00:50:38',NULL,1900.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(33487,'1110','121684619511','2023-05-21 01:03:13',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33488,'1110','121684619511','2023-05-21 01:03:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33489,'5500','121684619511','2023-05-21 01:03:13',586.65,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33490,'1000','121684619511','2023-05-21 01:03:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33491,'4000','121684619511','2023-05-21 01:03:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33492,'4000','121684619511','2023-05-21 01:03:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33493,'1110','121684620199','2023-05-21 01:12:21',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33494,'5500','121684620199','2023-05-21 01:12:21',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33495,'1000','121684620199','2023-05-21 01:12:21',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33496,'4000','121684620199','2023-05-21 01:12:21',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33497,'1110','121684620747','2023-05-21 01:32:30',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33498,'5500','121684620747','2023-05-21 01:32:30',363.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33499,'1000','121684620747','2023-05-21 01:32:30',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33500,'4000','121684620747','2023-05-21 01:32:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33501,'1110','121684621955','2023-05-21 01:34:25',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33502,'1110','121684621955','2023-05-21 01:34:25',NULL,74.16,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33503,'5500','121684621955','2023-05-21 01:34:25',650.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33504,'1000','121684621955','2023-05-21 01:34:25',990.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33505,'4000','121684621955','2023-05-21 01:34:25',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33506,'4000','121684621955','2023-05-21 01:34:25',NULL,140.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33507,'1110','121684622106','2023-05-21 02:25:06',NULL,384.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(33508,'5500','121684622106','2023-05-21 02:25:06',384.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33509,'1000','121684622106','2023-05-21 02:25:06',540.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33510,'4000','121684622106','2023-05-21 02:25:06',NULL,540.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(33511,'1110','121684625113','2023-05-21 02:44:06',NULL,114.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33512,'1110','121684625113','2023-05-21 02:44:06',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33513,'5500','121684625113','2023-05-21 02:44:06',460.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33514,'1000','121684625113','2023-05-21 02:44:06',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33515,'4000','121684625113','2023-05-21 02:44:06',NULL,300.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33516,'4000','121684625113','2023-05-21 02:44:06',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33517,'1110','121684626314','2023-05-21 02:55:30',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33518,'1110','121684626314','2023-05-21 02:55:30',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33519,'5500','121684626314','2023-05-21 02:55:30',562.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33520,'1000','121684626314','2023-05-21 02:55:30',770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33521,'4000','121684626314','2023-05-21 02:55:30',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33522,'4000','121684626314','2023-05-21 02:55:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33523,'1110','121684636890','2023-05-21 05:41:44',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33524,'5500','121684636890','2023-05-21 05:41:44',761.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33525,'1000','121684636890','2023-05-21 05:41:44',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33526,'4000','121684636890','2023-05-21 05:41:44',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33527,'1110','121684636913','2023-05-21 05:53:37',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33528,'1110','121684636913','2023-05-21 05:53:37',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33529,'5500','121684636913','2023-05-21 05:53:37',742.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33530,'1000','121684636913','2023-05-21 05:53:37',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33531,'4000','121684636913','2023-05-21 05:53:37',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33532,'4000','121684636913','2023-05-21 05:53:37',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33533,'1110','121684685429','2023-05-21 19:12:25',NULL,1037.00,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33534,'1110','121684685429','2023-05-21 19:12:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(33535,'5500','121684685429','2023-05-21 19:12:25',1229.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33536,'1000','121684685429','2023-05-21 19:12:25',1770.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33537,'4000','121684685429','2023-05-21 19:12:25',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33538,'4000','121684685429','2023-05-21 19:12:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(33539,'1110','121684685557','2023-05-21 19:13:15',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33540,'1110','121684685557','2023-05-21 19:13:15',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000022752','','No',NULL,NULL,''),(33541,'5500','121684685557','2023-05-21 19:13:15',340.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33542,'1000','121684685557','2023-05-21 19:13:15',520.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33543,'4000','121684685557','2023-05-21 19:13:15',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33544,'4000','121684685557','2023-05-21 19:13:15',NULL,250.00,'','12','1','Good sold','1','','sales','5449000022752','','No',NULL,NULL,''),(33545,'1110','121684694185','2023-05-21 21:38:09',NULL,1270.00,'','12','1','Inventory sold','1','','sales','5010677025003','','No',NULL,NULL,''),(33546,'5500','121684694185','2023-05-21 21:38:09',1270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33547,'1000','121684694185','2023-05-21 21:38:09',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33548,'4000','121684694185','2023-05-21 21:38:09',NULL,1750.00,'','12','1','Good sold','1','','sales','5010677025003','','No',NULL,NULL,''),(33549,'1110','121684694295','2023-05-21 21:45:43',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33550,'1110','121684694295','2023-05-21 21:45:43',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(33551,'1110','121684694295','2023-05-21 21:45:43',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33552,'1110','121684694295','2023-05-21 21:45:43',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33553,'1110','121684694295','2023-05-21 21:45:43',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33554,'5500','121684694295','2023-05-21 21:45:43',2415.92,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33555,'1000','121684694295','2023-05-21 21:45:43',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33556,'4000','121684694295','2023-05-21 21:45:43',NULL,750.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33557,'4000','121684694295','2023-05-21 21:45:43',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(33558,'4000','121684694295','2023-05-21 21:45:43',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33559,'4000','121684694295','2023-05-21 21:45:43',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33560,'4000','121684694295','2023-05-21 21:45:43',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33561,'1110','121684703528','2023-05-22 00:12:23',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33562,'5500','121684703528','2023-05-22 00:12:23',793.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33563,'1000','121684703528','2023-05-22 00:12:23',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33564,'4000','121684703528','2023-05-22 00:12:23',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33565,'1110','121684703550','2023-05-22 00:21:28',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33566,'5500','121684703550','2023-05-22 00:21:28',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33567,'1000','121684703550','2023-05-22 00:21:28',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33568,'4000','121684703550','2023-05-22 00:21:28',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33569,'1110','121684728994','2023-05-22 07:17:03',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33570,'1110','121684728994','2023-05-22 07:17:03',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33571,'5500','121684728994','2023-05-22 07:17:03',679.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33572,'1000','121684728994','2023-05-22 07:17:03',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33573,'4000','121684728994','2023-05-22 07:17:03',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33574,'4000','121684728994','2023-05-22 07:17:03',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(33575,'1110','121684841132','2023-05-23 14:26:00',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33576,'5500','121684841132','2023-05-23 14:26:00',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33577,'1000','121684841132','2023-05-23 14:26:00',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33578,'4000','121684841132','2023-05-23 14:26:00',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33579,'1110','121684853382','2023-05-23 17:50:25',NULL,133.74,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(33580,'5500','121684853382','2023-05-23 17:50:25',133.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33581,'1000','121684853382','2023-05-23 17:50:25',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33582,'4000','121684853382','2023-05-23 17:50:25',NULL,300.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(33583,'1110','121684861475','2023-05-23 20:05:08',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33584,'1110','121684861475','2023-05-23 20:05:08',NULL,130.00,'','12','1','Inventory sold','1','','sales','716165177364','','No',NULL,NULL,''),(33585,'5500','121684861475','2023-05-23 20:05:08',891.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33586,'1000','121684861475','2023-05-23 20:05:08',1250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33587,'4000','121684861475','2023-05-23 20:05:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33588,'4000','121684861475','2023-05-23 20:05:08',NULL,250.00,'','12','1','Good sold','1','','sales','716165177364','','No',NULL,NULL,''),(33589,'1110','121684909818','2023-05-24 11:24:28',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33590,'1110','121684909818','2023-05-24 11:24:28',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(33591,'1110','121684909818','2023-05-24 11:24:28',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33592,'5500','121684909818','2023-05-24 11:24:28',311.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33593,'1000','121684909818','2023-05-24 11:24:28',420.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33594,'4000','121684909818','2023-05-24 11:24:28',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33595,'4000','121684909818','2023-05-24 11:24:28',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(33596,'4000','121684909818','2023-05-24 11:24:28',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33597,'1110','121684924749','2023-05-24 13:39:39',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33598,'5500','121684924749','2023-05-24 13:39:39',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33599,'1000','121684924749','2023-05-24 13:39:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33600,'4000','121684924749','2023-05-24 13:39:39',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33601,'1110','121684933093','2023-05-24 16:12:47',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33602,'5500','121684933093','2023-05-24 16:12:47',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33603,'1000','121684933093','2023-05-24 16:12:47',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33604,'4000','121684933093','2023-05-24 16:12:47',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33605,'1110','121684933974','2023-05-24 17:47:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33606,'5500','121684933974','2023-05-24 17:47:00',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33607,'1000','121684933974','2023-05-24 17:47:00',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33608,'4000','121684933974','2023-05-24 17:47:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33609,'1110','121684939626','2023-05-24 18:23:32',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33610,'1110','121684939626','2023-05-24 18:23:32',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33611,'5500','121684939626','2023-05-24 18:23:32',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33612,'1000','121684939626','2023-05-24 18:23:32',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33613,'4000','121684939626','2023-05-24 18:23:32',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33614,'4000','121684939626','2023-05-24 18:23:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(33615,'1110','121684941817','2023-05-24 18:23:48',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33616,'5500','121684941817','2023-05-24 18:23:48',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33617,'1000','121684941817','2023-05-24 18:23:48',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33618,'4000','121684941817','2023-05-24 18:23:48',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33619,'1110','121684941832','2023-05-24 19:29:37',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33620,'5500','121684941832','2023-05-24 19:29:37',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33621,'1000','121684941832','2023-05-24 19:29:37',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33622,'4000','121684941832','2023-05-24 19:29:37',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33623,'1110','121684945784','2023-05-24 19:36:47',NULL,360.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33624,'1110','121684945784','2023-05-24 19:36:47',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33625,'5500','121684945784','2023-05-24 19:36:47',740.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33626,'1000','121684945784','2023-05-24 19:36:47',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33627,'4000','121684945784','2023-05-24 19:36:47',NULL,500.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(33628,'4000','121684945784','2023-05-24 19:36:47',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33629,'1110','121684946213','2023-05-24 22:12:38',NULL,1200.00,'','12','1','Inventory sold','1','','sales','7804320303178','','No',NULL,NULL,''),(33630,'5500','121684946213','2023-05-24 22:12:38',1200.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33631,'1000','121684946213','2023-05-24 22:12:38',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33632,'4000','121684946213','2023-05-24 22:12:38',NULL,2000.00,'','12','1','Good sold','1','','sales','7804320303178','','No',NULL,NULL,''),(33633,'1110','121684971081','2023-05-25 02:31:39',NULL,1.00,'','12','1','Inventory sold','1','','sales','8000530010304','','No',NULL,NULL,''),(33634,'1110','121684971081','2023-05-25 02:31:39',NULL,1750.00,'','12','1','Inventory sold','1','','sales','5010752000345','','No',NULL,NULL,''),(33635,'5500','121684971081','2023-05-25 02:31:39',1751.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33636,'1000','121684971081','2023-05-25 02:31:39',4100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33637,'4000','121684971081','2023-05-25 02:31:39',NULL,1600.00,'','12','1','Good sold','1','','sales','8000530010304','','No',NULL,NULL,''),(33638,'4000','121684971081','2023-05-25 02:31:39',NULL,2500.00,'','12','1','Good sold','1','','sales','5010752000345','','No',NULL,NULL,''),(33639,'1110','121685001924','2023-05-25 11:05:38',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33640,'5500','121685001924','2023-05-25 11:05:38',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33641,'1000','121685001924','2023-05-25 11:05:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33642,'4000','121685001924','2023-05-25 11:05:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33643,'1110','121685037195','2023-05-25 21:13:29',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33644,'1110','121685037195','2023-05-25 21:13:29',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33645,'1110','121685037195','2023-05-25 21:13:29',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33646,'1110','121685037195','2023-05-25 21:13:29',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33647,'1110','121685037195','2023-05-25 21:13:29',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33648,'1110','121685037195','2023-05-25 21:13:29',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33649,'5500','121685037195','2023-05-25 21:13:29',2207.99,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33650,'1000','121685037195','2023-05-25 21:13:29',3500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33651,'4000','121685037195','2023-05-25 21:13:29',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33652,'4000','121685037195','2023-05-25 21:13:29',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33653,'4000','121685037195','2023-05-25 21:13:29',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33654,'4000','121685037195','2023-05-25 21:13:29',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33655,'4000','121685037195','2023-05-25 21:13:29',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33656,'4000','121685037195','2023-05-25 21:13:29',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33657,'1110','121685048860','2023-05-26 00:24:34',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33658,'1110','121685048860','2023-05-26 00:24:34',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33659,'1110','121685048860','2023-05-26 00:24:34',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33660,'1110','121685048860','2023-05-26 00:24:34',NULL,149.16,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33661,'5500','121685048860','2023-05-26 00:24:34',910.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33662,'1000','121685048860','2023-05-26 00:24:34',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33663,'4000','121685048860','2023-05-26 00:24:34',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33664,'4000','121685048860','2023-05-26 00:24:34',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33665,'4000','121685048860','2023-05-26 00:24:34',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33666,'4000','121685048860','2023-05-26 00:24:34',NULL,300.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33667,'1110','121685049914','2023-05-26 01:23:00',NULL,388.00,'','12','1','Inventory sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33668,'1110','121685049914','2023-05-26 01:23:00',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33669,'5500','121685049914','2023-05-26 01:23:00',425.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33670,'1000','121685049914','2023-05-26 01:23:00',620.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33671,'4000','121685049914','2023-05-26 01:23:00',NULL,550.00,'','12','1','Good sold','1','','sales','6161101602181','','No',NULL,NULL,''),(33672,'4000','121685049914','2023-05-26 01:23:00',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33673,'1110','121685082506','2023-05-26 09:31:33',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33674,'5500','121685082506','2023-05-26 09:31:33',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33675,'1000','121685082506','2023-05-26 09:31:33',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33676,'4000','121685082506','2023-05-26 09:31:33',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33677,'1110','121685096593','2023-05-26 13:23:29',NULL,301.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(33678,'5500','121685096593','2023-05-26 13:23:29',301.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33679,'1000','121685096593','2023-05-26 13:23:29',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33680,'4000','121685096593','2023-05-26 13:23:29',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(33681,'1110','121685096616','2023-05-26 13:38:12',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33682,'1110','121685096616','2023-05-26 13:38:12',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33683,'5500','121685096616','2023-05-26 13:38:12',405.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33684,'1000','121685096616','2023-05-26 13:38:12',630.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33685,'4000','121685096616','2023-05-26 13:38:12',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33686,'4000','121685096616','2023-05-26 13:38:12',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(33687,'1110','121685116498','2023-05-26 20:30:33',NULL,2220.00,'','12','1','Inventory sold','1','','sales','5000291023462','','No',NULL,NULL,''),(33688,'1110','121685116498','2023-05-26 20:30:33',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33689,'5500','121685116498','2023-05-26 20:30:33',2257.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33690,'1000','121685116498','2023-05-26 20:30:33',3070.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33691,'4000','121685116498','2023-05-26 20:30:33',NULL,3000.00,'','12','1','Good sold','1','','sales','5000291023462','','No',NULL,NULL,''),(33692,'4000','121685116498','2023-05-26 20:30:33',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33693,'1110','121685122291','2023-05-26 20:32:02',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33694,'1110','121685122291','2023-05-26 20:32:02',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33695,'5500','121685122291','2023-05-26 20:32:02',1197.15,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33696,'1000','121685122291','2023-05-26 20:32:02',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33697,'4000','121685122291','2023-05-26 20:32:02',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33698,'4000','121685122291','2023-05-26 20:32:02',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33699,'1110','121685122331','2023-05-26 20:32:20',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33700,'5500','121685122331','2023-05-26 20:32:20',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33701,'1000','121685122331','2023-05-26 20:32:20',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33702,'4000','121685122331','2023-05-26 20:32:20',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33703,'1110','121685122369','2023-05-26 20:41:07',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33704,'5500','121685122369','2023-05-26 20:41:07',19.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33705,'1000','121685122369','2023-05-26 20:41:07',50.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33706,'4000','121685122369','2023-05-26 20:41:07',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33707,'1110','121685122872','2023-05-26 22:15:41',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33708,'1110','121685122872','2023-05-26 22:15:41',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33709,'5500','121685122872','2023-05-26 22:15:41',613.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33710,'1000','121685122872','2023-05-26 22:15:41',920.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33711,'4000','121685122872','2023-05-26 22:15:41',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33712,'4000','121685122872','2023-05-26 22:15:41',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33713,'1110','121685128829','2023-05-26 22:23:40',NULL,2450.00,'','12','1','Inventory sold','1','','sales','7501012916127','','No',NULL,NULL,''),(33714,'1110','121685128829','2023-05-26 22:23:40',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(33715,'5500','121685128829','2023-05-26 22:23:40',2503.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33716,'1000','121685128829','2023-05-26 22:23:40',3580.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33717,'4000','121685128829','2023-05-26 22:23:40',NULL,3500.00,'','12','1','Good sold','1','','sales','7501012916127','','No',NULL,NULL,''),(33718,'4000','121685128829','2023-05-26 22:23:40',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(33722,'1000','121685129142','2023-05-26 23:07:24',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33725,'1110','121685129142','2023-05-26 23:07:24',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33726,'1110','121685129142','2023-05-26 23:14:33',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33727,'5500','121685129142','2023-05-26 23:14:33',223.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33728,'1000','121685129142','2023-05-26 23:07:24',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33729,'4000','121685129142','2023-05-26 23:07:24',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33730,'4000','121685129142','2023-05-26 23:14:33',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33731,'1110','121685133785','2023-05-26 23:44:17',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33732,'1110','121685133785','2023-05-26 23:44:17',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33733,'1110','121685133785','2023-05-26 23:44:17',NULL,569.25,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33734,'5500','121685133785','2023-05-26 23:44:17',1187.07,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33735,'1000','121685133785','2023-05-26 23:44:17',1680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33736,'4000','121685133785','2023-05-26 23:44:17',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(33737,'4000','121685133785','2023-05-26 23:44:17',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33738,'4000','121685133785','2023-05-26 23:44:17',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33739,'1110','121685133865','2023-05-27 00:55:19',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33740,'1110','121685133865','2023-05-27 00:55:19',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33741,'5500','121685133865','2023-05-27 00:55:19',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33742,'1000','121685133865','2023-05-27 00:55:19',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33743,'4000','121685133865','2023-05-27 00:55:19',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33744,'4000','121685133865','2023-05-27 00:55:19',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33745,'1110','121685138124','2023-05-27 01:15:48',NULL,2700.00,'','12','1','Inventory sold','1','','sales','4058387004193','','No',NULL,NULL,''),(33746,'1110','121685138124','2023-05-27 01:15:48',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33747,'1110','121685138124','2023-05-27 01:15:48',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33748,'1110','121685138124','2023-05-27 01:15:48',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33749,'5500','121685138124','2023-05-27 01:15:48',3572.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33750,'1000','121685138124','2023-05-27 01:15:48',5050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33751,'4000','121685138124','2023-05-27 01:15:48',NULL,3800.00,'','12','1','Good sold','1','','sales','4058387004193','','No',NULL,NULL,''),(33752,'4000','121685138124','2023-05-27 01:15:48',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33753,'4000','121685138124','2023-05-27 01:15:48',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33754,'4000','121685138124','2023-05-27 01:15:48',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33755,'1110','121685140199','2023-05-27 02:19:24',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(33756,'1110','121685140199','2023-05-27 02:19:24',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33757,'1110','121685140199','2023-05-27 02:19:24',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33758,'5500','121685140199','2023-05-27 02:19:24',1729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33759,'1000','121685140199','2023-05-27 02:19:24',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33760,'4000','121685140199','2023-05-27 02:19:24',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(33761,'4000','121685140199','2023-05-27 02:19:24',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(33762,'4000','121685140199','2023-05-27 02:19:24',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33763,'1110','121685143173','2023-05-27 02:20:04',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33764,'1110','121685143173','2023-05-27 02:20:04',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33765,'1110','121685143173','2023-05-27 02:20:04',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(33766,'5500','121685143173','2023-05-27 02:20:04',724.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33767,'1000','121685143173','2023-05-27 02:20:04',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33768,'4000','121685143173','2023-05-27 02:20:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33769,'4000','121685143173','2023-05-27 02:20:04',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33770,'4000','121685143173','2023-05-27 02:20:04',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(33771,'1110','121685189651','2023-05-27 15:14:23',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(33772,'5500','121685189651','2023-05-27 15:14:23',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33773,'1000','121685189651','2023-05-27 15:14:23',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33774,'4000','121685189651','2023-05-27 15:14:23',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(33775,'1110','121685189670','2023-05-27 15:16:39',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33776,'5500','121685189670','2023-05-27 15:16:39',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33777,'1000','121685189670','2023-05-27 15:16:39',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33778,'4000','121685189670','2023-05-27 15:16:39',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33779,'1110','121685189805','2023-05-27 15:55:40',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33780,'5500','121685189805','2023-05-27 15:55:40',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33781,'1000','121685189805','2023-05-27 15:55:40',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33782,'4000','121685189805','2023-05-27 15:55:40',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33783,'1110','121685193082','2023-05-27 16:11:33',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33784,'5500','121685193082','2023-05-27 16:11:33',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33785,'1000','121685193082','2023-05-27 16:11:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33786,'4000','121685193082','2023-05-27 16:11:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(33787,'1110','121685193098','2023-05-27 16:32:53',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33788,'1110','121685193098','2023-05-27 16:32:53',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33789,'5500','121685193098','2023-05-27 16:32:53',166.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33790,'1000','121685193098','2023-05-27 16:32:53',300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33791,'4000','121685193098','2023-05-27 16:32:53',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33792,'4000','121685193098','2023-05-27 16:32:53',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33793,'1110','121685194377','2023-05-27 16:50:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33794,'5500','121685194377','2023-05-27 16:50:55',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33795,'1000','121685194377','2023-05-27 16:50:55',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33796,'4000','121685194377','2023-05-27 16:50:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33797,'1110','121685202085','2023-05-27 19:09:10',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33798,'5500','121685202085','2023-05-27 19:09:10',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33799,'1000','121685202085','2023-05-27 19:09:10',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33800,'4000','121685202085','2023-05-27 19:09:10',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33801,'1110','121685203771','2023-05-27 19:09:48',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33802,'5500','121685203771','2023-05-27 19:09:48',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33803,'1000','121685203771','2023-05-27 19:09:48',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33804,'4000','121685203771','2023-05-27 19:09:48',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(33805,'1110','121685203795','2023-05-27 20:11:17',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33806,'5500','121685203795','2023-05-27 20:11:17',172.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33807,'1000','121685203795','2023-05-27 20:11:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33808,'4000','121685203795','2023-05-27 20:11:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(33809,'1110','121685218085','2023-05-27 23:09:04',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(33810,'1110','121685218085','2023-05-27 23:09:04',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33811,'1110','121685218085','2023-05-27 23:09:04',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33812,'1110','121685218085','2023-05-27 23:09:04',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33813,'1110','121685218085','2023-05-27 23:09:04',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33814,'5500','121685218085','2023-05-27 23:09:04',2711.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33815,'1000','121685218085','2023-05-27 23:09:04',3750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33816,'4000','121685218085','2023-05-27 23:09:04',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(33817,'4000','121685218085','2023-05-27 23:09:04',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199010','','No',NULL,NULL,''),(33818,'4000','121685218085','2023-05-27 23:09:04',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(33819,'4000','121685218085','2023-05-27 23:09:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33820,'4000','121685218085','2023-05-27 23:09:04',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33821,'1110','121685218151','2023-05-28 01:04:51',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(33822,'1110','121685218151','2023-05-28 01:04:51',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33823,'1110','121685218151','2023-05-28 01:04:51',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33824,'1110','121685218151','2023-05-28 01:04:51',NULL,363.42,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33825,'1110','121685218151','2023-05-28 01:04:51',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33826,'1110','121685218151','2023-05-28 01:04:51',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33827,'1110','121685218151','2023-05-28 01:04:51',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33828,'1110','121685218151','2023-05-28 01:04:51',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5000267184210','','No',NULL,NULL,''),(33829,'5500','121685218151','2023-05-28 01:04:51',5224.19,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33830,'1000','121685218151','2023-05-28 01:04:51',7570.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33831,'4000','121685218151','2023-05-28 01:04:51',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(33832,'4000','121685218151','2023-05-28 01:04:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33833,'4000','121685218151','2023-05-28 01:04:51',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33834,'4000','121685218151','2023-05-28 01:04:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33835,'4000','121685218151','2023-05-28 01:04:51',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33836,'4000','121685218151','2023-05-28 01:04:51',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33837,'4000','121685218151','2023-05-28 01:04:51',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33838,'4000','121685218151','2023-05-28 01:04:51',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267184210','','No',NULL,NULL,''),(33839,'1110','121685225504','2023-05-28 02:18:20',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(33840,'1110','121685225504','2023-05-28 02:18:20',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33841,'5500','121685225504','2023-05-28 02:18:20',1980.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33842,'1000','121685225504','2023-05-28 02:18:20',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33843,'4000','121685225504','2023-05-28 02:18:20',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(33844,'4000','121685225504','2023-05-28 02:18:20',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33845,'1110','121685257938','2023-05-28 10:13:03',NULL,148.32,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33846,'1110','121685257938','2023-05-28 10:13:03',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(33847,'5500','121685257938','2023-05-28 10:13:03',2983.32,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33848,'1000','121685257938','2023-05-28 10:13:03',4280.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33849,'4000','121685257938','2023-05-28 10:13:03',NULL,280.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(33850,'4000','121685257938','2023-05-28 10:13:03',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(33851,'1110','121685277043','2023-05-28 15:30:53',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33852,'5500','121685277043','2023-05-28 15:30:53',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33853,'1000','121685277043','2023-05-28 15:30:53',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33854,'4000','121685277043','2023-05-28 15:30:53',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33855,'1110','121685277064','2023-05-28 15:31:36',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33856,'5500','121685277064','2023-05-28 15:31:36',337.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33857,'1000','121685277064','2023-05-28 15:31:36',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33858,'4000','121685277064','2023-05-28 15:31:36',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33859,'1110','121685278647','2023-05-28 15:58:29',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(33860,'1110','121685278647','2023-05-28 15:58:29',NULL,294.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(33861,'1110','121685278647','2023-05-28 15:58:29',NULL,2076.00,'','12','1','Inventory sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33862,'5500','121685278647','2023-05-28 15:58:29',2528.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33863,'1000','121685278647','2023-05-28 15:58:29',4050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33864,'4000','121685278647','2023-05-28 15:58:29',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(33865,'4000','121685278647','2023-05-28 15:58:29',NULL,500.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(33866,'4000','121685278647','2023-05-28 15:58:29',NULL,3300.00,'','12','1','Good sold','1','','sales','6008165007814','','No',NULL,NULL,''),(33867,'1110','121685287571','2023-05-28 18:42:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33868,'5500','121685287571','2023-05-28 18:42:14',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33869,'1000','121685287571','2023-05-28 18:42:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33870,'4000','121685287571','2023-05-28 18:42:14',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33871,'1110','121685288539','2023-05-28 19:15:00',NULL,3920.00,'','12','1','Inventory sold','1','','sales','5099873038758','','No',NULL,NULL,''),(33872,'1110','121685288539','2023-05-28 19:15:00',NULL,5760.00,'','12','1','Inventory sold','1','','sales','674545000841','','No',NULL,NULL,''),(33873,'1110','121685288539','2023-05-28 19:15:00',NULL,447.48,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33874,'5500','121685288539','2023-05-28 19:15:00',10127.48,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33875,'1000','121685288539','2023-05-28 19:15:00',17400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33876,'4000','121685288539','2023-05-28 19:15:00',NULL,8500.00,'','12','1','Good sold','1','','sales','5099873038758','','No',NULL,NULL,''),(33877,'4000','121685288539','2023-05-28 19:15:00',NULL,8000.00,'','12','1','Good sold','1','','sales','674545000841','','No',NULL,NULL,''),(33878,'4000','121685288539','2023-05-28 19:15:00',NULL,900.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(33879,'1110','121685291461','2023-05-28 19:49:34',NULL,954.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(33880,'5500','121685291461','2023-05-28 19:49:34',954.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33881,'1000','121685291461','2023-05-28 19:49:34',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33882,'4000','121685291461','2023-05-28 19:49:34',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(33883,'1110','121685300580','2023-05-28 22:04:04',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33884,'1110','121685300580','2023-05-28 22:04:04',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33885,'1110','121685300580','2023-05-28 22:04:04',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33886,'1110','121685300580','2023-05-28 22:04:04',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(33887,'5500','121685300580','2023-05-28 22:04:04',774.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33888,'1000','121685300580','2023-05-28 22:04:04',1170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33889,'4000','121685300580','2023-05-28 22:04:04',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33890,'4000','121685300580','2023-05-28 22:04:04',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33891,'4000','121685300580','2023-05-28 22:04:04',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33892,'4000','121685300580','2023-05-28 22:04:04',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(33893,'1110','121685302826','2023-05-28 23:02:31',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33894,'1110','121685302826','2023-05-28 23:02:31',NULL,364.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33895,'1110','121685302826','2023-05-28 23:02:31',NULL,19.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33896,'5500','121685302826','2023-05-28 23:02:31',572.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33897,'1000','121685302826','2023-05-28 23:02:31',840.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33898,'4000','121685302826','2023-05-28 23:02:31',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33899,'4000','121685302826','2023-05-28 23:02:31',NULL,540.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33900,'4000','121685302826','2023-05-28 23:02:31',NULL,50.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(33901,'1110','121685461208','2023-05-30 20:16:14',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33902,'5500','121685461208','2023-05-30 20:16:14',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33903,'1000','121685461208','2023-05-30 20:16:14',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33904,'4000','121685461208','2023-05-30 20:16:14',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33905,'1110','121685467000','2023-05-30 21:13:31',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33906,'1110','121685467000','2023-05-30 21:13:31',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(33907,'1110','121685467000','2023-05-30 21:13:31',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33908,'5500','121685467000','2023-05-30 21:13:31',624.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33909,'1000','121685467000','2023-05-30 21:13:31',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33910,'4000','121685467000','2023-05-30 21:13:31',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33911,'4000','121685467000','2023-05-30 21:13:31',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(33912,'4000','121685467000','2023-05-30 21:13:31',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(33913,'1110','121685470416','2023-05-30 21:52:11',NULL,855.00,'','12','1','Inventory sold','1','','sales','50196111','','No',NULL,NULL,''),(33914,'1110','121685470416','2023-05-30 21:52:11',NULL,793.80,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33915,'5500','121685470416','2023-05-30 21:52:11',1648.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33916,'1000','121685470416','2023-05-30 21:52:11',2500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33917,'4000','121685470416','2023-05-30 21:52:11',NULL,1500.00,'','12','1','Good sold','1','','sales','50196111','','No',NULL,NULL,''),(33918,'4000','121685470416','2023-05-30 21:52:11',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(33919,'1110','121685473719','2023-05-30 22:23:55',NULL,380.00,'','12','1','Inventory sold','1','','sales','8906125990016','','No',NULL,NULL,''),(33920,'1110','121685473719','2023-05-30 22:23:55',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33921,'5500','121685473719','2023-05-30 22:23:55',421.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33922,'1000','121685473719','2023-05-30 22:23:55',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33923,'4000','121685473719','2023-05-30 22:23:55',NULL,600.00,'','12','1','Good sold','1','','sales','8906125990016','','No',NULL,NULL,''),(33924,'4000','121685473719','2023-05-30 22:23:55',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33925,'1110','121685474691','2023-05-30 23:05:59',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33926,'5500','121685474691','2023-05-30 23:05:59',41.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33927,'1000','121685474691','2023-05-30 23:05:59',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33928,'4000','121685474691','2023-05-30 23:05:59',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(33929,'1110','121685477170','2023-05-31 00:17:41',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33930,'1110','121685477170','2023-05-31 00:17:41',NULL,53.33,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(33931,'5500','121685477170','2023-05-31 00:17:41',1178.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33932,'1000','121685477170','2023-05-31 00:17:41',1830.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33933,'4000','121685477170','2023-05-31 00:17:41',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(33934,'4000','121685477170','2023-05-31 00:17:41',NULL,80.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(33935,'1110','121685481583','2023-05-31 00:46:13',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(33936,'5500','121685481583','2023-05-31 00:46:13',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33937,'1000','121685481583','2023-05-31 00:46:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33938,'4000','121685481583','2023-05-31 00:46:13',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(33939,'1110','121685494756','2023-05-31 03:59:30',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33940,'5500','121685494756','2023-05-31 03:59:30',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33941,'1000','121685494756','2023-05-31 03:59:30',80.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33942,'4000','121685494756','2023-05-31 03:59:30',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(33943,'1110','121685509690','2023-05-31 08:08:48',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33944,'5500','121685509690','2023-05-31 08:08:48',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33945,'1000','121685509690','2023-05-31 08:08:48',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33946,'4000','121685509690','2023-05-31 08:08:48',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(33947,'1110','121685523127','2023-05-31 11:52:29',NULL,1350.00,'','12','1','Inventory sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33948,'5500','121685523127','2023-05-31 11:52:29',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33949,'1000','121685523127','2023-05-31 11:52:29',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33950,'4000','121685523127','2023-05-31 11:52:29',NULL,1900.00,'','12','1','Good sold','1','','sales','3263280124362','','No',NULL,NULL,''),(33951,'1110','121685548464','2023-05-31 18:56:58',NULL,729.00,'','12','1','Inventory sold','1','','sales','6001496301705','','No',NULL,NULL,''),(33952,'5500','121685548464','2023-05-31 18:56:58',729.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33953,'1000','121685548464','2023-05-31 18:56:58',1350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33954,'4000','121685548464','2023-05-31 18:56:58',NULL,1350.00,'','12','1','Good sold','1','','sales','6001496301705','','No',NULL,NULL,''),(33955,'1110','121685551023','2023-05-31 19:37:16',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(33956,'5500','121685551023','2023-05-31 19:37:16',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33957,'1000','121685551023','2023-05-31 19:37:16',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33958,'4000','121685551023','2023-05-31 19:37:16',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(33959,'1110','121685559489','2023-05-31 21:59:08',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(33960,'5500','121685559489','2023-05-31 21:59:08',700.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33961,'1000','121685559489','2023-05-31 21:59:08',1400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33962,'4000','121685559489','2023-05-31 21:59:08',NULL,1400.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(33963,'1110','121685559607','2023-05-31 22:15:17',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(33964,'5500','121685559607','2023-05-31 22:15:17',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33965,'1000','121685559607','2023-05-31 22:15:17',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33966,'4000','121685559607','2023-05-31 22:15:17',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(33967,'1110','121685560596','2023-05-31 22:18:56',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33968,'1110','121685560596','2023-05-31 22:18:56',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(33969,'1110','121685560596','2023-05-31 22:18:56',NULL,337.00,'','12','1','Inventory sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33970,'5500','121685560596','2023-05-31 22:18:56',1442.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33971,'1000','121685560596','2023-05-31 22:18:56',2050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33972,'4000','121685560596','2023-05-31 22:18:56',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33973,'4000','121685560596','2023-05-31 22:18:56',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(33974,'4000','121685560596','2023-05-31 22:18:56',NULL,500.00,'','12','1','Good sold','1','','sales','6008165007982','','No',NULL,NULL,''),(33975,'1110','121685560783','2023-05-31 22:22:30',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33976,'5500','121685560783','2023-05-31 22:22:30',345.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33977,'1000','121685560783','2023-05-31 22:22:30',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33978,'4000','121685560783','2023-05-31 22:22:30',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(33979,'1110','121685560957','2023-05-31 22:35:38',NULL,726.83,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33980,'1110','121685560957','2023-05-31 22:35:38',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33981,'5500','121685560957','2023-05-31 22:35:38',1107.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33982,'1000','121685560957','2023-05-31 22:35:38',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33983,'4000','121685560957','2023-05-31 22:35:38',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33984,'4000','121685560957','2023-05-31 22:35:38',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(33985,'1110','121685561936','2023-05-31 23:20:15',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33986,'1110','121685561936','2023-05-31 23:20:15',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33987,'5500','121685561936','2023-05-31 23:20:15',332.16,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33988,'1000','121685561936','2023-05-31 23:20:15',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33989,'4000','121685561936','2023-05-31 23:20:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(33990,'4000','121685561936','2023-05-31 23:20:15',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(33991,'1110','121685564421','2023-05-31 23:43:17',NULL,379.50,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33992,'5500','121685564421','2023-05-31 23:43:17',379.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33993,'1000','121685564421','2023-05-31 23:43:17',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33994,'4000','121685564421','2023-05-31 23:43:17',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(33995,'1110','121685566648','2023-05-31 23:58:19',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33996,'5500','121685566648','2023-05-31 23:58:19',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(33997,'1000','121685566648','2023-05-31 23:58:19',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(33998,'4000','121685566648','2023-05-31 23:58:19',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(33999,'1110','121685566813','2023-06-01 00:13:16',NULL,18500.00,'','12','1','Inventory sold','1','','sales','3024480004522','','No',NULL,NULL,''),(34000,'1110','121685566813','2023-06-01 00:13:16',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34001,'5500','121685566813','2023-06-01 00:13:16',18603.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34002,'1000','121685566813','2023-06-01 00:13:16',25150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34003,'4000','121685566813','2023-06-01 00:13:16',NULL,25000.00,'','12','1','Good sold','1','','sales','3024480004522','','No',NULL,NULL,''),(34004,'4000','121685566813','2023-06-01 00:13:16',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34005,'1110','121685567788','2023-06-01 00:16:38',NULL,1000.00,'','12','1','Inventory sold','1','','sales','5000267184210','','No',NULL,NULL,''),(34006,'5500','121685567788','2023-06-01 00:16:38',1000.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34007,'1000','121685567788','2023-06-01 00:16:38',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34008,'4000','121685567788','2023-06-01 00:16:38',NULL,1500.00,'','12','1','Good sold','1','','sales','5000267184210','','No',NULL,NULL,''),(34009,'1110','121685567802','2023-06-01 00:26:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34010,'5500','121685567802','2023-06-01 00:26:11',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34011,'1000','121685567802','2023-06-01 00:26:11',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34012,'4000','121685567802','2023-06-01 00:26:11',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34013,'1110','121685568376','2023-06-01 00:28:56',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(34014,'5500','121685568376','2023-06-01 00:28:56',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34015,'1000','121685568376','2023-06-01 00:28:56',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34016,'4000','121685568376','2023-06-01 00:28:56',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(34017,'1110','121685568540','2023-06-01 00:42:02',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34018,'5500','121685568540','2023-06-01 00:42:02',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34019,'1000','121685568540','2023-06-01 00:42:02',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34020,'4000','121685568540','2023-06-01 00:42:02',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34021,'1110','121685569328','2023-06-01 00:43:23',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(34022,'5500','121685569328','2023-06-01 00:43:23',2835.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34023,'1000','121685569328','2023-06-01 00:43:23',4000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34024,'4000','121685569328','2023-06-01 00:43:23',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(34025,'1110','121685569408','2023-06-01 00:45:42',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(34026,'5500','121685569408','2023-06-01 00:45:42',59.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34027,'1000','121685569408','2023-06-01 00:45:42',100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34028,'4000','121685569408','2023-06-01 00:45:42',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(34029,'1110','121685569549','2023-06-01 00:46:41',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34030,'5500','121685569549','2023-06-01 00:46:41',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34031,'1000','121685569549','2023-06-01 00:46:41',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34032,'4000','121685569549','2023-06-01 00:46:41',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34033,'1110','121685569607','2023-06-01 00:53:11',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34034,'5500','121685569607','2023-06-01 00:53:11',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34035,'1000','121685569607','2023-06-01 00:53:11',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34036,'4000','121685569607','2023-06-01 00:53:11',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34037,'1110','121685569998','2023-06-01 01:39:52',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34038,'5500','121685569998','2023-06-01 01:39:52',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34039,'1000','121685569998','2023-06-01 01:39:52',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34040,'4000','121685569998','2023-06-01 01:39:52',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34041,'1110','121685572800','2023-06-01 01:42:17',NULL,601.80,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34042,'5500','121685572800','2023-06-01 01:42:17',601.80,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34043,'1000','121685572800','2023-06-01 01:42:17',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34044,'4000','121685572800','2023-06-01 01:42:17',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34045,'1110','121685572990','2023-06-01 01:46:09',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34046,'5500','121685572990','2023-06-01 01:46:09',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34047,'1000','121685572990','2023-06-01 01:46:09',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34048,'4000','121685572990','2023-06-01 01:46:09',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34049,'1110','121685573174','2023-06-01 02:13:59',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34050,'5500','121685573174','2023-06-01 02:13:59',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34051,'1000','121685573174','2023-06-01 02:13:59',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34052,'4000','121685573174','2023-06-01 02:13:59',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34053,'1110','121685574845','2023-06-01 03:03:33',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34054,'1110','121685574845','2023-06-01 03:03:33',NULL,1350.00,'','12','1','Inventory sold','1','','sales','4058387000317','','No',NULL,NULL,''),(34055,'5500','121685574845','2023-06-01 03:03:33',1540.38,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34056,'1000','121685574845','2023-06-01 03:03:33',2150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34057,'4000','121685574845','2023-06-01 03:03:33',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34058,'4000','121685574845','2023-06-01 03:03:33',NULL,1900.00,'','12','1','Good sold','1','','sales','4058387000317','','No',NULL,NULL,''),(34059,'1110','121685578125','2023-06-01 03:20:03',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34060,'5500','121685578125','2023-06-01 03:20:03',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34061,'1000','121685578125','2023-06-01 03:20:03',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34062,'4000','121685578125','2023-06-01 03:20:03',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34063,'1110','121685578809','2023-06-01 04:08:08',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34064,'1110','121685578809','2023-06-01 04:08:08',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34065,'5500','121685578809','2023-06-01 04:08:08',1192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34066,'1000','121685578809','2023-06-01 04:08:08',1800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34067,'4000','121685578809','2023-06-01 04:08:08',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34068,'4000','121685578809','2023-06-01 04:08:08',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34069,'1110','121685581699','2023-06-01 04:09:51',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34070,'5500','121685581699','2023-06-01 04:09:51',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34071,'1000','121685581699','2023-06-01 04:09:51',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34072,'4000','121685581699','2023-06-01 04:09:51',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34073,'1110','121685582115','2023-06-01 04:46:55',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34074,'1110','121685582115','2023-06-01 04:46:55',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34075,'1110','121685582115','2023-06-01 04:46:55',NULL,53.33,'','12','1','Inventory sold','1','','sales','5449000131836','','No',NULL,NULL,''),(34076,'5500','121685582115','2023-06-01 04:46:55',385.78,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34077,'1000','121685582115','2023-06-01 04:46:55',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34078,'4000','121685582115','2023-06-01 04:46:55',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34079,'4000','121685582115','2023-06-01 04:46:55',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34080,'4000','121685582115','2023-06-01 04:46:55',NULL,80.00,'','12','1','Good sold','1','','sales','5449000131836','','No',NULL,NULL,''),(34081,'1110','121685584028','2023-06-01 05:30:16',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(34082,'5500','121685584028','2023-06-01 05:30:16',53.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34083,'1000','121685584028','2023-06-01 05:30:16',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34084,'4000','121685584028','2023-06-01 05:30:16',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(34085,'1110','121685586625','2023-06-01 05:37:08',NULL,37.08,'','12','1','Inventory sold','1','','sales','6164001199331','','No',NULL,NULL,''),(34086,'5500','121685586625','2023-06-01 05:37:08',37.08,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34087,'1000','121685586625','2023-06-01 05:37:08',70.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34088,'4000','121685586625','2023-06-01 05:37:08',NULL,70.00,'','12','1','Good sold','1','','sales','6164001199331','','No',NULL,NULL,''),(34089,'1110','121685642120','2023-06-01 20:55:44',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34090,'1110','121685642120','2023-06-01 20:55:44',NULL,154.95,'','12','1','Inventory sold','1','','sales','6161101602600','','No',NULL,NULL,''),(34091,'5500','121685642120','2023-06-01 20:55:44',535.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34092,'1000','121685642120','2023-06-01 20:55:44',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34093,'4000','121685642120','2023-06-01 20:55:44',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34094,'4000','121685642120','2023-06-01 20:55:44',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602600','','No',NULL,NULL,''),(34095,'1110','121685642153','2023-06-01 21:34:13',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34096,'5500','121685642153','2023-06-01 21:34:13',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34097,'1000','121685642153','2023-06-01 21:34:13',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34098,'4000','121685642153','2023-06-01 21:34:13',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34099,'1110','121685644459','2023-06-01 21:47:24',NULL,53.33,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(34100,'1110','121685644459','2023-06-01 21:47:24',NULL,59.67,'','12','1','Inventory sold','1','','sales','90490224','','No',NULL,NULL,''),(34101,'5500','121685644459','2023-06-01 21:47:24',113.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34102,'1000','121685644459','2023-06-01 21:47:24',170.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34103,'4000','121685644459','2023-06-01 21:47:24',NULL,70.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(34104,'4000','121685644459','2023-06-01 21:47:24',NULL,100.00,'','12','1','Good sold','1','','sales','90490224','','No',NULL,NULL,''),(34105,'1110','121685645249','2023-06-01 22:04:22',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(34106,'5500','121685645249','2023-06-01 22:04:22',181.71,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34107,'1000','121685645249','2023-06-01 22:04:22',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34108,'4000','121685645249','2023-06-01 22:04:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(34109,'1110','121685646270','2023-06-01 22:11:47',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34110,'1110','121685646270','2023-06-01 22:11:47',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34111,'5500','121685646270','2023-06-01 22:11:47',232.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34112,'1000','121685646270','2023-06-01 22:11:47',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34113,'4000','121685646270','2023-06-01 22:11:47',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34114,'4000','121685646270','2023-06-01 22:11:47',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34115,'1110','121685650985','2023-06-01 23:25:10',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34116,'1110','121685650985','2023-06-01 23:25:10',NULL,59.67,'','12','1','Inventory sold','1','','sales','5449000188342','','No',NULL,NULL,''),(34117,'1110','121685650985','2023-06-01 23:25:10',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34118,'5500','121685650985','2023-06-01 23:25:10',1259.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34119,'1000','121685650985','2023-06-01 23:25:10',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34120,'4000','121685650985','2023-06-01 23:25:10',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34121,'4000','121685650985','2023-06-01 23:25:10',NULL,100.00,'','12','1','Good sold','1','','sales','5449000188342','','No',NULL,NULL,''),(34122,'4000','121685650985','2023-06-01 23:25:10',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34123,'1110','121685651175','2023-06-02 00:34:48',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(34124,'5500','121685651175','2023-06-02 00:34:48',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34125,'1000','121685651175','2023-06-02 00:34:48',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34126,'4000','121685651175','2023-06-02 00:34:48',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(34127,'1110','121685658608','2023-06-02 01:30:32',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34128,'5500','121685658608','2023-06-02 01:30:32',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34129,'1000','121685658608','2023-06-02 01:30:32',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34130,'4000','121685658608','2023-06-02 01:30:32',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34131,'1110','121685658636','2023-06-02 02:39:52',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34132,'5500','121685658636','2023-06-02 02:39:52',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34133,'1000','121685658636','2023-06-02 02:39:52',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34134,'4000','121685658636','2023-06-02 02:39:52',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34135,'1110','121685680521','2023-06-02 07:35:48',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34136,'1110','121685680521','2023-06-02 07:35:48',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34137,'5500','121685680521','2023-06-02 07:35:48',650.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34138,'1000','121685680521','2023-06-02 07:35:48',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34139,'4000','121685680521','2023-06-02 07:35:48',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34140,'4000','121685680521','2023-06-02 07:35:48',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34141,'1110','121685680557','2023-06-02 08:30:17',NULL,443.00,'','12','1','Inventory sold','1','','sales','50196166','','No',NULL,NULL,''),(34142,'5500','121685680557','2023-06-02 08:30:17',443.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34143,'1000','121685680557','2023-06-02 08:30:17',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34144,'4000','121685680557','2023-06-02 08:30:17',NULL,750.00,'','12','1','Good sold','1','','sales','50196166','','No',NULL,NULL,''),(34145,'1110','121685729332','2023-06-02 21:10:13',NULL,761.50,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34146,'1110','121685729332','2023-06-02 21:10:13',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34147,'1110','121685729332','2023-06-02 21:10:13',NULL,300.90,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34148,'5500','121685729332','2023-06-02 21:10:13',1407.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34149,'1000','121685729332','2023-06-02 21:10:13',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34150,'4000','121685729332','2023-06-02 21:10:13',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34151,'4000','121685729332','2023-06-02 21:10:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34152,'4000','121685729332','2023-06-02 21:10:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34153,'1110','121685729423','2023-06-02 21:12:46',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34154,'1110','121685729423','2023-06-02 21:12:46',NULL,38.00,'','12','1','Inventory sold','1','','sales','6164001199034','','No',NULL,NULL,''),(34155,'5500','121685729423','2023-06-02 21:12:46',1163.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34156,'1000','121685729423','2023-06-02 21:12:46',1850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34157,'4000','121685729423','2023-06-02 21:12:46',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34158,'4000','121685729423','2023-06-02 21:12:46',NULL,100.00,'','12','1','Good sold','1','','sales','6164001199034','','No',NULL,NULL,''),(34159,'1110','121685729571','2023-06-02 21:28:36',NULL,181.71,'','12','1','Inventory sold','1','','sales','6161101604406','','No',NULL,NULL,''),(34160,'1110','121685729571','2023-06-02 21:28:36',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(34161,'5500','121685729571','2023-06-02 21:28:36',223.53,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34162,'1000','121685729571','2023-06-02 21:28:36',330.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34163,'4000','121685729571','2023-06-02 21:28:36',NULL,250.00,'','12','1','Good sold','1','','sales','6161101604406','','No',NULL,NULL,''),(34164,'4000','121685729571','2023-06-02 21:28:36',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(34165,'1110','121685730519','2023-06-02 21:32:03',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34166,'5500','121685730519','2023-06-02 21:32:03',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34167,'1000','121685730519','2023-06-02 21:32:03',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34168,'4000','121685730519','2023-06-02 21:32:03',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34169,'1110','121685730729','2023-06-02 22:04:17',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34170,'5500','121685730729','2023-06-02 22:04:17',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34171,'1000','121685730729','2023-06-02 22:04:17',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34172,'4000','121685730729','2023-06-02 22:04:17',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34173,'1110','121685733181','2023-06-02 22:13:21',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(34174,'1110','121685733181','2023-06-02 22:13:21',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34175,'5500','121685733181','2023-06-02 22:13:21',496.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34176,'1000','121685733181','2023-06-02 22:13:21',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34177,'4000','121685733181','2023-06-02 22:13:21',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(34178,'4000','121685733181','2023-06-02 22:13:21',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34179,'1110','121685733286','2023-06-02 22:29:24',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018193','','No',NULL,NULL,''),(34180,'5500','121685733286','2023-06-02 22:29:24',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34181,'1000','121685733286','2023-06-02 22:29:24',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34182,'4000','121685733286','2023-06-02 22:29:24',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018193','','No',NULL,NULL,''),(34183,'1110','121685734169','2023-06-02 22:41:33',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34184,'5500','121685734169','2023-06-02 22:41:33',345.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34185,'1000','121685734169','2023-06-02 22:41:33',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34186,'4000','121685734169','2023-06-02 22:41:33',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34187,'1110','121685734898','2023-06-02 22:42:18',NULL,345.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34188,'1110','121685734898','2023-06-02 22:42:18',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34189,'5500','121685734898','2023-06-02 22:42:18',726.25,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34190,'1000','121685734898','2023-06-02 22:42:18',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34191,'4000','121685734898','2023-06-02 22:42:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34192,'4000','121685734898','2023-06-02 22:42:18',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34193,'1110','121685735049','2023-06-02 23:33:21',NULL,223.74,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34194,'5500','121685735049','2023-06-02 23:33:21',223.74,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34195,'1000','121685735049','2023-06-02 23:33:21',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34196,'4000','121685735049','2023-06-02 23:33:21',NULL,450.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34197,'1110','121685738006','2023-06-03 00:03:59',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34198,'5500','121685738006','2023-06-03 00:03:59',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34199,'1000','121685738006','2023-06-03 00:03:59',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34200,'4000','121685738006','2023-06-03 00:03:59',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34201,'1110','121685739844','2023-06-03 00:05:30',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34202,'5500','121685739844','2023-06-03 00:05:30',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34203,'1000','121685739844','2023-06-03 00:05:30',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34204,'4000','121685739844','2023-06-03 00:05:30',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34205,'1110','121685739938','2023-06-03 01:11:56',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34206,'1110','121685739938','2023-06-03 01:11:56',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(34207,'5500','121685739938','2023-06-03 01:11:56',629.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34208,'1000','121685739938','2023-06-03 01:11:56',930.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34209,'4000','121685739938','2023-06-03 01:11:56',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34210,'4000','121685739938','2023-06-03 01:11:56',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(34211,'1110','121685744937','2023-06-03 01:29:12',NULL,270.00,'','12','1','Inventory sold','1','','sales','6008165018933','','No',NULL,NULL,''),(34212,'5500','121685744937','2023-06-03 01:29:12',270.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34213,'1000','121685744937','2023-06-03 01:29:12',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34214,'4000','121685744937','2023-06-03 01:29:12',NULL,400.00,'','12','1','Good sold','1','','sales','6008165018933','','No',NULL,NULL,''),(34215,'1110','121685744957','2023-06-03 01:35:26',NULL,150.45,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34216,'5500','121685744957','2023-06-03 01:35:26',150.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34217,'1000','121685744957','2023-06-03 01:35:26',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34218,'4000','121685744957','2023-06-03 01:35:26',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34219,'1110','121685745344','2023-06-03 02:00:57',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34220,'5500','121685745344','2023-06-03 02:00:57',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34221,'1000','121685745344','2023-06-03 02:00:57',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34222,'4000','121685745344','2023-06-03 02:00:57',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34223,'1110','121685746862','2023-06-03 03:05:13',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34224,'5500','121685746862','2023-06-03 03:05:13',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34225,'1000','121685746862','2023-06-03 03:05:13',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34226,'4000','121685746862','2023-06-03 03:05:13',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34227,'1110','121685750752','2023-06-03 03:12:14',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34228,'5500','121685750752','2023-06-03 03:12:14',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34229,'1000','121685750752','2023-06-03 03:12:14',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34230,'4000','121685750752','2023-06-03 03:12:14',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34231,'1110','121685751182','2023-06-03 03:17:13',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34232,'1110','121685751182','2023-06-03 03:17:13',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34233,'5500','121685751182','2023-06-03 03:17:13',535.42,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34234,'1000','121685751182','2023-06-03 03:17:13',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34235,'4000','121685751182','2023-06-03 03:17:13',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34236,'4000','121685751182','2023-06-03 03:17:13',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34237,'1110','121685751648','2023-06-03 04:06:20',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34238,'5500','121685751648','2023-06-03 04:06:20',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34239,'1000','121685751648','2023-06-03 04:06:20',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34240,'4000','121685751648','2023-06-03 04:06:20',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34241,'1110','121685812439','2023-06-03 20:14:19',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34242,'5500','121685812439','2023-06-03 20:14:19',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34243,'1000','121685812439','2023-06-03 20:14:19',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34244,'4000','121685812439','2023-06-03 20:14:19',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34245,'1110','121685812819','2023-06-03 20:21:00',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34246,'1110','121685812819','2023-06-03 20:21:00',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(34247,'5500','121685812819','2023-06-03 20:21:00',527.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34248,'1000','121685812819','2023-06-03 20:21:00',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34249,'4000','121685812819','2023-06-03 20:21:00',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34250,'4000','121685812819','2023-06-03 20:21:00',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(34251,'1110','121685814517','2023-06-03 20:49:37',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007074','','No',NULL,NULL,''),(34252,'5500','121685814517','2023-06-03 20:49:37',257.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34253,'1000','121685814517','2023-06-03 20:49:37',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34254,'4000','121685814517','2023-06-03 20:49:37',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007074','','No',NULL,NULL,''),(34255,'1110','121685814585','2023-06-03 22:03:36',NULL,268.00,'','12','1','Inventory sold','1','','sales','6161101602204','','No',NULL,NULL,''),(34256,'5500','121685814585','2023-06-03 22:03:36',268.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34257,'1000','121685814585','2023-06-03 22:03:36',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34258,'4000','121685814585','2023-06-03 22:03:36',NULL,450.00,'','12','1','Good sold','1','','sales','6161101602204','','No',NULL,NULL,''),(34259,'1110','121685819026','2023-06-03 22:53:10',NULL,451.35,'','12','1','Inventory sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34260,'5500','121685819026','2023-06-03 22:53:10',451.35,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34261,'1000','121685819026','2023-06-03 22:53:10',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34262,'4000','121685819026','2023-06-03 22:53:10',NULL,750.00,'','12','1','Good sold','1','','sales','6161101603324','','No',NULL,NULL,''),(34263,'1110','121685821999','2023-06-03 23:44:15',NULL,576.00,'','12','1','Inventory sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34264,'5500','121685821999','2023-06-03 23:44:15',576.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34265,'1000','121685821999','2023-06-03 23:44:15',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34266,'4000','121685821999','2023-06-03 23:44:15',NULL,850.00,'','12','1','Good sold','1','','sales','5010103930666','','No',NULL,NULL,''),(34267,'1110','121685825190','2023-06-04 00:16:24',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34268,'5500','121685825190','2023-06-04 00:16:24',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34269,'1000','121685825190','2023-06-04 00:16:24',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34270,'4000','121685825190','2023-06-04 00:16:24',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34271,'1110','121685826998','2023-06-04 00:20:12',NULL,346.00,'','12','1','Inventory sold','1','','sales','6008165007784','','No',NULL,NULL,''),(34272,'5500','121685826998','2023-06-04 00:20:12',346.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34273,'1000','121685826998','2023-06-04 00:20:12',550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34274,'4000','121685826998','2023-06-04 00:20:12',NULL,550.00,'','12','1','Good sold','1','','sales','6008165007784','','No',NULL,NULL,''),(34275,'1110','121685827262','2023-06-04 00:21:08',NULL,318.00,'','12','1','Inventory sold','1','','sales','6161100421387','','No',NULL,NULL,''),(34276,'5500','121685827262','2023-06-04 00:21:08',318.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34277,'1000','121685827262','2023-06-04 00:21:08',450.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34278,'4000','121685827262','2023-06-04 00:21:08',NULL,450.00,'','12','1','Good sold','1','','sales','6161100421387','','No',NULL,NULL,''),(34279,'1110','121685827586','2023-06-04 00:26:39',NULL,902.70,'','12','1','Inventory sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34280,'5500','121685827586','2023-06-04 00:26:39',902.70,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34281,'1000','121685827586','2023-06-04 00:26:39',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34282,'4000','121685827586','2023-06-04 00:26:39',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101604703','','No',NULL,NULL,''),(34283,'1110','121685827873','2023-06-04 00:31:34',NULL,710.00,'','12','1','Inventory sold','1','','sales','5000289933292','','No',NULL,NULL,''),(34284,'1110','121685827873','2023-06-04 00:31:34',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34285,'5500','121685827873','2023-06-04 00:31:34',902.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34286,'1000','121685827873','2023-06-04 00:31:34',1220.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34287,'4000','121685827873','2023-06-04 00:31:34',NULL,950.00,'','12','1','Good sold','1','','sales','5000289933292','','No',NULL,NULL,''),(34288,'4000','121685827873','2023-06-04 00:31:34',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34289,'1110','121685827950','2023-06-04 00:41:08',NULL,540.00,'','12','1','Inventory sold','1','','sales','6001108055187','','No',NULL,NULL,''),(34290,'1110','121685827950','2023-06-04 00:41:08',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(34291,'5500','121685827950','2023-06-04 00:41:08',687.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34292,'1000','121685827950','2023-06-04 00:41:08',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34293,'4000','121685827950','2023-06-04 00:41:08',NULL,750.00,'','12','1','Good sold','1','','sales','6001108055187','','No',NULL,NULL,''),(34294,'4000','121685827950','2023-06-04 00:41:08',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(34295,'1110','121685829132','2023-06-04 00:52:24',NULL,691.00,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34296,'5500','121685829132','2023-06-04 00:52:24',691.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34297,'1000','121685829132','2023-06-04 00:52:24',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34298,'4000','121685829132','2023-06-04 00:52:24',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34299,'1110','121685829150','2023-06-04 01:14:53',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34300,'1110','121685829150','2023-06-04 01:14:53',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34301,'5500','121685829150','2023-06-04 01:14:53',575.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34302,'1000','121685829150','2023-06-04 01:14:53',950.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34303,'4000','121685829150','2023-06-04 01:14:53',NULL,800.00,'','12','1','Good sold','1','','sales','6161101605465','','No',NULL,NULL,''),(34304,'4000','121685829150','2023-06-04 01:14:53',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34305,'1110','121685831277','2023-06-04 02:31:14',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34306,'5500','121685831277','2023-06-04 02:31:14',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34307,'1000','121685831277','2023-06-04 02:31:14',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34308,'4000','121685831277','2023-06-04 02:31:14',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34309,'1110','121685835080','2023-06-04 02:31:44',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34310,'1110','121685835080','2023-06-04 02:31:44',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(34311,'5500','121685835080','2023-06-04 02:31:44',471.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34312,'1000','121685835080','2023-06-04 02:31:44',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34313,'4000','121685835080','2023-06-04 02:31:44',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34314,'4000','121685835080','2023-06-04 02:31:44',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(34315,'1110','121685835740','2023-06-04 02:42:31',NULL,546.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34316,'5500','121685835740','2023-06-04 02:42:31',546.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34317,'1000','121685835740','2023-06-04 02:42:31',810.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34318,'4000','121685835740','2023-06-04 02:42:31',NULL,810.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34319,'1110','121685835759','2023-06-04 02:56:45',NULL,310.00,'','12','1','Inventory sold','1','','sales','6161100421615','','No',NULL,NULL,''),(34320,'5500','121685835759','2023-06-04 02:56:45',310.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34321,'1000','121685835759','2023-06-04 02:56:45',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34322,'4000','121685835759','2023-06-04 02:56:45',NULL,500.00,'','12','1','Good sold','1','','sales','6161100421615','','No',NULL,NULL,''),(34323,'1110','121685901007','2023-06-04 20:50:17',NULL,1036.50,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34324,'5500','121685901007','2023-06-04 20:50:17',1036.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34325,'1000','121685901007','2023-06-04 20:50:17',1500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34326,'4000','121685901007','2023-06-04 20:50:17',NULL,1500.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34327,'1110','121685901124','2023-06-04 22:30:01',NULL,236.00,'','12','1','Inventory sold','1','','sales','6161101603959','','No',NULL,NULL,''),(34328,'5500','121685901124','2023-06-04 22:30:01',236.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34329,'1000','121685901124','2023-06-04 22:30:01',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34330,'4000','121685901124','2023-06-04 22:30:01',NULL,400.00,'','12','1','Good sold','1','','sales','6161101603959','','No',NULL,NULL,''),(34331,'1110','121685907040','2023-06-05 00:07:32',NULL,396.90,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34332,'5500','121685907040','2023-06-05 00:07:32',396.90,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34333,'1000','121685907040','2023-06-05 00:07:32',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34334,'4000','121685907040','2023-06-05 00:07:32',NULL,500.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34335,'1110','121685912862','2023-06-05 00:11:35',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34336,'5500','121685912862','2023-06-05 00:11:35',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34337,'1000','121685912862','2023-06-05 00:11:35',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34338,'4000','121685912862','2023-06-05 00:11:35',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34339,'1110','121685924032','2023-06-05 03:14:22',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34340,'1110','121685924032','2023-06-05 03:14:22',NULL,190.38,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34341,'5500','121685924032','2023-06-05 03:14:22',388.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34342,'1000','121685924032','2023-06-05 03:14:22',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34343,'4000','121685924032','2023-06-05 03:14:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34344,'4000','121685924032','2023-06-05 03:14:22',NULL,250.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34345,'1110','121686061482','2023-06-06 17:25:05',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34346,'1110','121686061482','2023-06-06 17:25:05',NULL,41.82,'','12','1','Inventory sold','1','','sales','5060608740253','','No',NULL,NULL,''),(34347,'5500','121686061482','2023-06-06 17:25:05',459.82,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34348,'1000','121686061482','2023-06-06 17:25:05',680.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34349,'4000','121686061482','2023-06-06 17:25:05',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34350,'4000','121686061482','2023-06-06 17:25:05',NULL,80.00,'','12','1','Good sold','1','','sales','5060608740253','','No',NULL,NULL,''),(34351,'1110','121686061512','2023-06-06 17:46:36',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34352,'5500','121686061512','2023-06-06 17:46:36',74.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34353,'1000','121686061512','2023-06-06 17:46:36',150.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34354,'4000','121686061512','2023-06-06 17:46:36',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34355,'1110','121686068388','2023-06-06 19:19:59',NULL,182.00,'','12','1','Inventory sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34356,'5500','121686068388','2023-06-06 19:19:59',182.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34357,'1000','121686068388','2023-06-06 19:19:59',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34358,'4000','121686068388','2023-06-06 19:19:59',NULL,270.00,'','12','1','Good sold','1','','sales','6161101605458','','No',NULL,NULL,''),(34359,'1110','121686072119','2023-06-06 20:24:07',NULL,147.00,'','12','1','Inventory sold','1','','sales','90162602','','No',NULL,NULL,''),(34360,'5500','121686072119','2023-06-06 20:24:07',147.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34361,'1000','121686072119','2023-06-06 20:24:07',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34362,'4000','121686072119','2023-06-06 20:24:07',NULL,250.00,'','12','1','Good sold','1','','sales','90162602','','No',NULL,NULL,''),(34363,'1110','121686073764','2023-06-06 20:50:05',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34364,'1110','121686073764','2023-06-06 20:50:05',NULL,172.75,'','12','1','Inventory sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34365,'5500','121686073764','2023-06-06 20:50:05',553.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34366,'1000','121686073764','2023-06-06 20:50:05',750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34367,'4000','121686073764','2023-06-06 20:50:05',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34368,'4000','121686073764','2023-06-06 20:50:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101601979','','No',NULL,NULL,''),(34369,'1110','121686074001','2023-06-06 20:59:21',NULL,719.00,'','12','1','Inventory sold','1','','sales','5010103800167','','No',NULL,NULL,''),(34370,'1110','121686074001','2023-06-06 20:59:21',NULL,74.58,'','12','1','Inventory sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34371,'1110','121686074001','2023-06-06 20:59:21',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34372,'5500','121686074001','2023-06-06 20:59:21',896.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34373,'1000','121686074001','2023-06-06 20:59:21',1300.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34374,'4000','121686074001','2023-06-06 20:59:21',NULL,1000.00,'','12','1','Good sold','1','','sales','5010103800167','','No',NULL,NULL,''),(34375,'4000','121686074001','2023-06-06 20:59:21',NULL,150.00,'','12','1','Good sold','1','','sales','5018907194802','','No',NULL,NULL,''),(34376,'4000','121686074001','2023-06-06 20:59:21',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34377,'1110','121686074377','2023-06-06 21:18:04',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34378,'5500','121686074377','2023-06-06 21:18:04',418.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34379,'1000','121686074377','2023-06-06 21:18:04',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34380,'4000','121686074377','2023-06-06 21:18:04',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34381,'1110','121686076844','2023-06-06 21:41:11',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34382,'1110','121686076844','2023-06-06 21:41:11',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34383,'1110','121686076844','2023-06-06 21:41:11',NULL,53.33,'','12','1','Inventory sold','1','','sales','54491069','','No',NULL,NULL,''),(34384,'5500','121686076844','2023-06-06 21:41:11',1281.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34385,'1000','121686076844','2023-06-06 21:41:11',1980.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34386,'4000','121686076844','2023-06-06 21:41:11',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34387,'4000','121686076844','2023-06-06 21:41:11',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34388,'4000','121686076844','2023-06-06 21:41:11',NULL,80.00,'','12','1','Good sold','1','','sales','54491069','','No',NULL,NULL,''),(34389,'1110','121686131590','2023-06-07 12:54:06',NULL,345.67,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34390,'1110','121686131590','2023-06-07 12:54:06',NULL,106.67,'','12','1','Inventory sold','1','','sales','40822938','','No',NULL,NULL,''),(34391,'5500','121686131590','2023-06-07 12:54:06',452.33,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34392,'1000','121686131590','2023-06-07 12:54:06',640.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34393,'4000','121686131590','2023-06-07 12:54:06',NULL,500.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34394,'4000','121686131590','2023-06-07 12:54:06',NULL,140.00,'','12','1','Good sold','1','','sales','40822938','','No',NULL,NULL,''),(34395,'1110','121686139645','2023-06-07 15:07:51',NULL,380.75,'','12','1','Inventory sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34396,'5500','121686139645','2023-06-07 15:07:51',380.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34397,'1000','121686139645','2023-06-07 15:07:51',500.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34398,'4000','121686139645','2023-06-07 15:07:51',NULL,500.00,'','12','1','Good sold','1','','sales','6161101603379','','No',NULL,NULL,''),(34399,'1110','121686157214','2023-06-07 20:00:58',NULL,1400.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(34400,'1110','121686157214','2023-06-07 20:00:58',NULL,3100.00,'','12','1','Inventory sold','1','','sales','5099873046968','','No',NULL,NULL,''),(34401,'1110','121686157214','2023-06-07 20:00:58',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(34402,'5500','121686157214','2023-06-07 20:00:58',4658.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34403,'1000','121686157214','2023-06-07 20:00:58',7750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34404,'4000','121686157214','2023-06-07 20:00:58',NULL,2800.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(34405,'4000','121686157214','2023-06-07 20:00:58',NULL,4700.00,'','12','1','Good sold','1','','sales','5099873046968','','No',NULL,NULL,''),(34406,'4000','121686157214','2023-06-07 20:00:58',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(34407,'1110','121686157324','2023-06-07 20:27:25',NULL,192.00,'','12','1','Inventory sold','1','','sales','1000','','No',NULL,NULL,''),(34408,'5500','121686157324','2023-06-07 20:27:25',192.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34409,'1000','121686157324','2023-06-07 20:27:25',270.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34410,'4000','121686157324','2023-06-07 20:27:25',NULL,270.00,'','12','1','Good sold','1','','sales','1000','','No',NULL,NULL,''),(34411,'1110','121686158950','2023-06-07 21:28:41',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34412,'5500','121686158950','2023-06-07 21:28:41',1125.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34413,'1000','121686158950','2023-06-07 21:28:41',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34414,'4000','121686158950','2023-06-07 21:28:41',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34415,'1110','121686164496','2023-06-07 22:08:12',NULL,635.00,'','12','1','Inventory sold','1','','sales','6161101601115','','No',NULL,NULL,''),(34416,'5500','121686164496','2023-06-07 22:08:12',635.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34417,'1000','121686164496','2023-06-07 22:08:12',850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34418,'4000','121686164496','2023-06-07 22:08:12',NULL,850.00,'','12','1','Good sold','1','','sales','6161101601115','','No',NULL,NULL,''),(34419,'1110','121686164896','2023-06-07 22:29:47',NULL,624.00,'','12','1','Inventory sold','1','','sales','6161101604857','','No',NULL,NULL,''),(34420,'5500','121686164896','2023-06-07 22:29:47',624.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34421,'1000','121686164896','2023-06-07 22:29:47',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34422,'4000','121686164896','2023-06-07 22:29:47',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604857','','No',NULL,NULL,''),(34423,'1110','121686166267','2023-06-07 22:54:05',NULL,189.75,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34424,'5500','121686166267','2023-06-07 22:54:05',189.75,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34425,'1000','121686166267','2023-06-07 22:54:05',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34426,'4000','121686166267','2023-06-07 22:54:05',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34427,'1110','121686235688','2023-06-08 18:24:05',NULL,595.35,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34428,'1110','121686235688','2023-06-08 18:24:05',NULL,257.00,'','12','1','Inventory sold','1','','sales','6008165007685','','No',NULL,NULL,''),(34429,'1110','121686235688','2023-06-08 18:24:05',NULL,59.74,'','12','1','Inventory sold','1','','sales','3086120600051','','No',NULL,NULL,''),(34430,'5500','121686235688','2023-06-08 18:24:05',912.09,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34431,'1000','121686235688','2023-06-08 18:24:05',1180.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34432,'4000','121686235688','2023-06-08 18:24:05',NULL,750.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34433,'4000','121686235688','2023-06-08 18:24:05',NULL,350.00,'','12','1','Good sold','1','','sales','6008165007685','','No',NULL,NULL,''),(34434,'4000','121686235688','2023-06-08 18:24:05',NULL,80.00,'','12','1','Good sold','1','','sales','3086120600051','','No',NULL,NULL,''),(34435,'1110','121686257666','2023-06-09 00:08:09',NULL,1125.00,'','12','1','Inventory sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34436,'1110','121686257666','2023-06-09 00:08:09',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34437,'5500','121686257666','2023-06-09 00:08:09',1283.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34438,'1000','121686257666','2023-06-09 00:08:09',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34439,'4000','121686257666','2023-06-09 00:08:09',NULL,1750.00,'','12','1','Good sold','1','','sales','5010103930628','','No',NULL,NULL,''),(34440,'4000','121686257666','2023-06-09 00:08:09',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34441,'1110','121686258497','2023-06-09 00:17:40',NULL,197.00,'','12','1','Inventory sold','1','','sales','6161101561532','','No',NULL,NULL,''),(34442,'5500','121686258497','2023-06-09 00:17:40',197.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34443,'1000','121686258497','2023-06-09 00:17:40',350.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34444,'4000','121686258497','2023-06-09 00:17:40',NULL,350.00,'','12','1','Good sold','1','','sales','6161101561532','','No',NULL,NULL,''),(34445,'1110','121686259720','2023-06-09 00:29:28',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(34446,'5500','121686259720','2023-06-09 00:29:28',106.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34447,'1000','121686259720','2023-06-09 00:29:28',160.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34448,'4000','121686259720','2023-06-09 00:29:28',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(34449,'1110','121686342068','2023-06-09 23:24:06',NULL,1900.00,'','12','1','Inventory sold','1','','sales','5000289020701','','No',NULL,NULL,''),(34450,'5500','121686342068','2023-06-09 23:24:06',1900.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34451,'1000','121686342068','2023-06-09 23:24:06',2800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34452,'4000','121686342068','2023-06-09 23:24:06',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289020701','','No',NULL,NULL,''),(34453,'1110','121686342464','2023-06-09 23:28:04',NULL,2835.00,'','12','1','Inventory sold','1','','sales','5000267024011','','No',NULL,NULL,''),(34454,'1110','121686342464','2023-06-09 23:28:04',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000000286','','No',NULL,NULL,''),(34455,'5500','121686342464','2023-06-09 23:28:04',2993.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34456,'1000','121686342464','2023-06-09 23:28:04',4250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34457,'4000','121686342464','2023-06-09 23:28:04',NULL,4000.00,'','12','1','Good sold','1','','sales','5000267024011','','No',NULL,NULL,''),(34458,'4000','121686342464','2023-06-09 23:28:04',NULL,250.00,'','12','1','Good sold','1','','sales','5449000000286','','No',NULL,NULL,''),(34459,'1110','121686431435','2023-06-11 00:12:06',NULL,700.00,'','12','1','Inventory sold','1','','sales','6009675642007','','No',NULL,NULL,''),(34460,'1110','121686431435','2023-06-11 00:12:06',NULL,44.58,'','12','1','Inventory sold','1','','sales','5018907197803','','No',NULL,NULL,''),(34461,'1110','121686431435','2023-06-11 00:12:06',NULL,418.00,'','12','1','Inventory sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34462,'5500','121686431435','2023-06-11 00:12:06',1162.58,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34463,'1000','121686431435','2023-06-11 00:12:06',2100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34464,'4000','121686431435','2023-06-11 00:12:06',NULL,1400.00,'','12','1','Good sold','1','','sales','6009675642007','','No',NULL,NULL,''),(34465,'4000','121686431435','2023-06-11 00:12:06',NULL,100.00,'','12','1','Good sold','1','','sales','5018907197803','','No',NULL,NULL,''),(34466,'4000','121686431435','2023-06-11 00:12:06',NULL,600.00,'','12','1','Good sold','1','','sales','6161101602167','','No',NULL,NULL,''),(34467,'1110','121686431547','2023-06-11 00:13:34',NULL,501.00,'','12','1','Inventory sold','1','','sales','6161101603522','','No',NULL,NULL,''),(34468,'5500','121686431547','2023-06-11 00:13:34',501.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34469,'1000','121686431547','2023-06-11 00:13:34',800.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34470,'4000','121686431547','2023-06-11 00:13:34',NULL,800.00,'','12','1','Good sold','1','','sales','6161101603522','','No',NULL,NULL,''),(34471,'1110','121686431619','2023-06-11 00:22:24',NULL,624.00,'','12','1','Inventory sold','1','','sales','6161101604857','','No',NULL,NULL,''),(34472,'5500','121686431619','2023-06-11 00:22:24',624.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34473,'1000','121686431619','2023-06-11 00:22:24',1100.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34474,'4000','121686431619','2023-06-11 00:22:24',NULL,1100.00,'','12','1','Good sold','1','','sales','6161101604857','','No',NULL,NULL,''),(34475,'1110','121686432154','2023-06-11 00:23:51',NULL,1840.00,'','12','1','Inventory sold','1','','sales','5000289932479','','No',NULL,NULL,''),(34476,'1110','121686432154','2023-06-11 00:23:51',NULL,477.00,'','12','1','Inventory sold','1','','sales','6161101606820','','No',NULL,NULL,''),(34477,'5500','121686432154','2023-06-11 00:23:51',2317.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34478,'1000','121686432154','2023-06-11 00:23:51',3550.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34479,'4000','121686432154','2023-06-11 00:23:51',NULL,2800.00,'','12','1','Good sold','1','','sales','5000289932479','','No',NULL,NULL,''),(34480,'4000','121686432154','2023-06-11 00:23:51',NULL,750.00,'','12','1','Good sold','1','','sales','6161101606820','','No',NULL,NULL,''),(34481,'1110','121686461783','2023-06-11 08:36:49',NULL,380.00,'','12','1','Inventory sold','1','','sales','8906125990016','','No',NULL,NULL,''),(34482,'5500','121686461783','2023-06-11 08:36:49',380.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34483,'1000','121686461783','2023-06-11 08:36:49',600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34484,'4000','121686461783','2023-06-11 08:36:49',NULL,600.00,'','12','1','Good sold','1','','sales','8906125990016','','No',NULL,NULL,''),(34485,'1110','121686691304','2023-06-14 00:21:57',NULL,645.00,'','12','1','Inventory sold','1','','sales','6161101560702','','No',NULL,NULL,''),(34486,'5500','121686691304','2023-06-14 00:21:57',645.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34487,'1000','121686691304','2023-06-14 00:21:57',1000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34488,'4000','121686691304','2023-06-14 00:21:57',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101560702','','No',NULL,NULL,''),(34489,'1110','121686804121','2023-06-15 07:44:25',NULL,2070.00,'','12','1','Inventory sold','1','','sales','5000291020706','','No',NULL,NULL,''),(34490,'1110','121686804121','2023-06-15 07:44:25',NULL,640.00,'','12','1','Inventory sold','1','','sales','6161101604932','','No',NULL,NULL,''),(34491,'1110','121686804121','2023-06-15 07:44:25',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(34492,'1110','121686804121','2023-06-15 07:44:25',NULL,106.67,'','12','1','Inventory sold','1','','sales','54493360','','No',NULL,NULL,''),(34493,'5500','121686804121','2023-06-15 07:44:25',2919.67,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34494,'1000','121686804121','2023-06-15 07:44:25',4310.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34495,'4000','121686804121','2023-06-15 07:44:25',NULL,2800.00,'','12','1','Good sold','1','','sales','5000291020706','','No',NULL,NULL,''),(34496,'4000','121686804121','2023-06-15 07:44:25',NULL,1200.00,'','12','1','Good sold','1','','sales','6161101604932','','No',NULL,NULL,''),(34497,'4000','121686804121','2023-06-15 07:44:25',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(34498,'4000','121686804121','2023-06-15 07:44:25',NULL,160.00,'','12','1','Good sold','1','','sales','54493360','','No',NULL,NULL,''),(34499,'1110','121686911750','2023-06-16 13:36:59',NULL,216.00,'','12','1','Inventory sold','1','','sales','6161101604925','','No',NULL,NULL,''),(34500,'5500','121686911750','2023-06-16 13:36:59',216.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34501,'1000','121686911750','2023-06-16 13:36:59',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34502,'4000','121686911750','2023-06-16 13:36:59',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604925','','No',NULL,NULL,''),(34503,'1110','121686915187','2023-06-16 18:55:18',NULL,1406.00,'','12','1','Inventory sold','1','','sales','5000267024608','','No',NULL,NULL,''),(34504,'5500','121686915187','2023-06-16 18:55:18',1406.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34505,'1000','121686915187','2023-06-16 18:55:18',2000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34506,'4000','121686915187','2023-06-16 18:55:18',NULL,2000.00,'','12','1','Good sold','1','','sales','5000267024608','','No',NULL,NULL,''),(34507,'1110','121687014927','2023-06-17 18:15:38',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(34508,'5500','121687014927','2023-06-17 18:15:38',3850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34509,'1000','121687014927','2023-06-17 18:15:38',5600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34510,'4000','121687014927','2023-06-17 18:15:38',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(34511,'1110','121687015181','2023-06-17 18:19:49',NULL,3850.00,'','12','1','Inventory sold','1','','sales','5010327755045','','No',NULL,NULL,''),(34512,'5500','121687015181','2023-06-17 18:19:49',3850.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34513,'1000','121687015181','2023-06-17 18:19:49',5600.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34514,'4000','121687015181','2023-06-17 18:19:49',NULL,5600.00,'','12','1','Good sold','1','','sales','5010327755045','','No',NULL,NULL,''),(34515,'1110','121687015390','2023-06-17 18:23:26',NULL,931.00,'','12','1','Inventory sold','1','','sales','4820000943888','','No',NULL,NULL,''),(34516,'5500','121687015390','2023-06-17 18:23:26',931.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34517,'1000','121687015390','2023-06-17 18:23:26',1700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34518,'4000','121687015390','2023-06-17 18:23:26',NULL,1700.00,'','12','1','Good sold','1','','sales','4820000943888','','No',NULL,NULL,''),(34519,'1110','121687110868','2023-06-18 20:54:54',NULL,1984.50,'','12','1','Inventory sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34520,'1110','121687110868','2023-06-18 20:54:54',NULL,2460.00,'','12','1','Inventory sold','1','','sales','5000329002230','','No',NULL,NULL,''),(34521,'5500','121687110868','2023-06-18 20:54:54',4444.50,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34522,'1000','121687110868','2023-06-18 20:54:54',6000.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34523,'4000','121687110868','2023-06-18 20:54:54',NULL,2500.00,'','12','1','Good sold','1','','sales','6161101602938','','No',NULL,NULL,''),(34524,'4000','121687110868','2023-06-18 20:54:54',NULL,3500.00,'','12','1','Good sold','1','','sales','5000329002230','','No',NULL,NULL,''),(34525,'1110','121687300288','2023-06-21 01:31:46',NULL,216.00,'','12','1','Inventory sold','1','','sales','6161101604925','','No',NULL,NULL,''),(34526,'5500','121687300288','2023-06-21 01:31:46',216.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34527,'1000','121687300288','2023-06-21 01:31:46',400.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34528,'4000','121687300288','2023-06-21 01:31:46',NULL,400.00,'','12','1','Good sold','1','','sales','6161101604925','','No',NULL,NULL,''),(34529,'1110','121687300314','2023-06-21 01:33:09',NULL,759.00,'','12','1','Inventory sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34530,'1110','121687300314','2023-06-21 01:33:09',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(34531,'1110','121687300314','2023-06-21 01:33:09',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606714','','No',NULL,NULL,''),(34532,'1110','121687300314','2023-06-21 01:33:09',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34533,'5500','121687300314','2023-06-21 01:33:09',1267.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34534,'1000','121687300314','2023-06-21 01:33:09',1750.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34535,'4000','121687300314','2023-06-21 01:33:09',NULL,1000.00,'','12','1','Good sold','1','','sales','6161101602372','','No',NULL,NULL,''),(34536,'4000','121687300314','2023-06-21 01:33:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(34537,'4000','121687300314','2023-06-21 01:33:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606714','','No',NULL,NULL,''),(34538,'4000','121687300314','2023-06-21 01:33:09',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34539,'1110','121687300410','2023-06-21 01:33:53',NULL,153.00,'','12','1','Inventory sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34540,'5500','121687300410','2023-06-21 01:33:53',153.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34541,'1000','121687300410','2023-06-21 01:33:53',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34542,'4000','121687300410','2023-06-21 01:33:53',NULL,250.00,'','12','1','Good sold','1','','sales','5060639129003','','No',NULL,NULL,''),(34543,'1110','121687300437','2023-06-21 01:34:11',NULL,168.00,'','12','1','Inventory sold','1','','sales','6161101606721','','No',NULL,NULL,''),(34544,'5500','121687300437','2023-06-21 01:34:11',168.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34545,'1000','121687300437','2023-06-21 01:34:11',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34546,'4000','121687300437','2023-06-21 01:34:11',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606721','','No',NULL,NULL,''),(34547,'1110','121687305387','2023-06-21 02:56:38',NULL,172.83,'','12','1','Inventory sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34548,'5500','121687305387','2023-06-21 02:56:38',172.83,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34549,'1000','121687305387','2023-06-21 02:56:38',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34550,'4000','121687305387','2023-06-21 02:56:38',NULL,250.00,'','12','1','Good sold','1','','sales','6161101606011','','No',NULL,NULL,''),(34551,'1110','121687466813','2023-06-22 23:47:17',NULL,828.00,'','12','1','Inventory sold','1','','sales','8901544040236','','No',NULL,NULL,''),(34552,'5500','121687466813','2023-06-22 23:47:17',828.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34553,'1000','121687466813','2023-06-22 23:47:17',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34554,'4000','121687466813','2023-06-22 23:47:17',NULL,1900.00,'','12','1','Good sold','1','','sales','8901544040236','','No',NULL,NULL,''),(34555,'1110','121687474498','2023-06-23 01:55:10',NULL,1350.00,'','12','1','Inventory sold','1','','sales','4058387004193','','No',NULL,NULL,''),(34556,'5500','121687474498','2023-06-23 01:55:10',1350.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34557,'1000','121687474498','2023-06-23 01:55:10',1900.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34558,'4000','121687474498','2023-06-23 01:55:10',NULL,1900.00,'','12','1','Good sold','1','','sales','4058387004193','','No',NULL,NULL,''),(34559,'1110','121687643295','2023-06-25 01:50:20',NULL,602.00,'','12','1','Inventory sold','1','','sales','6161100421493','','No',NULL,NULL,''),(34560,'1110','121687643295','2023-06-25 01:50:20',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34561,'5500','121687643295','2023-06-25 01:50:20',705.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34562,'1000','121687643295','2023-06-25 01:50:20',1050.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34563,'4000','121687643295','2023-06-25 01:50:20',NULL,900.00,'','12','1','Good sold','1','','sales','6161100421493','','No',NULL,NULL,''),(34564,'4000','121687643295','2023-06-25 01:50:20',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028921','','No',NULL,NULL,''),(34565,'1110','121687647080','2023-06-25 01:54:45',NULL,2461.00,'','12','1','Inventory sold','1','','sales','085156275021','','No',NULL,NULL,''),(34566,'1110','121687647080','2023-06-25 01:54:45',NULL,2625.00,'','12','1','Inventory sold','1','','sales','4820229032240','','No',NULL,NULL,''),(34567,'1110','121687647080','2023-06-25 01:54:45',NULL,103.00,'','12','1','Inventory sold','1','','sales','5449000028976','','No',NULL,NULL,''),(34568,'5500','121687647080','2023-06-25 01:54:45',5189.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34569,'1000','121687647080','2023-06-25 01:54:45',6850.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34570,'4000','121687647080','2023-06-25 01:54:45',NULL,3000.00,'','12','1','Good sold','1','','sales','085156275021','','No',NULL,NULL,''),(34571,'4000','121687647080','2023-06-25 01:54:45',NULL,3700.00,'','12','1','Good sold','1','','sales','4820229032240','','No',NULL,NULL,''),(34572,'4000','121687647080','2023-06-25 01:54:45',NULL,150.00,'','12','1','Good sold','1','','sales','5449000028976','','No',NULL,NULL,''),(34573,'1110','121687888147','2023-06-27 20:51:11',NULL,1820.00,'','12','1','Inventory sold','1','','sales','7640175740047','','No',NULL,NULL,''),(34574,'5500','121687888147','2023-06-27 20:51:11',1820.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34575,'1000','121687888147','2023-06-27 20:51:11',2700.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34576,'4000','121687888147','2023-06-27 20:51:11',NULL,2700.00,'','12','1','Good sold','1','','sales','7640175740047','','No',NULL,NULL,''),(34577,'1110','121687987138','2023-06-29 00:20:32',NULL,2461.00,'','12','1','Inventory sold','1','','sales','085156275021','','No',NULL,NULL,''),(34578,'1110','121687987138','2023-06-29 00:20:32',NULL,158.00,'','12','1','Inventory sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34579,'5500','121687987138','2023-06-29 00:20:32',2619.00,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34580,'1000','121687987138','2023-06-29 00:20:32',3250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34581,'4000','121687987138','2023-06-29 00:20:32',NULL,3000.00,'','12','1','Good sold','1','','sales','085156275021','','No',NULL,NULL,''),(34582,'4000','121687987138','2023-06-29 00:20:32',NULL,250.00,'','12','1','Good sold','1','','sales','5449000004864','','No',NULL,NULL,''),(34583,'1110','121689262929','2023-07-13 18:43:20',NULL,198.45,'','12','1','Inventory sold','1','','sales','6161101602921','','No',NULL,NULL,''),(34584,'5500','121689262929','2023-07-13 18:43:20',198.45,NULL,'','12','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(34585,'1000','121689262929','2023-07-13 18:43:20',250.00,NULL,'','12','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(34586,'4000','121689262929','2023-07-13 18:43:20',NULL,250.00,'','12','1','Good sold','1','','sales','6161101602921','','No',NULL,NULL,''); /*!40000 ALTER TABLE `debitcredit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `delivery` -- DROP TABLE IF EXISTS `delivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `delivery` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL, `mode` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `delivery` -- LOCK TABLES `delivery` WRITE; /*!40000 ALTER TABLE `delivery` DISABLE KEYS */; /*!40000 ALTER TABLE `delivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `department` -- DROP TABLE IF EXISTS `department`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `department` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text NOT NULL, `faculty_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `department` -- LOCK TABLES `department` WRITE; /*!40000 ALTER TABLE `department` DISABLE KEYS */; INSERT INTO `department` VALUES (1,'ICT','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `department` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `depositrefunds` -- DROP TABLE IF EXISTS `depositrefunds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `depositrefunds` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` int(30) NOT NULL DEFAULT 1, `amount` decimal(10,2) NOT NULL, `before` varchar(20) DEFAULT NULL, `after` varchar(20) DEFAULT NULL, `bookingid` int(20) NOT NULL, `tenantid` int(11) NOT NULL, `receiptno` varchar(50) NOT NULL, `transactioncode` varchar(50) NOT NULL, `mode` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `depositrefunds` -- LOCK TABLES `depositrefunds` WRITE; /*!40000 ALTER TABLE `depositrefunds` DISABLE KEYS */; /*!40000 ALTER TABLE `depositrefunds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `device` -- DROP TABLE IF EXISTS `device`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `device` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `device` -- LOCK TABLES `device` WRITE; /*!40000 ALTER TABLE `device` DISABLE KEYS */; /*!40000 ALTER TABLE `device` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `discount` -- DROP TABLE IF EXISTS `discount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `discount` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discount` varchar(50) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `type` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `discount` -- LOCK TABLES `discount` WRITE; /*!40000 ALTER TABLE `discount` DISABLE KEYS */; INSERT INTO `discount` VALUES (1,'1000','BASIC','2023-05-16 14:12:30','active','1','','1',1,'Amount'); /*!40000 ALTER TABLE `discount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `distribution` -- DROP TABLE IF EXISTS `distribution`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `distribution` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `distribution` -- LOCK TABLES `distribution` WRITE; /*!40000 ALTER TABLE `distribution` DISABLE KEYS */; /*!40000 ALTER TABLE `distribution` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `district` -- DROP TABLE IF EXISTS `district`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `district` ( `id` int(30) NOT NULL, `code` varchar(50) NOT NULL, `countyid` varchar(10) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `provincecode` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `district` -- LOCK TABLES `district` WRITE; /*!40000 ALTER TABLE `district` DISABLE KEYS */; /*!40000 ALTER TABLE `district` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `documents` -- DROP TABLE IF EXISTS `documents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `documents` ( `id` int(50) NOT NULL AUTO_INCREMENT, `documentname` varchar(100) NOT NULL, `idno` varchar(50) NOT NULL, `category` varchar(100) NOT NULL, `name` text NOT NULL, `dateposted` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `entrydate` varchar(50) NOT NULL, `img_id` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `mydocuments` text DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `documents` -- LOCK TABLES `documents` WRITE; /*!40000 ALTER TABLE `documents` DISABLE KEYS */; /*!40000 ALTER TABLE `documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doorlock` -- DROP TABLE IF EXISTS `doorlock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `doorlock` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, `guest` varchar(50) NOT NULL, `roomtype` varchar(50) NOT NULL, `roomno` varchar(50) NOT NULL, `guesttype` varchar(50) NOT NULL, `chargetype` varchar(50) NOT NULL, `issuedqty` varchar(50) NOT NULL, `recycledcardqty` varchar(50) NOT NULL, `state` varchar(50) NOT NULL, `checkintime` varchar(50) NOT NULL, `departuretime` varchar(50) NOT NULL, `vouchertype` varchar(50) NOT NULL, `voucherno` varchar(50) NOT NULL, `checkouttime` varchar(50) NOT NULL, `area1` varchar(50) NOT NULL, `area2` varchar(50) NOT NULL, `operator` varchar(50) NOT NULL, `remark` varchar(50) NOT NULL, `familyroom` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doorlock` -- LOCK TABLES `doorlock` WRITE; /*!40000 ALTER TABLE `doorlock` DISABLE KEYS */; /*!40000 ALTER TABLE `doorlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_accounts` -- DROP TABLE IF EXISTS `email_accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `email_accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `password` varchar(100) NOT NULL, `smtp_host` varchar(50) NOT NULL, `smtp_port` int(11) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `name` varchar(50) NOT NULL, `server` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `protocol` varchar(30) NOT NULL DEFAULT 'smtp', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_accounts` -- LOCK TABLES `email_accounts` WRITE; /*!40000 ALTER TABLE `email_accounts` DISABLE KEYS */; INSERT INTO `email_accounts` VALUES (1,'marketing@mombasacontinental.com','Pass@123','mail.mombasacontinental.com',587,1,465,'ROBISEARCH LTD/TASK MANAGER',1,'','mail/smtp'),(2,'support@robisearch.com','support!@##@!','ssl://mail.robisearch.com',465,1,1,'ROBISEARCH LTD/TASK MANAGER',2,'2019-06-23 05:28:28pm','smtp'),(3,'oukobert@gmail.com','0718667391','ssl://smtp.googlemail.com',465,1,1,'robisearch',1,'2019-11-04 11:00:33am','smtp'); /*!40000 ALTER TABLE `email_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeecharges` -- DROP TABLE IF EXISTS `employeecharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeecharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `statutory` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeecharges` -- LOCK TABLES `employeecharges` WRITE; /*!40000 ALTER TABLE `employeecharges` DISABLE KEYS */; INSERT INTO `employeecharges` VALUES (1,'8','PAYE','2023-06-09 13:31:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'PAYE'),(2,'9','NSSF','2023-06-09 13:31:45','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'NSSF'),(3,'10','NHIF','2023-06-09 13:31:54','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'NHIF'),(4,'2','House Allowance','2023-06-09 13:32:05','Active','1','','1','Pay','Fixed','Fixed',1.00,9000.00,'',1,'No'); /*!40000 ALTER TABLE `employeecharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeepayments` -- DROP TABLE IF EXISTS `employeepayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeepayments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `salaryid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeepayments` -- LOCK TABLES `employeepayments` WRITE; /*!40000 ALTER TABLE `employeepayments` DISABLE KEYS */; /*!40000 ALTER TABLE `employeepayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `evaluation` -- DROP TABLE IF EXISTS `evaluation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `evaluation` ( `invoice` varchar(100) NOT NULL, `id` int(20) NOT NULL AUTO_INCREMENT, `serialno` varchar(50) NOT NULL, `insuredname` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `expirydate` varchar(50) NOT NULL, `inspectedby` varchar(50) NOT NULL, `contact` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `instructions` text NOT NULL, `registrationno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `colour` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `fueltype` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `enginerating` varchar(50) NOT NULL, `countryoforigin` varchar(50) NOT NULL, `locationofinspection` varchar(50) NOT NULL, `coachwork` varchar(50) NOT NULL, `mechanical` varchar(50) NOT NULL, `electrical` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `generalcondition` text NOT NULL, `assessedvalue` varchar(50) NOT NULL, `features` text NOT NULL, `anittheft` varchar(50) NOT NULL, `windscreenvalue` varchar(50) NOT NULL, `radiovalue` varchar(50) NOT NULL, `remarks` text NOT NULL, `reportdetails` text NOT NULL, `date` date NOT NULL, `pin` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `evaluation` -- LOCK TABLES `evaluation` WRITE; /*!40000 ALTER TABLE `evaluation` DISABLE KEYS */; /*!40000 ALTER TABLE `evaluation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `fromdate` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `host` varchar(100) NOT NULL, `participants` text NOT NULL, `location` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'new', `comments` text NOT NULL, `repeated` varchar(50) NOT NULL, `dateposted` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `one` varchar(20) NOT NULL, `two` varchar(20) NOT NULL, `three` varchar(20) DEFAULT NULL, `branchid` int(10) NOT NULL DEFAULT 1, `four` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expenses` -- DROP TABLE IF EXISTS `expenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `expenses` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` datetime NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `datespent` datetime NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `companyid` varchar(100) NOT NULL, `accounttype` varchar(50) NOT NULL, `bankname` varchar(60) NOT NULL, `supplier` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentmethodes` varchar(30) NOT NULL, `duedate` varchar(30) NOT NULL, `terms` text NOT NULL, `balance` decimal(10,2) NOT NULL, `paid` decimal(10,2) NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `allocation` varchar(20) NOT NULL DEFAULT 'No', `invoicestatus` varchar(20) NOT NULL DEFAULT 'No', `allocationtext` text NOT NULL, `loanpaid` decimal(10,2) NOT NULL, `loanbalance` decimal(10,2) NOT NULL, `duration` varchar(20) NOT NULL, `monthlyrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expenses` -- LOCK TABLES `expenses` WRITE; /*!40000 ALTER TABLE `expenses` DISABLE KEYS */; /*!40000 ALTER TABLE `expenses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs` -- DROP TABLE IF EXISTS `faqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs` -- LOCK TABLES `faqs` WRITE; /*!40000 ALTER TABLE `faqs` DISABLE KEYS */; /*!40000 ALTER TABLE `faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fingers` -- DROP TABLE IF EXISTS `fingers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fingers` ( `id` int(100) NOT NULL AUTO_INCREMENT, `admno` varchar(200) NOT NULL, `fingername` varchar(50) NOT NULL, `regdate` varchar(100) NOT NULL, `template` text NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fingers` -- LOCK TABLES `fingers` WRITE; /*!40000 ALTER TABLE `fingers` DISABLE KEYS */; /*!40000 ALTER TABLE `fingers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fiscalyear` -- DROP TABLE IF EXISTS `fiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fiscalyear` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fiscalyear` -- LOCK TABLES `fiscalyear` WRITE; /*!40000 ALTER TABLE `fiscalyear` DISABLE KEYS */; INSERT INTO `fiscalyear` VALUES (1,'2023 Fiscal Year','active','2023-01-01 00:00:00','2023-12-31 23:59:00',1,1,'2023-02-01 06:46:53',0.00,0.00,0); /*!40000 ALTER TABLE `fiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `followups` -- DROP TABLE IF EXISTS `followups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `followups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `date` varchar(50) NOT NULL, `followupid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `nextdate` datetime NOT NULL, `feedback` text NOT NULL, `recommendation` text NOT NULL, `challanges` text NOT NULL, `level` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, `finalid` varchar(50) NOT NULL, `dateposted` datetime NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'Deal', `completed` varchar(20) NOT NULL DEFAULT 'no', `dealowner` varchar(20) DEFAULT NULL, `stage` varchar(20) DEFAULT NULL, `allsteps` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `followups` -- LOCK TABLES `followups` WRITE; /*!40000 ALTER TABLE `followups` DISABLE KEYS */; /*!40000 ALTER TABLE `followups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glaccounts` -- DROP TABLE IF EXISTS `glaccounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glaccounts` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `bankname` varchar(50) DEFAULT NULL, `openingdate` varchar(50) NOT NULL, `description` int(11) NOT NULL, `accountstatus` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `number` varchar(50) NOT NULL, `currency` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glaccounts` -- LOCK TABLES `glaccounts` WRITE; /*!40000 ALTER TABLE `glaccounts` DISABLE KEYS */; INSERT INTO `glaccounts` VALUES (30,'1','1','1','Control Acc (Cash)','','2018-07-20 13:23:56',1,'','-63000','2020-10-01 13:01:12','1000','1'),(31,'1','1','1','Mpesa','','2020-05-10 17:24:37',1,'','31000','2020-05-10 17:28:13','1010','1'),(33,'351','1','1','KCB account','','2018-06-01',1,'','-3928200','2019-07-30 19:18:31','1030','1'),(34,'1','1','6','Accounts receivable','','2018-06-01',1,'','0','2020-01-07 05:46:09','1100',''),(35,'351','1','6','Inventory assets','','2018-07-20 13:29:27',1,'','-1500','2019-07-20 23:18:46','1110','1'),(36,'2','1','6','checking account','','2018-07-20 14:14:59',1,'','0','2018-07-20 14:15:36pm','1120','KES'),(37,'351','1','6','Tax Assets','','2018-07-20 14:15:37',1,'','0','2019-07-20 13:01:36','1130',''),(38,'2','1','6','loans & advances','','2018-07-20 14:17:01',1,'','0','2018-07-20 14:18:41pm','1140','KES'),(39,'2','1','6','securities & deposits','','2018-07-20 14:18:42',1,'','0','2018-07-20 14:19:49pm','1150','KES'),(40,'351','1','6','Allowance for doubtful accounts','','2018-07-20 14:19:50',1,'','0','2019-07-20 12:05:22','1160',''),(41,'351','1','6','Prepayments','','2018-07-20 14:37:09',1,'','0','2019-07-20 13:03:33','1170',''),(44,'351','1','6','Salary advances','','2018-07-20 14:42:02',1,'','0','2019-07-20 12:58:57','1200',''),(45,'351','1','7','Land','','2018-07-20 14:43:05',1,'','0','2019-07-20 13:00:33','1500',''),(46,'351','1','7','Motor Vehicle','','2018-07-20 15:05:47',1,'','0','2019-07-20 13:04:35','1510',''),(47,'1','1','27','Softwares','','2018-07-20 15:06:36',4,'','0','2019-10-28 05:41:59','1520',''),(48,'351','1','7','Buildings','','2018-07-20 15:07:38',1,'','0','2019-07-20 13:07:02','1530',''),(49,'351','1','7','Plants & Machinery','','2018-07-20 15:09:21',1,'','0','2019-07-20 13:08:16','1540',''),(50,'351','1','7','Office Equipments','','2018-07-20 15:13:54',1,'','0','2019-07-20 13:09:35','1550',''),(51,'351','1','7','Furnitures & Fixtures','','2018-07-20 15:18:17',1,'','0','2019-07-20 13:10:29','1560',''),(52,'351','1','7','Depreciation ','117','2018-07-20 15:20:15',1,'','0','2019-07-20 13:13:53','1570',''),(53,'351','1','7','Depletable assets','','2018-07-20 15:21:07',1,'','0','2019-07-20 13:30:32','1580','1'),(54,'351','1','7','Leasehold improvements','','2018-07-20 15:22:55',1,'','0','2019-07-20 13:36:59','1590',''),(55,'351','1','7','Accumulated depreciation','','2018-07-20 15:23:48',1,'','0','2019-07-20 13:17:21','1600',''),(57,'351','1','9','Capital ','','2018-07-20 15:43:54',1,'','0','2019-07-20 14:18:04','1800',''),(58,'416','1','29','Office purchases','','2018-07-20 16:02:41',5,'','0','2019-10-16 17:53:18','1850',''),(59,'2','1','8','stock of raw materials','','2018-07-20 16:04:29',1,'','0','2018-07-20 16:07:35pm','1860','KES'),(63,'351','1','14','Loan payable','','2018-07-23 12:06:08',2,'','0','2019-07-20 14:11:32','2000',''),(64,'351','1','14','Dividends payable','','2018-07-23 12:33:51',2,'','0','2019-07-20 15:08:15','2010','1'),(65,'2','1','14','Income tax payable','','2018-07-23 12:35:15',2,'','0','2018-07-23 12:36:09pm','2020','KES'),(66,'351','1','14','Accrued Expenses Payable ','','2018-07-23 12:36:09',2,'','0','2019-07-20 13:33:39','2030','1'),(67,'351','1','14','Payroll Liabilities','','2018-07-23 12:37:11',2,'','0','2019-07-20 13:24:33','2040',''),(68,'351','1','14','Current tax liability','','2018-07-23 12:37:58',2,'','0','2019-07-20 15:10:18','2050','1'),(69,'351','1','14','Client trust accounts','','2018-07-23 12:38:55',2,'','0','2019-07-20 15:11:06','2060',''),(70,'351','1','14','Insurance payable','','2018-07-23 12:39:33',2,'','0','2019-07-20 15:12:04','2070',''),(72,'351','1','14','Sales & services tax payable','','2018-07-23 12:40:58',2,'','0','2019-07-20 15:14:57','2090',''),(74,'351','1','14','Bank Overdraft','','2018-07-23 12:43:29',2,'','0','2019-07-20 13:52:34','2110','1'),(75,'351','1','14','Current portion of obligations under finance leases','','2018-07-23 12:44:39',2,'','0','2019-07-20 15:19:30','2120',''),(76,'351','1','15','Long term debt','','2018-07-23 12:57:42',2,'','0','2019-07-20 15:16:19','2500',''),(78,'351','1','15','Notes payable','','2018-07-23 13:00:31',2,'','0','2019-07-20 13:58:01','2510',''),(79,'351','1','15','Liabilities related to assets held for sale','','2018-07-23 13:01:58',2,'','0','2019-07-20 15:28:14','2520','1'),(80,'2','1','15','shareholder notes payable','','2018-07-23 13:02:46',2,'','0','2018-07-23 13:04:38pm','2530','KES'),(81,'351','1','15','Accrued non-current liabilities','','2018-07-23 13:04:38',2,'','0','2019-07-22 09:45:51','2540',''),(82,'2','1','15','accrued holiday payable','','2018-07-23 13:15:07',2,'','0','2018-07-23 13:19:53pm','2550','KES'),(83,'2','1','26','ordinary shares','','2018-07-23 13:54:16',3,'','0','2018-07-23 13:55:37pm','3000','KES'),(84,'1','1','26','opening balance Equity','','2018-07-23 13:55:37',3,'','-50000','2020-05-09 20:15:00','3010',''),(85,'2','1','26','partner contributions','','2018-07-23 13:56:29',3,'','0','2018-07-23 13:57:14pm','3020','KES'),(86,'2','1','26','share capital','','2018-07-23 13:57:15',3,'','0','2018-07-23 13:59:17pm','3030','KES'),(87,'2','1','26','capital stock','','2018-07-23 13:59:18',3,'','0','2018-07-23 14:00:06pm','3040','KES'),(89,'351','1','26','Dividend disbursed','','2018-07-23 14:00:07',3,'','0','2019-07-22 09:44:29','3050',''),(90,'2','1','26','other comprehensive income','','2018-07-23 14:05:14',3,'','0','2018-07-23 14:06:04pm','3060','KES'),(91,'2','1','26','retained earnings','','2018-07-23 14:06:06',3,'','0','2018-07-23 14:06:41pm','3070','KES'),(92,'2','1','26','paid in capital','','2018-07-23 14:06:42',3,'','0','2018-07-23 14:08:06pm','3080','KES'),(93,'2','1','26','equity in earnings of subsidiaries','','2018-07-23 14:08:07',3,'','0','2018-07-23 14:09:00pm','3090','KES'),(94,'351','1','27','Sales','','2018-06-01',4,'','0','2019-07-23 11:30:51','4000',''),(95,'351','1','27','Maintainance/Training fees','94','2018-07-23 14:09:38',4,'','0','2019-07-20 15:53:04','4010',''),(97,'351','1','30','expenses included in valuation','','2018-06-01 ',5,'','0','2019-07-23 11:33:52','5010',''),(98,'351','1','30','stock adjustment','','2018-07-23 14:27:39',5,'','0','2019-07-20 17:25:59','5020',''),(99,'1','1','8','Cost of Good sold','','2018-07-01',5,'','0','2020-05-11 09:26:16','5500',''),(100,'351','1','29','Transport','','2018-06-01',5,'','0','2019-07-23 11:27:46','5510',''),(101,'351','1','29','Rent Expenses','','2018-07-23 14:33:51',5,'','0','2019-07-20 17:40:22','5520',''),(102,'351','1','29','Utilities','','2018-07-23 14:34:24',5,'','0','2019-07-20 17:42:59','5530','1'),(103,'351','1','29','Advertisements','','2018-07-23 14:34:52',5,'','0','2019-07-20 17:47:48','5540','1'),(104,'351','1','29','Salary Costs','','2018-07-23 14:35:41',5,'','50000','2019-07-20 20:26:30','5550',''),(105,'1','1','29','Staff Costs','','2020-07-23 14:36:42',5,'','0','2020-06-30 21:02:43','5560','1'),(106,'351','1','29','Staff Uniforms','105','2018-07-23 14:37:26',5,'','0','2019-07-20 20:43:01','5561','1'),(107,'351','1','29','Staff Welfare ','105','2018-07-23 14:38:50',5,'','0','2019-07-20 20:47:45','5562','1'),(114,'351','1','29','Training Fees','','2018-07-23 14:46:18',5,'','0','2019-07-20 21:00:54','5650','1'),(115,'351','1','29','Marketing expenses','','2018-07-23 14:47:47',5,'','0','2019-07-20 20:59:00','5660',''),(118,'351','1','29','Bid Bond Charges','120','2018-07-23 14:51:10',5,'','0','2019-07-20 21:51:57','5711','1'),(119,'351','1','29','Bank Service Charges ','','2018-07-23 14:54:26',5,'','0','2019-07-20 21:24:05','5700','1'),(120,'351','1','29','Tender expenses','','2018-07-23 14:55:12',5,'','0','2019-07-20 21:49:11','5710',''),(122,'351','1','29','Outsourced Printing & Scanning','','2018-07-23 15:02:34',5,'','0','2019-07-20 21:55:42','5730',''),(123,'351','1','30','Commission on sales','','2018-07-23 15:03:42',5,'','0','2019-07-20 21:56:36','5740','1'),(124,'351','1','29','Accomodation','','2018-07-23 15:04:46',5,'','0','2019-07-20 21:58:04','5750',''),(125,'351','1','29','Professional /Legal expenses','','2018-07-23 15:05:55',5,'','0','2019-07-20 22:28:51','5760','1'),(126,'351','1','28','Postage & Delivery','','2018-07-23 15:06:59',4,'','0','2019-07-20 22:00:51','5770','1'),(127,'351','1','29','Repairs & Maintenance','','2018-07-23 15:07:48',5,'','0','2019-07-20 22:02:26','5780',''),(128,'351','1','29','Depreciation Expense','','2018-07-23 15:08:24',5,'','0','2019-07-20 22:03:48','5790',''),(129,'351','1','29','Miscellaneous','','2018-07-23 15:09:39',5,'','0','2019-07-20 22:05:47','5800',''),(130,'351','1','27','Point of sale','94','2018-06-01 ',4,'','0','2019-08-08 09:12:19','4020',''),(131,'351','1','27','Bulk Sms','94','2018-07-23 15:12:25',4,'','0','2019-07-20 15:56:23','4030','1'),(132,'351','1','27','property management System','94','2018-07-23 15:13:09',4,'','0','2019-07-20 16:16:00','4040','1'),(133,'351','1','27','Biometric system','94','2018-07-23 15:13:41',4,'','2393.5','2019-07-20 16:14:44','4050','1'),(134,'351','1','27','school management System','94','2018-07-23 15:14:35',4,'','0','2019-07-20 16:17:38','4060','1'),(135,'351','1','27','Hospital management System','94','2018-07-23 15:15:15',4,'','0','2019-07-20 16:19:26','4070',''),(136,'351','1','27','Website Development','94','2018-07-23 15:16:03',4,'','0','2019-07-20 16:25:53','4080','1'),(137,'1','1','27','Vehicle Loan','94','2018-07-23 15:16:38 ',4,'','2000000','2023-05-27 12:46:29','4090',''),(139,'351','1','27','Hardware','94','2018-07-23 15:18:10',4,'','0','2019-07-20 16:49:09','4110','1'),(140,'351','1','27','Graphic Design','94','2018-07-23 15:18:56',4,'','0','2019-07-20 16:50:40','4120','1'),(141,'351','1','27','Thermal rolls','94','2018-07-23 15:19:38',4,'','0','2019-07-20 16:54:33','4130','1'),(143,'479','1','1','Paybill','','2018-07-26 12:58:21',1,'','-6666666999','2019-01-18 17:14:27','1020','1'),(144,'351','1','14','Account payable','','2018-06-01',2,'','0','2019-07-23 11:29:59','2130',''),(148,'351','1','1','Director\'s Account','','2018-06-01',1,'','0','2019-08-22 08:43:26','1040','1'),(151,'351','1','8','Hardware','58','2018-10-30 09:48:11',5,'','0','2019-09-04 10:25:47','1851','1'),(152,'351','1','27','Labour Fees','94','2018-11-01 12:09:21',4,'','0','2019-07-20 16:57:21','4160','1'),(154,'351','1','29','Supplies','156','2018-11-05 16:43:21',5,'','0','2019-07-18 14:43:13','5900','1'),(155,'351','1','29','Cleaning','156','2018-11-05 16:46:57',5,'','0','2019-07-18 14:28:52','5910','1'),(156,'351','1','29','Office Expenses','','2018-11-05 16:47:29',5,'','0','2019-07-18 14:15:56','5920','1'),(157,'351','1','27','Management Information System','94','2019-01-31 16:43:09',4,'','0','2019-07-20 16:58:11','4170','1'),(158,'351','1','29','Mpesa charges','','2019-05-25 12:20:26',5,'','0','2019-07-20 22:26:12','5930','1'),(159,'351','1','1','Petty cash','','2019-06-01',1,'','-3577','2019-08-22 15:25:29','1050','1'),(160,'351','1','29','Discount Allowed','','2019-07-08 ',5,'','0','2019-07-20 23:17:13','5030','1'),(161,'351','1','6','Withholding Tax','','2019-07-20 13:24:34',1,'','0','2019-07-20 13:28:18','1210',''),(162,'351','1','6','Discount Recieved','','2019-07-20 13:28:19',1,'','0','2019-07-20 13:29:38','1220','1'),(163,'351','1','6','Accrued Income Receivable ','','2019-07-20 13:33:40',1,'','0','2019-07-20 13:36:05','1230','1'),(164,'351','1','14','NHIF','67','2019-07-20 14:03:52',2,'','0','2019-07-20 14:06:21','2041','1'),(165,'351','1','14','NSSF','67','2019-07-20 14:06:22',2,'','0','2019-07-20 14:07:21','2042',''),(166,'351','1','14','PAYE','67','2019-07-20 14:07:21',2,'','0','2019-07-20 14:08:21','2043','1'),(167,'351','1','14','Net Pay','','2019-07-20 14:08:21',2,'','0','2019-07-20 14:10:20','2045',''),(168,'1','1','27','Donations','131','2019-07-20 15:56:24 ',4,'','140000','2023-03-08 12:44:25','4031','1'),(169,'351','1','27','Bulk Sms Branding','131','2019-07-20 16:07:38',4,'','0','2019-07-20 16:09:27','4032',''),(170,'1','1','27','Bulk Sms Recharge','131','2019-07-20 16:09:28',4,'','0','2019-10-26 13:53:32','4033','1'),(171,'351','1','27','Hotel Accommodation System','94','2019-07-20 16:19:27',4,'','0','2019-07-20 16:23:52','4100','1'),(172,'351','1','27','Miscellaneous Income','94','2019-07-20 16:58:12',4,'','0','2019-07-20 17:00:06','4180','1'),(173,'351','1','27','Mpesa Intergration','94','2019-07-20 17:00:07',4,'','0','2019-07-20 17:02:30','4190','1'),(174,'351','1','27','Biometric Bulk Sms Intergration','94','2019-07-20 17:02:31',4,'','0','2019-07-20 17:38:53','4195',''),(175,'351','1','8','Thermal rolls','58','2019-07-20 17:32:58',5,'','0','2019-09-04 10:26:06','1852','1'),(176,'351','1','29','Electricity','102','2019-07-20 17:42:59',5,'','0','2019-07-20 17:44:30','5531','1'),(177,'351','1','29','Water','102','2019-07-20 17:44:31',5,'','0','2019-07-20 17:45:22','5532','1'),(178,'351','1','29','Wages/Overtime','104','2019-07-20 20:26:31',5,'','0','2019-07-20 20:29:49','5551','1'),(179,'1','1','29','Staff Airtime','105','2020-07-20 20:47:45',5,'','0','2020-06-30 21:03:42','5563','1'),(180,'1','1','29','Medical Expenses ','105','2019-07-20 20:50:12',5,'','0','2020-06-30 22:16:41','5566','1'),(181,'351','1','29','NSSF-Employer','105','2019-07-20 20:51:37',5,'','0','2019-07-20 20:53:29','5565','1'),(182,'351','1','29','Meal Expenses ','','2019-07-20 22:28:52',5,'','0','2019-07-20 22:48:43','5250','1'),(183,'351','1','29','Refunds','','2019-07-20 22:48:44',5,'','0','2019-07-20 22:49:44','5240','1'),(184,'351','1','30','Loss on Disposal of fixed Assets ','','2019-07-20 22:49:45',5,'','0','2019-07-20 22:53:18','5220','1'),(185,'351','1','29','Internet Expenses ','','2019-07-20 22:53:19',5,'','0','2019-07-20 22:56:13','5200',''),(186,'351','1','29','Telephone Expenses ','','2019-07-20 22:56:14',5,'','0','2019-07-20 22:57:42','5210','1'),(187,'351','1','29','Dues & Subscriptions','','2019-07-20 22:57:43',5,'','0','2019-07-20 23:02:13','5180','1'),(188,'351','1','29','Donations','','2019-07-20 23:02:14',5,'','0','2019-07-20 23:03:34','5170','1'),(189,'351','1','29','Chaitable Donations','188','2019-07-20 23:03:35',5,'','0','2019-07-20 23:04:51','5171','1'),(190,'351','1','29','Non-Charitable Donations','188','2019-07-20 23:04:52',5,'','0','2019-07-20 23:08:00','5172','1'),(191,'351','1','29','Business Licences & Permits ','','2019-07-20 23:08:01',5,'','0','2019-07-20 23:09:26','5960','1'),(192,'351','1','29','Bad debts written off','','2019-07-20 23:09:27',5,'','0','2019-07-20 23:10:42','5950','1'),(193,'351','1','29','Bad debts ','','2019-07-20 23:10:43',5,'','0','2019-07-20 23:11:35','5940','1'),(194,'351','1','27','suspense Income A/C','','2019-07-22 22:00:00',4,'','2393.5','2019-07-27 17:14:05','4050','1'),(195,'351','1','29','suspense Expense A/C','','2019-07-22 22:05:38',5,'','0','2019-07-27 17:15:19','5040','1'),(196,'351','1','34','Opening Balance','','2018-06-01',4,'','0','2019-07-30 09:29:55','1060','1'),(197,'351','1','29','CCTV Installation fee','','2018-06-01',5,'','0','2019-08-21 10:15:30','5190','1'),(198,'351','1','29','Director\'s Expenses','','2018-06-01',5,'','0','2019-08-23 14:53:11','5720','1'),(199,'351','1','29','Staff Allowance','105','2019-06-01 ',5,'','-521','2019-10-01 15:22:06','5564','1'),(200,'1','1','1','Witholding Account','','2019-10-01 11:49:23 ',1,'','6666623792.5','2021-11-25 16:26:21','1035','1'),(201,'1','1','7','LAPTOPS','','2020-09-17 09:30:28',1,'','0','2020-09-17 09:31:53','1501',''),(202,'1','1','7','Amblifier','','2020-09-22 10:17:58',1,'','0','2020-09-22 10:19:53','1502',''),(205,'1','1','1','Bonga points Account','','2021-03-08 15:21:56 ',1,'','-1000','2021-09-07 06:35:52','1011','1'),(206,'1','1','29','CARE PURCHASE','','2021-07-19 15:02:30 ',5,'','0','2023-05-27 12:48:58','5171',''),(207,'1','1','27','RENT COLLECTED','','2021-09-17 06:42:46',4,'','0','2021-09-17 06:47:13','4161','1'),(208,'1','1','27','DEPOSIT COLLECTED','','2021-09-17 06:14:47',4,'','0','2021-09-17 06:48:29','4162','1'),(209,'1','1','27','WATER/POWER DEPOSIT','','2021-09-17 06:30:48',4,'','0','2021-09-17 06:48:46','4163',''),(210,'1','1','27','PENALTY','','2021-09-17 06:47:48',4,'','0','2021-09-17 06:49:02','4164',''),(211,'1','1','27','WATER','','2021-09-17 06:04:49',4,'','0','2021-09-17 06:49:27','4165','1'),(212,'1','1','27','PARTIAL PAYMENT','','2021-09-17 06:29:49',4,'','0','2021-09-17 06:49:47','4166','1'),(213,'1','1','27','GARBAGE','','2021-09-17 06:49:49',4,'','0','2021-09-17 06:50:07','4167','1'),(214,'1','1','27','DAMAGES','','2021-09-17 06:09:50',4,'','0','2021-09-17 06:50:31','4168','1'),(215,'1','1','27','AGREEMENT FORM','','2021-09-17 06:32:50',4,'','0','2021-09-17 06:50:50','4169','1'),(216,'1','1','27','POWER','','2021-09-17 06:51:50',4,'','0','2021-09-17 06:51:16','4171','1'),(217,'1','1','27','SEWAGE','','2021-09-17 06:17:51',4,'','-50000','2021-09-17 06:51:44','4172','1'),(218,'1','1','27','BED ONLY','','2021-09-17 06:45:51',4,'','7000','2021-09-17 06:52:22','4173','1'),(219,'1','1','27','BED AND BREAKFAST','','2021-09-17 06:24:52',4,'','-55555','2021-09-17 06:52:42','4174','1'); /*!40000 ALTER TABLE `glaccounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glfiscalyear` -- DROP TABLE IF EXISTS `glfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glfiscalyear` -- LOCK TABLES `glfiscalyear` WRITE; /*!40000 ALTER TABLE `glfiscalyear` DISABLE KEYS */; /*!40000 ALTER TABLE `glfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glgroups` -- DROP TABLE IF EXISTS `glgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glgroups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `groupname` bigint(50) NOT NULL DEFAULT 1, `openingdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glgroups` -- LOCK TABLES `glgroups` WRITE; /*!40000 ALTER TABLE `glgroups` DISABLE KEYS */; INSERT INTO `glgroups` VALUES (1,'2','1','1','Banks',0,''),(6,'2','1','1','Current asset',0,''),(7,'2','1','1','Fixed assets',0,''),(8,'2','1','5','Cost of Good Sold',0,''),(9,'2','1','1','Capital asset',0,''),(14,'2','1','2','Current liabilities',0,''),(15,'2','1','2','Longterm liabilities',0,''),(26,'2','1','3','Equity',0,''),(27,'2','1','4','Income',0,''),(28,'2','1','4','Other income',0,''),(29,'2','1','5','Expenses',0,''),(30,'2','1','5','Other expenses',0,''),(31,'2','1','2','Share Capital',0,''),(32,'2','1','2','Retained Earnings',0,''),(33,'2','1','4','Cash',1,''),(34,'2','1','4','Equity',1,''); /*!40000 ALTER TABLE `glgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grouping` -- DROP TABLE IF EXISTS `grouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `grouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grouping` -- LOCK TABLES `grouping` WRITE; /*!40000 ALTER TABLE `grouping` DISABLE KEYS */; /*!40000 ALTER TABLE `grouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groupleavedays` -- DROP TABLE IF EXISTS `groupleavedays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `groupleavedays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `overtime` int(11) DEFAULT NULL COMMENT 'Link to an overtime request', `startdate` date DEFAULT NULL, `enddate` date DEFAULT NULL, `type` int(11) NOT NULL, `days` decimal(10,2) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`group`), KEY `employee` (`employeeno`), KEY `type` (`type`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groupleavedays` -- LOCK TABLES `groupleavedays` WRITE; /*!40000 ALTER TABLE `groupleavedays` DISABLE KEYS */; INSERT INTO `groupleavedays` VALUES (1,NULL,1,NULL,'2023-02-15','2023-04-25',1,90.00,'',1,'2023-02-15 12:36:46pm',0); /*!40000 ALTER TABLE `groupleavedays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `house` -- DROP TABLE IF EXISTS `house`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `house` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `floor` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `vat` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(30) NOT NULL DEFAULT 1, `vat2` decimal(10,2) NOT NULL, `paymentdetails` text NOT NULL, `meternumber` text NOT NULL, `utility` varchar(20) DEFAULT 'yes', `waterno` varchar(30) NOT NULL, `waterrate` varchar(30) NOT NULL, `watercharge` varchar(30) NOT NULL, `watermonth` varchar(30) NOT NULL, `wateryear` varchar(30) NOT NULL, `electricityno` varchar(30) NOT NULL, `electricityrate` varchar(30) NOT NULL, `electricitycharge` varchar(30) NOT NULL, `electricitymonth` varchar(30) NOT NULL, `electricityyear` varchar(30) NOT NULL, `bowholeno` varchar(30) NOT NULL, `bowholerate` varchar(30) NOT NULL, `bowholecharge` varchar(30) NOT NULL, `bowholemonth` varchar(30) NOT NULL, `bowholeyear` varchar(30) NOT NULL, `beds` varchar(5) DEFAULT NULL, `bedstatus` varchar(20) NOT NULL DEFAULT 'no', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `house` -- LOCK TABLES `house` WRITE; /*!40000 ALTER TABLE `house` DISABLE KEYS */; /*!40000 ALTER TABLE `house` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeping` -- DROP TABLE IF EXISTS `housekeeping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `housekeeping` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `houseno` varchar(30) NOT NULL, `plotno` varchar(20) NOT NULL DEFAULT '0', `approvedby` varchar(20) NOT NULL, `comments` text NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `exactdate` varchar(30) NOT NULL, `type` text NOT NULL, `counter` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `housekeeping` -- LOCK TABLES `housekeeping` WRITE; /*!40000 ALTER TABLE `housekeeping` DISABLE KEYS */; /*!40000 ALTER TABLE `housekeeping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `images` -- DROP TABLE IF EXISTS `images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `images` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `imageid` varchar(50) NOT NULL, `user` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `images` -- LOCK TABLES `images` WRITE; /*!40000 ALTER TABLE `images` DISABLE KEYS */; /*!40000 ALTER TABLE `images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invoice` -- DROP TABLE IF EXISTS `invoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `invoice` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `month` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `totalamount` varchar(40) NOT NULL, `paid` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `commission` decimal(10,2) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `order` int(11) NOT NULL, `priority` int(11) NOT NULL, `coparent` decimal(10,2) NOT NULL, `coparentcommission` decimal(10,2) NOT NULL, `coparentvat` decimal(10,2) NOT NULL, `coparentdate` varchar(30) NOT NULL, `coparentuserid` int(11) NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `invoice` -- LOCK TABLES `invoice` WRITE; /*!40000 ALTER TABLE `invoice` DISABLE KEYS */; /*!40000 ALTER TABLE `invoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `journal` -- DROP TABLE IF EXISTS `journal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `journal` ( `id` int(50) NOT NULL AUTO_INCREMENT, `currency` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `journaldate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `journal` -- LOCK TABLES `journal` WRITE; /*!40000 ALTER TABLE `journal` DISABLE KEYS */; /*!40000 ALTER TABLE `journal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `labour` -- DROP TABLE IF EXISTS `labour`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `labour` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `qty` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `employeeid` varchar(30) NOT NULL, `exactdate` varchar(30) NOT NULL, `rate` decimal(10,2) NOT NULL, `total` decimal(10,2) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'pay', `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `labour` -- LOCK TABLES `labour` WRITE; /*!40000 ALTER TABLE `labour` DISABLE KEYS */; /*!40000 ALTER TABLE `labour` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `landlord` -- DROP TABLE IF EXISTS `landlord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `landlord` ( `id` int(40) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `landlord` -- LOCK TABLES `landlord` WRITE; /*!40000 ALTER TABLE `landlord` DISABLE KEYS */; /*!40000 ALTER TABLE `landlord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lease` -- DROP TABLE IF EXISTS `lease`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `lease` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateleased` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lease` -- LOCK TABLES `lease` WRITE; /*!40000 ALTER TABLE `lease` DISABLE KEYS */; /*!40000 ALTER TABLE `lease` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavegroup` -- DROP TABLE IF EXISTS `leavegroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavegroup` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `enddate` varchar(30) NOT NULL, `defaultleavetype` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavegroup` -- LOCK TABLES `leavegroup` WRITE; /*!40000 ALTER TABLE `leavegroup` DISABLE KEYS */; INSERT INTO `leavegroup` VALUES (1,'General ','','0000-00-00 00:00:00','0000-00-00 00:00:00',21,'1/1','31/12',2),(2,'Security','','0000-00-00 00:00:00','0000-00-00 00:00:00',11,'1/1','31/12',2); /*!40000 ALTER TABLE `leavegroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leaves` -- DROP TABLE IF EXISTS `leaves`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leaves` ( `id` int(30) NOT NULL AUTO_INCREMENT, `startdate` varchar(30) DEFAULT NULL, `enddate` varchar(30) DEFAULT NULL, `status` varchar(11) DEFAULT NULL, `employee` int(11) DEFAULT NULL, `cause` text DEFAULT NULL, `startdatetype` varchar(12) DEFAULT NULL, `enddatetype` varchar(12) DEFAULT NULL, `duration` decimal(10,2) DEFAULT NULL, `type` int(11) DEFAULT NULL, `description` text DEFAULT NULL COMMENT 'Comments on leave request', `change_type` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` timestamp NULL DEFAULT NULL, `photo` text NOT NULL, `incharge` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `postedtime` varchar(30) NOT NULL, `img_id` text DEFAULT NULL, `comments` text NOT NULL, `manager` int(10) NOT NULL, `companyid` int(11) DEFAULT 1, `branchid` int(20) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `changed_by` (`updatedby`), KEY `change_date` (`updateddate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of changes in leave requests table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leaves` -- LOCK TABLES `leaves` WRITE; /*!40000 ALTER TABLE `leaves` DISABLE KEYS */; /*!40000 ALTER TABLE `leaves` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavetypes` -- DROP TABLE IF EXISTS `leavetypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavetypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `gender` varchar(30) NOT NULL, `deduct` varchar(10) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavetypes` -- LOCK TABLES `leavetypes` WRITE; /*!40000 ALTER TABLE `leavetypes` DISABLE KEYS */; INSERT INTO `leavetypes` VALUES (1,'maternity leave','','2019-06-03 01:46:56pm','Female','No',0),(2,'Normal leave','','2019-06-03 01:47:13pm','Both','No',0),(3,'Emergency','','2019-06-03 01:47:41pm','Both','No',0),(4,'Sick Leave','','2023-02-15 12:24:43pm','Both','No',0); /*!40000 ALTER TABLE `leavetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loggs` -- DROP TABLE IF EXISTS `loggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loggs` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `timein` varchar(50) NOT NULL, `timeout` varchar(50) NOT NULL, `browser` text NOT NULL, `ip` text NOT NULL, `action` varchar(30) DEFAULT 'loggedin', `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loggs` -- LOCK TABLES `loggs` WRITE; /*!40000 ALTER TABLE `loggs` DISABLE KEYS */; INSERT INTO `loggs` VALUES (1,'admin','1','2023-07-13 18:32:41','','','197.232.142.176','loggedin',1),(2,'admin','12','2023-07-13 18:33:27','','','102.140.227.72','loggedin',1),(3,'admin','12','2023-07-13 18:41:34','','','105.161.44.152','loggedin',1),(4,'admin','1','2023-07-13 18:42:05','','','197.232.142.176','loggedin',1),(5,'admin','12','2023-07-13 18:42:09','','','102.140.227.72','loggedin',1),(6,'admin','12','2023-07-13 18:58:11','','','105.161.44.152','loggedin',1),(7,'admin','12','2023-07-13 19:05:28','','','105.161.44.152','loggedin',1),(8,'admin','12','2023-07-13 20:46:11','','','105.161.44.152','loggedin',1),(9,'admin','1','2023-07-13 20:48:53','','','105.161.225.253','loggedin',1),(10,'admin','12','2023-07-14 21:15:04','','','105.161.102.194','loggedin',1),(11,'admin','1','2023-07-16 10:15:34','','','105.160.0.120','loggedin',1),(12,'admin','12','2023-07-25 10:35:09','','','105.163.25.129','loggedin',1),(13,'admin','1','2023-07-26 17:56:34','','','197.232.142.176','loggedin',1),(14,'admin','12','2023-08-03 22:44:23','','','197.237.177.209','loggedin',1),(15,'admin','12','2023-12-22 01:12:46','','','105.161.222.160','loggedin',1),(16,'admin','12','2023-12-22 01:15:54','','','105.161.222.160','loggedin',1),(17,'admin','12','2023-12-22 02:25:46','','','105.161.222.160','loggedin',1); /*!40000 ALTER TABLE `loggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loyalitycards` -- DROP TABLE IF EXISTS `loyalitycards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loyalitycards` ( `id` int(30) NOT NULL AUTO_INCREMENT, `value` decimal(10,2) NOT NULL, `customer_id` int(10) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT 0, `status` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `dateupdated` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `cardnumber` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL, `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `originalamount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), KEY `deleted` (`deleted`), KEY `phppos_giftcards_ibfk_1` (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loyalitycards` -- LOCK TABLES `loyalitycards` WRITE; /*!40000 ALTER TABLE `loyalitycards` DISABLE KEYS */; /*!40000 ALTER TABLE `loyalitycards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maincategory` -- DROP TABLE IF EXISTS `maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `maincategory` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maincategory` -- LOCK TABLES `maincategory` WRITE; /*!40000 ALTER TABLE `maincategory` DISABLE KEYS */; INSERT INTO `maincategory` VALUES (1,'HADASSAH LIQUOR','','2022-07-01 10:17:45','active','1','','1'); /*!40000 ALTER TABLE `maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainmenu` -- DROP TABLE IF EXISTS `mainmenu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainmenu` ( `id` varchar(100) NOT NULL, `name` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `sort` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainmenu` -- LOCK TABLES `mainmenu` WRITE; /*!40000 ALTER TABLE `mainmenu` DISABLE KEYS */; INSERT INTO `mainmenu` VALUES ('accomodation','Accomodation','','1','user/accomodation','side',8),('assetliability','Assets and Liabilities','','1','user/assetliability','side',7),('banking','Banking','','1','user/banking','side',6),('contact','Contacts','','1','user/contact','side',4),('goodservice','Goods and Services','','1','user/goodservice','side',3),('humanresource','HR','grouping','1','user/viewrequest','side',8),('moneyin','Money In','','1','user/moneyin','side',1),('moneyout','Money out','','1','user/moneyout','side',2),('project','Projects','','1','user/project','side',5),('report','Reports','','1','user/report','side',9),('setting','Settings','','1','user/setting','side',10); /*!40000 ALTER TABLE `mainmenu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainservices` -- DROP TABLE IF EXISTS `mainservices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainservices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainservices` -- LOCK TABLES `mainservices` WRITE; /*!40000 ALTER TABLE `mainservices` DISABLE KEYS */; INSERT INTO `mainservices` VALUES (1,'General systems',1),(2,'E-commerce',1),(3,'Biometric',1),(4,'Website',1),(5,'PMS',1),(6,'Bulk sms',1),(7,'Pos',1); /*!40000 ALTER TABLE `mainservices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `message` -- DROP TABLE IF EXISTS `message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `message` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `message` -- LOCK TABLES `message` WRITE; /*!40000 ALTER TABLE `message` DISABLE KEYS */; /*!40000 ALTER TABLE `message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meterreading` -- DROP TABLE IF EXISTS `meterreading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `meterreading` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` datetime NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `year` varchar(30) NOT NULL, `month` varchar(30) NOT NULL, `opening` varchar(20) NOT NULL, `closing` varchar(30) NOT NULL, `meternumber` varchar(10) NOT NULL, `opendate` varchar(30) NOT NULL, `closedate` varchar(30) NOT NULL, `phone` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `rate` varchar(30) NOT NULL, `charge` varchar(30) NOT NULL, `type` varchar(20) NOT NULL, `updatedby` varchar(20) NOT NULL, `usedqty` varchar(20) NOT NULL, `roomid` int(20) DEFAULT NULL, `roomchargeid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meterreading` -- LOCK TABLES `meterreading` WRITE; /*!40000 ALTER TABLE `meterreading` DISABLE KEYS */; /*!40000 ALTER TABLE `meterreading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1),('2016_07_02_112357_Product',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modules` -- DROP TABLE IF EXISTS `modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modules` ( `name` varchar(255) NOT NULL, `sort` int(10) NOT NULL, `icon` varchar(255) NOT NULL, `id` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `menu` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modules` -- LOCK TABLES `modules` WRITE; /*!40000 ALTER TABLE `modules` DISABLE KEYS */; INSERT INTO `modules` VALUES ('Accomodation',84,'money','accomodation','1','admin/viewpallmyplots','side','accomodation'),('Accounting',35,'battery-quarter','accounting','1','user/allaccounting','side','banking'),('Accounting Reports',35,'money','accountingreports','1','user/startsales','side','banking'),('Assets',49,'paw','assets','1','user/viewassets','side','assetliability'),('Bank Deposits',35,'money','bankdeposits','1','user/viewbanks','side','banking'),('Bank Transfer',35,'money','banktransfer','1','user/viewbanktransfer','side','banking'),('Biometric Records',31,'rss-square','biometricrecords','1','user/allattendance','side','humanresource'),('Branch',81,'rss-square','branch','0','user/viewbranch','side','setting'),('Call center',12,'rss-square','callcenter','1','user/callcenter','side','contact'),('Cashier Sales',87,'folder-open','cashiersales','1','user/mysales','side','moneyin'),('Comments/Complains',11,'paw','complain','1','user/complain','side','project'),('Configuration',5,'home','config','1','user/viewconfiguration','top','setting'),('Counter Radio Button',90,'rss-square','counterradiobutton','1','radio','side','setting'),('Damaged products',50,'paw','damagedproducts','1','user/viewdamages','side','assetliability'),('Deals',11,'calendar-times-o','deals','1','user/viedeals','side','project'),('Departments',31,'rss-square','departments','1','user/department','side','humanresource'),('Display Counter',6,'rss-square','displaycounter','0','display','side','goodservice'),('Display Sales Report',24,'folder-open','displayreport','1','user/displayreport','side','report'),('Documents',14,'folder-open-o','documents','1','user/viewdocuments','side','project'),('E-Commerce',8,'grouping','ecommerce','1','user/ecommerce','side','moneyin'),('Events',10,'line-chart','events','1','user/viewevents','side','project'),('Grouping Members',20,'paper-plane','grouping','1','user/viewgrouping','side','contact'),('Human Resource',14,'rss-square','humanresource','1','user/viewrequest','side','humanresource'),('Income',85,'window-close','income','1','user/allinvoices','side','moneyin'),('Expenses',85,'window-close','incomeexpenses','1','user/viewexpenses','side','moneyout'),('Dispatched stocklist/Store',60,'sort-amount-asc','incomingstock','1','user/viewincomingstock','side','goodservice'),('Issued Store Items',59,'sort-amount-asc','incomingstore','1','user/viewallorder','side','goodservice'),('journal entry',35,'money','journalentry','1','user/viewjournalentry','side','banking'),('Labour Records',31,'rss-square','labourrecords','1','user/viewlabour','side','humanresource'),('Leave Management',31,'rss-square','leavemanagement','1','user/viewleaves','side','humanresource'),('Low Store',55,'battery-quarter','lowproducts','1','user/viewwarningproducts','side','goodservice'),('Low stocklist',57,'battery-quarter','lowstocklist','1','user/viewlowstore','side','goodservice'),('Loyality Cards',30,'credit-card','loyalitycards','1','user/viewloyality','side','project'),('People/Contacts',80,'rss-square','members','1','user/viewmember','side','contact'),('Open and Close Sales',87,'money','openclose','0','user/openclose','side','moneyin'),('Change password',9,'hourglass-start','password','1','user/passwordform','side','setting'),('Payroll',30,'rss-square','payroll','1','user/salaryhistory','side','humanresource'),('Payroll Setup',31,'rss-square','payrollsetup','1','user/payrollsetup','side','humanresource'),('Category of people',33,'address-book-o','peoplecategory','1','user/viewcategory','side','contact'),('Print Receipt',1,'recycle','printreceipt','1','user/printreceipts','side','goodservice'),('Stock List(Counter)',66,'snowflake-o','productlist','1','user/viewproductlist','side','goodservice'),('Products(Main store)',65,'snowflake-o','products','1','user/viewproducts','side','goodservice'),('Category of Products',70,'recycle','productscategory','1','user/viewproductcategory','side','goodservice'),('Update profile',8,'blind','profile','1','user/profileform','side','setting'),('Projects Management',50,'bullseye','projectsmanagement','1','user/viewprojets','side','project'),('Purchases',86,'automobile','purchases','1','user/viewpurchases','side','moneyout'),('Quotation',8,'money','quotation','1','user/allquatation','side','moneyin'),('Record Delivery',87,'cart-plus','recorddelivery','1','user/deliveryhome','side','moneyin'),('Manage Report',25,'folder-open','reports','1','user/startsales','side','report'),('Retail sales',90,'cart-plus','sales','1','user/viewsales','side','moneyin'),('Select User',1,'rss-square','selectuser','0','login','side','contact'),('Send Sms',15,'paper-plane','sendsms','1','user/viewsms','side','project'),('Tasks',12,'bullseye','task','1','user/viewtasks','side','project'),('Tasks Category',13,'birthday-cake','taskscategory','1','user/viewtaskcategory','side','project'),('Users',75,'rss-square','users','1','user/viewemployee','side','contact'),('Return/RePrint Sales',86,'paw','viewreturnsales','1','user/viewreturnsales','side','moneyout'),('Whole sale',88,'cart-plus','wholesale','1','user/viewwholesales','side','moneyin'); /*!40000 ALTER TABLE `modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modulesactions` -- DROP TABLE IF EXISTS `modulesactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modulesactions` ( `actionid` varchar(100) NOT NULL, `moduleid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `sort` int(11) NOT NULL, PRIMARY KEY (`actionid`,`moduleid`), KEY `phppos_modules_actions_ibfk_1` (`moduleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modulesactions` -- LOCK TABLES `modulesactions` WRITE; /*!40000 ALTER TABLE `modulesactions` DISABLE KEYS */; INSERT INTO `modulesactions` VALUES ('accommodationcleaner','accomodation','Tick ONLY if Cleaner',26),('accommodationreceiptionist','accomodation','Tick ONLY if Receptionist',27),('accomodationmanager','accomodation','Tick ONLY if manager',25),('accountlimit','sales','Enforce Daily Sales Limit',16),('add','assets','Add asset',1),('add','bankdeposits','add',1),('add','banktransfer','add',1),('add','biometricrecords','add',1),('add','branch','Add Baranch',1),('add','callcenter','Add Calls',1),('add','complain','Add complain',2),('add','config','add',1),('add','damagedproducts','add',1),('add','deals','add',1),('add','departments','add',1),('add','documents','add',1),('add','ecommerce','Add',1),('add','events','add',1),('add','grouping','add',1),('add','humanresource','Add Expense Request Form',1),('add','income','add',2),('add','incomeexpenses','add',1),('add','incomingstock','add',1),('add','incomingstore','Add incoming',1),('add','journalentry','add',1),('add','labourrecords','add',1),('add','leavemanagement','add',0),('add','lowproducts','add',1),('add','lowstocklist','add',6),('add','loyalitycards','add',1),('add','members','add',1),('add','payroll','add',1),('add','payrollsetup','add',1),('add','peoplecategory','add',1),('add','productlist','Add Products',7),('add','products','add',1),('add','productscategory','add',1),('add','projectsmanagement','Create New Project',2),('add','purchases','add',1),('add','quotation','Add Quotaion',1),('add','recorddelivery','Add Delivery',1),('add','sales','add',1),('add','sendsms','add',1),('add','task','add',1),('add','taskscategory','add',1),('add','users','add',1),('add','viewreturnsales','add',1),('add','wholesale','add',1),('addbatchno','purchases','Add batch No',33),('addcharges','accomodation','Add Room Chaerges',4),('adddailycollection','cashiersales','Add Daily Collection',7),('addexpirydate','purchases','Add Expiry Date',34),('addhouse','accomodation','Add House',1),('addpossiblefeedback','deals','Add Possible feedback',20),('addroom','accomodation','Add Room',3),('addstock','productlist','Add stock',4),('addstock','products','addstock',4),('advancebooking','accomodation','advance booking',11),('all','cashiersales','View all Cashier sales',4),('allcompalin','complain','View Others Complain',11),('allleaves ','humanresource','View all leaves',20),('allocate','humanresource','Allocate Money',5),('approve','humanresource','Make Approval',2),('approve','purchases','Approve Purchase order',22),('approveorders','ecommerce','Approve New orders',7),('assignproduction','productlist','Assign Production Items',62),('assignrooms','accomodation','Asign Cleaning rooms',7),('assigntask','task','Assign Task',10),('backdatesales','sales','Back date sales',17),('bioattendance','humanresource','Biometric Attendance',30),('budget','purchases','View Budget',10),('bulk','productlist','Upload bulk stock',1),('bulk','products','bulk',5),('bulkcheckin','accomodation','Bulk Checkin',58),('bulkpriceupdate','productlist','Bulk Price Update',33),('bulkpriceupdate','products','Bulk Price Update',33),('bulkreservation','accomodation','Bulk Reservation',59),('bulkstatuschange','accomodation','Bulk Room Status Change',60),('cancel','accomodation','Cancel Payment/Bookings',3),('card','accomodation','Sale in Visa Card',2),('card','sales','Card Sales',7),('cash','accomodation','Sale in Cash',2),('cash','sales','Sell in Cash',3),('cashiersales','cashiersales','View Sales',5),('change','password','change',1),('changepayment','accomodation','Change payment',9),('changeserialstatus','productlist','Change Serial Status',20),('changestatus','cashiersales','Approve Till Collections',68),('changestatus','recorddelivery','Change Status',6),('changetaxstatus','sales','Change Tax Status',30),('changeuomonsales','sales','Change Unit Of Measurement',33),('checkin','accomodation','View Room window',4),('checkinroom','accomodation','Check in Rooms',2),('checkoutcustomerwithbalance','accomodation','Check out customer with balance',20),('checkoutroom','accomodation','Check out Room',3),('cheque','accomodation','Sale in Cheque/Bank',2),('cheque','sales','Cheque/Bank sales',8),('ClaimDamaged','recorddelivery','Change to Claim Damaged',17),('ClaimOK','recorddelivery','Cahange to Claim OK',16),('Claimraised','recorddelivery','Change to Claim raised',15),('cleanrooms','accomodation','Clean Rooms',4),('clear','viewreturnsales','Clear Sales',5),('clearallsales','cashiersales','Clear all sales for others',10),('clearpayments','sales','Clear/Add payments',7),('clearsales','accomodation','Clear room sales',40),('clearsalesisdefault','cashiersales','Enable Clear-Sales Page As Default',79),('closebill','sales',' Close Bill',6),('closeexpense','incomeexpenses','Close Expense',3),('config','accomodation','Accommodation Settings',33),('credit','accomodation','Sale in Credit',2),('credit','sales','Credit sales',10),('creditnote','sales','Credit Note',8),('customerregister','accomodation','Customer Register',10),('dailycollections','accomodation','Daily Collections',56),('dailypayments','accomodation','View Daily Payments',10),('dailysales','accomodation',' Daily Sales',1),('dailysalesonly','cashiersales','View Only Daily sales Report',40),('delete','assets','Delete',5),('delete','bankdeposits','delete',3),('delete','branch','Delete Branch',5),('delete','callcenter','Delete calls',5),('delete','cashiersales','Delete Sales',4),('delete','complain','Delete Complain',11),('delete','config','delete',0),('delete','damagedproducts','delete',3),('delete','deals','delete',3),('delete','documents','delete',3),('delete','ecommerce','delete',3),('delete','events','delete',3),('delete','grouping','delete',3),('delete','humanresource','Delete Expense Request Form',3),('delete','incomingstock','delete',3),('delete','incomingstore','Delete incoming',3),('delete','peoplecategory','delete',3),('delete','productlist','Delete Products',4),('delete','products','delete',3),('delete','productscategory','delete',3),('delete','projectsmanagement','Delete Products',5),('delete','purchases','delete',3),('delete','quotation','Delete',3),('delete','recorddelivery','Delete Delivery',5),('delete','reports','Delete sales',3),('delete','sales','delete',3),('delete','sendsms','delete',3),('delete','task','delete',3),('delete','taskscategory','delete',3),('delete','users','delete',3),('delete','viewreturnsales','delete',3),('delete','wholesale','delete',2),('deleteallroles','users','Delete all Roles',5),('deletebank','accounting','Delete Bank Account',2),('deletedailycollections','cashiersales','Delete Daily Collections',9),('deleteglaccount','accounting','Delete GL Account',4),('deleteorder','products','Delete Order',5),('deletepeople','members','Delete Contacts',5),('deleteproductionitem','productlist','Delete Production Item',63),('Delivered','recorddelivery','Change to Delivered',14),('detailedvatinvoice','income','Show Detailed Vat Invoice',5),('discount','sales','Print Discount',5),('dispatch','products','Dispatch Products',6),('Dispatched','recorddelivery','Change to Dispatched',10),('displaycustomers','sales','Display employees using buttons',5),('dontprint','sales','Display Dont Print Button',15),('dontshowbp','reports','Dont Show B.Price',7),('dontshowprofit','reports','Don Not Show Profit',10),('dontshowstock','productlist','Dont show stock',82),('dontshowstock','products','Dont show stock',80),('dontshowstock','sales','Dont show stock balance during sales',30),('dontshowtotal','cashiersales','Do Not Show grand Total',6),('download','callcenter','download calls',4),('download','reports','download',2),('editmpesa','cashiersales','Enter Mpesa Amount Directly',3),('editmpesadate','cashiersales','Edit Mpesa Entry date',5),('editopenclosestock','productlist','Update Closing and Opening stock',10),('editsellingprice','sales','Change Selling Price',7),('editstocktaken','productlist','Change closed and stock taken',9),('entermpesacode','cashiersales','Enter Mpesa Code',3),('entermpesacode','sales','Enter Mpesa Code',40),('FailedDelivery','recorddelivery','Change to Failed Delivery',12),('givediscount','accomodation','Give Discount',4),('giveloyalityponts','sales','Give Poinsts',30),('housekeeping','accomodation','House Keeping',9),('leaseitems','sales','Lease Items',30),('leavesetup','humanresource','Add Leave setup',8),('linksalesorders','openclose','Link Order and sales',4),('Logout','sales','Log out After printing',5),('managecustomer','accomodation','Manager Customer',22),('managehotel','accomodation','Manage Hotel',6),('managerental','accomodation','Manage Rental Houses',8),('mergebill','sales','Merge Bill:',32),('more','lowstocklist','View more',6),('more','productlist','View Added stock',2),('more','products','more',4),('moresales','sales','Add More Sales',4),('moresales','viewreturnsales','Add more Sales',5),('move','productlist','Move stock/ Break/Distribute',2),('mpesa','accomodation','Sale in mpesa',2),('mpesa','sales','Sale in Mpesa',6),('mpesabalance','sales','Bank /Mpesa Balance',5),('mpesapendingreport','cashiersales','View All Pending Mpesa Report',20),('mpesaverifiedreport','cashiersales','View All Verified Mpesa Report',21),('negativesales','sales','Make Negative sales',60),('negativestockadjustment','productlist','Negative Stock Adjustment',51),('negativestockadjustment','products','Negative Stock Adjustment',51),('Novatsales','config','No Vat Sales',20),('opencloseshift','members','Open and Close Employee Shift',26),('openclosestock','productlist','Open and Close stock',8),('order','sales','User Order Button',6),('overalclearingpendingtasks','task','Clear Overal pending tasks for anyone',20),('pendingisdefault','cashiersales','Enable Pending Page As Default',69),('plotexpenses','accomodation','Plot Expenses',63),('points','accomodation','Sale in Loyality Points',2),('points','sales','Loyality Point sales',9),('Post Bank Deposits','accomodation','bankdeposits',6),('postexpense','accomodation','Post Expense',5),('postgeneraltask','task','Post General Task',5),('postrentalexpenses','incomeexpenses','Post rental Expeses',20),('postspecifictask','task','Post Specific Task',3),('posttaskforothers','task','Post task for others',11),('price','products','change price',7),('printbill','sales',' Print Bill',6),('printdelivery','sales','Print delivery',38),('printreceipt','sales','Print Receipt',1),('productcode','config','Display Product code in receipt',5),('productdiscount','sales','Give discount Product',6),('receiptno','sales','Enter Receipt No Directly',50),('receiveoverpayment','income','Receive overpayment',7),('recordcoins','sales','Record Savings/Coins',26),('removeallstock','products','View all outgoing stock',7),('removestock','products','Issue stock from store',6),('report','recorddelivery','Delivery Report',9),('reprint','sales','Reprint Receipt',5),('return','viewreturnsales','Return Sales',4),('ReturnedandReceived','recorddelivery','Change to Returned and Received',13),('reversempesa','cashiersales','Reverse Mpesa',9),('sale','sales','sale',4),('sale','wholesale','sale',0),('salebelowbprice','sales','Can sell below set b.price',10),('salesbeyondbprice','sales','Can sell below set s.price',9),('salesorder','purchases','Sales Order',10),('salesperson','sales','Choose Sales person',50),('select','sales','Select Customers',5),('selectcurrency','sales','Select Currency',50),('selectmessage','sales','Select Order Message',1),('selectroom','sales','Select Room',12),('selecttable','sales','Select Table',35),('sell','openclose','Sell',1),('sendsms','sales','Send Digital Receipt/Sms',40),('setup','ecommerce','Setup E-commerce',6),('showdefaultserials','purchases','Generate with default Serial Numbers',20),('splitbill','sales','Split Bill',31),('stocktaking','productlist','Do stock Taking',8),('suspend','sales','Suspend/Cancel Sales',1),('transfer','productlist','Transfer Products',3),('transferdeals','deals','Transfer Deals',30),('transfersms','sendsms','Transfer sms to others',5),('upadate','callcenter','Update',2),('update','assets','Update',2),('update','bankdeposits','update',2),('update','branch','Update Branch',3),('update','complain','Update Complain',6),('update','config','update',2),('update','damagedproducts','update',2),('update','deals','update',2),('update','documents','update',2),('update','ecommerce','Upadate Data',2),('update','events','update',2),('update','grouping','update',2),('update','humanresource','Update Expense Request Form',2),('update','incomeexpenses','update',3),('update','incomingstock','update',2),('update','lowproducts','update',1),('update','loyalitycards','update',2),('update','members','update',2),('update','peoplecategory','update',2),('update','productlist','Update Product',6),('update','products','update',2),('update','productscategory','update',2),('update','profile','update',1),('update','projectsmanagement','Edit Projects',4),('update','purchases','update',2),('update','quotation','Update',2),('update','recorddelivery','Update Delivery',3),('update','reports','update sales',4),('update','sales','update',2),('update','sendsms','update',2),('update','task','update',2),('update','taskscategory','update',2),('update','users','update',2),('update','viewreturnsales','update',2),('update','wholesale','update',4),('updatebuyingprice','purchases','update buying price',4),('updatecharges','accomodation','Update Room Charges',4),('updateclosedexpenses','incomeexpenses','Edit closed expenses',4),('updateclosedinvoice','purchases','update closed invoice',6),('updatedailycollections','cashiersales','Update Daily Collection',9),('updatehouse','accomodation','Update House',5),('updatepaymentmode','sales','Update Payment Mode',7),('updateproductionitem','productlist','Update Production Item',64),('updateqtysales','sales','Update Quantity on sales Window',61),('UpdateRenewal','members','Update Renewal',30),('updateroom','accomodation','Update Room',5),('updatesellingprice','purchases','update selling price',5),('updatestock','productlist','Update Stock (Cl.Stock)',2),('usekeyboard','sales','Use Internal Keyboard',50),('view','accounting','View Accounting',4),('view','accountingreports','view',1),('view','branch','View Branch',2),('view','callcenter','View Calls',3),('view','complain','View Complain',5),('view','displayreport','Display Report',1),('view','humanresource','View Expense Request Form',4),('View','income','View',1),('view','incomingstock','View Incoming store products',2),('view','incomingstore','View Incoming store products',4),('view','lowstocklist','View',6),('view','productlist','View Products',5),('view','projectsmanagement','View Projects',1),('view','quotation','View',5),('view','recorddelivery','View Delivery',2),('view','reports','view',1),('View others contact','deals','viewcontact',20),('viewall','deals','View other people\'s deals',5),('viewall','quotation','View others quoation',10),('viewall','reports','View all Branches',6),('viewall','task','View other people\'s tasks',2),('viewallcollections','cashiersales','View Others Daily Collection',16),('viewallcounters','cashiersales','View All Counters',20),('viewallcounters','purchases','View All Counters',20),('viewalldocuments','documents','View all Documents',5),('viewallpayroll','humanresource','View Payroll For everyone',5),('viewbills','incomeexpenses','View Bills',6),('viewbprice','productlist','Dont View Bprice',88),('viewbprice','products','Dont View Bprice',88),('viewbuyingprice','sales','view buying price',7),('viewcommission','cashiersales','View Commision',31),('viewcreditors','incomeexpenses','VIew creditors',8),('viewdailycollections','cashiersales','View Daily Collection',8),('viewdebtors','incomeexpenses','View Deptors',7),('viewdirectpurchases','purchases','View Direct Purchase',8),('viewexpense','incomeexpenses','View Expense',6),('viewhouse','accomodation','View House',1),('viewmpesamessages','cashiersales','View Mpesa Messages',40),('vieworders','ecommerce','View Orders',4),('viewothersgeneraltask','task','View Others General Task',9),('viewothersspecifictask','task','View Others Specific Task',7),('viewproduction','productlist','View Production',60),('viewproductsfromallbranches','productlist','View Products From All Branches',30),('viewpurchase','purchases','Purchase Order',9),('viewquotation','purchases','View Quotation',7),('viewreport','openclose','view open and close report',3),('viewreports','accomodation','View Reports',22),('viewroomcleaned','accomodation','View Room Cleaned',33),('viewrooms','accomodation','View All Rooms',1),('viewserials','productlist','View serial Number',20),('viewserials','purchases','View serial Numbers',8),('viewtill','cashiersales','View Till Collections',8),('voucher','accomodation','Sale in Voucher',2),('voucher','sales','Gift Voucher sales',9),('wiewinvoices','income','View all invoices',3),('wiewinvoices','incomeexpenses','View all invoices',5); /*!40000 ALTER TABLE `modulesactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `moneydocuments` -- DROP TABLE IF EXISTS `moneydocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `moneydocuments` ( `id` int(50) NOT NULL, `name` text NOT NULL, `imageid` varchar(50) NOT NULL, `user` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `moneydocuments` -- LOCK TABLES `moneydocuments` WRITE; /*!40000 ALTER TABLE `moneydocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `moneydocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mpesasales` -- DROP TABLE IF EXISTS `mpesasales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mpesasales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `code` varchar(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mpesasales` -- LOCK TABLES `mpesasales` WRITE; /*!40000 ALTER TABLE `mpesasales` DISABLE KEYS */; INSERT INTO `mpesasales` VALUES (1,1700.00,1,1,'2023-05-26 21:19:44','1',1,'1','REP5DJTOO1'),(2,900.00,1,1,'2023-05-27 05:03:49','1',1,'1','REP0DPF1J2'); /*!40000 ALTER TABLE `mpesasales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nation` -- DROP TABLE IF EXISTS `nation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(2) NOT NULL DEFAULT '', `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=245 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nation` -- LOCK TABLES `nation` WRITE; /*!40000 ALTER TABLE `nation` DISABLE KEYS */; INSERT INTO `nation` VALUES (1,'KE','Kenya',''),(2,'CA','Canada',''),(3,'AF','Afghanistan',''),(4,'AL','Albania',''),(5,'DZ','Algeria',''),(6,'DS','American Samoa',''),(7,'AD','Andorra',''),(8,'AO','Angola',''),(9,'AI','Anguilla',''),(10,'AQ','Antarctica',''),(11,'AG','Antigua and/or Barbuda',''),(12,'AR','Argentina',''),(13,'AM','Armenia',''),(14,'AW','Aruba',''),(15,'AU','Australia',''),(16,'AT','Austria',''),(17,'AZ','Azerbaijan',''),(18,'BS','Bahamas',''),(19,'BH','Bahrain',''),(20,'BD','Bangladesh',''),(21,'BB','Barbados',''),(22,'BY','Belarus',''),(23,'BE','Belgium',''),(24,'BZ','Belize',''),(25,'BJ','Benin',''),(26,'BM','Bermuda',''),(27,'BT','Bhutan',''),(28,'BO','Bolivia',''),(29,'BA','Bosnia and Herzegovina',''),(30,'BW','Botswana',''),(31,'BV','Bouvet Island',''),(32,'BR','Brazil',''),(33,'IO','British lndian Ocean Territory',''),(34,'BN','Brunei Darussalam',''),(35,'BG','Bulgaria',''),(36,'BF','Burkina Faso',''),(37,'BI','Burundi',''),(38,'KH','Cambodia',''),(39,'CM','Cameroon',''),(40,'CV','Cape Verde',''),(41,'KY','Cayman Islands',''),(42,'CF','Central African Republic',''),(43,'TD','Chad',''),(44,'CL','Chile',''),(45,'CN','China',''),(46,'CX','Christmas Island',''),(47,'CC','Cocos (Keeling) Islands',''),(48,'CO','Colombia',''),(49,'KM','Comoros',''),(50,'CG','Congo',''),(51,'CK','Cook Islands',''),(52,'CR','Costa Rica',''),(53,'HR','Croatia (Hrvatska)',''),(54,'CU','Cuba',''),(55,'CY','Cyprus',''),(56,'CZ','Czech Republic',''),(57,'DK','Denmark',''),(58,'DJ','Djibouti',''),(59,'DM','Dominica',''),(60,'DO','Dominican Republic',''),(61,'TP','East Timor',''),(62,'EC','Ecuador',''),(63,'EG','Egypt',''),(64,'SV','El Salvador',''),(65,'GQ','Equatorial Guinea',''),(66,'ER','Eritrea',''),(67,'EE','Estonia',''),(68,'ET','Ethiopia',''),(69,'FK','Falkland Islands (Malvinas)',''),(70,'FO','Faroe Islands',''),(71,'FJ','Fiji',''),(72,'FI','Finland',''),(73,'FR','France',''),(74,'FX','France, Metropolitan',''),(75,'GF','French Guiana',''),(76,'PF','French Polynesia',''),(77,'TF','French Southern Territories',''),(78,'GA','Gabon',''),(79,'GM','Gambia',''),(80,'GE','Georgia',''),(81,'DE','Germany',''),(82,'GH','Ghana',''),(83,'GI','Gibraltar',''),(84,'GR','Greece',''),(85,'GL','Greenland',''),(86,'GD','Grenada',''),(87,'GP','Guadeloupe',''),(88,'GU','Guam',''),(89,'GT','Guatemala',''),(90,'GN','Guinea',''),(91,'GW','Guinea-Bissau',''),(92,'GY','Guyana',''),(93,'HT','Haiti',''),(94,'HM','Heard and Mc Donald Islands',''),(95,'HN','Honduras',''),(96,'HK','Hong Kong',''),(97,'HU','Hungary',''),(98,'IS','Iceland',''),(99,'IN','India',''),(100,'ID','Indonesia',''),(101,'IR','Iran (Islamic Republic of)',''),(102,'IQ','Iraq',''),(103,'IE','Ireland',''),(104,'IL','Israel',''),(105,'IT','Italy',''),(106,'CI','Ivory Coast',''),(107,'JM','Jamaica',''),(108,'JP','Japan',''),(109,'JO','Jordan',''),(110,'KZ','Kazakhstan',''),(111,'US','United States ',''),(112,'KI','Kiribati',''),(113,'KP','Korea, Democratic People\'s Republic of',''),(114,'KR','Korea, Republic of',''),(115,'XK','Kosovo',''),(116,'KW','Kuwait',''),(117,'KG','Kyrgyzstan',''),(118,'LA','Lao People\'s Democratic Republic',''),(119,'LV','Latvia',''),(120,'LB','Lebanon',''),(121,'LS','Lesotho',''),(122,'LR','Liberia',''),(123,'LY','Libyan Arab Jamahiriya',''),(124,'LI','Liechtenstein',''),(125,'LT','Lithuania',''),(126,'LU','Luxembourg',''),(127,'MO','Macau',''),(128,'MK','Macedonia',''),(129,'MG','Madagascar',''),(130,'MW','Malawi',''),(131,'MY','Malaysia',''),(132,'MV','Maldives',''),(133,'ML','Mali',''),(134,'MT','Malta',''),(135,'MH','Marshall Islands',''),(136,'MQ','Martinique',''),(137,'MR','Mauritania',''),(138,'MU','Mauritius',''),(139,'TY','Mayotte',''),(140,'MX','Mexico',''),(141,'FM','Micronesia, Federated States of',''),(142,'MD','Moldova, Republic of',''),(143,'MC','Monaco',''),(144,'MN','Mongolia',''),(145,'ME','Montenegro',''),(146,'MS','Montserrat',''),(147,'MA','Morocco',''),(148,'MZ','Mozambique',''),(149,'MM','Myanmar',''),(150,'NA','Namibia',''),(151,'NR','Nauru',''),(152,'NP','Nepal',''),(153,'NL','Netherlands',''),(154,'AN','Netherlands Antilles',''),(155,'NC','New Caledonia',''),(156,'NZ','New Zealand',''),(157,'NI','Nicaragua',''),(158,'NE','Niger',''),(159,'NG','Nigeria',''),(160,'NU','Niue',''),(161,'NF','Norfork Island',''),(162,'MP','Northern Mariana Islands',''),(163,'NO','Norway',''),(164,'OM','Oman',''),(165,'PK','Pakistan',''),(166,'PW','Palau',''),(167,'PA','Panama',''),(168,'PG','Papua New Guinea',''),(169,'PY','Paraguay',''),(170,'PE','Peru',''),(171,'PH','Philippines',''),(172,'PN','Pitcairn',''),(173,'PL','Poland',''),(174,'PT','Portugal',''),(175,'PR','Puerto Rico',''),(176,'QA','Qatar',''),(177,'RE','Reunion',''),(178,'RO','Romania',''),(179,'RU','Russian Federation',''),(180,'RW','Rwanda',''),(181,'KN','Saint Kitts and Nevis',''),(182,'LC','Saint Lucia',''),(183,'VC','Saint Vincent and the Grenadines',''),(184,'WS','Samoa',''),(185,'SM','San Marino',''),(186,'ST','Sao Tome and Principe',''),(187,'SA','Saudi Arabia',''),(188,'SN','Senegal',''),(189,'RS','Serbia',''),(190,'SC','Seychelles',''),(191,'SL','Sierra Leone',''),(192,'SG','Singapore',''),(193,'SK','Slovakia',''),(194,'SI','Slovenia',''),(195,'SB','Solomon Islands',''),(196,'SO','Somalia',''),(197,'ZA','South Africa',''),(198,'GS','South Georgia South Sandwich Islands',''),(199,'ES','Spain',''),(200,'LK','Sri Lanka',''),(201,'SH','St. Helena',''),(202,'PM','St. Pierre and Miquelon',''),(203,'SD','Sudan',''),(204,'SR','Suriname',''),(205,'SJ','Svalbarn and Jan Mayen Islands',''),(206,'SZ','Swaziland',''),(207,'SE','Sweden',''),(208,'CH','Switzerland',''),(209,'SY','Syrian Arab Republic',''),(210,'TW','Taiwan',''),(211,'TJ','Tajikistan',''),(212,'TZ','Tanzania, United Republic of',''),(213,'TH','Thailand',''),(214,'TG','Togo',''),(215,'TK','Tokelau',''),(216,'TO','Tonga',''),(217,'TT','Trinidad and Tobago',''),(218,'TN','Tunisia',''),(219,'TR','Turkey',''),(220,'TM','Turkmenistan',''),(221,'TC','Turks and Caicos Islands',''),(222,'TV','Tuvalu',''),(223,'UG','Uganda',''),(224,'UA','Ukraine',''),(225,'AE','United Arab Emirates',''),(226,'GB','United Kingdom',''),(227,'UM','United States minor outlying islands',''),(228,'UY','Uruguay',''),(229,'UZ','Uzbekistan',''),(230,'VU','Vanuatu',''),(231,'VA','Vatican City State',''),(232,'VE','Venezuela',''),(233,'VN','Vietnam',''),(234,'VG','Virigan Islands (British)',''),(235,'VI','Virgin Islands (U.S.)',''),(236,'WF','Wallis and Futuna Islands',''),(237,'EH','Western Sahara',''),(238,'YE','Yemen',''),(239,'YU','Yugoslavia',''),(240,'ZR','Zaire',''),(241,'ZM','Zambia',''),(242,'ZW','Zimbabwe',''),(243,'','ugali',' \r\n'),(244,'SA','South Sudan','South Sudan'); /*!40000 ALTER TABLE `nation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newstock` -- DROP TABLE IF EXISTS `newstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` decimal(10,2) NOT NULL, `date` varchar(50) NOT NULL, `item_id1` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT '1', `balance` varchar(30) NOT NULL, `stockfrom` varchar(50) NOT NULL, `stockto` varchar(50) NOT NULL, `item_id` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `discount` varchar(10) NOT NULL, `qty` decimal(10,2) NOT NULL, `tax` varchar(30) NOT NULL, `sellingprice` varchar(11) NOT NULL, `vat` varchar(50) NOT NULL, `taxable` varchar(50) NOT NULL, `vatrate` varchar(50) NOT NULL DEFAULT '16', `serial` varchar(30) NOT NULL, `itemstatus` varchar(30) NOT NULL DEFAULT 'received', `updatedby` int(11) NOT NULL, `updatedat` datetime NOT NULL, `uom` varchar(30) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `branchid` int(11) NOT NULL DEFAULT 1, `buyingpriceinclusive` decimal(10,2) DEFAULT NULL, `taxtype` varchar(20) NOT NULL DEFAULT 'Inclusive', `category` varchar(20) NOT NULL DEFAULT 'branch', `projectid` int(50) DEFAULT NULL, `batchno` varchar(50) NOT NULL, `enddate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2236 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newstock` -- LOCK TABLES `newstock` WRITE; /*!40000 ALTER TABLE `newstock` DISABLE KEYS */; INSERT INTO `newstock` VALUES (1,'GILBEYS GIN 250ML','',16.00,'2022-07-01 13:53:39','24.00','16','newstock','1','','',388.00,'','1','40','internal','1','6161101602167','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2,'GILBEYS GIN 750ML','',1.00,'2022-07-01 15:24:47','12.00','16','newstock','1','','',1125.00,'','1','13','internal','1','5010103930628','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(3,'JW BLACK LABEL 750ML','',1.00,'2022-07-03 01:07:35','9.00','16','newstock','1','','',2433.00,'','1','10','internal','1','5000267024011','','',0.00,'','3300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(4,'SAVANNA DRY CIDER 330ML','',1.00,'2022-07-04 17:39:22','2.00','12','newstock','1','','',201.00,'','1','3','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(5,'CAPRICE DRY WHITE WINE 1LTR','',1.00,'2022-07-07 15:05:36','1.00','16','newstock','1','','',586.00,'','1','2','internal','1','6161100420083','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(6,'','1',24.00,'2022-07-07 15:43:46','19.00','16','newstock','1','161657197762','15',182.00,'','1','43','supplier','1','8712000900045','','',0.00,'VATABLE','250','','','','','received',0,'0000-00-00 00:00:00','pcs','24',1,NULL,'Inclusive','branch',NULL,'',''),(7,'','1',12.00,'2022-07-07 15:44:05','14.00','16','newstock','1','161657197762','15',150.45,'','1','26','supplier','1','6161101603324','','',0.00,'VATABLE','200','','','','','received',0,'0000-00-00 00:00:00','pcs','12',1,NULL,'Inclusive','branch',NULL,'',''),(8,'','1',24.00,'2022-07-07 15:44:20','17.00','16','newstock','1','161657197762','15',189.75,'','1','41','supplier','1','6161101602372','','',0.00,'VATABLE','250','','','','','received',0,'0000-00-00 00:00:00','pcs','24',1,NULL,'Inclusive','branch',NULL,'',''),(9,'','1',24.00,'2022-07-07 15:44:37','16.00','16','newstock','1','161657197762','15',172.75,'','1','40','supplier','1','6161101601979','','',0.00,'VATABLE','250','','','','','received',0,'0000-00-00 00:00:00','pcs','24',1,NULL,'Inclusive','branch',NULL,'',''),(10,'','1',6.00,'2022-07-07 15:44:45','19.00','16','newstock','1','161657197762','15',154.95,'','1','25','supplier','1','6161101602600','','',0.00,'VATABLE','220','','','','','received',0,'0000-00-00 00:00:00','pcs','6',1,NULL,'Inclusive','branch',NULL,'',''),(11,'','1',24.00,'2022-07-07 15:44:55','8.00','16','newstock','1','161657197762','15',190.38,'','1','32','supplier','1','6161101603379','','',0.00,'VATABLE','250','','','','','received',0,'0000-00-00 00:00:00','pcs','24',1,NULL,'Inclusive','branch',NULL,'',''),(12,'MONSTER MULE','',24.00,'2022-07-07 15:57:24','0.00','16','newstock','1','','',153.00,'','1','24','internal','1','5060639129003','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(13,'AZAM ENERGY 300ML','',24.00,'2022-07-07 15:57:54','0.00','16','newstock','1','','',31.25,'','1','24','internal','1','6009644549320','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(14,'','1',24.00,'2022-07-15 19:33:34','20.00','12','newstock','1','121657902531','15',172.75,'','1','44','supplier','1','6161101601979','','',0.00,'VATABLE','250','','','','','received',0,'0000-00-00 00:00:00','pcs','24.00',1,NULL,'Inclusive','branch',NULL,'',''),(15,'','1',24.00,'2022-07-22 15:37:15','0.00','12','newstock','1','121658493361','14',53.33,'','1','24','supplier','1','5449000131836','','',0.00,'VATABLE','70','','','','','received',0,'0000-00-00 00:00:00','pcs','24.00',1,NULL,'Inclusive','branch',NULL,'',''),(16,'','1',12.00,'2022-07-22 15:37:55','0.00','12','newstock','1','121658493361','14',53.33,'','1','12','supplier','1','5449000139030','','',0.00,'VATABLE','70','','','','','received',0,'0000-00-00 00:00:00','pcs','12.00',1,NULL,'Inclusive','branch',NULL,'',''),(17,'','1',24.00,'2022-07-22 15:38:19','7.00','12','newstock','1','121658493361','14',53.33,'','1','31','supplier','1','54491069','','',0.00,'VATABLE','70','','','','','received',0,'0000-00-00 00:00:00','pcs','24.00',1,NULL,'Inclusive','branch',NULL,'',''),(18,'KREST 500ML','',-1.00,'2022-07-22 15:58:23','12.00','12','newstock','1','','',53.33,'','1','11','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(19,'','1',1.00,'2022-07-23 23:22:23','0.00','12','newstock','1','121657902531','15',729.00,'','1','1','supplier','1','6001496301705','','',0.00,'VATABLE','1000','','','','','received',0,'0000-00-00 00:00:00','pcs','1',1,NULL,'Inclusive','branch',NULL,'',''),(20,'','1',1.00,'2022-07-23 23:23:50','1.00','12','newstock','1','121657902531','15',729.00,'','1','2','supplier','1','6001496301705','','',0.00,'VATABLE','1000','','','','','received',0,'0000-00-00 00:00:00','pcs','1',1,NULL,'Inclusive','branch',NULL,'',''),(21,'','1',1.00,'2022-07-23 23:25:36','0.00','12','newstock','1','121657902531','15',147.00,'','1','1','supplier','1','90162602','','',0.00,'VATABLE','200','','','','','received',0,'0000-00-00 00:00:00','pcs','1',1,NULL,'Inclusive','branch',NULL,'',''),(23,'','1',1.00,'2022-07-23 23:30:20','0.00','12','newstock','1','121657902531','15',41.82,'','1','1','supplier','1','5060608740253','','',0.00,'VATABLE','70','','','','','received',0,'0000-00-00 00:00:00','pcs','1',1,NULL,'Inclusive','branch',NULL,'',''),(26,'GILBEYS GIN 750ML','',2.00,'2022-07-28 16:21:21','1.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(27,'SAVANNA DRY CIDER 330ML','',12.00,'2022-07-28 16:48:06','0.00','12','newstock','1','','',201.00,'','1','12','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(28,'WHITE CAP CAN 500ML','',6.00,'2022-07-28 16:58:20','6.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(29,'GUINNESS CAN 500ML','',10.00,'2022-07-28 17:09:14','14.00','12','newstock','1','','',189.75,'','1','24','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(30,'SAFARI LEMONADE','',12.00,'2022-07-28 17:12:03','1.00','12','newstock','1','','',37.08,'','1','13','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(31,'PREDATOR ENERGY DRINK','',12.00,'2022-07-28 17:14:31','0.00','12','newstock','1','','',41.82,'','1','12','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(32,'VICEROY 750ML','',3.00,'2022-07-28 17:15:35','0.00','12','newstock','1','','',1072.00,'','1','3','internal','1','6001496011796','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(33,'VICEROY 375ML','',3.00,'2022-07-28 17:17:48','2.00','12','newstock','1','','',544.00,'','1','5','internal','1','6001496011772','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(34,'SMIRNOFF BLACK ICE 330ML CAN','',17.00,'2022-07-29 15:55:25','0.00','12','newstock','1','','',150.45,'','1','17','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(35,'SMIRNOFF GUARANA 330ML','',12.00,'2022-08-02 17:29:10','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(36,'GUINNESS CAN 500ML','',22.00,'2022-08-03 18:05:48','11.00','12','newstock','1','','',189.75,'','1','33','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(37,'GUINNESS CAN 500ML','',22.00,'2022-08-03 18:08:52','0.00','12','newstock','1','','',189.75,'','Main','22','Internal','Main','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(38,'TUSKER LAGER CAN 500ML','',6.00,'2022-08-03 18:12:51','12.00','12','newstock','1','','',172.75,'','1','18','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(39,'SMIRNOFF GUARANA 330ML','',12.00,'2022-08-03 18:14:26','8.00','12','newstock','1','','',150.45,'','1','20','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(40,'HEINEKEN GLASS300ML','',24.00,'2022-08-03 18:16:44','2.00','12','newstock','1','','',174.00,'','1','26','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(41,'WHITE CAP CAN 500ML','',12.00,'2022-08-03 18:17:18','7.00','12','newstock','1','','',190.38,'','1','19','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(42,'REDBULL','',8.00,'2022-08-06 03:39:10','0.00','12','newstock','1','','',147.00,'','1','8','internal','1','90162602','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(43,'DUNHILL SINGLE SWITCH','',1.00,'2022-08-07 00:22:05','0.00','12','newstock','1','','',317.26,'','1','1','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(44,'EMBASSY RED','',1.00,'2022-08-07 00:25:32','0.00','12','newstock','1','','',308.50,'','1','1','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(45,'REDBULL','',4.00,'2022-08-07 00:43:15','4.00','12','newstock','1','','',147.00,'','1','8','internal','1','90162602','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(46,'PREDATOR ENERGY DRINK','',8.00,'2022-08-10 23:07:34','0.00','12','newstock','1','','',41.82,'','1','8','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(47,'KERINGET 1LTR','',8.00,'2022-08-13 18:33:45','16.00','12','newstock','1','','',74.58,'','1','24','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(48,'KERINGET 500ML','',48.00,'2022-08-13 18:34:37','0.00','12','newstock','1','','',44.58,'','1','48','internal','1','5018907197803','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(49,'PREDATOR ENERGY DRINK','',12.00,'2022-08-13 18:37:38','0.00','12','newstock','1','','',41.82,'','1','12','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(50,'PREDATOR ENERGY DRINK','',44.00,'2022-08-13 18:40:25','12.00','12','newstock','1','','',41.82,'','1','56','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(51,'KENYA CANE 750ML','',2.00,'2022-08-13 18:41:09','0.00','12','newstock','1','','',653.00,'','1','2','internal','1','5010103930833','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(52,'KENYA CANE 350ML','',5.00,'2022-08-13 18:41:43','0.00','12','newstock','1','','',335.00,'','1','5','internal','1','5010103930840','','',0.00,'','430','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(53,'CHROM GIN 750ML','',12.00,'2022-08-13 18:48:31','0.00','12','newstock','1','','',501.00,'','1','12','internal','1','6161101605465','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(54,'TUSKER LAGER CAN 500ML','',23.00,'2022-08-13 19:05:31','1.00','12','newstock','1','','',172.75,'','1','24','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(55,'TUSKER LAGER CAN 500ML','',6.00,'2022-08-13 19:06:04','24.00','12','newstock','1','','',172.75,'','1','30','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(56,'HEINEKEN GLASS300ML','',20.00,'2022-08-13 19:34:11','4.00','12','newstock','1','','',174.00,'','1','24','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(57,'HEINEKEN CAN 500ML','',19.00,'2022-08-13 19:35:08','5.00','12','newstock','1','','',182.00,'','1','24','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(58,'BALOZI LAGER CAN 500ML','',21.00,'2022-08-13 19:36:40','3.00','12','newstock','1','','',172.83,'','1','24','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(59,'SMIRNOFF BLACK ICE 330ML CAN','',22.00,'2022-08-13 19:37:17','2.00','12','newstock','1','','',150.45,'','1','24','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(60,'SMIRNOFF GUARANA 330ML','',23.00,'2022-08-13 19:37:47','4.00','12','newstock','1','','',150.45,'','1','27','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(61,'SAFARI LEMONADE','',9.00,'2022-08-13 19:39:16','2.00','12','newstock','1','','',37.08,'','1','11','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(62,'WHITE CAP CAN 500ML','',21.00,'2022-08-13 19:40:20','1.00','12','newstock','1','','',190.38,'','1','22','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(63,'TONIC WATER 500ML','',9.00,'2022-08-13 19:42:49','3.00','12','newstock','1','','',53.33,'','1','12','internal','1','50112265','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(64,'CULEMBORG CAPE RED 750ML','',1.00,'2022-08-18 18:40:06','1.00','12','newstock','1','','',850.00,'','1','2','internal','1','6001506011709','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(65,'CULEMBORG CAPE WHITE 750ML','',2.00,'2022-08-18 18:40:37','0.00','12','newstock','1','','',850.00,'','1','2','internal','1','6001506003599','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(66,'DROSTDY HOF CLARET 750ML','',4.00,'2022-08-18 18:41:37','0.00','12','newstock','1','','',628.00,'','1','4','internal','1','6001495201501','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(67,'PILSNER CAN 500ML','',4.00,'2022-08-18 18:42:24','0.00','12','newstock','1','','',154.95,'','1','4','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(68,'REDBULL','',12.00,'2022-08-18 18:46:55','0.00','12','newstock','1','','',147.00,'','1','12','internal','1','90162602','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(69,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2022-08-18 21:15:23','5.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(70,'MONSTER MULE','',58.00,'2022-08-20 21:48:59','11.00','12','newstock','1','','',153.00,'','1','69','internal','1','5060639129003','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(71,'SMIRNOFF BLACK ICE 330ML CAN','',24.00,'2022-08-20 22:04:57','0.00','12','newstock','1','','',150.45,'','1','24','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(72,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2022-08-20 22:07:23','24.00','12','newstock','1','','',150.45,'','1','36','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(73,'BALOZI LAGER CAN 500ML','',12.00,'2022-08-20 22:08:26','11.00','12','newstock','1','','',172.83,'','1','23','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(74,'TUSKER LAGER CAN 500ML','',24.00,'2022-08-20 22:09:34','4.00','12','newstock','1','','',172.75,'','1','28','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(75,'GUINNESS CAN 500ML','',24.00,'2022-08-20 22:10:46','5.00','12','newstock','1','','',189.75,'','1','29','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(76,'GILBEYS GIN 750ML','',3.00,'2022-08-20 22:11:16','0.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(77,'GILBEYS GIN 750ML','',3.00,'2022-08-20 22:14:50','3.00','12','newstock','1','','',1125.00,'','1','6','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(78,'DUNHILL SINGLE SWITCH','',8.00,'2022-08-21 00:00:01','0.00','12','newstock','1','','',317.26,'','1','8','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(79,'DUNHILL DOUBLE SWITCH','',8.00,'2022-08-21 00:04:03','0.00','12','newstock','1','','',327.04,'','1','8','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(80,'ROTHMANS SPORTMAN','',8.00,'2022-08-21 00:04:42','5.00','12','newstock','1','','',251.50,'','1','13','internal','1','6008165007685','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(81,'EMBASSY RED','',8.00,'2022-08-21 00:05:07','0.00','12','newstock','1','','',308.50,'','1','8','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(82,'DUNHILL EMBASSY RED','',8.00,'2022-08-21 00:05:39','2.00','12','newstock','1','','',308.53,'','1','10','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(83,'SMIRNOFF BLACK ICE 330ML CAN','',2.00,'2022-08-22 20:47:54','32.00','12','newstock','1','','',150.45,'','1','34','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(84,'SAFARI LEMONADE','',1.00,'2022-08-22 21:33:59','1.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(85,'ROBERTSON NATURAL SWEET ROSE 1.5L','',4.00,'2022-08-23 00:30:13','0.00','12','newstock','1','','',1400.00,'','Main','4','Internal','Main','6002039008686','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(86,'ROBERTSON NATURAL SWEET RED 750ML','',6.00,'2022-08-23 00:31:26','0.00','12','newstock','1','','',790.00,'','Main','6','Internal','Main','6002039005746','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(87,'KERINGET 1LTR','',3.00,'2022-09-02 01:46:18','0.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(88,'SAFARI LEMONADE','',3.00,'2022-09-02 01:46:43','0.00','12','newstock','1','','',37.08,'','1','3','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(89,'SAFARI LEMONADE','',1.00,'2022-09-02 02:06:34','0.00','12','newstock','1','','',37.08,'','1','1','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(90,'KERINGET 1LTR','',1.00,'2022-09-02 02:08:06','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(91,'TUSKER LAGER CAN 500ML','',3.00,'2022-09-02 03:12:16','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(92,'4TH STREET SWEET WHITE750ML','',2.00,'2022-09-03 19:51:47','0.00','12','newstock','1','','',641.00,'','Main','2','Internal','Main','6001108049599','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(93,'4TH STREET SWEET RED 750ML','',2.00,'2022-09-03 19:52:14','0.00','12','newstock','1','','',641.00,'','Main','2','Internal','Main','6001108049582','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(94,'CELLAR CASK RED 750ML','',2.00,'2022-09-03 19:52:40','0.00','12','newstock','1','','',729.00,'','Main','2','Internal','Main','6001496301804','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(95,'CELLA CASK WHITE 750ML','',2.00,'2022-09-03 19:53:02','0.00','12','newstock','1','','',729.00,'','Main','2','Internal','Main','6001496301705','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(96,'CAPRICE SWEET WHITE 1LTR','',1.00,'2022-09-03 19:59:36','0.00','12','newstock','1','','',586.00,'','Main','1','Internal','Main','6161100421288','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(97,'CAPRICE SWEET RED 1LTR','',1.00,'2022-09-03 20:07:47','0.00','12','newstock','1','','',586.00,'','1','1','internal','1','6161100421271','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(98,'REDBULL','',10.00,'2022-09-03 20:09:45','2.00','12','newstock','1','','',147.00,'','1','12','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(99,'BALOZI LAGER CAN 500ML','',14.00,'2022-09-03 20:10:21','10.00','12','newstock','1','','',172.83,'','1','24','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(100,'SMIRNOFF GUARANA 330ML','',10.00,'2022-09-03 20:11:25','2.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(101,'GILBEYS GIN 350ML','',4.00,'2022-09-03 20:12:54','2.00','12','newstock','1','','',542.00,'','1','6','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(102,'KERINGET 1LTR','',27.00,'2022-09-03 20:16:10','0.00','12','newstock','1','','',74.58,'','1','27','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(103,'KERINGET 500ML','',8.00,'2022-09-03 20:18:48','35.00','12','newstock','1','','',44.58,'','1','43','internal','1','5018907197803','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(104,'DUNHILL SINGLE SWITCH','',10.00,'2022-09-03 20:20:25','0.00','12','newstock','1','','',317.26,'','1','10','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(105,'DUNHILL EMBASSY RED','',18.00,'2022-09-03 20:21:22','2.00','12','newstock','1','','',308.53,'','1','20','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(106,'SAFARI LEMONADE','',4.00,'2022-09-03 20:24:40','0.00','12','newstock','1','','',37.08,'','1','4','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(107,'SAFARI LEMONADE','',13.00,'2022-09-03 20:26:44','4.00','12','newstock','1','','',37.08,'','1','17','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(108,'GUINNESS CAN 500ML','',22.00,'2022-09-03 20:31:11','0.00','12','newstock','1','','',189.75,'','1','22','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(109,'WHITE CAP CAN 500ML','',12.00,'2022-09-03 20:31:41','4.00','12','newstock','1','','',190.38,'','1','16','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(110,'SAVANNA DRY CIDER 330ML','',8.00,'2022-09-03 20:32:18','0.00','12','newstock','1','','',201.00,'','1','8','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(111,'TUSKER LAGER CAN 500ML','',22.00,'2022-09-03 21:32:20','0.00','12','newstock','1','','',172.75,'','1','22','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(112,'CELLAR CASK RED 750ML','',2.00,'2022-09-03 22:45:58','0.00','12','newstock','1','','',729.00,'','1','2','internal','1','6001496301804','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(113,'TUSKER LAGER CAN 500ML','',11.00,'2022-09-06 19:40:26','0.00','12','newstock','1','','',172.75,'','1','11','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(114,'HEINEKEN CAN 500ML','',18.00,'2022-09-06 19:41:05','0.00','12','newstock','1','','',182.00,'','1','18','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(115,'SAFARI LEMONADE','',12.00,'2022-09-06 19:41:34','0.00','12','newstock','1','','',37.08,'','1','12','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(116,'GUINNESS CAN 500ML','',24.00,'2022-09-06 19:43:02','13.00','12','newstock','1','','',189.75,'','1','37','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(117,'GILBEYS GIN 750ML','',1.00,'2022-09-06 19:43:41','3.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(118,'SMIRNOFF GUARANA 330ML','',11.00,'2022-09-06 19:44:38','1.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(119,'BALOZI LAGER CAN 500ML','',2.00,'2022-09-06 19:45:07','16.00','12','newstock','1','','',172.83,'','1','18','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(120,'CHROME GIN 250ML','',9.00,'2022-09-07 15:40:23','1.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(121,'CHROME VODKA 250ML','',20.00,'2022-09-07 15:42:06','0.00','12','newstock','1','','',192.00,'','1','20','internal','1','1000','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(122,'SMIRNOFF GUARANA 330ML','',6.00,'2022-09-07 15:43:43','11.00','12','newstock','1','','',150.45,'','1','17','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(123,'JACK DANIELS 1L','',3.00,'2022-09-07 15:48:22','1.00','12','newstock','1','','',3450.00,'','1','4','internal','1','082184090442','','',0.00,'','4200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(124,'JAMESON 750ML','',1.00,'2022-09-07 15:49:16','0.00','12','newstock','1','','',2000.00,'','1','1','internal','1','5011007003029','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(125,'TUSKER LAGER CAN 500ML','',12.00,'2022-09-07 15:52:00','11.00','12','newstock','1','','',172.75,'','1','23','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(126,'JACK DANIELS 700ML','',1.00,'2022-09-09 00:29:33','2.00','12','newstock','1','','',2600.00,'','1','3','internal','1','082184090473','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(127,'GILBEYS GIN 350ML','',2.00,'2022-09-09 15:40:38','1.00','12','newstock','1','','',542.00,'','1','3','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(128,'TUSKER CIDER CAN 500ML','',9.00,'2022-09-09 15:41:32','3.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(129,'WHITE CAP CAN 500ML','',24.00,'2022-09-09 15:42:38','0.00','12','newstock','1','','',190.38,'','1','24','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(130,'CELLAR CASK RED 750ML','',2.00,'2022-09-09 15:43:18','0.00','12','newstock','1','','',729.00,'','1','2','internal','1','6001496301804','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(131,'REDBULL','',24.00,'2022-09-09 15:43:51','0.00','12','newstock','1','','',147.00,'','1','24','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(132,'SAFARI LEMONADE','',14.00,'2022-09-09 15:45:07','1.00','12','newstock','1','','',37.08,'','1','15','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(133,'PREDATOR ENERGY DRINK','',12.00,'2022-09-09 15:46:09','8.00','12','newstock','1','','',41.82,'','1','20','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(134,'PILSNER CAN 500ML','',11.00,'2022-09-10 02:25:00','0.00','12','newstock','1','','',154.95,'','1','11','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(135,'TUSKER LAGER CAN 500ML','',9.00,'2022-09-10 17:48:28','3.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(136,'TUSKER LAGER CAN 500ML','',2.00,'2022-09-10 18:47:03','10.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(137,'KERINGET 1LTR','',3.00,'2022-09-10 19:58:42','0.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(138,'PREDATOR ENERGY DRINK','',1.00,'2022-09-11 00:58:37','17.00','12','newstock','1','','',41.82,'','1','18','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(139,'KERINGET 1LTR','',1.00,'2022-09-11 00:59:02','1.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(140,'SAFARI LEMONADE','',1.00,'2022-09-11 00:59:23','7.00','12','newstock','1','','',37.08,'','1','8','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(141,'HEINEKEN GLASS300ML','',11.00,'2022-09-11 17:49:23','2.00','12','newstock','1','','',174.00,'','1','13','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(142,'TUSKER LAGER CAN 500ML','',24.00,'2022-09-11 19:32:00','11.00','12','newstock','1','','',172.75,'','1','35','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(143,'BALOZI LAGER CAN 500ML','',12.00,'2022-09-11 19:33:04','12.00','12','newstock','1','','',172.83,'','1','24','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(144,'HEINEKEN CAN 500ML','',4.00,'2022-09-11 19:33:36','4.00','12','newstock','1','','',182.00,'','1','8','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(145,'SAFARI LEMONADE','',12.00,'2022-09-12 21:14:43','0.00','12','newstock','1','','',37.08,'','1','12','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(146,'HEINEKEN CAN 500ML','',9.00,'2022-09-12 21:17:18','8.00','12','newstock','1','','',182.00,'','1','17','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(147,'KERINGET 1LTR','',12.00,'2022-09-12 21:17:41','0.00','12','newstock','1','','',74.58,'','1','12','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(148,'GILBEYS GIN 750ML','',3.00,'2022-09-12 21:18:52','0.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(149,'HEINEKEN CAN 500ML','',4.00,'2022-09-12 21:22:34','17.00','12','newstock','1','','',182.00,'','1','21','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(150,'GUINNESS CAN 500ML','',1.00,'2022-09-12 21:25:36','8.00','12','newstock','1','','',189.75,'','1','9','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(151,'GILBEYS GIN 750ML','',2.00,'2022-09-12 21:29:55','3.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(152,'4TH STREET SWEET RED 750ML','',2.00,'2022-09-12 22:34:45','0.00','12','newstock','1','','',641.00,'','1','2','internal','1','6001108049582','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(153,'SMIRNOFF GUARANA 330ML','',3.00,'2022-09-14 01:12:51','6.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(154,'DUNHILL SINGLE SWITCH','',20.00,'2022-09-14 13:35:49','0.00','12','newstock','1','','',317.26,'','1','20','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(155,'DUNHILL DOUBLE SWITCH','',18.00,'2022-09-14 13:36:14','2.00','12','newstock','1','','',327.04,'','1','20','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(156,'CHROM GIN 750ML','',12.00,'2022-09-14 14:22:41','0.00','12','newstock','1','','',501.00,'','1','12','internal','1','6161101605465','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(157,'CHROME VODKA 250ML','',10.00,'2022-09-14 14:23:23','3.00','12','newstock','1','','',192.00,'','1','13','internal','1','1000','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(158,'TUSKER CIDER CAN 500ML','',12.00,'2022-09-14 14:23:59','1.00','12','newstock','1','','',181.71,'','1','13','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(159,'WHITE CAP CAN 500ML','',12.00,'2022-09-14 14:24:43','7.00','12','newstock','1','','',190.38,'','1','19','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(160,'TUSKER LAGER CAN 500ML','',12.00,'2022-09-14 14:25:08','21.00','12','newstock','1','','',172.75,'','1','33','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(161,'DUNHILL DOUBLE SWITCH','',10.00,'2022-09-14 19:06:00','10.00','12','newstock','1','','',327.04,'','1','20','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(162,'KERINGET 1LTR','',24.00,'2022-09-15 18:06:09','9.00','12','newstock','1','','',74.58,'','1','33','internal','1','5018907194802','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(163,'KERINGET 500ML','',24.00,'2022-09-15 18:06:38','30.00','12','newstock','1','','',44.58,'','1','54','internal','1','5018907197803','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(164,'MINUTE MAID ORANGE PULPY 400ML','',9.00,'2022-09-15 18:07:32','3.00','12','newstock','1','','',59.67,'','1','12','internal','1','90490224','','',0.00,'','90','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(165,'MINUTE MAID TROPICAL 400ML','',12.00,'2022-09-15 18:08:00','0.00','12','newstock','1','','',59.67,'','1','12','internal','1','90399480','','',0.00,'','90','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(166,'MINUTE MAID APPLE 400ML','',11.00,'2022-09-15 18:08:31','1.00','12','newstock','1','','',59.67,'','1','12','internal','1','5449000188342','','',0.00,'','90','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(167,'FANTA ORANGE 500ML','',12.00,'2022-09-15 18:14:40','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(168,'COKE ZERO 500ML','',9.00,'2022-09-15 18:15:22','3.00','12','newstock','1','','',53.33,'','1','12','internal','1','5449000131836','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(169,'SPRITE 500ML','',11.00,'2022-09-15 18:15:43','1.00','12','newstock','1','','',53.33,'','1','12','internal','1','54491069','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(170,'SAFARI LEMONADE','',12.00,'2022-09-15 18:22:43','4.00','12','newstock','1','','',37.08,'','1','16','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(171,'VICEROY 250ML','',2.00,'2022-09-15 18:25:09','0.00','12','newstock','1','','',352.00,'','1','2','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(172,'CHROME GIN 250ML','',10.00,'2022-09-16 16:49:54','0.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(173,'DROSTDY HOF CLARET 750ML','',1.00,'2022-09-16 17:20:52','1.00','12','newstock','1','','',628.00,'','1','2','internal','1','6001495201501','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(174,'DROSTDY HOF PREMIER GRAND CRU 750ML','',2.00,'2022-09-16 17:21:28','0.00','12','newstock','1','','',628.00,'','1','2','internal','1','6001495203055','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(175,'CAPTAIN MORGAN 750ML','',3.00,'2022-09-16 17:22:06','0.00','12','newstock','1','','',788.00,'','1','3','internal','1','6161101604543','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(176,'CHROME VODKA 250ML','',8.00,'2022-09-16 17:23:45','9.00','12','newstock','1','','',192.00,'','1','17','internal','1','1000','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(177,'GILBEYS GIN 750ML','',2.00,'2022-09-16 17:26:04','3.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(178,'SMIRNOFF GUARANA 330ML','',24.00,'2022-09-16 17:26:33','0.00','12','newstock','1','','',150.45,'','1','24','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(179,'WHITE CAP CAN 500ML','',24.00,'2022-09-16 17:27:46','11.00','12','newstock','1','','',190.38,'','1','35','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(180,'GUINNESS CAN 500ML','',24.00,'2022-09-16 17:28:49','4.00','12','newstock','1','','',189.75,'','1','28','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(181,'JACK DANIELS 700ML','',2.00,'2022-09-16 17:29:41','3.00','12','newstock','1','','',2600.00,'','1','5','internal','1','082184090473','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(182,'GILBEYS GIN 350ML','',3.00,'2022-09-16 17:30:13','0.00','12','newstock','1','','',542.00,'','1','3','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(183,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-09-18 16:07:07','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(184,'GILBEYS GIN 350ML','',6.00,'2022-09-18 16:07:45','0.00','12','newstock','1','','',542.00,'','1','6','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(185,'HEINEKEN CAN 500ML','',4.00,'2022-09-18 16:08:19','6.00','12','newstock','1','','',182.00,'','1','10','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(186,'SAFARI LEMONADE','',10.00,'2022-09-18 16:09:19','5.00','12','newstock','1','','',37.08,'','1','15','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(187,'PREDATOR ENERGY DRINK','',9.00,'2022-09-18 16:10:30','7.00','12','newstock','1','','',41.82,'','1','16','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(188,'4TH STREET SWEET RED 750ML','6001108049582',1.00,'2022-09-21 17:32:47','0.00','12','newstock','1','','',0.00,'','1','1','1','1','6001108049582','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(189,'4TH STREET SWEET RED 750ML','6001108049582',1.00,'2022-09-21 17:32:48','1.00','12','newstock','1','','',0.00,'','1','2','1','1','6001108049582','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(190,'SMIRNOFF GUARANA 330ML','6161101603324',4.00,'2022-09-21 21:24:51','3.00','12','newstock','1','','',0.00,'','1','7','1','1','6161101603324','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(191,'SMIRNOFF GUARANA 330ML','6161101603324',4.00,'2022-09-21 21:24:52','7.00','12','newstock','1','','',0.00,'','1','11','1','1','6161101603324','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(192,'SMIRNOFF GUARANA 330ML','6161101603324',4.00,'2022-09-21 21:24:53','11.00','12','newstock','1','','',0.00,'','1','15','1','1','6161101603324','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(193,'4TH STREET SWEET WHITE750ML','',1.00,'2022-09-22 00:37:11','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(194,'DUNHILL SINGLE SWITCH','',20.00,'2022-09-23 18:18:00','0.00','12','newstock','1','','',317.26,'','1','20','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(195,'CHROME VODKA 250ML','',20.00,'2022-09-23 21:50:11','0.00','12','newstock','1','','',192.00,'','1','20','internal','1','1000','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(196,'SAFARI LEMONADE','',12.00,'2022-09-23 22:09:17','1.00','12','newstock','1','','',37.08,'','1','13','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(197,'REDBULL','',7.00,'2022-09-23 22:10:51','8.00','12','newstock','1','','',147.00,'','1','15','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(198,'SMIRNOFF GUARANA 330ML','',24.00,'2022-09-23 22:11:19','14.00','12','newstock','1','','',150.45,'','1','38','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(199,'GUINNESS CAN 500ML','',9.00,'2022-09-23 22:13:16','8.00','12','newstock','1','','',189.75,'','1','17','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(200,'TUSKER LAGER CAN 500ML','',17.00,'2022-09-23 22:14:26','13.00','12','newstock','1','','',172.75,'','1','30','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(201,'HEINEKEN GLASS300ML','',21.00,'2022-09-23 22:14:51','3.00','12','newstock','1','','',174.00,'','1','24','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(202,'HEINEKEN CAN 500ML','',22.00,'2022-09-23 22:15:55','0.00','12','newstock','1','','',182.00,'','1','22','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(203,'PILSNER CAN 500ML','',18.00,'2022-09-23 22:17:07','8.00','12','newstock','1','','',154.95,'','1','26','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(204,'TUSKER CIDER CAN 500ML','',12.00,'2022-09-23 22:17:35','6.00','12','newstock','1','','',181.71,'','1','18','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(205,'GORDONS DRY GIN 750ML','',1.00,'2022-09-23 23:04:56','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289020701','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(206,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-09-24 00:00:09','1.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(207,'SMIRNOFF BLACK ICE 330ML CAN','',8.00,'2022-09-24 18:47:14','1.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(208,'EMBASSY RED','',10.00,'2022-09-25 00:04:25','8.00','12','newstock','1','','',308.50,'','1','18','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(209,'DUNHILL DOUBLE SWITCH','',10.00,'2022-09-25 00:06:02','10.00','12','newstock','1','','',327.04,'','1','20','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(210,'CHROME GIN 250ML','',19.00,'2022-09-26 19:28:47','1.00','12','newstock','1','','',182.00,'','1','20','internal','1','6161101605458','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(211,'MINUTE MAID TROPICAL 400ML','',12.00,'2022-09-27 00:14:06','0.00','12','newstock','1','','',59.67,'','1','12','internal','1','90399480','','',0.00,'','90','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(212,'MINUTE MAID APPLE 400ML','',11.00,'2022-09-27 00:15:52','1.00','12','newstock','1','','',59.67,'','1','12','internal','1','5449000188342','','',0.00,'','90','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(213,'SMIRNOFF GUARANA 330ML','',24.00,'2022-09-27 00:18:12','21.00','12','newstock','1','','',150.45,'','1','45','internal','1','6161101603324','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(214,'TUSKER LAGER CAN 500ML','',12.00,'2022-09-27 00:18:50','19.00','12','newstock','1','','',172.75,'','1','31','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(215,'SAFARI LEMONADE','',11.00,'2022-09-27 00:19:23','4.00','12','newstock','1','','',37.08,'','1','15','internal','1','6164001199331','','',0.00,'','60','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(216,'CHROME VODKA 750ML','',1.00,'2022-09-27 00:20:35','2.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101603522','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(217,'CHROME VODKA 750ML','',3.00,'2022-09-27 00:21:02','3.00','12','newstock','1','','',501.00,'','1','6','internal','1','6161101603522','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(218,'CHROM GIN 750ML','',3.00,'2022-09-27 00:26:37','1.00','12','newstock','1','','',501.00,'','1','4','internal','1','6161101605465','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(219,'CELLA CASK WHITE 750ML','',2.00,'2022-09-27 00:27:21','0.00','12','newstock','1','','',729.00,'','1','2','internal','1','6001496301705','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(220,'CELLAR CASK RED 750ML','',2.00,'2022-09-27 00:27:43','0.00','12','newstock','1','','',729.00,'','1','2','internal','1','6001496301804','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(221,'SMIRNOFF BLACK ICE 330ML CAN','',11.00,'2022-09-27 00:29:07','8.00','12','newstock','1','','',150.45,'','1','19','internal','1','6161101604703','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(222,'4TH STREET SWEET RED 750ML','',2.00,'2022-09-27 00:30:02','0.00','12','newstock','1','','',641.00,'','1','2','internal','1','6001108049582','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(223,'JACK DANIELS 700ML','',1.00,'2022-09-27 17:26:56','1.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(224,'DUREX FEATHERLITE','',2.00,'2022-09-28 00:17:53','1.00','12','newstock','1','','',263.16,'','1','3','internal','1','5010232953994','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(225,'DUREX EXTRA SAFE','',3.00,'2022-09-28 00:18:18','0.00','12','newstock','1','','',263.16,'','1','3','internal','1','5010232965096','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(226,'DUREX PERFORMA','',3.00,'2022-09-28 00:18:44','0.00','12','newstock','1','','',315.79,'','1','3','internal','1','5010232953925','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(227,'MINUTE MAID APPLE 400ML','',1.00,'2022-09-28 03:25:42','10.00','12','newstock','1','','',59.67,'','1','11','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(228,'PREDATOR ENERGY DRINK','',11.00,'2022-09-28 03:29:11','3.00','12','newstock','1','','',41.82,'','1','14','internal','1','5060608740253','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(229,'SPRITE 500ML','',24.00,'2022-09-28 03:30:40','3.00','12','newstock','1','','',53.33,'','1','27','internal','1','54491069','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(230,'KERINGET 1LTR','',15.00,'2022-09-28 03:33:39','1.00','12','newstock','1','','',74.58,'','1','16','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(231,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2022-09-28 03:42:04','16.00','12','newstock','1','','',150.45,'','1','21','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(232,'TUSKER MALT CAN 500ML','',2.00,'2022-09-28 03:49:14','29.00','12','newstock','1','','',198.45,'','1','31','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(233,'COCACOLA SODA 2LTRS','',30.00,'2022-09-28 14:39:52','0.00','12','newstock','1','','',158.00,'','1','30','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(234,'SPRITE SODA 2LTRS','',18.00,'2022-09-28 14:40:42','2.00','12','newstock','1','','',158.00,'','1','20','internal','1','5449000004864','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(235,'SPRITE 500ML','',24.00,'2022-09-28 14:41:37','27.00','12','newstock','1','','',53.33,'','1','51','internal','1','54491069','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(236,'SODA WATER 500ML','',24.00,'2022-09-28 14:42:31','0.00','12','newstock','1','','',53.33,'','1','24','internal','1','54493360','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(237,'TONIC WATER 500ML','',24.00,'2022-09-28 14:43:08','0.00','12','newstock','1','','',53.33,'','1','24','internal','1','50112265','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(238,'COKE ZERO 500ML','',12.00,'2022-09-28 14:48:18','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','5449000131836','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(239,'FANTA BLACKCURRENT 2LRTS','',5.00,'2022-09-28 14:49:41','0.00','12','newstock','1','','',158.00,'','Main','5','Internal','Main','5449000022752','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(240,'FANTA ORANGE 500ML','',10.00,'2022-09-28 14:51:10','0.00','12','newstock','1','','',53.33,'','Main','10','Internal','Main','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(241,'TONIC WATER 500ML','',24.00,'2022-09-28 14:52:09','0.00','12','newstock','1','','',53.33,'','Main','24','Internal','Main','50112265','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(242,'JAMESON 750ML','',2.00,'2022-09-28 17:16:01','0.00','12','newstock','1','','',2000.00,'','1','2','internal','1','5011007003029','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(243,'TUSKER LAGER CAN 500ML','',12.00,'2022-09-28 17:17:26','11.00','12','newstock','1','','',172.75,'','1','23','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(244,'WHITE CAP CAN 500ML','',4.00,'2022-09-28 17:18:51','3.00','12','newstock','1','','',190.38,'','1','7','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(245,'HEINEKEN CAN 500ML','',12.00,'2022-09-28 17:19:16','14.00','12','newstock','1','','',182.00,'','1','26','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(246,'DUREX FEATHERLITE','',3.00,'2022-09-28 22:57:14','3.00','12','newstock','1','','',263.16,'','1','6','internal','1','5010232953994','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(247,'DUREX EXTRA SAFE','',3.00,'2022-09-28 22:57:38','3.00','12','newstock','1','','',263.16,'','1','6','internal','1','5010232965096','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(248,'DUREX PERFORMA','',3.00,'2022-09-28 22:58:04','3.00','12','newstock','1','','',315.79,'','1','6','internal','1','5010232953925','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(249,'MINUTE MAID APPLE 400ML','',2.00,'2022-09-29 21:40:54','3.00','12','newstock','1','','',59.67,'','1','5','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(250,'CHROME VODKA 250ML','',20.00,'2022-09-29 23:04:20','0.00','12','newstock','1','','',192.00,'','1','20','internal','1','1000','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(251,'CHROME GIN 750ML','',7.00,'2022-09-29 23:05:23','3.00','12','newstock','1','','',501.00,'','1','10','internal','1','6161101605465','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(252,'GILBEYS GIN 750ML','',3.00,'2022-09-29 23:06:25','1.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(253,'WHITE CAP CAN 500ML','',24.00,'2022-09-29 23:07:13','4.00','12','newstock','1','','',190.38,'','1','28','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(254,'GUINNESS CAN 500ML','',24.00,'2022-09-29 23:07:48','5.00','12','newstock','1','','',189.75,'','1','29','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(255,'JACK DANIELS 1L','',2.00,'2022-09-29 23:16:33','4.00','12','newstock','1','','',3450.00,'','1','6','internal','1','082184090442','','',0.00,'','4200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(256,'WILLIAM LAWSONS 350ML','',4.00,'2022-09-29 23:30:09','0.00','12','newstock','1','','',543.00,'','Main','4','Internal','Main','5010752000420','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(257,'CAPTAIN MORGAN 750ML','',3.00,'2022-09-29 23:33:10','0.00','12','newstock','1','','',788.00,'','Main','3','Internal','Main','6161101604543','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(258,'JW DOUBLE BLACK 1L','',2.00,'2022-09-30 01:16:08','0.00','12','newstock','1','','',4520.00,'','1','2','internal','1','5000267112077','','',0.00,'','6000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(259,'SMIRNOFF RED 750ML','',1.00,'2022-09-30 14:45:41','0.00','12','newstock','1','','',1144.00,'','1','1','internal','1','6161101600934','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(260,'CAPTAIN MORGAN 750ML','',3.00,'2022-09-30 17:13:03','0.00','12','newstock','1','','',788.00,'','1','3','internal','1','6161101604543','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(261,'DUNHILL EMBASSY RED','',1.00,'2022-10-01 22:54:28','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(262,'DUNHILL EMBASSY RED','',1.00,'2022-10-02 00:20:04','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(263,'DUNHILL EMBASSY RED','',6.00,'2022-10-02 00:23:53','0.00','12','newstock','1','','',308.53,'','1','6','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(264,'SAFARI LEMONADE','',1.00,'2022-10-02 00:45:26','1.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(265,'JACK DANIELS 700ML','',1.00,'2022-10-02 22:09:10','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(266,'DUNHILL DOUBLE SWITCH','',1.00,'2022-10-03 12:47:49','6.00','12','newstock','1','','',327.04,'','1','7','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(267,'CIROC VODKA 1L','',1.00,'2022-10-03 14:42:00','0.00','12','newstock','1','','',4000.00,'','1','1','internal','1','5010103912976','','',0.00,'','5400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(268,'REDBULL','',23.00,'2022-10-03 15:08:39','1.00','12','newstock','1','','',147.00,'','1','24','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(269,'SMIRNOFF GUARANA 330ML','',2.00,'2022-10-03 15:09:01','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(270,'SMIRNOFF BLACK ICE 330ML CAN','',24.00,'2022-10-03 15:10:03','5.00','12','newstock','1','','',150.45,'','1','29','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(271,'TUSKER LAGER CAN 500ML','',20.00,'2022-10-03 15:11:28','6.00','12','newstock','1','','',172.75,'','1','26','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(272,'HEINEKEN GLASS300ML','',12.00,'2022-10-03 15:12:48','5.00','12','newstock','1','','',174.00,'','1','17','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(273,'TUSKER LITE CAN 500ML','',8.00,'2022-10-03 15:13:20','4.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(274,'BALOZI LAGER CAN 500ML','',12.00,'2022-10-03 15:13:51','4.00','12','newstock','1','','',172.83,'','1','16','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(275,'TUSKER CIDER CAN 500ML','',4.00,'2022-10-03 15:14:28','14.00','12','newstock','1','','',181.71,'','1','18','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(276,'GILBEYS GIN 750ML','',3.00,'2022-10-03 15:14:51','0.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(277,'SAFARI LEMONADE','',12.00,'2022-10-03 15:15:23','1.00','12','newstock','1','','',37.08,'','1','13','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(278,'BLACK & WHITE 750ML','',2.00,'2022-10-03 15:17:17','3.00','12','newstock','1','','',855.00,'','1','5','internal','1','50196111','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(279,'SMIRNOFF RED 750ML','',3.00,'2022-10-03 15:19:16','0.00','12','newstock','1','','',1144.00,'','Main','3','Internal','Main','6161101600934','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(280,'DUNHILL EMBASSY RED','',1.00,'2022-10-04 23:52:04','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(281,'COKE ZERO 500ML','',24.00,'2022-10-05 19:53:30','5.00','12','newstock','1','','',53.33,'','1','29','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(282,'SODA WATER 500ML','',24.00,'2022-10-05 19:54:21','22.00','12','newstock','1','','',53.33,'','1','46','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(283,'TONIC WATER 500ML','',12.00,'2022-10-05 19:54:49','18.00','12','newstock','1','','',53.33,'','1','30','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(284,'KERINGET 1LTR','',23.00,'2022-10-05 19:55:42','1.00','12','newstock','1','','',74.58,'','1','24','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(285,'PREDATOR ENERGY DRINK','',12.00,'2022-10-05 19:56:11','6.00','12','newstock','1','','',41.82,'','1','18','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(286,'ROTHMANS SPORTMAN','',10.00,'2022-10-05 19:57:57','1.00','12','newstock','1','','',251.50,'','1','11','internal','1','6008165007685','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(287,'DUNHILL DOUBLE SWITCH','',10.00,'2022-10-05 19:58:23','5.00','12','newstock','1','','',327.04,'','1','15','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(288,'DUNHILL SINGLE SWITCH','',10.00,'2022-10-05 19:58:56','0.00','12','newstock','1','','',317.26,'','1','10','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(289,'DUNHILL EMBASSY RED','',10.00,'2022-10-05 19:59:16','0.00','12','newstock','1','','',308.53,'','1','10','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(290,'SMIRNOFF RED 750ML','',1.00,'2022-10-05 21:45:40','0.00','12','newstock','1','','',1144.00,'','1','1','internal','1','6161101600934','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(291,'TUSKER LITE CAN 500ML','',12.00,'2022-10-06 14:01:52','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(292,'BALOZI LAGER CAN 500ML','',12.00,'2022-10-06 14:02:11','4.00','12','newstock','1','','',172.83,'','1','16','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(293,'OJ 16%','',5.00,'2022-10-06 14:02:30','1.00','12','newstock','1','','',225.00,'','1','6','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(294,'SMIRNOFF GUARANA 330ML','',12.00,'2022-10-06 14:02:50','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(295,'DESPARADO ORIGINAL 330ML','',6.00,'2022-10-06 14:03:06','0.00','12','newstock','1','','',188.00,'','1','6','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(296,'SAVANNA DRY CIDER 330ML','',6.00,'2022-10-06 14:03:26','0.00','12','newstock','1','','',201.00,'','1','6','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(297,'JACK DANIELS 700ML','',2.00,'2022-10-06 23:45:38','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(298,'GORDONS DRY GIN 750ML','',1.00,'2022-10-08 03:08:32','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289020701','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(299,'SMIRNOFF GUARANA 330ML','',24.00,'2022-10-08 20:17:35','0.00','12','newstock','1','','',150.45,'','1','24','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(300,'TUSKER LAGER CAN 500ML','',1.00,'2022-10-08 22:46:10','5.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(301,'BALOZI LAGER CAN 500ML','',3.00,'2022-10-08 23:30:50','1.00','12','newstock','1','','',172.83,'','1','4','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(302,'CHROME VODKA 750ML','',6.00,'2022-10-08 23:40:12','0.00','12','newstock','1','','',501.00,'','1','6','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(303,'TUSKER LAGER CAN 500ML','',4.00,'2022-10-09 00:20:13','0.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(304,'WILLIAM LAWSONS 350ML','',4.00,'2022-10-09 00:25:05','0.00','12','newstock','1','','',543.00,'','1','4','internal','1','5010752000420','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(305,'GORDONS DRY GIN 750ML','',1.00,'2022-10-09 01:21:07','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289020701','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(306,'BALOZI LAGER CAN 500ML','',2.00,'2022-10-09 16:41:55','0.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(307,'BALOZI LAGER CAN 500ML','',18.00,'2022-10-09 16:45:23','0.00','12','newstock','1','','',172.83,'','1','18','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(308,'SAVANNA DRY CIDER 330ML','',2.00,'2022-10-09 16:48:15','0.00','12','newstock','1','','',201.00,'','1','2','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(309,'TUSKER LAGER CAN 500ML','',28.00,'2022-10-09 16:49:15','0.00','12','newstock','1','','',172.75,'','1','28','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(310,'TUSKER CIDER CAN 500ML','',12.00,'2022-10-09 16:51:07','8.00','12','newstock','1','','',181.71,'','1','20','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(311,'HEINEKEN CAN 500ML','',18.00,'2022-10-09 16:52:27','0.00','12','newstock','1','','',182.00,'','1','18','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(312,'HEINEKEN GLASS300ML','',24.00,'2022-10-09 16:53:22','1.00','12','newstock','1','','',174.00,'','1','25','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(313,'TUSKER LITE CAN 500ML','',6.00,'2022-10-09 16:54:15','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(314,'TUSKER MALT CAN 500ML','',6.00,'2022-10-09 16:55:48','10.00','12','newstock','1','','',198.45,'','1','16','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(315,'GORDONS PINK GIN 700ML','',2.00,'2022-10-09 16:57:06','0.00','12','newstock','1','','',1540.00,'','1','2','internal','1','5000289929417','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(316,'WILLIAM LAWSON CAN 330ML','',11.00,'2022-10-09 16:57:52','1.00','12','newstock','1','','',177.00,'','1','12','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(317,'WILLIAM LAWSONS 750ML','',1.00,'2022-10-11 02:30:07','0.00','12','newstock','1','','',1037.00,'','1','1','internal','1','5010752000321','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(318,'SMIRNOFF RED 750ML','',2.00,'2022-10-11 23:42:16','0.00','12','newstock','1','','',1144.00,'','1','2','internal','1','6161101600934','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(319,'SMIRNOFF GUARANA 330ML','',2.00,'2022-10-12 03:26:47','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(320,'MINUTE MAID APPLE 400ML','',12.00,'2022-10-12 17:14:58','0.00','12','newstock','1','','',59.67,'','1','12','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(321,'MINUTE MAID ORANGE PULPY 400ML','',10.00,'2022-10-12 17:15:57','2.00','12','newstock','1','','',59.67,'','1','12','internal','1','90490224','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(322,'MINUTE MAID MANGO 400ML','',12.00,'2022-10-12 17:16:19','0.00','12','newstock','1','','',68.00,'','1','12','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(323,'DASANI WATER 1L','',20.00,'2022-10-12 17:16:39','4.00','12','newstock','1','','',49.00,'','1','24','internal','1','5449000014536','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(324,'KERINGET 1LTR','',19.00,'2022-10-12 17:17:14','6.00','12','newstock','1','','',74.58,'','1','25','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(325,'JW BLACK LABEL 1L','',1.00,'2022-10-13 18:36:48','0.00','12','newstock','1','','',3164.00,'','1','1','internal','1','5000267125046','','',0.00,'','4600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(326,'BALOZI LAGER CAN 500ML','',8.00,'2022-10-13 18:45:27','0.00','12','newstock','1','','',172.83,'','1','8','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(327,'BALOZI LAGER CAN 500ML','',4.00,'2022-10-13 18:45:37','8.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(328,'GILBEYS GIN 750ML','',1.00,'2022-10-13 18:45:57','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(329,'GILBEYS GIN 750ML','',10.00,'2022-10-13 21:23:59','0.00','12','newstock','1','','',1125.00,'','1','10','internal','1','5010103930628','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(330,'BALOZI LAGER CAN 500ML','',12.00,'2022-10-13 21:24:28','0.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(331,'PILSNER CAN 500ML','',22.00,'2022-10-13 21:26:16','2.00','12','newstock','1','','',154.95,'','1','24','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(332,'HEINEKEN CAN 500ML','',22.00,'2022-10-13 21:26:48','1.00','12','newstock','1','','',182.00,'','1','23','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(333,'TUSKER MALT CAN 500ML','',12.00,'2022-10-13 21:27:36','15.00','12','newstock','1','','',198.45,'','1','27','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(334,'WHITE CAP CAN 500ML','',24.00,'2022-10-13 21:28:30','0.00','12','newstock','1','','',190.38,'','1','24','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(335,'GUINNESS CAN 500ML','',21.00,'2022-10-13 21:29:00','3.00','12','newstock','1','','',189.75,'','1','24','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(336,'TUSKER LAGER CAN 500ML','',24.00,'2022-10-13 21:30:35','18.00','12','newstock','1','','',172.75,'','1','42','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(337,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2022-10-13 21:31:24','6.00','12','newstock','1','','',150.45,'','1','18','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(338,'SMIRNOFF GUARANA 330ML','',14.00,'2022-10-13 21:32:05','0.00','12','newstock','1','','',150.45,'','1','14','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(339,'SMIRNOFF GUARANA 330ML','',4.00,'2022-10-13 21:32:39','14.00','12','newstock','1','','',150.45,'','1','18','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(340,'CHROME GIN 250ML','',20.00,'2022-10-13 21:33:31','0.00','12','newstock','1','','',182.00,'','1','20','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(341,'CHROME GIN 750ML','',4.00,'2022-10-13 21:34:21','1.00','12','newstock','1','','',501.00,'','1','5','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(342,'SAFARI LEMONADE','',12.00,'2022-10-13 21:34:55','0.00','12','newstock','1','','',37.08,'','1','12','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(343,'WILLIAM LAWSONS 750ML','',4.00,'2022-10-13 21:35:30','0.00','12','newstock','1','','',1037.00,'','1','4','internal','1','5010752000321','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(344,'CHROME VODKA 750ML','',9.00,'2022-10-13 21:37:05','2.00','12','newstock','1','','',501.00,'','1','11','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(345,'CHROME VODKA 250ML','',20.00,'2022-10-13 21:38:04','3.00','12','newstock','1','','',192.00,'','1','23','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(346,'GILBEYS GIN 350ML','',4.00,'2022-10-13 21:38:46','0.00','12','newstock','1','','',542.00,'','1','4','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(347,'GILBEYS GIN 250ML','',4.00,'2022-10-13 21:39:11','9.00','12','newstock','1','','',388.00,'','1','13','internal','1','6161101602167','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(348,'VICEROY 750ML','',4.00,'2022-10-14 23:41:48','1.00','12','newstock','1','','',1072.00,'','1','5','internal','1','6001496011796','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(349,'VICEROY 375ML','',6.00,'2022-10-14 23:42:24','0.00','12','newstock','1','','',544.00,'','1','6','internal','1','6001496011772','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(350,'BALOZI LAGER CAN 500ML','',24.00,'2022-10-14 23:42:41','0.00','12','newstock','1','','',172.83,'','1','24','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(351,'HEINEKEN GLASS300ML','',3.00,'2022-10-16 00:27:30','0.00','12','newstock','1','','',174.00,'','1','3','internal','1','8712000900663','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(352,'JW BLACK LABEL 1L','',1.00,'2022-10-17 15:31:31','0.00','12','newstock','1','','',3164.00,'','1','1','internal','1','5000267125046','','',0.00,'','4600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(353,'SMIRNOFF GUARANA 330ML','',5.00,'2022-10-18 03:02:03','3.00','12','newstock','1','','',150.45,'','1','8','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(354,'HEINEKEN CAN 500ML','',3.00,'2022-10-18 22:03:25','3.00','12','newstock','1','','',182.00,'','1','6','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(355,'HEINEKEN CAN 500ML','',1.00,'2022-10-18 23:24:42','1.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(356,'4TH STREET SWEET WHITE750ML','',1.00,'2022-10-19 21:58:57','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(357,'TUSKER MALT CAN 500ML','',3.00,'2022-10-19 22:59:25','2.00','12','newstock','1','','',198.45,'','1','5','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(358,'FRAGOLINO ROSE SPARKLING WINE 750ML','',3.00,'2022-10-19 23:12:52','0.00','12','newstock','1','','',1050.00,'','1','3','internal','1','8000530800462','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(359,'GORDONS PINK GIN 700ML','',2.00,'2022-10-19 23:18:20','1.00','12','newstock','1','','',1540.00,'','1','3','internal','1','5000289929417','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(360,'BEEFEATER DRY GIN 750ML','',2.00,'2022-10-19 23:20:09','3.00','12','newstock','1','','',2460.00,'','1','5','internal','1','5000329002230','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(361,'DESPARADO ORIGINAL 330ML','',24.00,'2022-10-19 23:20:56','0.00','12','newstock','1','','',188.00,'','1','24','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(362,'BLACK & WHITE 750ML','',3.00,'2022-10-19 23:24:16','3.00','12','newstock','1','','',855.00,'','1','6','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(363,'DELMONTE APPLE 1LTR','',6.00,'2022-10-19 23:24:45','0.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150053','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(364,'DELMONTE MIXED BERRIES 1 LTR','',5.00,'2022-10-19 23:25:12','1.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150138','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(365,'DELMONTE TROPICAL 1LTR','',5.00,'2022-10-19 23:25:39','1.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150121','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(366,'DELMONTE MANGO 1LTR','',6.00,'2022-10-19 23:26:07','0.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150152','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(367,'HEINEKEN CAN 500ML','',24.00,'2022-10-19 23:28:55','0.00','12','newstock','1','','',182.00,'','1','24','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(368,'GILBEYS GIN MIXED BERRY 750ML','',1.00,'2022-10-19 23:34:42','2.00','12','newstock','1','','',1125.00,'','1','3','internal','1','6161101606561','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(369,'SAFARI WATER 1L','',6.00,'2022-10-19 23:35:23','6.00','12','newstock','1','','',38.00,'','1','12','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(370,'TUSKER CIDER CAN 500ML','',6.00,'2022-10-19 23:36:09','11.00','12','newstock','1','','',181.71,'','1','17','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(371,'SAFARI LEMONADE','',12.00,'2022-10-19 23:36:35','1.00','12','newstock','1','','',37.08,'','1','13','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(372,'REDBULL','',24.00,'2022-10-19 23:37:07','6.00','12','newstock','1','','',147.00,'','1','30','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(373,'PREDATOR ENERGY DRINK','',12.00,'2022-10-19 23:38:05','1.00','12','newstock','1','','',41.82,'','1','13','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(374,'PILSNER CAN 500ML','',24.00,'2022-10-19 23:38:29','9.00','12','newstock','1','','',154.95,'','1','33','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(375,'HEINEKEN GLASS300ML','',24.00,'2022-10-19 23:39:25','0.00','12','newstock','1','','',174.00,'','1','24','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(376,'KERINGET 1LTR','',12.00,'2022-10-19 23:39:59','11.00','12','newstock','1','','',74.58,'','1','23','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(377,'TUSKER MALT CAN 500ML','',24.00,'2022-10-19 23:42:41','0.00','12','newstock','1','','',198.45,'','1','24','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(378,'JW RED 1L','',3.00,'2022-10-19 23:43:33','0.00','12','newstock','1','','',1612.00,'','1','3','internal','1','5000267013602','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(379,'MONSTER MULE','',35.00,'2022-10-19 23:46:14','16.00','12','newstock','1','','',153.00,'','1','51','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(380,'SMIRNOFF GUARANA 330ML','',3.00,'2022-10-20 00:48:26','1.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(381,'SMIRNOFF GUARANA 330ML','',6.00,'2022-10-21 00:56:05','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(382,'TONIC WATER 500ML','',2.00,'2022-10-21 15:25:52','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(383,'TUSKER LITE CAN 500ML','',24.00,'2022-10-21 21:22:12','0.00','12','newstock','1','','',198.45,'','1','24','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(384,'GUINNESS CAN 500ML','',24.00,'2022-10-21 21:44:39','0.00','12','newstock','1','','',189.75,'','1','24','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(385,'TUSKER CIDER CAN 500ML','',2.00,'2022-10-21 22:55:21','10.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(386,'GUINNESS CAN 500ML','',2.00,'2022-10-21 22:55:53','21.00','12','newstock','1','','',189.75,'','1','23','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(387,'WHITE CAP CAN 500ML','',24.00,'2022-10-21 23:07:50','2.00','12','newstock','1','','',190.38,'','1','26','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(388,'DUNHILL EMBASSY RED','',1.00,'2022-10-22 02:04:55','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(389,'HEINEKEN CAN 500ML','',12.00,'2022-10-22 18:35:06','2.00','12','newstock','1','','',182.00,'','1','14','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(390,'TUSKER LAGER CAN 500ML','',12.00,'2022-10-23 01:03:16','1.00','12','newstock','1','','',172.75,'','1','13','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(391,'DASANI WATER 1L','',12.00,'2022-10-23 04:04:30','11.00','12','newstock','1','','',49.00,'','1','23','internal','1','5449000014536','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(392,'JACK DANIELS 700ML','',4.00,'2022-10-23 22:30:34','0.00','12','newstock','1','','',2600.00,'','1','4','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(393,'HEINEKEN CAN 500ML','',9.00,'2022-10-24 23:31:47','0.00','12','newstock','1','','',182.00,'','1','9','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(394,'AMARULA 750ML','',2.00,'2022-10-25 01:12:49','0.00','12','newstock','1','','',2011.00,'','1','2','internal','1','6001495062508','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(395,'TUSKER LAGER CAN 500ML','',1.00,'2022-10-26 15:36:52','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(396,'PREDATOR ENERGY DRINK','',12.00,'2022-10-26 17:01:41','5.00','12','newstock','1','','',41.82,'','1','17','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(397,'SAFARI LEMONADE','',12.00,'2022-10-26 17:02:11','4.00','12','newstock','1','','',37.08,'','1','16','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(398,'KERINGET 500ML','',24.00,'2022-10-26 17:02:47','19.00','12','newstock','1','','',44.58,'','1','43','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(399,'FOUR COUSINS SWEET RED 750ml','',3.00,'2022-10-26 17:24:58','0.00','12','newstock','1','','',680.00,'','Main','3','Internal','Main','6002269000566','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(400,'CELLA CASK WHITE 750ML','',3.00,'2022-10-26 17:26:38','2.00','12','newstock','1','','',729.00,'','Main','5','Internal','Main','6001496301705','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(401,'REDBULL','',12.00,'2022-10-26 17:28:52','0.00','12','newstock','1','','',147.00,'','Main','12','Internal','Main','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(402,'SAVANNA DRY CIDER 330ML','',12.00,'2022-10-26 17:29:39','0.00','12','newstock','1','','',201.00,'','Main','12','Internal','Main','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(403,'CHROME VODKA 250ML','',24.00,'2022-10-26 17:37:06','0.00','12','newstock','1','','',192.00,'','Main','24','Internal','Main','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(404,'VICEROY 750ML','',6.00,'2022-10-26 17:42:43','0.00','12','newstock','1','','',1072.00,'','Main','6','Internal','Main','6001496011796','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(405,'NAPOLEON GOLD BRANDY 750ML','',7.00,'2022-10-26 17:48:24','0.00','12','newstock','1','','',600.00,'','Main','7','Internal','Main','6161101560948','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(406,'NAPOLEON GOLD 250ML','',4.00,'2022-10-26 17:48:43','0.00','12','newstock','1','','',210.00,'','Main','4','Internal','Main','6161101561020','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(407,'BLACK & WHITE 350ML','',10.00,'2022-10-26 17:50:16','0.00','12','newstock','1','','',443.00,'','Main','10','Internal','Main','50196166','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(408,'WILLIAM LAWSONS 350ML','',2.00,'2022-10-26 17:52:23','4.00','12','newstock','1','','',543.00,'','Main','6','Internal','Main','5010752000420','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(409,'WILLIAM LAWSONS 750ML','',6.00,'2022-10-26 17:54:59','0.00','12','newstock','1','','',1037.00,'','Main','6','Internal','Main','5010752000321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(410,'HEINEKEN CAN 500ML','',24.00,'2022-10-26 18:00:14','0.00','12','newstock','1','','',182.00,'','Main','24','Internal','Main','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(411,'JACK DANIELS 700ML','',6.00,'2022-10-26 18:00:58','0.00','12','newstock','1','','',2600.00,'','Main','6','Internal','Main','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(412,'JACK DANIELS 1L','',7.00,'2022-10-26 18:01:38','0.00','12','newstock','1','','',3450.00,'','Main','7','Internal','Main','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(413,'THE FAMOUSE GROUSE 750ML','',4.00,'2022-10-26 18:02:12','0.00','12','newstock','1','','',1552.00,'','Main','4','Internal','Main','5010314750008','','',0.00,'','2100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(414,'THE FAMOUS GROUSE 1L','',5.00,'2022-10-26 18:02:51','0.00','12','newstock','1','','',1854.00,'','Main','5','Internal','Main','5010314101015','','',0.00,'','2600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(415,'GILBEYS GIN MIXED BERRY 750ML','',6.00,'2022-10-26 18:05:57','0.00','12','newstock','1','','',1125.00,'','Main','6','Internal','Main','6161101606561','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(416,'AMARULA 750ML','',1.00,'2022-10-26 18:07:58','0.00','12','newstock','1','','',2011.00,'','Main','1','Internal','Main','6001495062508','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(417,'Best Cream 250ml','',4.00,'2022-10-26 18:09:48','0.00','12','newstock','1','','',310.00,'','Main','4','Internal','Main','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(418,'CHROME GIN 750ML','',5.00,'2022-10-26 18:11:53','0.00','12','newstock','1','','',501.00,'','Main','5','Internal','Main','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(419,'CAPRICE SWEET WHITE 1LTR','',1.00,'2022-10-26 18:16:19','0.00','12','newstock','1','','',636.00,'','1','1','internal','1','6161100421288','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(420,'SMIRNOFF GUARANA 330ML','',2.00,'2022-10-27 00:03:15','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(421,'SMIRNOFF GUARANA 330ML','',2.00,'2022-10-27 01:08:40','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(422,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2022-10-27 01:45:09','1.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(423,'SMIRNOFF GUARANA 330ML','',15.00,'2022-10-27 01:52:36','0.00','12','newstock','1','','',150.45,'','1','15','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(424,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2022-10-27 17:06:36','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(425,'BALOZI LAGER CAN 500ML','',1.00,'2022-10-27 18:26:56','6.00','12','newstock','1','','',172.83,'','1','7','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(426,'FOUR COUSINS SWEET RED 750ml','',3.00,'2022-10-27 21:25:44','0.00','12','newstock','1','','',680.00,'','1','3','internal','1','6002269000566','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(427,'TUSKER LAGER CAN 500ML','',20.00,'2022-10-28 21:01:21','0.00','12','newstock','1','','',172.75,'','1','20','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(428,'HEINEKEN GLASS300ML','',2.00,'2022-10-29 01:00:59','0.00','12','newstock','1','','',174.00,'','1','2','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(429,'BALOZI LAGER CAN 500ML','',2.00,'2022-10-29 01:01:55','0.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(430,'BLACK & WHITE 350ML','',1.00,'2022-10-29 01:06:49','0.00','12','newstock','1','','',443.00,'','1','1','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(431,'CHROME GIN 750ML','',4.00,'2022-10-29 01:13:10','0.00','12','newstock','1','','',501.00,'','1','4','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(432,'HEINEKEN CAN 500ML','',25.00,'2022-10-29 23:01:55','0.00','12','newstock','1','','',182.00,'','1','25','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(433,'CHROME VODKA 250ML','',22.00,'2022-10-30 01:27:33','0.00','12','newstock','1','','',192.00,'','1','22','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(434,'KERINGET 1LTR','',1.00,'2022-10-30 01:52:24','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(435,'KERINGET 1LTR','',4.00,'2022-10-30 01:57:24','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(436,'WHITE CAP CAN 500ML','',7.00,'2022-10-30 03:21:52','1.00','12','newstock','1','','',190.38,'','1','8','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(437,'SMIRNOFF GUARANA 330ML','',10.00,'2022-10-30 04:35:11','1.00','12','newstock','1','','',150.45,'','1','11','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(438,'TUSKER LAGER CAN 500ML','',2.00,'2022-10-30 05:24:09','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(439,'BALOZI LAGER CAN 500ML','',21.00,'2022-10-30 18:11:08','0.00','12','newstock','1','','',172.83,'','1','21','internal','1','6161101606011','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(440,'TUSKER LAGER CAN 500ML','',4.00,'2022-10-30 21:15:48','0.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(441,'WHITE PEARL 250ML','',12.00,'2022-10-30 22:20:02','0.00','12','newstock','1','','',190.00,'','1','12','internal','1','6161101561280','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(442,'SAFARI WATER 1L','',3.00,'2022-10-31 22:14:26','1.00','12','newstock','1','','',38.00,'','1','4','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(443,'SAFARI WATER 1L','',2.00,'2022-11-01 00:02:46','0.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(444,'WHITE CAP CAN 500ML','',5.00,'2022-11-01 04:28:01','0.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(445,'DESPARADO ORIGINAL 330ML','',10.00,'2022-11-01 17:27:52','0.00','12','newstock','1','','',188.00,'','1','10','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(446,'BLACK & WHITE 350ML','',10.00,'2022-11-01 18:49:26','0.00','12','newstock','1','','',443.00,'','1','10','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(447,'WHITE CAP CAN 500ML','',3.00,'2022-11-01 19:38:18','0.00','12','newstock','1','','',190.38,'','1','3','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(448,'TUSKER CIDER CAN 500ML','',6.00,'2022-11-01 22:18:11','3.00','12','newstock','1','','',181.71,'','1','9','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(449,'DROSTDY HOF PREMIER GRAND CRU 750ML','',2.00,'2022-11-01 22:34:04','0.00','12','newstock','1','','',628.00,'','1','2','internal','1','6001495203055','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(450,'PILSNER CAN 500ML','',9.00,'2022-11-01 23:17:40','0.00','12','newstock','1','','',154.95,'','1','9','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(451,'SAVANNA DRY CIDER 330ML','',4.00,'2022-11-02 00:18:11','0.00','12','newstock','1','','',201.00,'','1','4','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(452,'JACK DANIELS 700ML','',2.00,'2022-11-02 23:54:55','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(453,'KERINGET 1LTR','',24.00,'2022-11-02 23:57:32','0.00','12','newstock','1','','',74.58,'','1','24','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(454,'JACK DANIELS 700ML','',2.00,'2022-11-03 00:34:07','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(455,'SAFARI WATER 1L','',12.00,'2022-11-03 00:40:26','0.00','12','newstock','1','','',38.00,'','1','12','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(456,'GUINNESS CAN 500ML','',1.00,'2022-11-03 01:24:53','0.00','12','newstock','1','','',189.75,'','1','1','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(457,'GUINNESS CAN 500ML','',1.00,'2022-11-03 01:31:37','1.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(458,'GUINNESS CAN 500ML','',1.00,'2022-11-03 18:19:33','0.00','12','newstock','1','','',189.75,'','1','1','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(459,'DROSTDY HOF PREMIER GRAND CRU 750ML','',2.00,'2022-11-03 19:22:15','0.00','12','newstock','1','','',628.00,'','1','2','internal','1','6001495203055','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(460,'DESPARADO ORIGINAL 330ML','',4.00,'2022-11-03 22:57:46','0.00','12','newstock','1','','',188.00,'','1','4','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(461,'4TH STREET SWEET WHITE750ML','',3.00,'2022-11-03 23:21:23','2.00','12','newstock','1','','',641.00,'','Main','5','Internal','Main','6001108049599','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(462,'BEEFEATER DRY GIN 750ML','',6.00,'2022-11-03 23:33:48','0.00','12','newstock','1','','',2460.00,'','Main','6','Internal','Main','5000329002230','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(463,'BEST CREAM 750ML','',5.00,'2022-11-03 23:39:57','1.00','12','newstock','1','','',922.00,'','1','6','internal','1','6161100421622','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(464,'HEINEKEN CAN 500ML','',10.00,'2022-11-04 01:10:07','1.00','12','newstock','1','','',182.00,'','1','11','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(465,'CHROME GIN 750ML','',1.00,'2022-11-04 01:44:51','0.00','12','newstock','1','','',501.00,'','1','1','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(466,'WHITE CAP CAN 500ML','',23.00,'2022-11-04 20:35:00','0.00','12','newstock','1','','',190.38,'','1','23','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(467,'VICEROY 375ML','',1.00,'2022-11-04 21:57:17','0.00','12','newstock','1','','',544.00,'','1','1','internal','1','6001496011772','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(468,'DESPARADO ORIGINAL 330ML','',6.00,'2022-11-04 23:10:30','0.00','12','newstock','1','','',188.00,'','1','6','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(469,'HEINEKEN CAN 500ML','',1.00,'2022-11-04 23:35:36','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(470,'JACK DANIELS 1L','',3.00,'2022-11-05 00:09:52','0.00','12','newstock','1','','',3450.00,'','1','3','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(471,'SMIRNOFF GUARANA 330ML','',8.00,'2022-11-05 00:19:35','1.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(472,'HEINEKEN GLASS300ML','',9.00,'2022-11-05 02:23:03','0.00','12','newstock','1','','',174.00,'','1','9','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(473,'HEINEKEN CAN 500ML','',1.00,'2022-11-05 02:29:15','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(474,'HEINEKEN GLASS300ML','',1.00,'2022-11-05 02:30:12','0.00','12','newstock','1','','',174.00,'','1','1','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(475,'HEINEKEN GLASS300ML','',14.00,'2022-11-05 21:41:23','0.00','12','newstock','1','','',174.00,'','1','14','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(476,'TUSKER CIDER CAN 500ML','',12.00,'2022-11-05 21:55:49','0.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(477,'HEINEKEN CAN 500ML','',13.00,'2022-11-05 23:36:27','1.00','12','newstock','1','','',182.00,'','1','14','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(478,'SAVANNA DRY CIDER 330ML','',4.00,'2022-11-05 23:47:26','0.00','12','newstock','1','','',201.00,'','1','4','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(479,'SAFARI LEMONADE','',1.00,'2022-11-05 23:53:42','1.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(480,'SMIRNOFF GUARANA 330ML','',4.00,'2022-11-06 00:25:46','2.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(481,'DESPARADO ORIGINAL 330ML','',4.00,'2022-11-06 00:26:08','0.00','12','newstock','1','','',188.00,'','1','4','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(482,'GUINNESS CAN 500ML','',1.00,'2022-11-06 01:04:01','0.00','12','newstock','1','','',189.75,'','1','1','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(483,'TUSKER LAGER CAN 500ML','',5.00,'2022-11-06 01:18:09','1.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(484,'GUINNESS CAN 500ML','',2.00,'2022-11-06 01:18:35','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(485,'TUSKER LAGER CAN 500ML','',2.00,'2022-11-06 01:33:26','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(486,'SAVANNA DRY CIDER 330ML','',2.00,'2022-11-06 01:35:24','0.00','12','newstock','1','','',201.00,'','1','2','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(487,'SAFARI LEMONADE','',2.00,'2022-11-06 01:44:13','0.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(488,'4TH STREET SWEET WHITE750ML','',1.00,'2022-11-06 02:01:31','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(489,'NEDERBURG SAUVIGNON BLANC 750ML','',1.00,'2022-11-06 02:19:23','6.00','12','newstock','1','','',1150.00,'','1','7','internal','1','6001452258005','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(490,'SAVANNA DRY CIDER 330ML','',4.00,'2022-11-06 02:19:56','0.00','12','newstock','1','','',201.00,'','1','4','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(491,'SAFARI LEMONADE','',2.00,'2022-11-06 03:13:54','0.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(492,'SMIRNOFF GUARANA 330ML','',1.00,'2022-11-06 04:01:23','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(493,'BEST LONDON DRY GIN 750ML','',1.00,'2022-11-06 04:05:06','0.00','12','newstock','1','','',645.00,'','1','1','internal','1','6161100421561','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(494,'TUSKER LAGER CAN 500ML','',3.00,'2022-11-06 16:22:53','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(495,'SAVANNA DRY CIDER 330ML','',2.00,'2022-11-06 18:22:30','0.00','12','newstock','1','','',201.00,'','1','2','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(496,'DESPARADO ORIGINAL 330ML','',2.00,'2022-11-06 22:43:59','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(497,'GUINNESS CAN 500ML','',2.00,'2022-11-06 22:58:24','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(498,'TUSKER LAGER CAN 500ML','',2.00,'2022-11-06 22:58:58','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(499,'TUSKER LITE CAN 500ML','',3.00,'2022-11-06 22:59:51','1.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(500,'SAFARI LEMONADE','',2.00,'2022-11-07 01:22:17','0.00','12','newstock','1','','',37.08,'','1','2','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(501,'HEINEKEN CAN 500ML','',2.00,'2022-11-07 22:00:23','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(502,'SMIRNOFF GUARANA 330ML','',2.00,'2022-11-07 22:00:48','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(503,'LEADING WANGARI GIN 750ML','',3.00,'2022-11-07 22:39:52','2.00','12','newstock','1','','',480.00,'','1','5','internal','1','7174000401020','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(504,'HEINEKEN CAN 500ML','',3.00,'2022-11-07 22:41:46','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(505,'TUSKER MALT CAN 500ML','',1.00,'2022-11-07 22:42:22','4.00','12','newstock','1','','',198.45,'','1','5','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(506,'SAFARI LEMONADE','',4.00,'2022-11-07 23:02:20','0.00','12','newstock','1','','',37.08,'','1','4','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(507,'COCACOLA 1.25ML','',3.00,'2022-11-07 23:32:30','0.00','12','newstock','1','','',103.00,'','1','3','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(508,'SMIRNOFF GUARANA 330ML','',4.00,'2022-11-07 23:53:47','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(509,'HEINEKEN CAN 500ML','',2.00,'2022-11-08 00:04:49','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(510,'TUSKER LITE CAN 500ML','',6.00,'2022-11-08 00:05:22','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(511,'HEINEKEN CAN 500ML','',2.00,'2022-11-08 00:29:54','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(512,'TUSKER LITE CAN 500ML','',4.00,'2022-11-08 02:06:03','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(513,'TUSKER CIDER CAN 500ML','',4.00,'2022-11-08 02:06:26','1.00','12','newstock','1','','',181.71,'','1','5','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(514,'HEINEKEN GLASS300ML','',4.00,'2022-11-08 03:04:39','0.00','12','newstock','1','','',174.00,'','1','4','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(515,'WHITE CAP CAN 500ML','',1.00,'2022-11-08 03:49:06','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(516,'CHROME GIN 750ML','',2.00,'2022-11-08 21:45:41','0.00','12','newstock','1','','',501.00,'','1','2','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(517,'TUSKER LAGER CAN 500ML','',3.00,'2022-11-08 22:00:07','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(518,'HEINEKEN CAN 500ML','',1.00,'2022-11-09 00:32:50','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(519,'HEINEKEN CAN 500ML','',2.00,'2022-11-09 00:34:02','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(520,'PREDATOR ENERGY DRINK','',2.00,'2022-11-09 02:52:20','9.00','12','newstock','1','','',41.82,'','1','11','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(521,'SMIRNOFF GUARANA 330ML','',1.00,'2022-11-09 02:53:21','2.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(522,'WHITE CAP CAN 500ML','',2.00,'2022-11-09 02:56:22','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(523,'THE FAMOUS GROUSE 1L','',4.00,'2022-11-09 03:13:45','2.00','12','newstock','1','','',1854.00,'','1','6','internal','1','5010314101015','','',0.00,'','2600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(524,'THE FAMOUSE GROUSE 750ML','',4.00,'2022-11-09 03:14:09','0.00','12','newstock','1','','',1552.00,'','1','4','internal','1','5010314750008','','',0.00,'','2100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(525,'CHIVAS REGAL 12YRS 1LTR','',1.00,'2022-11-09 03:18:33','1.00','12','newstock','1','','',3250.00,'','1','2','internal','1','080432400432','','',0.00,'','4350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(526,'SAVANNA DRY CIDER 330ML','',3.00,'2022-11-09 03:19:51','0.00','12','newstock','1','','',201.00,'','1','3','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(527,'RESERVE 7 WHISKY 750ML','',2.00,'2022-11-09 03:24:33','1.00','12','newstock','1','','',660.00,'','1','3','internal','1','8906125990009','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(528,'THE SINGLETON 12YRS 700ML','',6.00,'2022-11-09 03:26:55','3.00','12','newstock','1','','',4333.00,'','1','9','internal','1','5000281021621','','',0.00,'','6000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(529,'JW DOUBLE BLACK 750ML','',3.00,'2022-11-09 03:29:48','0.00','12','newstock','1','','',3870.00,'','Main','3','Internal','Main','5000267116419','','',0.00,'','5500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(530,'JW WHITE 1L','',3.00,'2022-11-09 03:32:09','0.00','12','newstock','1','','',3056.00,'','Main','3','Internal','Main','5000267173139','','',0.00,'','4500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(531,'JW GOLD RESERVE 750ML','',4.00,'2022-11-09 03:34:00','0.00','12','newstock','1','','',5685.00,'','Main','4','Internal','Main','5000267107776','','',0.00,'','7700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(532,'AMARULA 750ML','',1.00,'2022-11-09 03:44:16','1.00','12','newstock','1','','',2011.00,'','1','2','internal','1','6001495062508','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(533,'BEST CREAM 750ML','',5.00,'2022-11-09 03:45:28','0.00','12','newstock','1','','',922.00,'','Main','5','Internal','Main','6161100421622','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(534,'Best Cream 250ml','',1.00,'2022-11-09 03:46:34','4.00','12','newstock','1','','',310.00,'','Main','5','Internal','Main','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(535,'BAILEYS ORIGINAL 750ML','',7.00,'2022-11-09 03:48:44','0.00','12','newstock','1','','',1916.00,'','Main','7','Internal','Main','5011013100132','','',0.00,'','2600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(536,'BAILEYS ORIGINAL 1L','',6.00,'2022-11-09 03:49:28','0.00','12','newstock','1','','',2461.00,'','Main','6','Internal','Main','5011013100118','','',0.00,'','3350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(537,'GORDONS DRY GIN 1L','',2.00,'2022-11-09 03:50:27','0.00','12','newstock','1','','',1840.00,'','Main','2','Internal','Main','5000289020800','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(538,'GORDONS DRY GIN 350ML','',14.00,'2022-11-09 03:51:15','0.00','12','newstock','1','','',710.00,'','Main','14','Internal','Main','5000289933292','','',0.00,'','950','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(539,'LEADING WANGARI GIN 750ML','',2.00,'2022-11-09 03:51:59','0.00','12','newstock','1','','',480.00,'','Main','2','Internal','Main','7174000401020','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(540,'BEST LONDON DRY GIN 750ML','',2.00,'2022-11-09 03:52:40','0.00','12','newstock','1','','',645.00,'','Main','2','Internal','Main','6161100421561','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(541,'BOMBAY SAPHIRE 1L','',6.00,'2022-11-09 03:53:52','0.00','12','newstock','1','','',2280.00,'','Main','6','Internal','Main','7640175740030','','',0.00,'','3350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(542,'BOMBAY SAPHIRE 750ML','',7.00,'2022-11-09 03:54:14','0.00','12','newstock','1','','',1820.00,'','Main','7','Internal','Main','7640175740047','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(543,'GILBEYS GIN 750ML','',3.00,'2022-11-09 03:54:50','0.00','12','newstock','1','','',1125.00,'','Main','3','Internal','Main','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(544,'GORDONS SICILIAN LEMON 700ML','',2.00,'2022-11-09 03:55:20','0.00','12','newstock','1','','',1540.00,'','Main','2','Internal','Main','5000289932479','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(545,'GORDONS PINK GIN 700ML','',1.00,'2022-11-09 03:56:26','0.00','12','newstock','1','','',1540.00,'','Main','1','Internal','Main','5000289929417','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(546,'GILBEYS GIN 750ML','',1.00,'2022-11-09 03:56:59','3.00','12','newstock','1','','',1125.00,'','Main','4','Internal','Main','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(547,'GILBEYS GIN MIXED BERRY 250ML','',30.00,'2022-11-09 03:57:29','0.00','12','newstock','1','','',388.00,'','Main','30','Internal','Main','6161101606547','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(548,'GILBEYS GIN 250ML','',1.00,'2022-11-09 03:57:56','0.00','12','newstock','1','','',388.00,'','Main','1','Internal','Main','6161101602167','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(549,'BEEFEATER DRY GIN 750ML','',1.00,'2022-11-09 04:02:55','5.00','12','newstock','1','','',2460.00,'','1','6','internal','1','5000329002230','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(550,'TANQUERAY RANGPUR LIME 700ML','',2.00,'2022-11-09 04:07:15','5.00','12','newstock','1','','',2220.00,'','1','7','internal','1','5000291025930','','',0.00,'','3000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(551,'VICEROY 750ML','',5.00,'2022-11-09 04:10:09','0.00','12','newstock','1','','',1072.00,'','1','5','internal','1','6001496011796','','',0.00,'','1700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(552,'VICEROY 375ML','',4.00,'2022-11-09 04:10:42','0.00','12','newstock','1','','',544.00,'','1','4','internal','1','6001496011772','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(553,'NAPOLEON GOLD BRANDY 750ML','',3.00,'2022-11-09 04:12:08','4.00','12','newstock','1','','',600.00,'','1','7','internal','1','6161101560948','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(554,'NAPOLEON GOLD 250ML','',2.00,'2022-11-09 04:12:30','3.00','12','newstock','1','','',210.00,'','1','5','internal','1','6161101561020','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(555,'BACARDI CARTA BLANCA 750ML','',1.00,'2022-11-09 04:14:43','3.00','12','newstock','1','','',1300.00,'','1','4','internal','1','5010677015615','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(556,'BACARDI CARTA BLANCA 750ML','',2.00,'2022-11-09 04:15:40','4.00','12','newstock','1','','',1300.00,'','1','6','internal','1','5010677015615','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(557,'RICHOT BRANDY 750ML','',2.00,'2022-11-09 04:17:42','9.00','12','newstock','1','','',1125.00,'','1','11','internal','1','5010103930864','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(558,'CAPTAIN MORGAN BLACK RUM 1L','',4.00,'2022-11-09 04:21:52','0.00','12','newstock','1','','',1650.00,'','Main','4','Internal','Main','087000006935','','',0.00,'','2250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(559,'CAPTAIN MORGAN DARK RUM 750ML','',3.00,'2022-11-09 04:22:36','0.00','12','newstock','1','','',1320.00,'','Main','3','Internal','Main','087000006928','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(560,'GILBEYS GIN 750ML','',2.00,'2022-11-09 16:07:33','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(561,'TONIC WATER 500ML','',3.00,'2022-11-09 16:08:17','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(562,'KENYA CANE PINE 750ML','',2.00,'2022-11-09 16:30:30','3.00','12','newstock','1','','',653.00,'','1','5','internal','1','6161101604994','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(563,'KENYA CANE 750ML','',5.00,'2022-11-09 16:31:20','0.00','12','newstock','1','','',653.00,'','1','5','internal','1','5010103930833','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(564,'WHITE PEARL 750ML','',3.00,'2022-11-09 16:34:06','5.00','12','newstock','1','','',555.00,'','1','8','internal','1','6161101561303','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(565,'WHITE PEARL 250ML','',5.00,'2022-11-09 16:34:55','11.00','12','newstock','1','','',190.00,'','1','16','internal','1','6161101561280','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(566,'SMIRNOFF RED 250ML','',2.00,'2022-11-09 16:35:37','29.00','12','newstock','1','','',392.00,'','1','31','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(567,'SAFARI LEMONADE','',1.00,'2022-11-09 16:36:40','0.00','12','newstock','1','','',37.08,'','1','1','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(568,'SMIRNOFF RED 350ML','',1.00,'2022-11-09 16:37:43','3.00','12','newstock','1','','',544.00,'','1','4','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(569,'BEST WHISKY 750ML','',6.00,'2022-11-09 16:53:36','0.00','12','newstock','1','','',787.00,'','1','6','internal','1','6161100421509','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(570,'WILLIAM LAWSONS 750ML','',3.00,'2022-11-09 16:55:41','0.00','12','newstock','1','','',1037.00,'','1','3','internal','1','5010752000321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(571,'WILLIAM LAWSONS 350ML','',7.00,'2022-11-09 16:56:48','2.00','12','newstock','1','','',543.00,'','1','9','internal','1','5010752000420','','',0.00,'','950','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(572,'BLACK &WHITE 1L','',1.00,'2022-11-09 16:58:58','1.00','12','newstock','1','','',1130.00,'','1','2','internal','1','50196081','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(573,'BLACK & WHITE 750ML','',1.00,'2022-11-09 16:59:48','0.00','12','newstock','1','','',855.00,'','1','1','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(574,'BLACK & WHITE 250ML','',1.00,'2022-11-09 17:18:32','1.00','12','newstock','1','','',310.00,'','1','2','internal','1','5000196006652','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(575,'BLACK & WHITE 350ML','',7.00,'2022-11-09 17:19:28','5.00','12','newstock','1','','',443.00,'','1','12','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(576,'IMPERIAL BLUE 375ML','',8.00,'2022-11-09 17:20:55','0.00','12','newstock','1','','',450.00,'','Main','8','Internal','Main','8901522001105','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(577,'JIM BEAM 750ML','',6.00,'2022-11-09 17:22:44','0.00','12','newstock','1','','',1670.00,'','Main','6','Internal','Main','080686001409','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(578,'J&B RARE 1L','',4.00,'2022-11-09 17:24:18','0.00','12','newstock','1','','',1699.00,'','Main','4','Internal','Main','5010103800457','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(579,'J&B RARE 750ML','',11.00,'2022-11-09 17:31:23','0.00','12','newstock','1','','',1353.00,'','Main','11','Internal','Main','5010103800303','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(580,'J&B RARE 375ML','',16.00,'2022-11-09 17:32:04','0.00','12','newstock','1','','',719.00,'','Main','16','Internal','Main','5010103800167','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(581,'VAT 69 1L','',4.00,'2022-11-09 17:34:02','0.00','12','newstock','1','','',1250.00,'','Main','4','Internal','Main','5000292262716','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(582,'VAT 69 750ML','',6.00,'2022-11-09 17:34:21','0.00','12','newstock','1','','',1141.00,'','Main','6','Internal','Main','5000292001001','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(583,'VAT 69 375ML','',21.00,'2022-11-09 17:35:20','0.00','12','newstock','1','','',635.00,'','Main','21','Internal','Main','6161101601115','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(584,'VAT 69 250ML','',23.00,'2022-11-09 17:36:06','0.00','12','newstock','1','','',430.00,'','Main','23','Internal','Main','5000292263171','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(585,'SOUTHERN COMFORT 1L','',3.00,'2022-11-09 17:36:43','0.00','12','newstock','1','','',2100.00,'','Main','3','Internal','Main','088544018941','','',0.00,'','2900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(586,'SOUTHERN COMFORT 700ML','',3.00,'2022-11-09 17:37:04','0.00','12','newstock','1','','',1650.00,'','Main','3','Internal','Main','1210000100511','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(587,'BOND 7 750ML','',1.00,'2022-11-09 17:40:06','9.00','12','newstock','1','','',1125.00,'','1','10','internal','1','5010103930963','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(588,'BOND 7 350ML','',1.00,'2022-11-09 17:40:24','18.00','12','newstock','1','','',542.00,'','1','19','internal','1','5010103930970','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(589,'BACARDI CARTA ORO 750ML','',4.00,'2022-11-09 17:47:48','2.00','12','newstock','1','','',1270.00,'','1','6','internal','1','5010677025003','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(590,'SMIRNOFF GUARANA 330ML','',29.00,'2022-11-09 18:14:10','0.00','12','newstock','1','','',150.45,'','1','29','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(591,'SMIRNOFF BLACK ICE 330ML CAN','',35.00,'2022-11-09 18:14:55','2.00','12','newstock','1','','',150.45,'','1','37','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(592,'PILSNER CAN 500ML','',12.00,'2022-11-09 18:16:10','0.00','12','newstock','1','','',154.95,'','1','12','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(593,'SNAPP 330ML CAN','',12.00,'2022-11-09 18:16:35','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(594,'OJ 16%','',11.00,'2022-11-09 18:16:55','0.00','12','newstock','1','','',225.00,'','1','11','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(595,'REDBULL','',21.00,'2022-11-09 18:19:48','12.00','12','newstock','1','','',147.00,'','1','33','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(596,'SAVANNA DRY CIDER 330ML','',5.00,'2022-11-09 18:20:05','0.00','12','newstock','1','','',201.00,'','1','5','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(597,'HEINEKEN CAN 500ML','',4.00,'2022-11-09 18:20:19','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(598,'BALOZI LAGER CAN 500ML','',33.00,'2022-11-09 18:24:27','10.00','12','newstock','1','','',172.83,'','1','43','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(599,'TUSKER MALT CAN 500ML','',40.00,'2022-11-09 18:25:03','0.00','12','newstock','1','','',198.45,'','1','40','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(600,'TUSKER CIDER CAN 500ML','',19.00,'2022-11-09 18:29:42','2.00','12','newstock','1','','',181.71,'','1','21','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(601,'TUSKER LAGER CAN 500ML','',27.00,'2022-11-09 18:30:16','0.00','12','newstock','1','','',172.75,'','1','27','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(602,'WHITE CAP CAN 500ML','',5.00,'2022-11-09 18:30:38','0.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(603,'HEINEKEN GLASS300ML','',20.00,'2022-11-09 18:42:31','1.00','12','newstock','1','','',174.00,'','1','21','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(604,'KERINGET 1LTR','',13.00,'2022-11-09 18:46:13','3.00','12','newstock','1','','',74.58,'','1','16','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(605,'DELMONTE TROPICAL 1LTR','',1.00,'2022-11-09 18:46:33','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150121','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(606,'TONIC WATER 500ML','',12.00,'2022-11-09 18:49:18','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(607,'sprite 1.25ml','',12.00,'2022-11-09 18:52:36','2.00','12','newstock','1','','',103.00,'','1','14','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(608,'SPRITE SODA 2LTRS','',8.00,'2022-11-09 18:54:29','11.00','12','newstock','1','','',158.00,'','1','19','internal','1','5449000004864','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(609,'FANTA BLACKCURRENT 500ML','',10.00,'2022-11-09 18:56:34','3.00','12','newstock','1','','',56.00,'','1','13','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(610,'FANTA ORANGE 500ML','',8.00,'2022-11-09 18:57:01','1.00','12','newstock','1','','',53.33,'','1','9','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(611,'COCACOLA SODA 2LTRS','',5.00,'2022-11-09 18:57:50','12.00','12','newstock','1','','',158.00,'','1','17','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(612,'COCACOLA 1.25ML','',8.00,'2022-11-09 18:58:47','2.00','12','newstock','1','','',103.00,'','1','10','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(613,'PREDATOR MANGO 400ML','',8.00,'2022-11-09 19:00:05','1.00','12','newstock','1','','',67.00,'','1','9','internal','1','5060608747818','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(614,'PREDATOR ENERGY DRINK','',38.00,'2022-11-09 19:01:12','9.00','12','newstock','1','','',41.82,'','1','47','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(615,'SODA WATER 500ML','',10.00,'2022-11-09 19:01:59','27.00','12','newstock','1','','',53.33,'','1','37','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(616,'ROSSO NOBILE ALL EXPRESSO 750ML','',1.00,'2022-11-09 19:09:27','1.00','12','newstock','1','','',1050.00,'','1','2','internal','1','4058387001451','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(617,'PILSNER CAN 500ML','',1.00,'2022-11-09 20:55:32','11.00','12','newstock','1','','',154.95,'','1','12','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(618,'GUINNESS CAN 500ML','',32.00,'2022-11-09 21:27:05','0.00','12','newstock','1','','',189.75,'','1','32','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(619,'TUSKER LITE CAN 500ML','',6.00,'2022-11-10 20:22:37','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(620,'GILBEYS GIN 350ML','',4.00,'2022-11-11 01:40:47','0.00','12','newstock','1','','',542.00,'','1','4','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(621,'HEINEKEN GLASS300ML','',1.00,'2022-11-11 03:27:15','0.00','12','newstock','1','','',174.00,'','1','1','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(622,'CHROME VODKA 250ML','',30.00,'2022-11-11 21:17:39','0.00','12','newstock','1','','',192.00,'','1','30','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(623,'HEINEKEN CAN 500ML','',6.00,'2022-11-11 21:41:11','0.00','12','newstock','1','','',182.00,'','1','6','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(624,'GILBEYS GIN 750ML','',6.00,'2022-11-11 21:44:47','0.00','12','newstock','1','','',1125.00,'','1','6','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(625,'SAFARI LEMONADE','',5.00,'2022-11-11 21:47:56','0.00','12','newstock','1','','',37.08,'','1','5','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(626,'WHITE CAP CAN 500ML','',4.00,'2022-11-11 21:51:43','1.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(627,'HEINEKEN CAN 500ML','',3.00,'2022-11-11 22:01:26','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(628,'WHITE CAP CAN 500ML','',1.00,'2022-11-11 22:01:45','1.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(629,'WHITE CAP CAN 500ML','',1.00,'2022-11-11 23:01:01','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(630,'REDBULL','',2.00,'2022-11-11 23:20:57','31.00','12','newstock','1','','',147.00,'','1','33','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(631,'HEINEKEN CAN 500ML','',5.00,'2022-11-12 00:07:34','0.00','12','newstock','1','','',182.00,'','1','5','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(632,'HEINEKEN GLASS300ML','',8.00,'2022-11-12 00:37:50','0.00','12','newstock','1','','',174.00,'','1','8','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(633,'BALOZI LAGER CAN 500ML','',2.00,'2022-11-12 00:57:57','36.00','12','newstock','1','','',172.83,'','1','38','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(634,'WHITE CAP CRISP CAN','',1.00,'2022-11-12 01:19:33','0.00','12','newstock','1','','',159.00,'','Main','1','Internal','Main','6161101606820','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(635,'GUINNESS SMOOTH CAN 500ML','',1.00,'2022-11-12 01:21:52','0.00','12','newstock','1','','',172.83,'','1','1','internal','1','6161101605199','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(636,'CHROME GIN 250ML','',1.00,'2022-11-12 01:25:59','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(637,'CHROME VODKA 250ML','',12.00,'2022-11-12 18:24:22','24.00','12','newstock','1','','',192.00,'','1','36','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(638,'SMIRNOFF RED 250ML','',10.00,'2022-11-12 18:26:54','30.00','12','newstock','1','','',392.00,'','1','40','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(639,'HUNTERS CHOICE 250ML','',13.00,'2022-11-12 18:28:03','1.00','12','newstock','1','','',290.00,'','1','14','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(640,'SAFARI LEMONADE','',5.00,'2022-11-12 20:39:57','3.00','12','newstock','1','','',37.08,'','1','8','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(641,'SAFARI WATER 1L','',10.00,'2022-11-12 20:41:00','3.00','12','newstock','1','','',38.00,'','1','13','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(642,'GUINNESS SMOOTH CAN 500ML','',3.00,'2022-11-12 22:28:02','0.00','12','newstock','1','','',172.83,'','1','3','internal','1','6161101605199','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(643,'TUSKER LAGER CAN 500ML','',6.00,'2022-11-13 00:59:56','4.00','12','newstock','1','','',172.75,'','1','10','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(644,'TUSKER LAGER CAN 500ML','',6.00,'2022-11-13 01:00:50','4.00','12','newstock','1','','',172.75,'','1','10','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(645,'TUSKER LAGER CAN 500ML','',6.00,'2022-11-13 01:01:03','10.00','12','newstock','1','','',172.75,'','1','16','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(646,'BEST LONDON DRY GIN 750ML','',1.00,'2022-11-13 01:05:34','0.00','12','newstock','1','','',645.00,'','1','1','internal','1','6161100421561','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(647,'DESPARADO ORIGINAL 330ML','',2.00,'2022-11-13 01:17:06','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(648,'HEINEKEN GLASS300ML','',4.00,'2022-11-13 01:20:55','3.00','12','newstock','1','','',174.00,'','1','7','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(649,'HEINEKEN GLASS300ML','',4.00,'2022-11-13 01:21:39','7.00','12','newstock','1','','',174.00,'','1','11','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(650,'HEINEKEN GLASS300ML','',2.00,'2022-11-13 01:22:47','11.00','12','newstock','1','','',174.00,'','1','13','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(651,'HEINEKEN CAN 500ML','',4.00,'2022-11-13 01:29:51','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(652,'SAVANNA DRY CIDER 330ML','',6.00,'2022-11-13 01:38:41','1.00','12','newstock','1','','',201.00,'','1','7','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(653,'CHROME VODKA 250ML','',1.00,'2022-11-13 02:02:02','34.00','12','newstock','1','','',192.00,'','1','35','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(654,'DESPARADO ORIGINAL 330ML','',8.00,'2022-11-13 02:14:10','0.00','12','newstock','1','','',188.00,'','1','8','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(655,'HEINEKEN CAN 500ML','',6.00,'2022-11-13 02:27:15','0.00','12','newstock','1','','',182.00,'','1','6','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(656,'CHROME GIN 750ML','',2.00,'2022-11-13 02:47:44','0.00','12','newstock','1','','',501.00,'','1','2','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(657,'KERINGET 1LTR','',2.00,'2022-11-13 03:29:13','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(658,'DESPARADO ORIGINAL 330ML','',4.00,'2022-11-13 03:34:31','3.00','12','newstock','1','','',188.00,'','1','7','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(659,'DESPARADO ORIGINAL 330ML','',7.00,'2022-11-13 03:36:39','7.00','12','newstock','1','','',188.00,'','1','14','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(660,'ALVARO PINEAPPLE 330ML CAN','',1.00,'2022-11-13 03:41:38','0.00','12','newstock','1','','',95.75,'','1','1','internal','1','6161101602525','','',0.00,'','120','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(661,'KERINGET 1LTR','',1.00,'2022-11-13 03:49:11','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(662,'HEINEKEN CAN 500ML','',2.00,'2022-11-13 03:49:42','1.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(663,'HEINEKEN CAN 500ML','',6.00,'2022-11-13 05:28:28','1.00','12','newstock','1','','',182.00,'','1','7','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(664,'KERINGET 1LTR','',2.00,'2022-11-13 05:30:13','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(665,'DELMONTE MANGO 1LTR','',1.00,'2022-11-13 21:19:12','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150152','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(666,'HEINEKEN CAN 500ML','',3.00,'2022-11-14 04:19:45','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(667,'WHITE CAP CAN 500ML','',1.00,'2022-11-14 04:20:21','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(668,'HEINEKEN CAN 500ML','',6.00,'2022-11-14 18:43:53','0.00','12','newstock','1','','',182.00,'','1','6','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(669,'CHROME GIN 750ML','',2.00,'2022-11-14 20:51:31','0.00','12','newstock','1','','',501.00,'','1','2','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(670,'KENYA CANE 350ML','',27.00,'2022-11-14 20:57:14','0.00','12','newstock','1','','',335.00,'','1','27','internal','1','5010103930840','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(671,'VICEROY 375ML','',1.00,'2022-11-14 21:01:05','1.00','12','newstock','1','','',544.00,'','1','2','internal','1','6001496011772','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(672,'BLACK & WHITE 750ML','',1.00,'2022-11-14 21:05:13','1.00','12','newstock','1','','',855.00,'','1','2','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(673,'HEINEKEN CAN 500ML','',4.00,'2022-11-14 21:43:44','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(674,'COCACOLA 1.25ML','',5.00,'2022-11-14 22:39:18','4.00','12','newstock','1','','',103.00,'','1','9','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(675,'KERINGET 1LTR','',2.00,'2022-11-15 01:34:34','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(676,'BLACKCURRANT MENTHOL','',1.00,'2022-11-15 09:25:10','0.00','12','newstock','1','','',1500.00,'','1','1','internal','1','852848252017','','',0.00,'','3800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(677,'KERINGET 1LTR','',10.00,'2022-11-15 15:05:59','0.00','12','newstock','1','','',74.58,'','1','10','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(678,'GUINNESS CAN 500ML','',5.00,'2022-11-16 00:06:43','1.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(679,'JACK DANIELS 700ML','',2.00,'2022-11-16 01:13:01','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(680,'GILBEYS GIN 350ML','',2.00,'2022-11-16 13:38:47','3.00','12','newstock','1','','',542.00,'','1','5','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(681,'HUNTERS CHOICE 350ML','',3.00,'2022-11-16 18:58:57','0.00','12','newstock','1','','',251.00,'','1','3','internal','1','6161100421363','','',0.00,'','650','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(682,'BARBERA DASTI 750ML','',1.00,'2022-11-16 23:15:59','0.00','12','newstock','1','','',1.00,'','1','1','internal','1','8000530010304','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(683,'GILBEYS GIN 750ML','',1.00,'2022-11-16 23:42:25','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(684,'GORDONS SICILIAN LEMON 700ML','',1.00,'2022-11-17 00:08:15','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289932479','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(685,'4TH STREET SWEET WHITE750ML','',1.00,'2022-11-17 00:10:50','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(686,'FLIRT VODKA STRAWBERRY 1L','',3.00,'2022-11-17 05:36:07','1.00','12','newstock','1','','',1018.00,'','1','4','internal','1','3800032010568','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(687,'GILBEYS GIN 750ML','',2.00,'2022-11-17 08:54:48','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(688,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-11-17 22:15:40','25.00','12','newstock','1','','',150.45,'','1','31','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(689,'HEINEKEN CAN 500ML','',4.00,'2022-11-17 22:18:38','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(690,'HEINEKEN GLASS300ML','',12.00,'2022-11-17 22:34:05','7.00','12','newstock','1','','',174.00,'','1','19','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(691,'HEINEKEN CAN 500ML','',16.00,'2022-11-17 22:42:43','3.00','12','newstock','1','','',182.00,'','1','19','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(692,'TUSKER LAGER CAN 500ML','',16.00,'2022-11-17 22:43:48','8.00','12','newstock','1','','',172.75,'','1','24','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(693,'TUSKER CIDER CAN 500ML','',18.00,'2022-11-17 22:44:43','0.00','12','newstock','1','','',181.71,'','1','18','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(694,'TUSKER LITE CAN 500ML','',24.00,'2022-11-17 22:45:24','0.00','12','newstock','1','','',198.45,'','1','24','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(695,'WHITE CAP CAN 500ML','',24.00,'2022-11-17 22:46:15','0.00','12','newstock','1','','',190.38,'','1','24','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(696,'Best Cream 250ml','',2.00,'2022-11-17 23:35:50','0.00','12','newstock','1','','',310.00,'','1','2','internal','1','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(697,'DUREX FEATHERLITE','',2.00,'2022-11-18 04:31:33','0.00','12','newstock','1','','',263.16,'','1','2','internal','1','5010232953994','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(698,'COKE ZERO 500ML','',23.00,'2022-11-18 09:37:12','0.00','12','newstock','1','','',53.33,'','1','23','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(699,'VICEROY 375ML','',5.00,'2022-11-18 09:38:22','0.00','12','newstock','1','','',544.00,'','1','5','internal','1','6001496011772','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(700,'VICEROY 250ML','',5.00,'2022-11-18 09:52:35','0.00','12','newstock','1','','',352.00,'','1','5','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(701,'VICEROY 250ML','',1.00,'2022-11-18 09:53:06','5.00','12','newstock','1','','',352.00,'','1','6','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(702,'GILBEYS GIN 750ML','',2.00,'2022-11-19 00:03:42','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(703,'HEINEKEN CAN 500ML','',2.00,'2022-11-19 05:35:28','10.00','12','newstock','1','','',182.00,'','1','12','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(704,'HEINEKEN CAN 500ML','',1.00,'2022-11-19 11:55:10','1.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(705,'HEINEKEN CAN 500ML','',4.00,'2022-11-19 15:36:03','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(706,'HEINEKEN CAN 500ML','',4.00,'2022-11-19 17:48:09','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(707,'BALOZI LAGER CAN 500ML','',2.00,'2022-11-19 17:48:54','22.00','12','newstock','1','','',172.83,'','1','24','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(708,'HEINEKEN CAN 500ML','',2.00,'2022-11-19 17:56:51','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(709,'FOUR COUSINS SWEET RED 750ml','',2.00,'2022-11-19 18:36:57','0.00','12','newstock','1','','',680.00,'','1','2','internal','1','6002269000566','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(710,'SMIRNOFF GUARANA 330ML','',24.00,'2022-11-19 19:48:39','1.00','12','newstock','1','','',150.45,'','1','25','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(711,'SPRITE CAN 330ML','',6.00,'2022-11-19 21:45:27','0.00','12','newstock','1','','',64.00,'','1','6','internal','1','5449000014535','','',0.00,'','120','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(712,'SAFARI LEMONADE','',3.00,'2022-11-19 23:09:55','0.00','12','newstock','1','','',37.08,'','1','3','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(713,'JW RED 1L','',2.00,'2022-11-19 23:15:00','0.00','12','newstock','1','','',1612.00,'','1','2','internal','1','5000267013602','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(714,'HEINEKEN CAN 500ML','',24.00,'2022-11-19 23:30:38','0.00','12','newstock','1','','',182.00,'','1','24','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(715,'WHITE CAP CAN 500ML','',24.00,'2022-11-20 02:33:24','0.00','12','newstock','1','','',190.38,'','1','24','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(716,'KERINGET 1LTR','',12.00,'2022-11-20 02:34:23','0.00','12','newstock','1','','',74.58,'','1','12','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(717,'GUINNESS CAN 500ML','',4.00,'2022-11-20 12:16:21','1.00','12','newstock','1','','',189.75,'','1','5','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(718,'GUINNESS CAN 500ML','',7.00,'2022-11-20 12:26:12','2.00','12','newstock','1','','',189.75,'','1','9','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(719,'TONIC WATER 500ML','',29.00,'2022-11-20 13:22:52','0.00','12','newstock','1','','',53.33,'','1','29','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(720,'CHROME GIN 750ML','',6.00,'2022-11-20 13:32:27','0.00','12','newstock','1','','',501.00,'','1','6','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(721,'CELLA CASK WHITE 750ML','',5.00,'2022-11-20 15:43:03','0.00','12','newstock','1','','',729.00,'','1','5','internal','1','6001496301705','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(722,'4TH STREET SWEET WHITE750ML','',1.00,'2022-11-20 15:43:58','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(723,'SMIRNOFF RED 750ML','',1.00,'2022-11-20 15:50:13','0.00','12','newstock','1','','',1144.00,'','1','1','internal','1','6161101600934','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(724,'KIBAO VODKA 750ML','',3.00,'2022-11-20 16:50:46','0.00','12','newstock','1','','',502.00,'','1','3','internal','1','6161100421370','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(725,'KIBAO 350ML','',6.00,'2022-11-20 16:51:19','2.00','12','newstock','1','','',318.00,'','1','8','internal','1','6161100421387','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(726,'KIBAO 250ML','',7.00,'2022-11-20 16:51:59','1.00','12','newstock','1','','',198.00,'','1','8','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(727,'VICEROY 250ML','',5.00,'2022-11-20 16:53:35','4.00','12','newstock','1','','',352.00,'','1','9','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(728,'VICEROY 250ML','',1.00,'2022-11-20 16:53:58','9.00','12','newstock','1','','',352.00,'','1','10','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(729,'TOP SECRET WHISKY 750ML','',6.00,'2022-11-20 17:01:58','1.00','12','newstock','1','','',690.00,'','1','7','internal','1','6161101560108','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(730,'WILLIAM LAWSONS 750ML','',6.00,'2022-11-20 17:06:39','1.00','12','newstock','1','','',1037.00,'','1','7','internal','1','5010752000321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(731,'CAPTAIN MORGAN DARK RUM 750ML','',1.00,'2022-11-20 17:08:00','1.00','12','newstock','1','','',1320.00,'','1','2','internal','1','087000006928','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(732,'4TH STREET SWEET RED 750ML','',1.00,'2022-11-20 17:12:24','1.00','12','newstock','1','','',641.00,'','1','2','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(733,'CELLA CASK WHITE 750ML','',6.00,'2022-11-20 17:13:46','3.00','12','newstock','1','','',729.00,'','1','9','internal','1','6001496301705','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(734,'FRAGOLINO SPARKLING WINE WHITE 750ML','',6.00,'2022-11-20 17:17:53','1.00','12','newstock','1','','',1050.00,'','1','7','internal','1','8000530300504','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(735,'JAGERMEISTER 1L','',3.00,'2022-11-20 17:18:48','0.00','12','newstock','1','','',2520.00,'','1','3','internal','1','4067700014535','','',0.00,'','3400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(736,'CHROME VODKA 250ML','',2.00,'2022-11-20 17:25:18','13.00','12','newstock','1','','',192.00,'','1','15','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(737,'CHROME VODKA 750ML','',6.00,'2022-11-20 17:26:08','0.00','12','newstock','1','','',501.00,'','1','6','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(738,'BEST LONDON DRY GIN 750ML','',7.00,'2022-11-20 17:27:30','0.00','12','newstock','1','','',645.00,'','1','7','internal','1','6161100421561','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(739,'PILSNER CAN 500ML','',15.00,'2022-11-21 00:21:27','0.00','12','newstock','1','','',154.95,'','1','15','internal','1','6161101602600','','',0.00,'','220','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(740,'OJ 16%','',12.00,'2022-11-21 00:33:22','6.00','12','newstock','1','','',225.00,'','1','18','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(741,'kenya cane 250ml','',15.00,'2022-11-21 18:02:45','0.00','12','newstock','1','','',247.00,'','1','15','internal','1','6161101602211','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(742,'GILBEYS GIN 350ML','',1.00,'2022-11-22 17:50:08','0.00','12','newstock','1','','',542.00,'','1','1','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(743,'SAFARI LEMONADE','',1.00,'2022-11-22 23:04:10','0.00','12','newstock','1','','',37.08,'','1','1','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(744,'WHITE CAP CAN 500ML','',8.00,'2022-11-23 00:36:37','1.00','12','newstock','1','','',190.38,'','1','9','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(745,'GILBEYS GIN 750ML','',2.00,'2022-11-23 22:51:10','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(746,'SAFARI LEMONADE','',10.00,'2022-11-24 21:14:43','0.00','12','newstock','1','','',37.08,'','1','10','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(747,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-11-24 21:52:31','12.00','12','newstock','1','','',150.45,'','1','18','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(748,'CHROME GIN 250ML','',15.00,'2022-11-24 23:19:37','0.00','12','newstock','1','','',182.00,'','1','15','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(749,'FOUR COUSINS SWEET RED 750ml','',3.00,'2022-11-25 00:57:23','0.00','12','newstock','1','','',680.00,'','1','3','internal','1','6002269000566','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(750,'GUINNESS CAN 500ML','',7.00,'2022-11-25 17:43:19','1.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(751,'GILBEYS GIN 350ML','',2.00,'2022-11-25 22:34:34','0.00','12','newstock','1','','',542.00,'','1','2','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(752,'JACK DANIELS 1L','',1.00,'2022-11-26 00:33:47','0.00','12','newstock','1','','',3450.00,'','1','1','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(753,'CAPTAIN MORGAN 750ML','',6.00,'2022-11-26 16:39:08','0.00','12','newstock','1','','',788.00,'','1','6','internal','1','6161101604543','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(754,'GILBEYS GIN MIXED BERRY 750ML','',4.00,'2022-11-26 18:50:36','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','6161101606561','','',0.00,'','1850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(755,'CHROME GIN 750ML','',5.00,'2022-11-26 19:32:54','2.00','12','newstock','1','','',501.00,'','1','7','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(756,'WHITE CAP CAN 500ML','',20.00,'2022-11-26 20:33:48','1.00','12','newstock','1','','',190.38,'','1','21','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(757,'BACARDI CARTA BLANCA 1L','',1.00,'2022-11-26 22:06:41','0.00','12','newstock','1','','',1730.00,'','1','1','internal','1','5010677015738','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(758,'FANTA ORANGE 500ML','',4.00,'2022-11-26 23:32:15','0.00','12','newstock','1','','',53.33,'','1','4','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(759,'TUSKER LITE CAN 500ML','',6.00,'2022-11-27 00:51:02','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(760,'BLACK & WHITE 750ML','',1.00,'2022-11-27 01:34:15','1.00','12','newstock','1','','',855.00,'','1','2','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(761,'KERINGET 1LTR','',2.00,'2022-11-27 01:37:13','1.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(762,'GILBEYS GIN 750ML','',4.00,'2022-11-27 04:28:41','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(763,'SAFARI LEMONADE','',22.00,'2022-11-28 23:17:42','0.00','12','newstock','1','','',37.08,'','1','22','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(764,'CHROME GIN 250ML','',8.00,'2022-11-28 23:20:18','4.00','12','newstock','1','','',182.00,'','1','12','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(765,'CHROME VODKA 250ML','',8.00,'2022-11-28 23:21:07','4.00','12','newstock','1','','',192.00,'','1','12','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(766,'GILBEYS GIN 350ML','',2.00,'2022-11-29 00:22:30','0.00','12','newstock','1','','',542.00,'','1','2','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(767,'SNAPP 330ML CAN','',4.00,'2022-11-29 00:27:47','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(768,'KERINGET 1LTR','',7.00,'2022-11-29 01:03:15','0.00','12','newstock','1','','',74.58,'','1','7','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(769,'TUSKER LAGER CAN 500ML','',1.00,'2022-11-29 01:56:37','1.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(770,'TUSKER LAGER CAN 500ML','',8.00,'2022-11-29 07:32:39','0.00','12','newstock','1','','',172.75,'','1','8','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(771,'SNAPP 330ML CAN','',4.00,'2022-11-29 22:41:24','1.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(772,'JACK DANIELS 1L','',2.00,'2022-11-30 01:18:46','0.00','12','newstock','1','','',3450.00,'','1','2','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(773,'BALOZI LAGER CAN 500ML','',10.00,'2022-11-30 21:27:45','0.00','12','newstock','1','','',172.83,'','1','10','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(774,'GILBEYS GIN 350ML','',3.00,'2022-11-30 21:29:01','0.00','12','newstock','1','','',542.00,'','1','3','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(775,'SAFARI WATER 1L','',3.00,'2022-11-30 21:34:51','0.00','12','newstock','1','','',38.00,'','1','3','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(776,'TUSKER LITE CAN 500ML','',10.00,'2022-11-30 23:54:48','0.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(777,'FRAGOLINO RED SPARKLING WINE 750ML','',2.00,'2022-12-01 01:32:43','0.00','12','newstock','1','','',1050.00,'','1','2','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(778,'DELMONTE MANGO 1LTR','',2.00,'2022-12-01 01:33:47','0.00','12','newstock','1','','',205.00,'','1','2','internal','1','024000150152','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(779,'JACK DANIELS 700ML','',2.00,'2022-12-01 11:30:46','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(780,'TUSKER LITE CAN 500ML','',6.00,'2022-12-01 22:08:41','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(781,'FANTA ORANGE 500ML','',1.00,'2022-12-01 22:29:46','1.00','12','newstock','1','','',53.33,'','1','2','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(782,'KERINGET 1LTR','',1.00,'2022-12-02 02:46:47','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(783,'HEINEKEN GLASS300ML','',5.00,'2022-12-02 22:16:03','4.00','12','newstock','1','','',174.00,'','1','9','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(784,'HEINEKEN GLASS300ML','',6.00,'2022-12-02 22:43:25','0.00','12','newstock','1','','',174.00,'','1','6','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(785,'WHITE CAP CAN 500ML','',2.00,'2022-12-02 23:05:11','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(786,'WHITE CAP CAN 500ML','',3.00,'2022-12-02 23:15:10','0.00','12','newstock','1','','',190.38,'','1','3','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(787,'HEINEKEN GLASS300ML','',1.00,'2022-12-02 23:15:26','0.00','12','newstock','1','','',174.00,'','1','1','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(788,'JW RED 750ML','',1.00,'2022-12-02 23:28:48','0.00','12','newstock','1','','',1304.00,'','1','1','internal','1','5000267014005','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(789,'HEINEKEN GLASS300ML','',3.00,'2022-12-02 23:30:05','0.00','12','newstock','1','','',174.00,'','1','3','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(790,'TUSKER CIDER CAN 500ML','',6.00,'2022-12-03 00:08:32','0.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(791,'HEINEKEN CAN 500ML','',5.00,'2022-12-03 00:09:28','0.00','12','newstock','1','','',182.00,'','1','5','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(792,'KERINGET 1LTR','',5.00,'2022-12-03 01:33:37','0.00','12','newstock','1','','',74.58,'','1','5','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(793,'WHITE CAP CAN 500ML','',4.00,'2022-12-03 01:34:04','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(794,'GILBEYS GIN 750ML','',4.00,'2022-12-03 01:41:13','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(795,'HEINEKEN GLASS300ML','',5.00,'2022-12-03 02:11:54','1.00','12','newstock','1','','',174.00,'','1','6','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(796,'TUSKER LITE CAN 500ML','',8.00,'2022-12-03 02:13:25','0.00','12','newstock','1','','',198.45,'','1','8','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(797,'WHITE CAP CAN 500ML','',10.00,'2022-12-03 02:26:19','0.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(798,'HEINEKEN CAN 500ML','',10.00,'2022-12-03 02:27:44','3.00','12','newstock','1','','',182.00,'','1','13','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(799,'DELMONTE MANGO 1LTR','',2.00,'2022-12-03 02:30:20','1.00','12','newstock','1','','',205.00,'','1','3','internal','1','024000150152','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(800,'SAFARI WATER 1L','',4.00,'2022-12-03 02:41:16','0.00','12','newstock','1','','',38.00,'','1','4','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(801,'GUINNESS CAN 500ML','',8.00,'2022-12-03 02:50:27','0.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(802,'BLACK & WHITE 750ML','',3.00,'2022-12-03 06:26:07','1.00','12','newstock','1','','',855.00,'','1','4','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(803,'BLACK & WHITE 250ML','',1.00,'2022-12-03 06:35:20','0.00','12','newstock','1','','',310.00,'','1','1','internal','1','5000196006652','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(804,'JW RED 750ML','',2.00,'2022-12-03 06:36:21','0.00','12','newstock','1','','',1304.00,'','1','2','internal','1','5000267014005','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(805,'JW BLACK LABEL 750ML','',2.00,'2022-12-03 06:38:30','0.00','12','newstock','1','','',2433.00,'','1','2','internal','1','5000267024011','','',0.00,'','3600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(806,'JACK DANIELS 1L','',3.00,'2022-12-03 06:40:20','1.00','12','newstock','1','','',3450.00,'','1','4','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(807,'GILBEYS GIN 350ML','',5.00,'2022-12-03 06:41:33','0.00','12','newstock','1','','',542.00,'','1','5','internal','1','5010103930666','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(808,'GILBEYS GIN 250ML','',5.00,'2022-12-03 06:42:09','0.00','12','newstock','1','','',388.00,'','1','5','internal','1','6161101602167','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(809,'CHROME GIN 250ML','',15.00,'2022-12-03 06:43:23','3.00','12','newstock','1','','',182.00,'','1','18','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(810,'CHROME VODKA 750ML','',15.00,'2022-12-03 06:44:16','4.00','12','newstock','1','','',501.00,'','1','19','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(811,'GILBEYS GIN 750ML','',4.00,'2022-12-03 06:45:01','2.00','12','newstock','1','','',1125.00,'','1','6','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(812,'CHROME GIN 750ML','',12.00,'2022-12-03 06:46:07','6.00','12','newstock','1','','',501.00,'','1','18','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(813,'CHROME VODKA 250ML','',15.00,'2022-12-03 06:46:49','7.00','12','newstock','1','','',192.00,'','1','22','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(814,'Best Cream 250ml','',1.00,'2022-12-03 23:53:15','0.00','12','newstock','1','','',310.00,'','1','1','internal','1','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(815,'V&A 750ML','',3.00,'2022-12-04 01:05:09','0.00','12','newstock','1','','',642.00,'','1','3','internal','1','6161101130424','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(816,'LIME JUICE 700ML','',1.00,'2022-12-04 01:47:26','0.00','12','newstock','1','','',130.00,'','1','1','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(817,'WHITE CAP CAN 500ML','',6.00,'2022-12-04 03:54:39','3.00','12','newstock','1','','',190.38,'','1','9','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(818,'TUSKER CIDER CAN 500ML','',1.00,'2022-12-04 04:29:35','0.00','12','newstock','1','','',181.71,'','1','1','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(819,'HEINEKEN CAN 500ML','',2.00,'2022-12-04 05:09:19','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(820,'TUSKER LAGER CAN 500ML','',1.00,'2022-12-04 05:18:27','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(821,'TUSKER CIDER CAN 500ML','',1.00,'2022-12-04 05:19:35','0.00','12','newstock','1','','',181.71,'','1','1','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(822,'HEINEKEN CAN 500ML','',3.00,'2022-12-04 07:03:33','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(823,'KERINGET 1LTR','',4.00,'2022-12-04 12:08:32','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(824,'TUSKER LAGER CAN 500ML','',5.00,'2022-12-04 13:29:45','0.00','12','newstock','1','','',172.75,'','1','5','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(825,'TUSKER CIDER CAN 500ML','',5.00,'2022-12-04 13:30:12','0.00','12','newstock','1','','',181.71,'','1','5','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(826,'HEINEKEN CAN 500ML','',8.00,'2022-12-05 01:27:44','0.00','12','newstock','1','','',182.00,'','1','8','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(827,'SMIRNOFF GUARANA 330ML','',5.00,'2022-12-05 01:28:52','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(828,'DELMONTE TROPICAL 1LTR','',1.00,'2022-12-05 01:42:58','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150121','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(829,'KERINGET 1LTR','',6.00,'2022-12-05 01:44:20','2.00','12','newstock','1','','',74.58,'','1','8','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(830,'SAFARI LEMONADE','',29.00,'2022-12-05 16:09:38','7.00','12','newstock','1','','',37.08,'','1','36','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(831,'DESPARADO ORIGINAL 330ML','',24.00,'2022-12-05 17:30:40','0.00','12','newstock','1','','',188.00,'','1','24','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(832,'SAVANNA DRY CIDER 330ML','',10.00,'2022-12-05 17:31:11','2.00','12','newstock','1','','',201.00,'','1','12','internal','1','6001108028044','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(833,'HEINEKEN CAN 500ML','',24.00,'2022-12-05 17:32:00','4.00','12','newstock','1','','',182.00,'','1','28','internal','1','8712000900045','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(834,'SAFARI WATER 1L','',25.00,'2022-12-05 17:32:51','4.00','12','newstock','1','','',38.00,'','1','29','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(835,'KERINGET 1LTR','',24.00,'2022-12-05 17:34:00','2.00','12','newstock','1','','',74.58,'','1','26','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(836,'CELLAR CASK RED 750ML','',4.00,'2022-12-05 17:34:30','0.00','12','newstock','1','','',729.00,'','1','4','internal','1','6001496301804','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(837,'CELLA CASK WHITE 750ML','',3.00,'2022-12-05 17:34:56','9.00','12','newstock','1','','',729.00,'','1','12','internal','1','6001496301705','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(838,'4TH STREET SWEET RED 750ML','',3.00,'2022-12-05 17:35:26','0.00','12','newstock','1','','',641.00,'','1','3','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(839,'4TH STREET SWEET WHITE750ML','',3.00,'2022-12-05 17:35:51','0.00','12','newstock','1','','',641.00,'','1','3','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(840,'DELMONTE MANGO 1LTR','',4.00,'2022-12-05 17:36:18','0.00','12','newstock','1','','',205.00,'','1','4','internal','1','024000150152','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(841,'DELMONTE MIXED BERRIES 1 LTR','',4.00,'2022-12-05 17:36:44','2.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150138','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(842,'DELMONTE TROPICAL 1LTR','',4.00,'2022-12-05 17:37:11','0.00','12','newstock','1','','',205.00,'','1','4','internal','1','024000150121','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(843,'VICEROY 250ML','',12.00,'2022-12-05 17:43:54','1.00','12','newstock','1','','',352.00,'','1','13','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(844,'HUNTERS CHOICE 750ML','',3.00,'2022-12-05 17:44:46','5.00','12','newstock','1','','',829.00,'','1','8','internal','1','6161100421356','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(845,'HUNTERS CHOICE 250ML','',12.00,'2022-12-05 17:46:06','8.00','12','newstock','1','','',290.00,'','1','20','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(846,'HUNTERS CHOICE 350ML','',6.00,'2022-12-05 17:46:44','2.00','12','newstock','1','','',435.00,'','1','8','internal','1','6161100421363','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(847,'CRAZY COCK 250ML','',8.00,'2022-12-05 17:47:37','1.00','12','newstock','1','','',305.00,'','1','9','internal','1','8906054940410','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(848,'BEST WHISKY 750ML','',4.00,'2022-12-05 17:50:01','4.00','12','newstock','1','','',787.00,'','1','8','internal','1','6161100421509','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(849,'BEST WHISKY 250ML','',8.00,'2022-12-05 17:50:38','0.00','12','newstock','1','','',301.00,'','1','8','internal','1','6161100421493','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(850,'COKE ZERO 500ML','',5.00,'2022-12-05 22:59:24','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(851,'WHITE CAP CAN 500ML','',3.00,'2022-12-05 23:29:54','0.00','12','newstock','1','','',190.38,'','1','3','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(852,'BALOZI LAGER CAN 500ML','',3.00,'2022-12-05 23:33:41','0.00','12','newstock','1','','',172.83,'','1','3','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(853,'WHITE CAP CAN 500ML','',1.00,'2022-12-06 00:41:13','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(854,'WHITE CAP CAN 500ML','',1.00,'2022-12-06 01:50:17','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(855,'GUINNESS CAN 500ML','',5.00,'2022-12-06 18:33:53','1.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(856,'BALOZI LAGER CAN 500ML','',5.00,'2022-12-06 19:45:31','1.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(857,'BALOZI LAGER CAN 500ML','',3.00,'2022-12-06 21:11:41','0.00','12','newstock','1','','',172.83,'','1','3','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(858,'REDBULL','',6.00,'2022-12-06 21:38:03','12.00','12','newstock','1','','',147.00,'','1','18','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(859,'BALOZI LAGER CAN 500ML','',5.00,'2022-12-06 21:46:51','1.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(860,'SMIRNOFF GUARANA 330ML','',8.00,'2022-12-06 22:36:48','0.00','12','newstock','1','','',150.45,'','1','8','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(861,'MONSTER MULE','',5.00,'2022-12-06 23:27:34','0.00','12','newstock','1','','',153.00,'','1','5','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(862,'MINUTE MAID TROPICAL 400ML','',12.00,'2022-12-06 23:28:17','0.00','12','newstock','1','','',59.67,'','1','12','internal','1','90399480','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(863,'EMBASSY RED','',10.00,'2022-12-07 10:00:50','0.00','12','newstock','1','','',308.50,'','1','10','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(864,'DUNHILL DOUBLE SWITCH','',10.00,'2022-12-07 10:01:32','0.00','12','newstock','1','','',327.04,'','1','10','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(865,'DUNHILL SINGLE SWITCH','',10.00,'2022-12-07 10:02:35','0.00','12','newstock','1','','',317.26,'','1','10','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(866,'DUNHILL EMBASSY BLUE','',10.00,'2022-12-07 10:09:38','0.00','12','newstock','1','','',308.53,'','1','10','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(867,'TUSKER LITE CAN 500ML','',15.00,'2022-12-07 21:39:07','0.00','12','newstock','1','','',198.45,'','1','15','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(868,'WHITE CAP CAN 500ML','',12.00,'2022-12-07 22:15:27','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(869,'BALOZI LAGER CAN 500ML','',12.00,'2022-12-07 23:58:15','3.00','12','newstock','1','','',172.83,'','1','15','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(870,'GUINNESS CAN 500ML','',24.00,'2022-12-08 01:15:02','0.00','12','newstock','1','','',189.75,'','1','24','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(871,'TUSKER CIDER CAN 500ML','',2.00,'2022-12-08 02:07:47','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(872,'TLIA MALBEC 750ML','',1.00,'2022-12-08 14:30:26','0.00','12','newstock','1','','',1280.00,'','1','1','internal','1','7794450091598','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(873,'CHROME VODKA 250ML','',4.00,'2022-12-08 17:00:26','15.00','12','newstock','1','','',192.00,'','1','19','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(874,'CHROME GIN 250ML','',2.00,'2022-12-08 17:01:21','14.00','12','newstock','1','','',182.00,'','1','16','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(875,'DESPARADO ORIGINAL 330ML','',22.00,'2022-12-08 17:02:51','5.00','12','newstock','1','','',188.00,'','1','27','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(876,'HEINEKEN GLASS300ML','',20.00,'2022-12-08 17:03:56','0.00','12','newstock','1','','',174.00,'','1','20','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(877,'HEINEKEN CAN 500ML','',22.00,'2022-12-08 17:04:51','4.00','12','newstock','1','','',182.00,'','1','26','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(878,'WHITE CAP CAN 500ML','',10.00,'2022-12-08 17:05:52','1.00','12','newstock','1','','',190.38,'','1','11','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(879,'WHITE PEARL 250ML','',7.00,'2022-12-08 17:46:59','0.00','12','newstock','1','','',190.00,'','1','7','internal','1','6161101561280','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(880,'WHITE CAP CAN 500ML','',23.00,'2022-12-08 20:45:33','6.00','12','newstock','1','','',190.38,'','1','29','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(881,'TUSKER LAGER CAN 500ML','',24.00,'2022-12-08 20:46:29','0.00','12','newstock','1','','',172.75,'','1','24','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(882,'DUREX FEATHERLITE','',1.00,'2022-12-08 23:11:05','1.00','12','newstock','1','','',263.16,'','1','2','internal','1','5010232953994','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(883,'GILBEYS GIN 750ML','',8.00,'2022-12-08 23:23:40','0.00','12','newstock','1','','',1125.00,'','1','8','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(884,'DUREX EXTRA SAFE','',1.00,'2022-12-09 00:12:02','0.00','12','newstock','1','','',263.16,'','1','1','internal','1','5010232965096','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(885,'SPRITE 500ML','',12.00,'2022-12-09 01:10:23','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(886,'DUREX EXTRA SAFE','',2.00,'2022-12-09 03:59:45','0.00','12','newstock','1','','',263.16,'','1','2','internal','1','5010232965096','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(887,'TUSKER CIDER CAN 500ML','',10.00,'2022-12-09 09:47:01','0.00','12','newstock','1','','',181.71,'','1','10','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(888,'PERVAK CRAFTED VODKA HOME MADE WHEAT 500ML','',1.00,'2022-12-09 11:54:55','0.00','12','newstock','1','','',650.00,'','1','1','internal','1','4820229031984','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(889,'MINUTE MAID APPLE 400ML','',10.00,'2022-12-09 17:36:41','0.00','12','newstock','1','','',59.67,'','1','10','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(890,'TUSKER CIDER CAN 500ML','',5.00,'2022-12-09 23:07:55','0.00','12','newstock','1','','',181.71,'','1','5','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(891,'Best Cream 250ml','',4.00,'2022-12-10 00:01:56','0.00','12','newstock','1','','',310.00,'','1','4','internal','1','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(892,'DROSTDY HOF CLARET 750ML','',1.00,'2022-12-10 02:58:33','0.00','12','newstock','1','','',628.00,'','1','1','internal','1','6001495201501','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(893,'TUSKER CIDER CAN 500ML','',12.00,'2022-12-10 03:00:16','0.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(894,'BALOZI LAGER CAN 500ML','',12.00,'2022-12-10 14:30:39','8.00','12','newstock','1','','',172.83,'','1','20','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(895,'WHITE CAP CAN 500ML','',12.00,'2022-12-10 17:56:43','1.00','12','newstock','1','','',190.38,'','1','13','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(896,'BALOZI LAGER CAN 500ML','',12.00,'2022-12-10 19:56:36','8.00','12','newstock','1','','',172.83,'','1','20','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(897,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2022-12-10 20:54:48','3.00','12','newstock','1','','',150.45,'','1','15','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(898,'WHITE CAP CAN 500ML','',12.00,'2022-12-10 22:18:44','3.00','12','newstock','1','','',190.38,'','1','15','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(899,'GORDONS DRY GIN 750ML','',3.00,'2022-12-11 01:10:43','0.00','12','newstock','1','','',1540.00,'','1','3','internal','1','5000289020701','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(900,'GORDONS PINK GIN 700ML','',1.00,'2022-12-11 01:12:16','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289929417','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(901,'SMIRNOFF RED 350ML','',6.00,'2022-12-11 01:38:00','0.00','12','newstock','1','','',544.00,'','1','6','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(902,'FRAGOLINO RED SPARKLING WINE 750ML','',1.00,'2022-12-11 02:23:33','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(903,'SMIRNOFF RED 750ML','',1.00,'2022-12-11 07:13:19','0.00','12','newstock','1','','',1144.00,'','1','1','internal','1','6161101600934','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(904,'SMIRNOFF GUARANA 330ML','',7.00,'2022-12-11 07:14:39','0.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(905,'SPRITE CAN 330ML','',1.00,'2022-12-11 20:36:13','0.00','12','newstock','1','','',64.00,'','1','1','internal','1','5449000014535','','',0.00,'','120','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(906,'HEINEKEN GLASS300ML','',22.00,'2022-12-12 11:50:30','4.00','12','newstock','1','','',174.00,'','1','26','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(907,'TUSKER LITE CAN 500ML','',5.00,'2022-12-12 11:51:59','1.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(908,'TUSKER MALT CAN 500ML','',12.00,'2022-12-12 20:07:54','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(909,'TONIC WATER 500ML','',5.00,'2022-12-13 01:45:15','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(910,'TUSKER LITE CAN 500ML','',2.00,'2022-12-13 06:24:16','4.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(911,'HEINEKEN GLASS300ML','',12.00,'2022-12-13 10:05:09','15.00','12','newstock','1','','',174.00,'','1','27','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(912,'HEINEKEN GLASS300ML','',10.00,'2022-12-13 10:40:39','17.00','12','newstock','1','','',174.00,'','1','27','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(913,'GILBEYS GIN 350ML','',3.00,'2022-12-13 18:35:07','0.00','12','newstock','1','','',586.00,'','1','3','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(914,'WHITE CAP CAN 500ML','',4.00,'2022-12-14 00:13:26','5.00','12','newstock','1','','',190.38,'','1','9','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(915,'SMIRNOFF GUARANA 330ML','',9.00,'2022-12-14 00:13:51','0.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(916,'TUSKER LITE CAN 500ML','',1.00,'2022-12-14 00:15:05','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(917,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-12-14 01:23:14','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(918,'TUSKER CIDER CAN 500ML','',2.00,'2022-12-14 03:13:04','7.00','12','newstock','1','','',181.71,'','1','9','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(919,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2022-12-14 03:47:10','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(920,'DROSTDY HOF PREMIER GRAND CRU 750ML','',10.00,'2022-12-14 16:44:51','0.00','12','newstock','1','','',628.00,'','1','10','internal','1','6001495203055','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(921,'WHITE CAP CAN 500ML','',15.00,'2022-12-14 22:20:19','3.00','12','newstock','1','','',190.38,'','1','18','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(922,'DROSTDY HOF CLARET 750ML','',5.00,'2022-12-14 22:24:25','0.00','12','newstock','1','','',628.00,'','1','5','internal','1','6001495201501','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(923,'JW BLACK LABEL 1L','',3.00,'2022-12-14 22:39:26','0.00','12','newstock','1','','',3164.00,'','1','3','internal','1','5000267125046','','',0.00,'','4600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(924,'WHITE CAP CAN 500ML','',24.00,'2022-12-14 22:43:37','0.00','12','newstock','1','','',190.38,'','Main','24','Internal','Main','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(925,'TONIC WATER 500ML','',8.00,'2022-12-14 23:06:40','1.00','12','newstock','1','','',53.33,'','1','9','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(926,'TUSKER LITE CAN 500ML','',10.00,'2022-12-15 00:09:53','0.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(927,'WHITE CAP CAN 500ML','',6.00,'2022-12-15 06:29:38','3.00','12','newstock','1','','',190.38,'','1','9','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(928,'SPRITE CAN 330ML','',5.00,'2022-12-15 15:14:18','0.00','12','newstock','1','','',64.00,'','1','5','internal','1','5449000014535','','',0.00,'','120','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(929,'HEINEKEN GLASS300ML','',24.00,'2022-12-15 15:51:47','23.00','12','newstock','1','','',214.00,'','1','47','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(930,'HEINEKEN GLASS300ML','',24.00,'2022-12-15 15:55:13','23.00','12','newstock','1','','',214.00,'','1','47','internal','1','8712000900663','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(931,'SMIRNOFF GUARANA 330ML','',7.00,'2022-12-15 20:21:19','0.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(932,'BALOZI LAGER CAN 500ML','',6.00,'2022-12-15 21:44:26','0.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(933,'BALOZI LAGER CAN 500ML','',2.00,'2022-12-15 22:39:44','2.00','12','newstock','1','','',172.83,'','1','4','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(934,'TUSKER LAGER CAN 500ML','',5.00,'2022-12-16 00:17:06','2.00','12','newstock','1','','',172.75,'','1','7','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(935,'IMA GIN 250ML','',5.00,'2022-12-16 01:05:59','1.00','12','newstock','1','','',209.00,'','1','6','internal','1','725765052087','','',0.00,'','290','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(936,'LIME JUICE 700ML','',1.00,'2022-12-16 01:31:49','0.00','12','newstock','1','','',130.00,'','1','1','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(937,'GILBEYS GIN 250ML','',4.00,'2022-12-16 03:20:08','0.00','12','newstock','1','','',418.00,'','1','4','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(938,'BALOZI LAGER CAN 500ML','',1.00,'2022-12-16 03:21:16','0.00','12','newstock','1','','',172.83,'','1','1','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(939,'JW BLACK LABEL 750ML','',1.00,'2022-12-16 06:53:48','0.00','12','newstock','1','','',2835.00,'','1','1','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(940,'BALOZI LAGER CAN 500ML','',2.00,'2022-12-16 06:55:21','0.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(941,'TONIC WATER 500ML','',4.00,'2022-12-16 21:46:44','3.00','12','newstock','1','','',53.33,'','1','7','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(942,'KERINGET 1LTR','',3.00,'2022-12-16 21:47:38','0.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(943,'BLACK & WHITE 350ML','',8.00,'2022-12-16 22:02:15','0.00','12','newstock','1','','',443.00,'','1','8','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(944,'CORONA EXTRA 355ML','',2.00,'2022-12-16 22:03:56','22.00','12','newstock','1','','',295.00,'','1','24','internal','1','75032814','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(945,'SAFARI LEMONADE','',2.00,'2022-12-16 22:04:19','17.00','12','newstock','1','','',37.08,'','1','19','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(946,'SMIRNOFF GUARANA 330ML','',2.00,'2022-12-16 22:04:52','3.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(947,'PREDATOR ENERGY DRINK','',2.00,'2022-12-16 22:05:24','26.00','12','newstock','1','','',41.82,'','1','28','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(948,'SAFARI WATER 1L','',1.00,'2022-12-16 22:05:52','18.00','12','newstock','1','','',38.00,'','1','19','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(949,'KERINGET 1LTR','',8.00,'2022-12-16 23:52:14','0.00','12','newstock','1','','',74.58,'','1','8','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(950,'GUINNESS CAN 500ML','',5.00,'2022-12-16 23:58:58','1.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(951,'WHITE CAP CAN 500ML','',12.00,'2022-12-17 00:22:35','1.00','12','newstock','1','','',190.38,'','1','13','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(952,'KERINGET 1LTR','',10.00,'2022-12-17 08:58:24','7.00','12','newstock','1','','',74.58,'','1','17','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(953,'TUSKER LITE CAN 500ML','',6.00,'2022-12-17 13:41:34','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(954,'WHITE CAP CAN 500ML','',9.00,'2022-12-17 13:42:11','3.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(955,'TUSKER LAGER CAN 500ML','',2.00,'2022-12-17 13:42:41','1.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(956,'JW GOLD RESERVE 750ML','',2.00,'2022-12-17 20:02:15','1.00','12','newstock','1','','',5685.00,'','1','3','internal','1','5000267107776','','',0.00,'','7700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(957,'WILLIAM LAWSON CAN 330ML','',5.00,'2022-12-17 20:59:54','1.00','12','newstock','1','','',177.00,'','1','6','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(958,'CHROME GIN 250ML','',12.00,'2022-12-17 22:18:02','0.00','12','newstock','1','','',182.00,'','1','12','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(959,'AMARULA 750ML','',2.00,'2022-12-17 22:50:44','0.00','12','newstock','1','','',2011.00,'','1','2','internal','1','6001495062508','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(960,'TUSKER LITE CAN 500ML','',15.00,'2022-12-18 02:36:43','0.00','12','newstock','1','','',198.45,'','1','15','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(961,'TUSKER MALT CAN 500ML','',10.00,'2022-12-18 02:49:06','4.00','12','newstock','1','','',198.45,'','1','14','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(962,'TUSKER LAGER CAN 500ML','',3.00,'2022-12-18 02:49:22','3.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(963,'GILBEYS GIN 750ML','',5.00,'2022-12-18 04:43:16','0.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(964,'GORDONS DRY GIN 750ML','',1.00,'2022-12-18 05:56:18','0.00','12','newstock','1','','',1900.00,'','1','1','internal','1','5000289020701','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(965,'TONIC WATER 500ML','',7.00,'2022-12-18 11:37:33','0.00','12','newstock','1','','',53.33,'','1','7','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(966,'MINUTE MAID MANGO 400ML','',6.00,'2022-12-18 13:50:19','0.00','12','newstock','1','','',68.00,'','1','6','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(967,'WHITE CAP CAN 500ML','',4.00,'2022-12-18 14:01:21','1.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(968,'COCACOLA 1.25ML','',5.00,'2022-12-19 03:04:54','0.00','12','newstock','1','','',103.00,'','1','5','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(969,'WHITE CAP CAN 500ML','',4.00,'2022-12-19 22:25:50','1.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(970,'MARTEL VS 700ML','',2.00,'2022-12-19 22:32:49','0.00','12','newstock','1','','',4100.00,'','1','2','internal','1','3219820000078','','',0.00,'','6500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(971,'JW BLACK LABEL 750ML','',2.00,'2022-12-19 22:34:15','0.00','12','newstock','1','','',2835.00,'','1','2','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(972,'MARTEL VS 700ML','',5.00,'2022-12-19 22:42:23','0.00','12','newstock','1','','',4100.00,'','1','5','internal','1','3219820000078','','',0.00,'','6500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(973,'JW RED 1L','',1.00,'2022-12-19 22:42:43','0.00','12','newstock','1','','',1780.00,'','1','1','internal','1','5000267013602','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(974,'JW BLACK LABEL 750ML','',2.00,'2022-12-19 22:43:14','0.00','12','newstock','1','','',2835.00,'','1','2','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(975,'JW BLACK LABEL 1L','',1.00,'2022-12-19 22:44:40','0.00','12','newstock','1','','',3540.00,'','1','1','internal','1','5000267125046','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(976,'JW BLACK LABEL 750ML','',2.00,'2022-12-19 22:45:23','0.00','12','newstock','1','','',2835.00,'','1','2','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(977,'DUREX EXTRA SAFE','',2.00,'2022-12-19 22:49:30','0.00','12','newstock','1','','',263.16,'','1','2','internal','1','5010232965096','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(978,'REDBULL','',12.00,'2022-12-20 03:10:10','1.00','12','newstock','1','','',147.00,'','1','13','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(979,'WHITE CAP CAN 500ML','',8.00,'2022-12-20 03:34:17','2.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(980,'DUREX PLEASURE ME','',1.00,'2022-12-20 07:21:46','1.00','12','newstock','1','','',272.00,'','1','2','internal','1','6001106225421','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(981,'DUREX PERFORMA','',1.00,'2022-12-20 07:22:13','0.00','12','newstock','1','','',315.79,'','1','1','internal','1','5010232953925','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(982,'FANTA ORANGE 500ML','',7.00,'2022-12-20 12:15:40','0.00','12','newstock','1','','',53.33,'','1','7','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(983,'BLACK & WHITE 750ML','',4.00,'2022-12-20 14:38:11','0.00','12','newstock','1','','',855.00,'','1','4','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(984,'TUSKER CIDER CAN 500ML','',2.00,'2022-12-20 14:38:40','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(985,'PILSNER CAN 500ML','',2.00,'2022-12-20 15:55:17','2.00','12','newstock','1','','',154.95,'','1','4','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(986,'TUSKER LITE CAN 500ML','',6.00,'2022-12-20 15:56:01','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(987,'TUSKER LITE CAN 500ML','',2.00,'2022-12-20 18:09:29','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(988,'TANQUERAY NO.TEN 1L','',1.00,'2022-12-20 18:18:17','4.00','12','newstock','1','','',4000.00,'','1','5','internal','1','5000281016689','','',0.00,'','5400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(989,'TUSKER LITE CAN 500ML','',1.00,'2022-12-20 18:18:36','1.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(990,'SPRITE 500ML','',8.00,'2022-12-20 20:07:02','0.00','12','newstock','1','','',53.33,'','1','8','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(991,'WHITE CAP CAN 500ML','',6.00,'2022-12-20 22:18:18','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(992,'SAVANNA DRY CIDER 330ML','',10.00,'2022-12-21 01:49:54','2.00','12','newstock','1','','',201.00,'','1','12','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(993,'GUINNESS CAN 500ML','',10.00,'2022-12-21 03:37:29','0.00','12','newstock','1','','',189.75,'','1','10','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(994,'SMIRNOFF GUARANA 330ML','',15.00,'2022-12-21 06:38:54','0.00','12','newstock','1','','',150.45,'','1','15','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(995,'JW BLACK LABEL 750ML','',1.00,'2022-12-21 08:54:12','2.00','12','newstock','1','','',2835.00,'','1','3','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(996,'SMIRNOFF GUARANA 330ML','',6.00,'2022-12-21 08:55:02','9.00','12','newstock','1','','',150.45,'','1','15','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(997,'FANTA ORANGE 500ML','',1.00,'2022-12-21 08:55:21','4.00','12','newstock','1','','',53.33,'','1','5','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(998,'SNAPP 330ML CAN','',4.00,'2022-12-21 15:25:15','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(999,'GORDONS DRY GIN 750ML','',1.00,'2022-12-21 19:09:13','0.00','12','newstock','1','','',1900.00,'','1','1','internal','1','5000289020701','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1000,'TUSKER LAGER CAN 500ML','',2.00,'2022-12-21 19:28:37','1.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1001,'TUSKER LAGER CAN 500ML','',2.00,'2022-12-21 19:57:12','1.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1002,'CHROME VODKA 250ML','',8.00,'2022-12-21 20:21:55','0.00','12','newstock','1','','',192.00,'','1','8','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1003,'TUSKER LAGER CAN 500ML','',12.00,'2022-12-22 00:26:06','1.00','12','newstock','1','','',172.75,'','1','13','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1004,'WHITE CAP CAN 500ML','',5.00,'2022-12-22 00:36:30','3.00','12','newstock','1','','',190.38,'','1','8','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1005,'JW RED 375ML','',5.00,'2022-12-22 06:15:16','0.00','12','newstock','1','','',794.00,'','1','5','internal','1','5000267014609','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1006,'DUNHILL EMBASSY BLUE','',1.00,'2022-12-22 06:16:31','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1007,'JACK DANIELS 700ML','',1.00,'2022-12-22 10:49:54','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1008,'COCACOLA 1.25ML','',1.00,'2022-12-22 14:59:11','0.00','12','newstock','1','','',103.00,'','1','1','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1009,'BALOZI LAGER CAN 500ML','',8.00,'2022-12-22 19:06:01','0.00','12','newstock','1','','',172.83,'','1','8','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1010,'GILBEYS GIN 250ML','',5.00,'2022-12-23 00:34:31','0.00','12','newstock','1','','',418.00,'','1','5','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1011,'GILBEYS GIN 350ML','',1.00,'2022-12-23 00:50:47','0.00','12','newstock','1','','',586.00,'','1','1','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1012,'DUREX PERFORMA','',2.00,'2022-12-23 03:32:38','0.00','12','newstock','1','','',315.79,'','1','2','internal','1','5010232953925','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1013,'KERINGET 1LTR','',5.00,'2022-12-23 06:16:22','1.00','12','newstock','1','','',74.58,'','1','6','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1014,'COCACOLA 1.25ML','',4.00,'2022-12-23 06:17:01','0.00','12','newstock','1','','',103.00,'','1','4','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1015,'DELMONTE MANGO 1LTR','',2.00,'2022-12-23 18:53:27','1.00','12','newstock','1','','',205.00,'','1','3','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1016,'MONSTER MULE','',1.00,'2022-12-23 18:54:22','0.00','12','newstock','1','','',153.00,'','1','1','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1017,'TUSKER MALT CAN 500ML','',1.00,'2022-12-23 20:28:59','1.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1018,'GILBEYS GIN 350ML','',3.00,'2022-12-23 23:13:29','0.00','12','newstock','1','','',586.00,'','1','3','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1019,'LIME JUICE 700ML','',5.00,'2022-12-24 00:01:08','0.00','12','newstock','1','','',130.00,'','1','5','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1020,'SNAPP 330ML CAN','',12.00,'2022-12-24 00:02:27','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1021,'WHITE CAP CAN 500ML','',12.00,'2022-12-24 00:03:38','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1022,'DUNHILL DOUBLE SWITCH','',6.00,'2022-12-24 20:02:33','0.00','12','newstock','1','','',327.04,'','1','6','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1023,'DELMONTE MANGO 1LTR','',2.00,'2022-12-24 20:59:10','0.00','12','newstock','1','','',205.00,'','1','2','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1024,'SAFARI WATER 500ML','',4.00,'2022-12-24 20:59:41','0.00','12','newstock','1','','',19.00,'','1','4','internal','1','6164001199034','','',0.00,'','50','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1025,'TUSKER CIDER CAN 500ML','',1.00,'2022-12-24 22:42:33','0.00','12','newstock','1','','',181.71,'','1','1','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1026,'TUSKER LITE CAN 500ML','',4.00,'2022-12-25 00:30:50','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1027,'WHITE PEARL 250ML','',6.00,'2022-12-25 00:37:16','0.00','12','newstock','1','','',190.00,'','1','6','internal','1','6161101561280','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1028,'SMIRNOFF BLACK ICE 330ML CAN','',7.00,'2022-12-25 02:24:11','0.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1029,'TUSKER CIDER CAN 500ML','',4.00,'2022-12-25 02:29:45','0.00','12','newstock','1','','',181.71,'','1','4','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1030,'DUNHILL EMBASSY BLUE','',1.00,'2022-12-25 02:32:01','0.00','12','newstock','1','','',308.53,'','1','1','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1031,'PILSNER CAN 500ML','',2.00,'2022-12-25 02:51:01','0.00','12','newstock','1','','',154.95,'','1','2','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1032,'CHROME GIN 250ML','',1.00,'2022-12-25 05:41:29','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1033,'TUSKER MALT CAN 500ML','',10.00,'2022-12-25 19:40:09','0.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1034,'SMIRNOFF GUARANA 330ML','',12.00,'2022-12-25 19:40:54','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1035,'TUSKER CIDER CAN 500ML','',3.00,'2022-12-25 22:23:44','1.00','12','newstock','1','','',181.71,'','1','4','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1036,'BACARDI CARTA BLANCA 750ML','',3.00,'2022-12-25 23:11:57','0.00','12','newstock','1','','',1300.00,'','1','3','internal','1','5010677015615','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1037,'TUSKER LAGER CAN 500ML','',6.00,'2022-12-25 23:12:13','6.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1038,'COCACOLA 1.25ML','',1.00,'2022-12-25 23:53:33','0.00','12','newstock','1','','',103.00,'','1','1','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1039,'FRAGOLINO RED SPARKLING WINE 750ML','',1.00,'2022-12-25 23:53:51','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1040,'CHROME GIN 250ML','',6.00,'2022-12-26 00:16:18','0.00','12','newstock','1','','',182.00,'','1','6','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1041,'SPRITE 500ML','',2.00,'2022-12-26 00:25:56','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1042,'COCACOLA 1.25ML','',3.00,'2022-12-26 02:17:55','0.00','12','newstock','1','','',103.00,'','1','3','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1043,'GUINNESS CAN 500ML','',8.00,'2022-12-26 05:54:41','0.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1044,'DUREX PERFORMA','',1.00,'2022-12-26 06:50:54','1.00','12','newstock','1','','',315.79,'','1','2','internal','1','5010232953925','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1045,'4TH STREET SWEET RED 750ML','',1.00,'2022-12-26 18:52:37','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1046,'GUINNESS CAN 500ML','',7.00,'2022-12-26 21:58:44','0.00','12','newstock','1','','',189.75,'','1','7','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1047,'GUINNESS CAN 500ML','',2.00,'2022-12-26 21:58:55','7.00','12','newstock','1','','',189.75,'','1','9','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1048,'GILBEYS GIN 750ML','',4.00,'2022-12-26 22:11:56','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1049,'MONSTER MULE','',4.00,'2022-12-26 23:01:09','0.00','12','newstock','1','','',153.00,'','1','4','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1050,'sprite 1.25ml','',1.00,'2022-12-26 23:02:02','0.00','12','newstock','1','','',103.00,'','1','1','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1051,'TUSKER LITE CAN 500ML','',12.00,'2022-12-27 00:08:09','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1052,'WHITE CAP CAN 500ML','',6.00,'2022-12-27 00:12:46','1.00','12','newstock','1','','',190.38,'','1','7','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1053,'BLACK & WHITE 350ML','',8.00,'2022-12-27 01:10:29','3.00','12','newstock','1','','',443.00,'','1','11','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1054,'TONIC WATER 500ML','',2.00,'2022-12-27 01:33:30','1.00','12','newstock','1','','',53.33,'','1','3','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1055,'COCACOLA 1.25ML','',1.00,'2022-12-27 06:39:26','0.00','12','newstock','1','','',103.00,'','1','1','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1056,'KERINGET 1LTR','',5.00,'2022-12-27 14:45:13','0.00','12','newstock','1','','',74.58,'','1','5','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1057,'DUNHILL SINGLE SWITCH','',3.00,'2022-12-27 14:47:19','0.00','12','newstock','1','','',317.26,'','1','3','internal','1','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1058,'FOUR COUSINS SWEET RED 750ml','',6.00,'2022-12-27 21:06:28','0.00','12','newstock','1','','',680.00,'','1','6','internal','1','6002269000566','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1059,'sprite 1.25ml','',4.00,'2022-12-27 21:12:07','0.00','12','newstock','1','','',103.00,'','1','4','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1060,'TUSKER CIDER CAN 500ML','',6.00,'2022-12-28 00:20:17','0.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1061,'FRAGOLINO RED SPARKLING WINE 750ML','',1.00,'2022-12-28 00:21:35','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1062,'CHROME VODKA 250ML','',4.00,'2022-12-28 01:37:39','0.00','12','newstock','1','','',192.00,'','1','4','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1063,'MARTEL VSOP 750ML','',1.00,'2022-12-28 07:04:33','0.00','12','newstock','1','','',7100.00,'','1','1','internal','1','3219820005899','','',0.00,'','10500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1064,'GORDONS DRY GIN 750ML','',4.00,'2022-12-28 18:35:45','0.00','12','newstock','1','','',1900.00,'','1','4','internal','1','5000289020701','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1065,'WHITE CAP CAN 500ML','',2.00,'2022-12-28 18:36:58','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1066,'TUSKER LAGER CAN 500ML','',8.00,'2022-12-28 18:38:49','0.00','12','newstock','1','','',172.75,'','1','8','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1067,'SPRITE 500ML','',5.00,'2022-12-28 18:59:08','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1068,'GORDONS PINK GIN 700ML','',5.00,'2022-12-28 21:55:22','0.00','12','newstock','1','','',1900.00,'','1','5','internal','1','5000289929417','','',0.00,'','3000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1069,'SMIRNOFF GUARANA 330ML','',2.00,'2022-12-28 22:08:34','2.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1070,'CHROME GIN 250ML','',1.00,'2022-12-28 23:49:16','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1071,'CHROME VODKA 250ML','',8.00,'2022-12-28 23:49:52','1.00','12','newstock','1','','',192.00,'','1','9','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1072,'TUSKER CIDER CAN 500ML','',3.00,'2022-12-29 00:15:15','2.00','12','newstock','1','','',181.71,'','1','5','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1073,'ELECTIO CABERNET SAUVIGNON RED DRY WINE 750ML','',1.00,'2022-12-29 01:02:46','1.00','12','newstock','1','','',900.00,'','1','2','internal','1','4840709004321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1074,'KWV MERLOT 750ML','',1.00,'2022-12-29 01:55:05','0.00','12','newstock','1','','',1325.00,'','1','1','internal','1','6002323300533','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1075,'DUNHILL DOUBLE SWITCH','',1.00,'2022-12-29 02:08:38','0.00','12','newstock','1','','',327.04,'','1','1','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1076,'PILSNER CAN 500ML','',5.00,'2022-12-29 02:23:08','0.00','12','newstock','1','','',154.95,'','1','5','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1077,'DUNHILL DOUBLE SWITCH','',1.00,'2022-12-29 07:57:50','0.00','12','newstock','1','','',327.04,'','1','1','internal','1','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1078,'TUSKER LAGER CAN 500ML','',6.00,'2022-12-29 17:45:26','4.00','12','newstock','1','','',172.75,'','1','10','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1079,'WHITE CAP CAN 500ML','',7.00,'2022-12-29 18:34:10','1.00','12','newstock','1','','',190.38,'','1','8','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1080,'WILLIAM LAWSON CAN 330ML','',4.00,'2022-12-29 20:42:17','2.00','12','newstock','1','','',177.00,'','1','6','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1081,'GUINNESS CAN 500ML','',7.00,'2022-12-29 23:46:00','0.00','12','newstock','1','','',189.75,'','1','7','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1082,'DUNHILL EMBASSY BLUE','',4.00,'2022-12-29 23:47:06','0.00','12','newstock','1','','',308.53,'','1','4','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1083,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2022-12-30 00:30:02','4.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1084,'JAMESON 750ML','',1.00,'2022-12-30 00:30:36','0.00','12','newstock','1','','',2000.00,'','1','1','internal','1','5011007003029','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1085,'SMIRNOFF BLACK ICE 330ML CAN','',2.00,'2022-12-30 01:57:52','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1086,'GORDONS DRY GIN 350ML','',1.00,'2022-12-30 02:15:51','11.00','12','newstock','1','','',710.00,'','1','12','internal','1','5000289933292','','',0.00,'','950','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1087,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2022-12-30 02:16:22','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1088,'GILBEYS GIN 350ML','',3.00,'2022-12-30 16:25:21','0.00','12','newstock','1','','',586.00,'','1','3','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1089,'GUINNESS CAN 500ML','',4.00,'2022-12-30 18:15:17','4.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1090,'GILBEYS GIN 750ML','',1.00,'2022-12-30 21:42:29','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1091,'SPRITE 500ML','',1.00,'2022-12-30 21:42:53','2.00','12','newstock','1','','',53.33,'','1','3','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1092,'GILBEYS GIN 750ML','',11.00,'2022-12-30 23:18:45','0.00','12','newstock','1','','',1125.00,'','1','11','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1093,'SAFARI LEMONADE','',10.00,'2022-12-30 23:19:23','0.00','12','newstock','1','','',37.08,'','1','10','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1094,'SMIRNOFF GUARANA 330ML','',12.00,'2022-12-30 23:44:05','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1095,'VICEROY 750ML','',2.00,'2022-12-31 01:01:28','0.00','12','newstock','1','','',1072.00,'','1','2','internal','1','6001496011796','','',0.00,'','1700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1096,'SPRITE 500ML','',5.00,'2022-12-31 01:01:50','2.00','12','newstock','1','','',53.33,'','1','7','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1097,'GILBEYS GIN MIXED BERRY 750ML','',12.00,'2022-12-31 01:08:50','0.00','12','newstock','1','','',1125.00,'','1','12','internal','1','6161101606561','','',0.00,'','1850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1098,'FANTA ORANGE 500ML','',5.00,'2022-12-31 15:08:32','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1099,'CHROME GIN 250ML','',10.00,'2022-12-31 18:12:27','0.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1100,'GILBEYS GIN 350ML','',8.00,'2022-12-31 19:10:09','0.00','12','newstock','1','','',586.00,'','1','8','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1101,'DUNHILL EMBASSY BLUE','',4.00,'2022-12-31 20:50:33','1.00','12','newstock','1','','',308.53,'','1','5','internal','1','6008165007982','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1102,'DELMONTE TROPICAL 1LTR','',2.00,'2022-12-31 20:58:20','0.00','12','newstock','1','','',205.00,'','1','2','internal','1','024000150121','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1103,'HEINEKEN GLASS300ML','',10.00,'2022-12-31 22:09:13','3.00','12','newstock','1','','',214.00,'','1','13','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1104,'MONSTER MULE','',7.00,'2022-12-31 22:23:49','0.00','12','newstock','1','','',153.00,'','1','7','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1105,'WHITE CAP CAN 500ML','',10.00,'2022-12-31 22:24:36','2.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1106,'KERINGET 1LTR','',5.00,'2022-12-31 22:26:40','0.00','12','newstock','1','','',74.58,'','1','5','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1107,'SAVANNA DRY CIDER 330ML','',10.00,'2022-12-31 22:48:59','2.00','12','newstock','1','','',201.00,'','1','12','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1108,'HEINEKEN CAN 500ML','',12.00,'2022-12-31 23:04:20','2.00','12','newstock','1','','',182.00,'','1','14','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1109,'TUSKER CIDER CAN 500ML','',10.00,'2022-12-31 23:05:37','0.00','12','newstock','1','','',181.71,'','1','10','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1110,'REDBULL','',15.00,'2022-12-31 23:06:13','1.00','12','newstock','1','','',147.00,'','1','16','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1111,'GUINNESS CAN 500ML','',8.00,'2023-01-01 00:41:38','0.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1112,'CHROME GIN 250ML','',2.00,'2023-01-01 01:00:20','9.00','12','newstock','1','','',182.00,'','1','11','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1113,'JW WHITE 1L','',3.00,'2023-01-01 01:44:05','3.00','12','newstock','1','','',3056.00,'','1','6','internal','1','5000267173139','','',0.00,'','4500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1114,'SMIRNOFF GUARANA 330ML','',6.00,'2023-01-01 02:53:57','3.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1115,'SMIRNOFF GUARANA 330ML','',6.00,'2023-01-01 14:07:05','3.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1116,'CHROME VODKA 250ML','',10.00,'2023-01-01 16:10:38','0.00','12','newstock','1','','',192.00,'','1','10','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1117,'TUSKER LAGER CAN 500ML','',4.00,'2023-01-01 18:08:16','3.00','12','newstock','1','','',172.75,'','1','7','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1118,'MONSTER MULE','',2.00,'2023-01-01 18:08:45','0.00','12','newstock','1','','',153.00,'','1','2','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1119,'TUSKER LITE CAN 500ML','',1.00,'2023-01-01 18:09:13','1.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1120,'DELMONTE MANGO 1LTR','',1.00,'2023-01-01 18:09:32','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1121,'DUNHILL EMBASSY RED','',1.00,'2023-01-01 19:04:22','4.00','12','newstock','1','','',308.50,'','1','5','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1122,'GILBEYS GIN 250ML','',1.00,'2023-01-01 19:05:19','1.00','12','newstock','1','','',418.00,'','1','2','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1123,'HEINEKEN GLASS300ML','',1.00,'2023-01-01 19:05:54','12.00','12','newstock','1','','',214.00,'','1','13','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1124,'TUSKER LAGER CAN 500ML','',1.00,'2023-01-01 19:06:15','3.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1125,'CORONA EXTRA 355ML','',1.00,'2023-01-01 19:06:33','11.00','12','newstock','1','','',295.00,'','1','12','internal','1','75032814','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1126,'TUSKER MALT CAN 500ML','',2.00,'2023-01-01 19:07:27','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1127,'GUINNESS CAN 500ML','',2.00,'2023-01-01 19:07:42','2.00','12','newstock','1','','',189.75,'','1','4','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1128,'MONSTER MULE','',1.00,'2023-01-01 19:07:55','1.00','12','newstock','1','','',153.00,'','1','2','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1129,'SMIRNOFF GUARANA 330ML','',6.00,'2023-01-01 19:08:14','3.00','12','newstock','1','','',150.45,'','1','9','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1130,'WHITE CAP CAN 500ML','',6.00,'2023-01-01 19:08:44','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1131,'JW RED 1L','',1.00,'2023-01-01 19:10:59','0.00','12','newstock','1','','',1780.00,'','1','1','internal','1','5000267013602','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1132,'MINUTE MAID APPLE 1L','',1.00,'2023-01-01 19:11:19','4.00','12','newstock','1','','',125.00,'','1','5','internal','1','5449000180292','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1133,'SMIRNOFF GUARANA 330ML','',2.00,'2023-01-01 19:12:07','3.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1134,'CHROME VODKA 250ML','',10.00,'2023-01-01 19:12:47','9.00','12','newstock','1','','',192.00,'','1','19','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1135,'MONSTER MULE','',1.00,'2023-01-01 19:13:44','1.00','12','newstock','1','','',153.00,'','1','2','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1136,'DELMONTE MANGO 1LTR','',1.00,'2023-01-01 19:14:03','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1137,'TUSKER LITE CAN 500ML','',1.00,'2023-01-01 19:14:27','1.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1138,'TUSKER LAGER CAN 500ML','',4.00,'2023-01-01 19:14:45','3.00','12','newstock','1','','',172.75,'','1','7','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1139,'WHITE CAP CAN 500ML','',6.00,'2023-01-02 01:44:52','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1140,'DELMONTE APPLE 1LTR','',5.00,'2023-01-02 12:26:42','1.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150053','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1141,'MONSTER MULE','',2.00,'2023-01-02 12:28:22','1.00','12','newstock','1','','',153.00,'','1','3','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1142,'SAFARI LEMONADE','',4.00,'2023-01-02 12:28:45','0.00','12','newstock','1','','',37.08,'','1','4','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1143,'GUINNESS CAN 500ML','',8.00,'2023-01-02 12:29:38','1.00','12','newstock','1','','',189.75,'','1','9','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1144,'TUSKER MALT CAN 500ML','',12.00,'2023-01-02 21:23:04','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1145,'SAVANNA DRY CIDER 330ML','',4.00,'2023-01-02 21:29:24','1.00','12','newstock','1','','',201.00,'','1','5','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1146,'COCACOLA 1.25ML','',5.00,'2023-01-02 22:09:38','0.00','12','newstock','1','','',103.00,'','1','5','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1147,'GILBEYS GIN 250ML','',4.00,'2023-01-02 22:36:36','0.00','12','newstock','1','','',418.00,'','1','4','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1148,'JW BLACK LABEL 1L','',3.00,'2023-01-03 00:24:25','0.00','12','newstock','1','','',3540.00,'','1','3','internal','1','5000267125046','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1149,'WILLIAM LAWSON CAN 330ML','',12.00,'2023-01-03 00:26:36','2.00','12','newstock','1','','',177.00,'','1','14','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1150,'SPRITE 500ML','',2.00,'2023-01-03 16:54:47','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1151,'JACK DANIELS 700ML','',2.00,'2023-01-03 23:43:31','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1152,'DELMONTE TROPICAL 1LTR','',2.00,'2023-01-04 02:26:37','0.00','12','newstock','1','','',205.00,'','1','2','internal','1','024000150121','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1153,'JW RED 1L','',3.00,'2023-01-04 02:28:27','0.00','12','newstock','1','','',1780.00,'','1','3','internal','1','5000267013602','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1154,'4TH STREET SWEET RED 750ML','',2.00,'2023-01-04 21:59:43','0.00','12','newstock','1','','',641.00,'','1','2','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1155,'BACARDI CARTA BLANCA 1L','',3.00,'2023-01-04 23:02:16','0.00','12','newstock','1','','',1730.00,'','1','3','internal','1','5010677015738','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1156,'BALOZI LAGER CAN 500ML','',12.00,'2023-01-04 23:04:59','2.00','12','newstock','1','','',172.83,'','1','14','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1157,'COUNTY 750ML','',6.00,'2023-01-05 00:18:32','0.00','12','newstock','1','','',561.00,'','1','6','internal','1','6161100421219','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1158,'4TH STREET SWEET WHITE750ML','',1.00,'2023-01-05 00:19:05','0.00','12','newstock','1','','',641.00,'','1','1','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1159,'4TH STREET SWEET RED 750ML','',2.00,'2023-01-05 01:46:55','0.00','12','newstock','1','','',641.00,'','1','2','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1160,'JACK DANIELS 700ML','',3.00,'2023-01-05 01:53:31','0.00','12','newstock','1','','',2600.00,'','1','3','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1161,'TUSKER LAGER CAN 500ML','',5.00,'2023-01-05 06:21:02','1.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1162,'LIME JUICE 700ML','',3.00,'2023-01-05 15:42:58','1.00','12','newstock','1','','',130.00,'','1','4','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1163,'WHITE CAP CAN 500ML','',3.00,'2023-01-05 18:23:50','1.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1164,'WHITE PEARL 250ML','',5.00,'2023-01-06 00:25:20','4.00','12','newstock','1','','',190.00,'','1','9','internal','1','6161101561280','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1165,'SAVANNA DRY CIDER 330ML','',2.00,'2023-01-06 00:33:06','2.00','12','newstock','1','','',201.00,'','1','4','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1166,'HEINEKEN CAN 500ML','',4.00,'2023-01-06 00:33:35','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1167,'KIBAO VODKA 750ML','',4.00,'2023-01-06 00:44:56','2.00','12','newstock','1','','',502.00,'','1','6','internal','1','6161100421370','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1168,'KENYA CANE 750ML','',1.00,'2023-01-06 01:24:55','4.00','12','newstock','1','','',653.00,'','1','5','internal','1','5010103930833','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1169,'VICEROY 375ML','',2.00,'2023-01-06 02:11:24','4.00','12','newstock','1','','',544.00,'','1','6','internal','1','6001496011772','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1170,'VICEROY 250ML','',8.00,'2023-01-06 02:12:10','2.00','12','newstock','1','','',352.00,'','1','10','internal','1','6001108016034','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1171,'NAPOLEON GOLD 250ML','',11.00,'2023-01-06 02:14:30','3.00','12','newstock','1','','',210.00,'','1','14','internal','1','6161101561020','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1172,'SHUSTOFF BRANDY 5YRS','',3.00,'2023-01-06 02:15:46','2.00','12','newstock','1','','',1357.00,'','1','5','internal','1','4820000947343','','',0.00,'','2400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1173,'CRAZY COCK 750ML','',6.00,'2023-01-06 02:17:42','1.00','12','newstock','1','','',795.00,'','1','7','internal','1','8906054940120','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1174,'CRAZY COCK 250ML','',1.00,'2023-01-06 02:18:18','7.00','12','newstock','1','','',305.00,'','1','8','internal','1','8906054940410','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1175,'CRAZY COCK 375ML','',8.00,'2023-01-06 02:18:55','2.00','12','newstock','1','','',405.00,'','1','10','internal','1','8906054940137','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1176,'CAPTAIN MORGAN DARK RUM 750ML','',2.00,'2023-01-06 02:20:12','2.00','12','newstock','1','','',1320.00,'','1','4','internal','1','087000006928','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1177,'GENERAL MEAKINS 750ML','',5.00,'2023-01-06 02:25:51','1.00','12','newstock','1','','',570.00,'','1','6','internal','1','6161101561549','','',0.00,'','950','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1178,'BEST WHISKY 250ML','',3.00,'2023-01-06 02:26:46','6.00','12','newstock','1','','',301.00,'','1','9','internal','1','6161100421493','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1179,'WILLIAM LAWSON 1L','',3.00,'2023-01-06 02:28:04','0.00','12','newstock','1','','',1750.00,'','1','3','internal','1','5010752000345','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1180,'TOP SECRET 250ML','',7.00,'2023-01-06 02:30:46','6.00','12','newstock','1','','',245.00,'','1','13','internal','1','6161101560832','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1181,'J&B RARE 1L','',1.00,'2023-01-06 02:34:09','1.00','12','newstock','1','','',1699.00,'','1','2','internal','1','5010103800457','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1182,'VAT 69 750ML','',1.00,'2023-01-06 02:34:44','1.00','12','newstock','1','','',1141.00,'','1','2','internal','1','5000292001001','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1183,'HAMPTON DRAM BLENDED 750ML','',1.00,'2023-01-06 02:43:33','1.00','12','newstock','1','','',970.00,'','1','2','internal','1','8906120780179','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1184,'4TH STREET SWEET WHITE750ML','',5.00,'2023-01-06 02:47:09','1.00','12','newstock','1','','',641.00,'','1','6','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1185,'FOUR COUSINS SWEET RED 750ml','',7.00,'2023-01-06 02:47:52','1.00','12','newstock','1','','',680.00,'','1','8','internal','1','6002269000566','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1186,'CELLAR CASK RED 750ML','',6.00,'2023-01-06 02:50:03','2.00','12','newstock','1','','',729.00,'','1','8','internal','1','6001496301804','','',0.00,'','1200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1187,'ROOIBERG RED MUSCADEL 750ML','',2.00,'2023-01-06 02:52:38','2.00','12','newstock','1','','',1110.00,'','1','4','internal','1','6002886000277','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1188,'DROSTDY HOF PREMIER GRAND CRU 750ML','',1.00,'2023-01-06 02:58:18','8.00','12','newstock','1','','',628.00,'','1','9','internal','1','6001495203055','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1189,'PENASOL SANGRIA 1L','',1.00,'2023-01-06 02:58:54','0.00','12','newstock','1','','',836.00,'','1','1','internal','1','6161101561021','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1190,'KWV SAUV BLANC 750ML','',1.00,'2023-01-06 03:05:27','1.00','12','newstock','1','','',1125.00,'','1','2','internal','1','6002323400332','','',0.00,'','1700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1191,'NEDERBURG CABERNET SAUVIGNON 750ML','',3.00,'2023-01-06 03:13:05','2.00','12','newstock','1','','',1150.00,'','1','5','internal','1','6001452301862','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1192,'TILIA CHARDONY 750ML','',1.00,'2023-01-06 03:17:08','1.00','12','newstock','1','','',1231.00,'','1','2','internal','1','7794450091604','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1193,'TALL HORSE MOSCATO 750ML','',1.00,'2023-01-06 03:17:36','0.00','12','newstock','1','','',865.00,'','1','1','internal','1','6001506908146','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1194,'ROOIBERG BLANC NATURAL SWEET WHITE 750ML','',1.00,'2023-01-06 03:18:54','0.00','12','newstock','1','','',1110.00,'','1','1','internal','1','6002886001274','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1195,'CAPRICE SWEET WHITE 1LTR','',6.00,'2023-01-06 03:22:39','0.00','12','newstock','1','','',636.00,'','1','6','internal','1','6161100421288','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1196,'CAPRICE SWEET RED 1LTR','',2.00,'2023-01-06 03:23:12','1.00','12','newstock','1','','',636.00,'','1','3','internal','1','6161100421271','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1197,'JW RED 750ML','',3.00,'2023-01-06 03:31:51','1.00','12','newstock','1','','',1465.00,'','1','4','internal','1','5000267014005','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1198,'CHIVAS REGAL 12YRS 750ML','',2.00,'2023-01-06 03:40:56','4.00','12','newstock','1','','',3200.00,'','1','6','internal','1','080432400395','','',0.00,'','4350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1199,'GLENFIDDICH 12YRS','',1.00,'2023-01-06 03:50:27','0.00','12','newstock','1','','',6800.00,'','1','1','internal','1','5010327302201','','',0.00,'','8500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1200,'THE SINGLETON 12YRS 700ML','',8.00,'2023-01-06 03:59:47','0.00','12','newstock','1','','',4450.00,'','1','8','internal','1','5000281021621','','',0.00,'','6500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1201,'BEST LONDON DRY GIN 750ML','',1.00,'2023-01-06 04:05:18','3.00','12','newstock','1','','',645.00,'','1','4','internal','1','6161100421561','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1202,'Best Cream 250ml','',4.00,'2023-01-06 04:06:09','0.00','12','newstock','1','','',310.00,'','1','4','internal','1','6161100421615','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1203,'BEST CREAM 750ML','',1.00,'2023-01-06 04:06:36','3.00','12','newstock','1','','',922.00,'','1','4','internal','1','6161100421622','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1204,'V $ A 250ML','',11.00,'2023-01-06 04:09:04','3.00','12','newstock','1','','',268.00,'','1','14','internal','1','6161101602204','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1205,'TRIPLE ACE VODKA 250ML','',4.00,'2023-01-06 04:09:44','12.00','12','newstock','1','','',192.00,'','1','16','internal','1','6161101604864','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1206,'AMARULA CREAM 375ML','',4.00,'2023-01-06 04:13:03','0.00','12','newstock','1','','',1098.00,'','1','4','internal','1','6001495062478','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1207,'IMA GIN 250ML','',14.00,'2023-01-06 04:13:40','3.00','12','newstock','1','','',209.00,'','1','17','internal','1','725765052087','','',0.00,'','290','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1208,'CHROME VODKA 250ML','',6.00,'2023-01-06 04:14:13','18.00','12','newstock','1','','',192.00,'','1','24','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1209,'CHROME GIN 250ML','',15.00,'2023-01-06 04:16:05','5.00','12','newstock','1','','',182.00,'','1','20','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1210,'BOMBAY SAPHIRE 1L','',3.00,'2023-01-06 04:17:38','2.00','12','newstock','1','','',2280.00,'','1','5','internal','1','7640175740030','','',0.00,'','3350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1211,'BOMBAY SAPHIRE 750ML','',4.00,'2023-01-06 04:18:08','2.00','12','newstock','1','','',1820.00,'','1','6','internal','1','7640175740047','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1212,'BACARDI CARTA BLANCA 750ML','',1.00,'2023-01-06 04:19:01','2.00','12','newstock','1','','',1300.00,'','1','3','internal','1','5010677015615','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1213,'BEEFEATER DRY GIN 750ML','',1.00,'2023-01-06 04:20:53','5.00','12','newstock','1','','',2460.00,'','1','6','internal','1','5000329002230','','',0.00,'','3500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1214,'GILBEYS GIN 250ML','',5.00,'2023-01-06 04:23:56','3.00','12','newstock','1','','',418.00,'','1','8','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1215,'TANQUERAY LONDON GIN 750ML','',1.00,'2023-01-06 04:28:56','1.00','12','newstock','1','','',2070.00,'','1','2','internal','1','5000291020706','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1216,'DELMONTE MANGO 1LTR','',6.00,'2023-01-06 04:39:01','0.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1217,'DELMONTE TROPICAL 1LTR','',7.00,'2023-01-06 04:39:31','1.00','12','newstock','1','','',205.00,'','1','8','internal','1','024000150121','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1218,'DELMONTE PASSION FRUIT','',4.00,'2023-01-06 04:40:09','3.00','12','newstock','1','','',205.00,'','1','7','internal','1','024000191667','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1219,'DELMONTE MIXED BERRIES 1 LTR','',4.00,'2023-01-06 04:40:33','2.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000150138','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1220,'DELMONTE PINEAPPLE','',3.00,'2023-01-06 04:41:03','3.00','12','newstock','1','','',205.00,'','1','6','internal','1','024000224556','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1221,'SAVANNA DRY CIDER 330ML','',21.00,'2023-01-06 04:42:45','0.00','12','newstock','1','','',201.00,'','1','21','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1222,'MONSTER MULE','',38.00,'2023-01-06 04:43:19','0.00','12','newstock','1','','',153.00,'','1','38','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1223,'HEINEKEN CAN 500ML','',23.00,'2023-01-06 04:44:13','0.00','12','newstock','1','','',182.00,'','1','23','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1224,'WHITE CAP CAN 500ML','',29.00,'2023-01-06 04:45:39','1.00','12','newstock','1','','',190.38,'','1','30','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1225,'SAFARI LEMONADE','',26.00,'2023-01-06 04:58:34','2.00','12','newstock','1','','',37.08,'','1','28','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1226,'PREDATOR ENERGY DRINK','',9.00,'2023-01-06 04:59:00','1.00','12','newstock','1','','',41.82,'','1','10','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1227,'SODA WATER 500ML','',5.00,'2023-01-06 04:59:31','11.00','12','newstock','1','','',53.33,'','1','16','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1228,'TUSKER LAGER CAN 500ML','',44.00,'2023-01-06 05:00:08','1.00','12','newstock','1','','',172.75,'','1','45','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1229,'TUSKER MALT CAN 500ML','',55.00,'2023-01-06 05:01:42','12.00','12','newstock','1','','',198.45,'','1','67','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1230,'PILSNER CAN 500ML','',48.00,'2023-01-06 05:02:28','2.00','12','newstock','1','','',154.95,'','1','50','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1231,'TUSKER CIDER CAN 500ML','',5.00,'2023-01-06 05:02:55','6.00','12','newstock','1','','',181.71,'','1','11','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1232,'BALOZI LAGER CAN 500ML','',40.00,'2023-01-06 05:03:19','10.00','12','newstock','1','','',172.83,'','1','50','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1233,'SNAPP 330ML CAN','',13.00,'2023-01-06 05:03:50','3.00','12','newstock','1','','',150.45,'','1','16','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1234,'PEARLY 700ML GLASS BOTLLE','',3.00,'2023-01-06 05:04:21','57.00','12','newstock','1','','',42.00,'','1','60','internal','1','6164002099210','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1235,'COCACOLA 1.25ML','',6.00,'2023-01-06 05:04:47','1.00','12','newstock','1','','',103.00,'','1','7','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1236,'sprite 1.25ml','',20.00,'2023-01-06 05:05:15','1.00','12','newstock','1','','',103.00,'','1','21','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1237,'KERINGET 500ML','',33.00,'2023-01-06 05:07:44','1.00','12','newstock','1','','',44.58,'','1','34','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1238,'KERINGET 1LTR','',56.00,'2023-01-06 05:08:23','2.00','12','newstock','1','','',74.58,'','1','58','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1239,'SAFARI WATER 500ML','',48.00,'2023-01-06 05:08:56','0.00','12','newstock','1','','',19.00,'','1','48','internal','1','6164001199034','','',0.00,'','50','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1240,'SAFARI WATER 1L','',43.00,'2023-01-06 05:09:30','7.00','12','newstock','1','','',38.00,'','1','50','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1241,'LIME JUICE 700ML','',3.00,'2023-01-06 05:10:24','0.00','12','newstock','1','','',130.00,'','1','3','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1242,'REDBULL','',24.00,'2023-01-06 05:15:39','12.00','12','newstock','1','','',147.00,'','1','36','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1243,'PRIDE 1.5L','',1.00,'2023-01-06 05:16:02','49.00','12','newstock','1','','',40.00,'','1','50','internal','1','6164002099036','','',0.00,'','120','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1244,'BEST GIN 250ML','',1.00,'2023-01-06 05:24:28','4.00','12','newstock','1','','',244.00,'','1','5','internal','1','6161100421554','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1245,'SNAPP 330ML CAN','6161101602433',1.00,'2023-01-06 17:43:02','15.00','12','newstock','1','','',0.00,'','1','16','1','1','6161101602433','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1246,'PREDATOR ENERGY DRINK','',36.00,'2023-01-06 20:05:04','10.00','12','newstock','1','','',41.82,'','1','46','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1247,'GUINNESS CAN 500ML','',1.00,'2023-01-09 05:21:42','1.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1248,'DUNHILL EMBASSY RED','',10.00,'2023-01-09 13:51:24','0.00','12','newstock','1','','',308.50,'','1','10','internal','1','6008165007968','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1249,'DUNHILL DOUBLE SWITCH','',10.00,'2023-01-09 13:53:07','0.00','12','newstock','1','','',327.04,'','Main','10','Internal','Main','6008165007784','','',0.00,'','370','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1250,'DUNHILL SINGLE SWITCH','',10.00,'2023-01-09 13:56:01','0.00','12','newstock','1','','',317.26,'','Main','10','Internal','Main','6008165007814','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1251,'ROTHMANS SPORTMAN','',10.00,'2023-01-09 13:58:47','3.00','12','newstock','1','','',251.50,'','1','13','internal','1','6008165007685','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1252,'DUNHILL EMBASSY RED','',10.00,'2023-01-09 14:00:27','0.00','12','newstock','1','','',337.00,'','Main','10','Internal','Main','6008165007968','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1253,'DUNHILL EMBASSY BLUE','',10.00,'2023-01-09 14:00:48','0.00','12','newstock','1','','',337.00,'','Main','10','Internal','Main','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1254,'DUNHILL DOUBLE SWITCH','',1.00,'2023-01-09 20:50:25','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1255,'DUNHILL SINGLE SWITCH','',1.00,'2023-01-09 21:07:42','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1256,'DUNHILL EMBASSY RED','',1.00,'2023-01-09 21:17:48','9.00','12','newstock','1','','',337.00,'','1','10','internal','1','6008165007968','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1257,'DUNHILL DOUBLE SWITCH','',1.00,'2023-01-09 21:18:08','1.00','12','newstock','1','','',346.00,'','1','2','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1258,'TUSKER LITE CAN 500ML','',7.00,'2023-01-09 23:14:51','0.00','12','newstock','1','','',198.45,'','1','7','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1259,'GUINNESS CAN 500ML','',12.00,'2023-01-10 10:05:43','0.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1260,'TONIC WATER 500ML','',4.00,'2023-01-10 23:21:51','0.00','12','newstock','1','','',53.33,'','1','4','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1261,'TONIC WATER 500ML','',2.00,'2023-01-10 23:25:18','2.00','12','newstock','1','','',53.33,'','1','4','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1262,'WHITE CAP CAN 500ML','',2.00,'2023-01-10 23:25:42','15.00','12','newstock','1','','',190.38,'','1','17','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1263,'FANTA BLACKCURRENT 500ML','',6.00,'2023-01-10 23:26:11','1.00','12','newstock','1','','',56.00,'','1','7','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1264,'SPRITE 500ML','',8.00,'2023-01-11 01:11:15','0.00','12','newstock','1','','',53.33,'','1','8','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1265,'DUNHILL SINGLE SWITCH','',1.00,'2023-01-11 01:12:17','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1266,'KREST 500ML','',1.00,'2023-01-11 21:34:19','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1267,'SMIRNOFF BLACK ICE 330ML CAN','',10.00,'2023-01-11 21:53:58','0.00','12','newstock','1','','',150.45,'','1','10','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1268,'COKE ZERO 500ML','',8.00,'2023-01-11 21:55:02','0.00','12','newstock','1','','',53.33,'','1','8','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1269,'KREST 500ML','',2.00,'2023-01-12 00:22:30','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1270,'TUSKER CIDER CAN 500ML','',8.00,'2023-01-12 00:33:28','0.00','12','newstock','1','','',181.71,'','1','8','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1271,'CHROME GIN 750ML','',4.00,'2023-01-12 01:52:29','0.00','12','newstock','1','','',501.00,'','1','4','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1272,'TONIC WATER 500ML','',26.00,'2023-01-13 00:01:19','1.00','12','newstock','1','','',53.33,'','1','27','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1273,'SNAPP 330ML CAN','',2.00,'2023-01-13 19:55:20','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1274,'DUNHILL EMBASSY BLUE','',2.00,'2023-01-13 21:35:46','1.00','12','newstock','1','','',337.00,'','1','3','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1275,'TUSKER LITE CAN 500ML','',4.00,'2023-01-13 21:36:01','4.00','12','newstock','1','','',198.45,'','1','8','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1276,'HEINEKEN GLASS300ML','',6.00,'2023-01-13 22:23:13','1.00','12','newstock','1','','',214.00,'','1','7','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1277,'CHROME VODKA 250ML','',24.00,'2023-01-13 23:00:50','0.00','12','newstock','1','','',192.00,'','1','24','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1278,'TONIC WATER 500ML','',7.00,'2023-01-13 23:38:13','25.00','12','newstock','1','','',53.33,'','1','32','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1279,'GILBEYS GIN 350ML','',1.00,'2023-01-14 00:46:36','0.00','12','newstock','1','','',586.00,'','1','1','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1280,'KREST 500ML','',1.00,'2023-01-14 01:03:10','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1281,'COKE ZERO 500ML','',1.00,'2023-01-14 01:40:20','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1282,'TUSKER LITE CAN 500ML','',10.00,'2023-01-14 01:52:59','0.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1283,'COKE ZERO 500ML','',9.00,'2023-01-14 01:53:15','0.00','12','newstock','1','','',53.33,'','1','9','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1284,'DUNHILL EMBASSY BLUE','',1.00,'2023-01-14 06:53:45','1.00','12','newstock','1','','',337.00,'','1','2','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1285,'SMIRNOFF GUARANA 330ML','',6.00,'2023-01-14 13:34:41','1.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1286,'WHITE CAP CAN 500ML','',6.00,'2023-01-14 17:13:51','4.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1287,'KREST 500ML','',6.00,'2023-01-15 00:09:27','0.00','12','newstock','1','','',53.33,'','1','6','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1288,'DUNHILL EMBASSY BLUE','',10.00,'2023-01-15 00:24:19','0.00','12','newstock','1','','',337.00,'','1','10','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1289,'WHITE CAP CAN 500ML','',10.00,'2023-01-15 00:27:27','2.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1290,'GILBEYS GIN 750ML','',8.00,'2023-01-15 00:32:39','0.00','12','newstock','1','','',1125.00,'','1','8','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1291,'GUINNESS CAN 500ML','',4.00,'2023-01-15 01:05:22','4.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1292,'HEINEKEN GLASS300ML','',8.00,'2023-01-15 02:56:07','0.00','12','newstock','1','','',214.00,'','1','8','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1293,'SMIRNOFF GUARANA 330ML','',4.00,'2023-01-15 02:59:52','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1294,'GUINNESS CAN 500ML','',12.00,'2023-01-15 09:56:57','2.00','12','newstock','1','','',189.75,'','1','14','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1295,'DUNHILL DOUBLE SWITCH','',1.00,'2023-01-15 19:10:47','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1296,'MINUTE MAID MANGO 400ML','',1.00,'2023-01-15 19:11:03','0.00','12','newstock','1','','',68.00,'','1','1','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1297,'TUSKER LITE CAN 500ML','',6.00,'2023-01-15 21:52:05','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1298,'SMIRNOFF RED 350ML','',3.00,'2023-01-15 22:41:09','0.00','12','newstock','1','','',544.00,'','1','3','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1299,'DESPARADO ORIGINAL 330ML','',10.00,'2023-01-16 00:35:32','0.00','12','newstock','1','','',188.00,'','1','10','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1300,'SAFARI WATER 1L','',5.00,'2023-01-16 22:40:51','36.00','12','newstock','1','','',38.00,'','1','41','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1301,'CHROME GIN 250ML','',10.00,'2023-01-17 00:24:17','0.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1302,'SMIRNOFF GUARANA 330ML','',6.00,'2023-01-17 01:45:55','1.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1303,'MINUTE MAID MANGO 400ML','',1.00,'2023-01-17 14:23:41','0.00','12','newstock','1','','',68.00,'','1','1','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1304,'SMIRNOFF BLACK ICE 330ML CAN','',3.00,'2023-01-17 17:14:55','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1305,'SMIRNOFF GUARANA 330ML','',8.00,'2023-01-17 21:12:22','2.00','12','newstock','1','','',150.45,'','1','10','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1306,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2023-01-17 22:59:11','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1307,'GUINNESS CAN 500ML','',8.00,'2023-01-17 23:16:45','0.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1308,'MINUTE MAID MANGO 400ML','',6.00,'2023-01-18 00:02:26','0.00','12','newstock','1','','',68.00,'','1','6','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1309,'TUSKER CIDER CAN 500ML','',6.00,'2023-01-18 01:37:39','2.00','12','newstock','1','','',181.71,'','1','8','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1310,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-01-18 17:02:35','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1311,'WHITE CAP CAN 500ML','',12.00,'2023-01-18 19:36:50','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1312,'HEINEKEN CAN 500ML','',12.00,'2023-01-18 23:07:07','0.00','12','newstock','1','','',182.00,'','1','12','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1313,'HEINEKEN CAN 500ML','',8.00,'2023-01-18 23:08:03','12.00','12','newstock','1','','',182.00,'','1','20','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1314,'TUSKER LITE CAN 500ML','',12.00,'2023-01-19 18:35:23','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1315,'WHITE CAP CAN 500ML','',2.00,'2023-01-20 19:11:45','2.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1316,'WHITE CAP CAN 500ML','',20.00,'2023-01-21 01:41:54','0.00','12','newstock','1','','',190.38,'','1','20','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1317,'GILBEYS GIN 750ML','',1.00,'2023-01-21 04:42:06','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1318,'HEINEKEN CAN 500ML','',1.00,'2023-01-21 17:06:20','10.00','12','newstock','1','','',182.00,'','1','11','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1319,'JAMESON 750ML','',3.00,'2023-01-21 19:59:25','0.00','12','newstock','1','','',2000.00,'','1','3','internal','1','5011007003029','','',0.00,'','2700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1320,'PISTON 250ML','',8.00,'2023-01-21 21:49:14','2.00','12','newstock','1','','',165.00,'','1','10','internal','1','6164003409025','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1321,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-01-21 21:58:38','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1322,'GILBEYS GIN 750ML','',4.00,'2023-01-21 22:19:21','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1323,'GUINNESS CAN 500ML','',5.00,'2023-01-21 23:03:03','1.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1324,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-01-22 00:11:06','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1325,'TUSKER LITE CAN 500ML','',8.00,'2023-01-22 00:52:43','1.00','12','newstock','1','','',198.45,'','1','9','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1326,'CHROME GIN 250ML','',8.00,'2023-01-22 00:56:46','0.00','12','newstock','1','','',182.00,'','1','8','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1327,'WHITE CAP CAN 500ML','',7.00,'2023-01-22 01:27:16','1.00','12','newstock','1','','',190.38,'','1','8','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1328,'HEINEKEN CAN 500ML','',6.00,'2023-01-22 02:02:17','0.00','12','newstock','1','','',182.00,'','1','6','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1329,'SMIRNOFF GUARANA 330ML','',3.00,'2023-01-22 02:10:00','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1330,'GUINNESS CAN 500ML','',8.00,'2023-01-22 02:10:19','0.00','12','newstock','1','','',189.75,'','1','8','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1331,'COCACOLA SODA 2LTRS','',5.00,'2023-01-22 06:03:58','0.00','12','newstock','1','','',158.00,'','1','5','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1332,'WHITE CAP CAN 500ML','',6.00,'2023-01-22 12:46:38','5.00','12','newstock','1','','',190.38,'','1','11','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1333,'TUSKER CIDER CAN 500ML','',12.00,'2023-01-22 18:31:06','2.00','12','newstock','1','','',181.71,'','1','14','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1334,'TUSKER LITE CAN 500ML','',8.00,'2023-01-22 18:31:25','3.00','12','newstock','1','','',198.45,'','1','11','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1335,'TUSKER LAGER CAN 500ML','',8.00,'2023-01-22 18:31:51','5.00','12','newstock','1','','',172.75,'','1','13','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1336,'CHROME GIN 250ML','',7.00,'2023-01-22 18:32:18','4.00','12','newstock','1','','',182.00,'','1','11','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1337,'SPRITE 500ML','',8.00,'2023-01-22 18:33:05','1.00','12','newstock','1','','',53.33,'','1','9','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1338,'GUINNESS CAN 500ML','',9.00,'2023-01-22 18:33:54','5.00','12','newstock','1','','',189.75,'','1','14','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1339,'SMIRNOFF GUARANA 330ML','',12.00,'2023-01-22 18:34:28','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1340,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2023-01-22 18:34:49','5.00','12','newstock','1','','',150.45,'','1','17','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1341,'PISTON 250ML','',12.00,'2023-01-22 18:35:47','9.00','12','newstock','1','','',165.00,'','1','21','internal','1','6164003409025','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1342,'HEINEKEN GLASS300ML','',4.00,'2023-01-22 20:58:57','0.00','12','newstock','1','','',214.00,'','1','4','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1343,'HEINEKEN CAN 500ML','',12.00,'2023-01-22 20:59:13','0.00','12','newstock','1','','',182.00,'','1','12','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1344,'BALLANTINES 750ML','',3.00,'2023-01-23 02:39:04','0.00','12','newstock','1','','',1600.00,'','1','3','internal','1','5010106111451','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1345,'ELECTIO CABERNET SAUVIGNON RED DRY WINE 750ML','',5.00,'2023-01-24 20:56:08','0.00','12','newstock','1','','',900.00,'','1','5','internal','1','4840709004321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1346,'FRAGOLINO RED SPARKLING WINE 750ML','',1.00,'2023-01-25 01:52:54','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1347,'BALOZI LAGER CAN 500ML','',28.00,'2023-01-25 20:05:53','2.00','12','newstock','1','','',172.83,'','1','30','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1348,'GUINNESS CAN 500ML','',9.00,'2023-01-25 21:10:28','0.00','12','newstock','1','','',189.75,'','1','9','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1349,'MINUTE MAID APPLE 400ML','',1.00,'2023-01-26 04:45:06','0.00','12','newstock','1','','',59.67,'','1','1','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1350,'WHITE CAP CAN 500ML','',4.00,'2023-01-26 14:47:33','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1351,'WHITE CAP CAN 500ML','',1.00,'2023-01-26 20:38:04','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1352,'DESPARADO ORIGINAL 330ML','',3.00,'2023-01-26 20:48:25','0.00','12','newstock','1','','',188.00,'','1','3','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1353,'GILBEYS GIN 250ML','',1.00,'2023-01-26 22:23:27','0.00','12','newstock','1','','',418.00,'','1','1','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1354,'FANTA ORANGE 500ML','',6.00,'2023-01-27 00:49:39','0.00','12','newstock','1','','',53.33,'','1','6','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1355,'WHITE CAP CAN 500ML','',6.00,'2023-01-27 04:37:33','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1356,'DROSTDY HOF CLARET 750ML','',4.00,'2023-01-27 18:52:32','0.00','12','newstock','1','','',628.00,'','1','4','internal','1','6001495201501','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1357,'KREST 500ML','',5.00,'2023-01-27 19:02:11','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1358,'BALLANTINES 750ML','',1.00,'2023-01-27 23:46:54','0.00','12','newstock','1','','',1600.00,'','1','1','internal','1','5010106111451','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1359,'BARBERA DASTI 750ML','',3.00,'2023-01-27 23:49:23','0.00','12','newstock','1','','',1.00,'','1','3','internal','1','8000530010304','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1360,'HEINEKEN GLASS300ML','',1.00,'2023-01-27 23:50:20','0.00','12','newstock','1','','',214.00,'','1','1','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1361,'DESPARADO ORIGINAL 330ML','',2.00,'2023-01-28 00:13:03','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1362,'WHITE CAP CAN 500ML','',5.00,'2023-01-28 00:13:49','0.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1363,'CHROME GIN 250ML','',1.00,'2023-01-28 03:37:37','5.00','12','newstock','1','','',182.00,'','1','6','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1364,'SPRITE SODA 2LTRS','',1.00,'2023-01-28 03:38:19','4.00','12','newstock','1','','',158.00,'','1','5','internal','1','5449000004864','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1365,'JACK DANIELS 700ML','',1.00,'2023-01-28 04:47:27','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1366,'TUSKER LITE CAN 500ML','',2.00,'2023-01-28 04:48:04','2.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1367,'DUNHILL SINGLE SWITCH','',4.00,'2023-01-28 05:53:45','0.00','12','newstock','1','','',346.00,'','1','4','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1368,'HEINEKEN CAN 500ML','',4.00,'2023-01-28 13:22:13','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1369,'MINUTE MAID APPLE 400ML','',1.00,'2023-01-28 13:39:08','0.00','12','newstock','1','','',59.67,'','1','1','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1370,'GUINNESS CAN 500ML','',2.00,'2023-01-28 13:45:10','1.00','12','newstock','1','','',189.75,'','1','3','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1371,'GUINNESS CAN 500ML','',1.00,'2023-01-28 14:03:41','1.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1372,'GILBEYS GIN 750ML','',4.00,'2023-01-28 19:44:10','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1373,'GILBEYS GIN 350ML','',5.00,'2023-01-28 19:44:46','0.00','12','newstock','1','','',586.00,'','1','5','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1374,'TUSKER LITE CAN 500ML','',15.00,'2023-01-28 22:33:15','0.00','12','newstock','1','','',198.45,'','1','15','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1375,'TANQUERAY LONDON GIN 750ML','',2.00,'2023-01-28 22:44:27','0.00','12','newstock','1','','',2070.00,'','1','2','internal','1','5000291020706','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1376,'DUNHILL DOUBLE SWITCH','',3.00,'2023-01-28 23:00:39','0.00','12','newstock','1','','',346.00,'','1','3','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1377,'JACK DANIELS 700ML','',1.00,'2023-01-28 23:19:28','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1378,'DESPARADO ORIGINAL 330ML','',12.00,'2023-01-28 23:28:39','0.00','12','newstock','1','','',188.00,'','1','12','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1379,'HEINEKEN GLASS300ML','',5.00,'2023-01-28 23:28:58','0.00','12','newstock','1','','',214.00,'','1','5','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1380,'DROSTDY HOF PREMIER GRAND CRU 750ML','',3.00,'2023-01-29 03:51:30','6.00','12','newstock','1','','',628.00,'','1','9','internal','1','6001495203055','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1381,'DROSTDY HOF CLARET 750ML','',3.00,'2023-01-29 03:52:11','0.00','12','newstock','1','','',628.00,'','1','3','internal','1','6001495201501','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1382,'HEINEKEN GLASS300ML','',6.00,'2023-01-29 04:54:22','3.00','12','newstock','1','','',214.00,'','1','9','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1383,'HEINEKEN CAN 500ML','',10.00,'2023-01-29 04:55:08','3.00','12','newstock','1','','',182.00,'','1','13','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1384,'MINUTE MAID APPLE 400ML','',7.00,'2023-01-29 09:59:09','0.00','12','newstock','1','','',59.67,'','1','7','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1385,'FANTA BLACKCURRENT 500ML','',1.00,'2023-01-29 09:59:23','3.00','12','newstock','1','','',56.00,'','1','4','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1386,'COKE ZERO 500ML','',5.00,'2023-01-29 19:56:57','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1387,'GUINNESS CAN 500ML','',2.00,'2023-01-30 14:01:20','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1388,'GUINNESS CAN 500ML','',4.00,'2023-01-30 21:40:18','0.00','12','newstock','1','','',189.75,'','1','4','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1389,'SMIRNOFF GUARANA 330ML','',5.00,'2023-01-30 21:50:30','2.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1390,'WHITE CAP CAN 500ML','',4.00,'2023-01-30 23:17:33','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1391,'JACK DANIELS 1L','',4.00,'2023-01-31 18:29:00','0.00','12','newstock','1','','',3450.00,'','1','4','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1392,'TUSKER CIDER CAN 500ML','',4.00,'2023-01-31 19:43:31','0.00','12','newstock','1','','',181.71,'','1','4','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1393,'LIME JUICE 700ML','',5.00,'2023-01-31 21:37:11','0.00','12','newstock','1','','',130.00,'','1','5','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1394,'COCACOLA SODA 2LTRS','',3.00,'2023-02-01 01:59:17','0.00','12','newstock','1','','',158.00,'','1','3','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1395,'WHITE CAP CAN 500ML','',5.00,'2023-02-01 03:51:58','2.00','12','newstock','1','','',190.38,'','1','7','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1396,'DUNHILL DOUBLE SWITCH','',1.00,'2023-02-01 21:31:39','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1397,'GUINNESS CAN 500ML','',4.00,'2023-02-01 22:16:15','0.00','12','newstock','1','','',189.75,'','1','4','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1398,'SPRITE 500ML','',5.00,'2023-02-02 00:02:42','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1399,'TUSKER LAGER CAN 500ML','',4.00,'2023-02-02 00:16:18','0.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1400,'DESPARADO ORIGINAL 330ML','',10.00,'2023-02-02 00:41:13','0.00','12','newstock','1','','',188.00,'','1','10','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1401,'KREST 500ML','',1.00,'2023-02-02 12:28:49','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1402,'KREST 500ML','',5.00,'2023-02-02 22:50:53','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1403,'CHROME VODKA 250ML','',2.00,'2023-02-02 23:04:25','0.00','12','newstock','1','','',192.00,'','1','2','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1404,'JW RED 750ML','',1.00,'2023-02-02 23:47:35','0.00','12','newstock','1','','',1465.00,'','1','1','internal','1','5000267014005','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1405,'TUSKER CIDER CAN 500ML','',6.00,'2023-02-02 23:51:30','0.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1406,'CHROME GIN 250ML','',2.00,'2023-02-03 06:02:20','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1407,'MINUTE MAID MANGO 400ML','',1.00,'2023-02-03 12:58:00','0.00','12','newstock','1','','',68.00,'','1','1','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1408,'SAFARI WATER 500ML','',1.00,'2023-02-03 16:49:03','14.00','12','newstock','1','','',19.00,'','1','15','internal','1','6164001199034','','',0.00,'','50','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1409,'HEINEKEN GLASS300ML','',4.00,'2023-02-03 17:46:56','4.00','12','newstock','1','','',214.00,'','1','8','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1410,'HEINEKEN CAN 500ML','',4.00,'2023-02-03 17:47:31','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1411,'DESPARADO ORIGINAL 330ML','',2.00,'2023-02-03 20:36:34','5.00','12','newstock','1','','',188.00,'','1','7','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1412,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2023-02-04 01:00:41','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1413,'SMIRNOFF RED 350ML','',3.00,'2023-02-04 04:41:16','0.00','12','newstock','1','','',544.00,'','1','3','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1414,'MINUTE MAID MANGO 400ML','',3.00,'2023-02-04 05:04:18','0.00','12','newstock','1','','',68.00,'','1','3','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1415,'HEINEKEN CAN 500ML','',2.00,'2023-02-04 05:05:33','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1416,'HEINEKEN GLASS300ML','',5.00,'2023-02-04 05:12:15','8.00','12','newstock','1','','',214.00,'','1','13','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1417,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-02-04 05:14:45','1.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1418,'BLACK & WHITE 350ML','',1.00,'2023-02-04 07:36:40','0.00','12','newstock','1','','',443.00,'','1','1','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1419,'GILBEYS GIN 250ML','',1.00,'2023-02-04 15:26:41','0.00','12','newstock','1','','',418.00,'','1','1','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1420,'CHROME GIN 750ML','',1.00,'2023-02-04 15:55:12','0.00','12','newstock','1','','',501.00,'','1','1','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1421,'REDBULL','',1.00,'2023-02-04 19:28:16','3.00','12','newstock','1','','',147.00,'','1','4','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1422,'JACK DANIELS 700ML','',2.00,'2023-02-04 20:10:39','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1423,'CHROME VODKA 250ML','',2.00,'2023-02-04 20:29:39','0.00','12','newstock','1','','',192.00,'','1','2','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1424,'WHITE CAP CAN 500ML','',6.00,'2023-02-04 20:49:59','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1425,'SMIRNOFF GUARANA 330ML','',1.00,'2023-02-04 21:58:49','1.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1426,'HEINEKEN CAN 500ML','',3.00,'2023-02-04 22:03:28','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1427,'CHROME GIN 750ML','',4.00,'2023-02-04 23:01:49','0.00','12','newstock','1','','',501.00,'','1','4','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1428,'CHROME VODKA 250ML','',2.00,'2023-02-04 23:43:21','2.00','12','newstock','1','','',192.00,'','1','4','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1429,'SAFARI LEMONADE','',10.00,'2023-02-04 23:43:43','0.00','12','newstock','1','','',37.08,'','1','10','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1430,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-05 00:14:20','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1431,'CHROME VODKA 250ML','',1.00,'2023-02-05 00:54:23','2.00','12','newstock','1','','',192.00,'','1','3','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1432,'CHROME VODKA 250ML','',3.00,'2023-02-05 01:19:41','0.00','12','newstock','1','','',192.00,'','1','3','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1433,'SMIRNOFF GUARANA 330ML','',2.00,'2023-02-05 01:46:36','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1434,'TUSKER LITE CAN 500ML','',4.00,'2023-02-05 01:48:27','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1435,'TUSKER LAGER CAN 500ML','',4.00,'2023-02-05 01:49:20','0.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1436,'SMIRNOFF GUARANA 330ML','',3.00,'2023-02-05 02:54:48','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1437,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-05 03:09:34','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1438,'HEINEKEN CAN 500ML','',5.00,'2023-02-05 03:38:15','2.00','12','newstock','1','','',182.00,'','1','7','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1439,'TUSKER LAGER CAN 500ML','',3.00,'2023-02-05 04:10:53','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1440,'GUINNESS CAN 500ML','',2.00,'2023-02-05 04:23:01','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1441,'COKE ZERO 500ML','',1.00,'2023-02-05 05:01:16','1.00','12','newstock','1','','',53.33,'','1','2','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1442,'CHROME VODKA 250ML','',4.00,'2023-02-05 05:25:53','0.00','12','newstock','1','','',192.00,'','1','4','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1443,'KREST 500ML','',2.00,'2023-02-05 05:43:03','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1444,'COKE ZERO 500ML','',1.00,'2023-02-05 08:16:26','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1445,'GUINNESS CAN 500ML','',12.00,'2023-02-05 10:15:45','0.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1446,'SMIRNOFF GUARANA 330ML','',5.00,'2023-02-05 10:16:38','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1447,'DESPARADO ORIGINAL 330ML','',3.00,'2023-02-05 22:46:43','1.00','12','newstock','1','','',188.00,'','1','4','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1448,'BALOZI LAGER CAN 500ML','',5.00,'2023-02-05 23:35:48','0.00','12','newstock','1','','',172.83,'','1','5','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1449,'TUSKER LITE CAN 500ML','',2.00,'2023-02-05 23:53:27','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1450,'DESPARADO ORIGINAL 330ML','',2.00,'2023-02-06 00:44:07','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1451,'WHITE CAP CAN 500ML','',2.00,'2023-02-06 01:54:04','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1452,'COKE ZERO 500ML','',3.00,'2023-02-06 20:53:26','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1453,'WHITE CAP CAN 500ML','',2.00,'2023-02-06 20:59:23','1.00','12','newstock','1','','',190.38,'','1','3','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1454,'CHROME VODKA 250ML','',2.00,'2023-02-06 21:52:01','0.00','12','newstock','1','','',192.00,'','1','2','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1455,'TUSKER LAGER CAN 500ML','',2.00,'2023-02-06 22:04:38','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1456,'SODA WATER 500ML','',1.00,'2023-02-06 22:04:52','1.00','12','newstock','1','','',53.33,'','1','2','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1457,'GUINNESS CAN 500ML','',1.00,'2023-02-06 23:32:42','5.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1458,'BALOZI LAGER CAN 500ML','',6.00,'2023-02-07 04:17:59','2.00','12','newstock','1','','',172.83,'','1','8','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1459,'SMIRNOFF GUARANA 330ML','',6.00,'2023-02-07 04:30:25','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1460,'BALOZI LAGER CAN 500ML','',1.00,'2023-02-07 04:30:39','0.00','12','newstock','1','','',172.83,'','1','1','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1461,'WHITE CAP CAN 500ML','',6.00,'2023-02-07 18:53:03','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1462,'GILBEYS GIN 250ML','',2.00,'2023-02-07 18:57:58','0.00','12','newstock','1','','',418.00,'','1','2','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1463,'TUSKER LITE CAN 500ML','',5.00,'2023-02-07 19:00:33','1.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1464,'SAFARI LEMONADE','',5.00,'2023-02-07 22:48:14','0.00','12','newstock','1','','',37.08,'','1','5','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1465,'WHITE CAP CAN 500ML','',1.00,'2023-02-07 23:42:33','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1466,'CHROME VODKA 250ML','',2.00,'2023-02-08 00:19:42','0.00','12','newstock','1','','',192.00,'','1','2','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1467,'TUSKER CIDER CAN 500ML','',2.00,'2023-02-08 01:05:09','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1468,'CHROME VODKA 250ML','',1.00,'2023-02-08 01:21:53','0.00','12','newstock','1','','',192.00,'','1','1','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1469,'GUINNESS CAN 500ML','',2.00,'2023-02-08 01:34:32','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1470,'GUINNESS CAN 500ML','',3.00,'2023-02-08 03:08:18','2.00','12','newstock','1','','',189.75,'','1','5','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1471,'SMIRNOFF GUARANA 330ML','',2.00,'2023-02-08 08:18:51','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1472,'JACK DANIELS 700ML','',2.00,'2023-02-08 20:22:18','0.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1473,'CHROME VODKA 250ML','',1.00,'2023-02-08 20:22:41','0.00','12','newstock','1','','',192.00,'','1','1','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1474,'BALOZI LAGER CAN 500ML','',2.00,'2023-02-08 20:23:50','0.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1475,'MINUTE MAID MANGO 400ML','',1.00,'2023-02-08 22:24:08','0.00','12','newstock','1','','',68.00,'','1','1','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1476,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-08 22:24:25','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1477,'WHITE CAP CAN 500ML','',4.00,'2023-02-08 23:22:27','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1478,'BALOZI LAGER CAN 500ML','',4.00,'2023-02-08 23:22:43','2.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1479,'SMIRNOFF GUARANA 330ML','',2.00,'2023-02-08 23:52:37','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1480,'WILLIAM LAWSON CAN 330ML','',3.00,'2023-02-08 23:52:51','1.00','12','newstock','1','','',177.00,'','1','4','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1481,'MINUTE MAID TROPICAL 400ML','',1.00,'2023-02-08 23:53:15','0.00','12','newstock','1','','',59.67,'','1','1','internal','1','90399480','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1482,'SMIRNOFF GUARANA 330ML','',1.00,'2023-02-09 00:02:08','2.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1483,'TUSKER LAGER CAN 500ML','',3.00,'2023-02-09 00:03:02','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1484,'SNAPP 330ML CAN','',3.00,'2023-02-09 00:03:14','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1485,'TUSKER CIDER CAN 500ML','',2.00,'2023-02-09 00:16:07','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1486,'SMIRNOFF GUARANA 330ML','',1.00,'2023-02-09 00:32:02','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1487,'COKE ZERO 500ML','',1.00,'2023-02-09 00:34:03','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1488,'BALOZI LAGER CAN 500ML','',3.00,'2023-02-09 00:35:11','0.00','12','newstock','1','','',172.83,'','1','3','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1489,'CHROME VODKA 250ML','',1.00,'2023-02-09 00:35:53','0.00','12','newstock','1','','',192.00,'','1','1','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1490,'TUSKER LITE CAN 500ML','',1.00,'2023-02-09 00:56:37','1.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1491,'COKE ZERO 500ML','',1.00,'2023-02-09 02:06:32','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1492,'SMIRNOFF BLACK ICE 330ML CAN','',2.00,'2023-02-09 05:21:50','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1493,'WILLIAM LAWSON CAN 330ML','',3.00,'2023-02-09 22:50:00','1.00','12','newstock','1','','',177.00,'','1','4','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1494,'TUSKER MALT CAN 500ML','',6.00,'2023-02-09 23:04:05','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1495,'DUNHILL SINGLE SWITCH','',1.00,'2023-02-09 23:04:19','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1496,'HUNTERS CHOICE 350ML','',1.00,'2023-02-10 00:25:20','0.00','12','newstock','1','','',435.00,'','1','1','internal','1','6161100421363','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1497,'TUSKER LAGER CAN 500ML','',2.00,'2023-02-10 01:35:53','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1498,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-02-10 01:46:34','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1499,'WILLIAM LAWSON CAN 330ML','',5.00,'2023-02-10 01:46:50','1.00','12','newstock','1','','',177.00,'','1','6','internal','1','100','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1500,'HUNTERS CHOICE 350ML','',2.00,'2023-02-10 03:32:33','0.00','12','newstock','1','','',435.00,'','1','2','internal','1','6161100421363','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1501,'SAFARI LEMONADE','',5.00,'2023-02-10 03:33:05','0.00','12','newstock','1','','',37.08,'','1','5','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1502,'TUSKER LITE CAN 500ML','',1.00,'2023-02-10 05:56:36','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1503,'TUSKER MALT CAN 500ML','',1.00,'2023-02-10 05:57:09','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1504,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-10 05:57:39','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1505,'SNAPP 330ML CAN','',7.00,'2023-02-10 10:37:39','0.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1506,'SODA WATER 500ML','',3.00,'2023-02-10 10:40:21','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1507,'BEST GIN 250ML','',3.00,'2023-02-10 20:02:23','0.00','12','newstock','1','','',244.00,'','1','3','internal','1','6161100421554','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1508,'KIBAO 250ML','',3.00,'2023-02-10 20:09:38','0.00','12','newstock','1','','',198.00,'','1','3','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1509,'KREST 500ML','',3.00,'2023-02-10 20:10:34','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1510,'COCACOLA 1.25ML','',3.00,'2023-02-11 01:02:48','0.00','12','newstock','1','','',103.00,'','1','3','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1511,'TUSKER CIDER CAN 500ML','',1.00,'2023-02-11 03:20:28','0.00','12','newstock','1','','',181.71,'','1','1','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1512,'TUSKER MALT CAN 500ML','',1.00,'2023-02-11 03:20:43','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1513,'TUSKER MALT CAN 500ML','',2.00,'2023-02-11 03:54:42','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1514,'MINUTE MAID MANGO 400ML','',2.00,'2023-02-11 04:13:51','0.00','12','newstock','1','','',68.00,'','1','2','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1515,'BLACK & WHITE 350ML','',1.00,'2023-02-11 04:18:41','0.00','12','newstock','1','','',443.00,'','1','1','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1516,'PALL MALL KINGS','',1.00,'2023-02-11 04:19:02','7.00','12','newstock','1','','',170.00,'','1','8','internal','1','6008165265962','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1517,'SPRITE 500ML','',1.00,'2023-02-11 04:22:05','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1518,'TUSKER MALT CAN 500ML','',5.00,'2023-02-11 04:41:19','0.00','12','newstock','1','','',198.45,'','1','5','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1519,'REDBULL','',1.00,'2023-02-11 04:42:12','0.00','12','newstock','1','','',147.00,'','1','1','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1520,'GUINNESS CAN 500ML','',12.00,'2023-02-11 22:54:44','0.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1521,'REDBULL','',5.00,'2023-02-11 22:55:57','0.00','12','newstock','1','','',147.00,'','1','5','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1522,'WHITE CAP CAN 500ML','',12.00,'2023-02-12 00:01:00','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1523,'SAFARI LEMONADE','',12.00,'2023-02-12 00:22:38','0.00','12','newstock','1','','',37.08,'','1','12','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1524,'SMIRNOFF GUARANA 330ML','',12.00,'2023-02-12 04:53:48','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1525,'FRAGOLINO RED SPARKLING WINE 750ML','',1.00,'2023-02-12 13:53:16','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1526,'TUSKER LITE CAN 500ML','',3.00,'2023-02-12 13:54:47','0.00','12','newstock','1','','',198.45,'','1','3','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1527,'SMIRNOFF GUARANA 330ML','',6.00,'2023-02-12 17:49:41','4.00','12','newstock','1','','',150.45,'','1','10','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1528,'SMIRNOFF GUARANA 330ML','',2.00,'2023-02-12 17:52:03','10.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1529,'CHROME GIN 250ML','',2.00,'2023-02-12 18:02:29','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1530,'JACK DANIELS 700ML','',1.00,'2023-02-12 18:23:54','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1531,'TUSKER MALT CAN 500ML','',12.00,'2023-02-12 23:30:33','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1532,'TUSKER LITE CAN 500ML','',12.00,'2023-02-12 23:30:52','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1533,'KREST 500ML','',3.00,'2023-02-12 23:31:33','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','5449000139030','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1534,'TUSKER LITE CAN 500ML','',2.00,'2023-02-12 23:38:25','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1535,'TUSKER CIDER CAN 500ML','',12.00,'2023-02-13 00:10:59','0.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1536,'GUINNESS CAN 500ML','',6.00,'2023-02-13 00:11:28','6.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1537,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-13 11:08:03','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1538,'TUSKER LAGER CAN 500ML','',1.00,'2023-02-13 11:19:57','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1539,'DUREX PERFORMA','',4.00,'2023-02-13 14:28:05','0.00','12','newstock','1','','',315.79,'','1','4','internal','1','5010232953925','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1540,'DUREX FEATHERLITE','',4.00,'2023-02-13 14:28:21','0.00','12','newstock','1','','',263.16,'','1','4','internal','1','5010232953994','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1541,'DUREX SELECT FLAVOURS','',3.00,'2023-02-13 14:28:40','1.00','12','newstock','1','','',272.00,'','1','4','internal','1','5052197004281','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1542,'DUREX PLEASURE ME','',3.00,'2023-02-13 14:28:58','1.00','12','newstock','1','','',272.00,'','1','4','internal','1','6001106225421','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1543,'DUREX EXTRA SAFE','',3.00,'2023-02-13 14:29:19','1.00','12','newstock','1','','',263.16,'','1','4','internal','1','5010232965096','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1544,'SPRITE 500ML','',2.00,'2023-02-13 20:08:36','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1545,'GILBEYS GIN 250ML','',2.00,'2023-02-13 20:12:32','0.00','12','newstock','1','','',418.00,'','1','2','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1546,'CHROME GIN 250ML','',3.00,'2023-02-13 20:18:09','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1547,'HEINEKEN GLASS300ML','',10.00,'2023-02-13 21:51:56','2.00','12','newstock','1','','',214.00,'','1','12','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1548,'GILBEYS GIN 750ML','',3.00,'2023-02-13 22:40:55','0.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1549,'TUSKER LAGER CAN 500ML','',6.00,'2023-02-13 22:52:46','0.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1550,'TUSKER LITE CAN 500ML','',2.00,'2023-02-13 22:57:59','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1551,'KIBAO 250ML','',2.00,'2023-02-13 23:41:50','1.00','12','newstock','1','','',198.00,'','1','3','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1552,'WHITE CAP CAN 500ML','',8.00,'2023-02-14 00:01:25','4.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1553,'TUSKER LAGER CAN 500ML','',4.00,'2023-02-14 00:23:34','1.00','12','newstock','1','','',172.75,'','1','5','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1554,'HUNTERS CHOICE 250ML','',4.00,'2023-02-14 19:51:28','0.00','12','newstock','1','','',290.00,'','1','4','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1555,'TUSKER LITE CAN 500ML','',1.00,'2023-02-14 19:52:29','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1556,'HEINEKEN GLASS300ML','',2.00,'2023-02-14 22:44:18','1.00','12','newstock','1','','',214.00,'','1','3','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1557,'SAFARI WATER 1L','',8.00,'2023-02-14 22:48:03','0.00','12','newstock','1','','',38.00,'','1','8','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1558,'TUSKER LAGER CAN 500ML','',3.00,'2023-02-14 22:49:04','1.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1559,'BALOZI LAGER CAN 500ML','',10.00,'2023-02-14 23:34:37','0.00','12','newstock','1','','',172.83,'','1','10','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1560,'SMIRNOFF GUARANA 330ML','',2.00,'2023-02-15 01:48:14','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1561,'SPRITE 500ML','',5.00,'2023-02-15 02:02:18','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1562,'GILBEYS GIN 750ML','',1.00,'2023-02-15 02:03:30','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1563,'TUSKER MALT CAN 500ML','',2.00,'2023-02-15 13:45:39','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1564,'TUSKER MALT CAN 500ML','',2.00,'2023-02-15 13:55:19','2.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1565,'GILBEYS GIN 350ML','',2.00,'2023-02-15 15:01:05','0.00','12','newstock','1','','',586.00,'','1','2','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1566,'VELO BERRY FROST STRONG','',1.00,'2023-02-15 16:19:18','0.00','12','newstock','1','','',270.00,'','1','1','internal','1','6008165018193','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1567,'GILBEYS GIN 350ML','',1.00,'2023-02-15 17:04:55','0.00','12','newstock','1','','',586.00,'','1','1','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1568,'GILBEYS GIN 750ML','',4.00,'2023-02-15 20:44:56','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1569,'FRAGOLINO RED SPARKLING WINE 750ML','',3.00,'2023-02-15 23:57:22','0.00','12','newstock','1','','',1050.00,'','1','3','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1570,'BALOZI LAGER CAN 500ML','',2.00,'2023-02-16 00:00:11','5.00','12','newstock','1','','',172.83,'','1','7','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1571,'TUSKER LAGER CAN 500ML','',5.00,'2023-02-16 00:01:07','0.00','12','newstock','1','','',172.75,'','1','5','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1572,'BALOZI LAGER CAN 500ML','',7.00,'2023-02-16 00:02:32','7.00','12','newstock','1','','',172.83,'','1','14','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1573,'KERINGET 1LTR','',4.00,'2023-02-16 00:07:31','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1574,'MONSTER MULE','',5.00,'2023-02-16 00:08:24','0.00','12','newstock','1','','',153.00,'','1','5','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1575,'VELO BERRY FROST STRONG','',2.00,'2023-02-16 13:55:37','0.00','12','newstock','1','','',270.00,'','1','2','internal','1','6008165018193','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1576,'SPRITE SODA 2LTRS','',4.00,'2023-02-16 20:30:27','0.00','12','newstock','1','','',158.00,'','1','4','internal','1','5449000004864','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1577,'WILLIAM LAWSONS 750ML','',4.00,'2023-02-16 22:26:51','0.00','12','newstock','1','','',1474.00,'','1','4','internal','1','5010752000321','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1578,'SMIRNOFF GUARANA 330ML','',6.00,'2023-02-16 23:00:05','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1579,'KERINGET 500ML','',5.00,'2023-02-16 23:00:44','0.00','12','newstock','1','','',44.58,'','1','5','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1580,'BALOZI LAGER CAN 500ML','',3.00,'2023-02-17 00:00:23','1.00','12','newstock','1','','',172.83,'','1','4','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1581,'JACK DANIELS 700ML','',1.00,'2023-02-17 19:56:54','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1582,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-02-17 19:57:57','3.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1583,'OJ 16%','',1.00,'2023-02-17 20:37:11','0.00','12','newstock','1','','',225.00,'','1','1','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1584,'MINUTE MAID MANGO 400ML','',2.00,'2023-02-17 20:52:14','0.00','12','newstock','1','','',68.00,'','1','2','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1585,'FANTA BLACKCURRENT 500ML','',1.00,'2023-02-17 21:04:34','0.00','12','newstock','1','','',56.00,'','1','1','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1586,'COCACOLA 1.25ML','',3.00,'2023-02-17 22:34:21','0.00','12','newstock','1','','',103.00,'','1','3','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1587,'HUNTERS CHOICE 350ML','',2.00,'2023-02-18 00:13:43','0.00','12','newstock','1','','',435.00,'','1','2','internal','1','6161100421363','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1588,'SMIRNOFF RED 350ML','',1.00,'2023-02-18 14:24:53','0.00','12','newstock','1','','',544.00,'','1','1','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1589,'BALOZI LAGER CAN 500ML','',3.00,'2023-02-18 22:00:56','1.00','12','newstock','1','','',172.83,'','1','4','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1590,'BALOZI LAGER CAN 500ML','',4.00,'2023-02-18 22:30:39','1.00','12','newstock','1','','',172.83,'','1','5','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1591,'TUSKER CIDER CAN 500ML','',4.00,'2023-02-18 22:30:54','2.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1592,'Black Bird Natural Sweet Red 750ml','',1.00,'2023-02-18 22:53:53','1.00','12','newstock','1','','',700.00,'','1','2','internal','1','6009675642045','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1593,'DUNHILL SINGLE SWITCH','',1.00,'2023-02-18 22:54:08','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1594,'GUINNESS CAN 500ML','',5.00,'2023-02-19 00:07:50','1.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1595,'CHROME VODKA 250ML','',6.00,'2023-02-19 00:17:48','0.00','12','newstock','1','','',192.00,'','1','6','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1596,'FANTA BLACKCURRENT 500ML','',3.00,'2023-02-19 00:18:03','0.00','12','newstock','1','','',56.00,'','1','3','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1597,'TUSKER LITE CAN 500ML','',4.00,'2023-02-19 00:35:03','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1598,'BALOZI LAGER CAN 500ML','',5.00,'2023-02-19 00:53:01','1.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1599,'GILBEYS GIN 350ML','',1.00,'2023-02-19 03:31:16','0.00','12','newstock','1','','',586.00,'','1','1','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1600,'SAFARI LEMONADE','',7.00,'2023-02-19 21:26:56','0.00','12','newstock','1','','',37.08,'','1','7','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1601,'BLACK BIRD NATURAL SWEET ROSE 750ML','',1.00,'2023-02-19 22:48:52','0.00','12','newstock','1','','',700.00,'','1','1','internal','1','6009675642021','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1602,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2023-02-20 00:25:01','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1603,'KIBAO 350ML','',3.00,'2023-02-20 00:25:45','2.00','12','newstock','1','','',318.00,'','1','5','internal','1','6161100421387','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1604,'KIBAO 250ML','',3.00,'2023-02-20 00:26:52','0.00','12','newstock','1','','',198.00,'','1','3','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1605,'TUSKER LITE CAN 500ML','',3.00,'2023-02-20 01:11:33','0.00','12','newstock','1','','',198.45,'','1','3','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1606,'TUSKER CIDER CAN 500ML','',35.00,'2023-02-20 14:42:52','1.00','12','newstock','1','','',181.71,'','1','36','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1607,'SNAPP 330ML CAN','',35.00,'2023-02-20 14:43:50','3.00','12','newstock','1','','',150.45,'','1','38','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1608,'SMIRNOFF BLACK ICE 330ML CAN','',24.00,'2023-02-20 14:44:30','4.00','12','newstock','1','','',150.45,'','1','28','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1609,'OJ 16%','',7.00,'2023-02-20 14:44:48','0.00','12','newstock','1','','',225.00,'','1','7','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1610,'WHITE CAP CAN 500ML','',21.00,'2023-02-20 14:45:59','0.00','12','newstock','1','','',190.38,'','1','21','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1611,'WHITE CAP CAN 500ML','',1.00,'2023-02-20 14:46:16','21.00','12','newstock','1','','',190.38,'','1','22','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1612,'PILSNER CAN 500ML','',17.00,'2023-02-20 14:46:59','12.00','12','newstock','1','','',154.95,'','1','29','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1613,'SMIRNOFF GUARANA 330ML','',19.00,'2023-02-20 14:47:24','3.00','12','newstock','1','','',150.45,'','1','22','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1614,'TUSKER LITE CAN 500ML','',17.00,'2023-02-20 14:47:46','1.00','12','newstock','1','','',198.45,'','1','18','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1615,'TUSKER MALT CAN 500ML','',24.00,'2023-02-20 14:48:11','0.00','12','newstock','1','','',198.45,'','1','24','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1616,'BALOZI LAGER CAN 500ML','',11.00,'2023-02-20 14:48:38','0.00','12','newstock','1','','',172.83,'','1','11','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1617,'TUSKER LAGER CAN 500ML','',22.00,'2023-02-20 14:48:56','2.00','12','newstock','1','','',172.75,'','1','24','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1618,'GUINNESS CAN 500ML','',17.00,'2023-02-20 14:49:35','0.00','12','newstock','1','','',189.75,'','1','17','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1619,'DELMONTE PINEAPPLE','',2.00,'2023-02-20 14:51:12','6.00','12','newstock','1','','',205.00,'','1','8','internal','1','024000224556','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1620,'MONSTER MULE','',7.00,'2023-02-20 14:53:20','1.00','12','newstock','1','','',153.00,'','1','8','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1621,'FANTA BLACKCURRENT 500ML','',16.00,'2023-02-20 14:54:02','2.00','12','newstock','1','','',56.00,'','1','18','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1622,'SAFARI WATER 500ML','',57.00,'2023-02-20 14:54:49','1.00','12','newstock','1','','',19.00,'','1','58','internal','1','6164001199034','','',0.00,'','50','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1623,'KERINGET 500ML','',29.00,'2023-02-20 14:56:39','2.00','12','newstock','1','','',44.58,'','1','31','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1624,'KERINGET 1LTR','',11.00,'2023-02-20 14:57:09','0.00','12','newstock','1','','',74.58,'','1','11','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1625,'SAFARI WATER 1L','',23.00,'2023-02-20 14:57:58','3.00','12','newstock','1','','',38.00,'','1','26','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1626,'SAFARI LEMONADE','',16.00,'2023-02-20 14:58:53','6.00','12','newstock','1','','',37.08,'','1','22','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1627,'LIME JUICE 700ML','',5.00,'2023-02-20 14:59:20','0.00','12','newstock','1','','',130.00,'','1','5','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1628,'LIME JUICE 700ML','',31.00,'2023-02-20 15:00:00','5.00','12','newstock','1','','',130.00,'','1','36','internal','1','6008835000930','','',0.00,'','180','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1629,'FANTA ORANGE 500ML','',14.00,'2023-02-20 15:00:59','2.00','12','newstock','1','','',53.33,'','1','16','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1630,'MINUTE MAID TROPICAL 400ML','',4.00,'2023-02-20 15:01:45','0.00','12','newstock','1','','',59.67,'','1','4','internal','1','90399480','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1631,'COCACOLA SODA 2LTRS','',2.00,'2023-02-20 15:03:51','1.00','12','newstock','1','','',158.00,'','1','3','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1632,'COCACOLA 1.25ML','',14.00,'2023-02-20 15:04:14','1.00','12','newstock','1','','',103.00,'','1','15','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1633,'SPRITE SODA 2LTRS','',7.00,'2023-02-20 15:04:52','3.00','12','newstock','1','','',158.00,'','1','10','internal','1','5449000004864','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1634,'sprite 1.25ml','',4.00,'2023-02-20 15:05:22','12.00','12','newstock','1','','',103.00,'','1','16','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1635,'LIME JUICE 1.5L','',1.00,'2023-02-20 15:05:45','4.00','12','newstock','1','','',230.00,'','1','5','internal','1','6008835000947','','',0.00,'','380','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1636,'AMARULA CREAM 375ML','',1.00,'2023-02-20 15:12:06','2.00','12','newstock','1','','',1098.00,'','1','3','internal','1','6001495062478','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1637,'BEST GIN 250ML','',3.00,'2023-02-20 15:15:07','1.00','12','newstock','1','','',244.00,'','1','4','internal','1','6161100421554','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1638,'GILBEYS GIN 750ML','',1.00,'2023-02-20 15:15:44','1.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1639,'GILBEYS GIN 250ML','',2.00,'2023-02-20 15:17:17','0.00','12','newstock','1','','',418.00,'','1','2','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1640,'CHROME VODKA 250ML','',8.00,'2023-02-20 15:19:30','1.00','12','newstock','1','','',192.00,'','1','9','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1641,'CHROME VODKA 750ML','',1.00,'2023-02-20 15:19:52','2.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1642,'TOP SECRET WHISKY 750ML','',3.00,'2023-02-20 15:30:09','1.00','12','newstock','1','','',690.00,'','1','4','internal','1','6161101560108','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1643,'VAT 69 250ML','',1.00,'2023-02-20 15:30:52','17.00','12','newstock','1','','',430.00,'','1','18','internal','1','5000292263171','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1644,'VAT 69 375ML','',1.00,'2023-02-20 15:31:07','10.00','12','newstock','1','','',635.00,'','1','11','internal','1','6161101601115','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1645,'BOND 7 750ML','',4.00,'2023-02-20 15:36:08','4.00','12','newstock','1','','',1125.00,'','1','8','internal','1','5010103930963','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1646,'ROOIBERG RED NATURAL SWEET 750ML','',5.00,'2023-02-20 15:39:08','0.00','12','newstock','1','','',1110.00,'','1','5','internal','1','6002886001410','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1647,'OREANDA SPARKLING WINE CRYSTAL BRUT 750ML','',1.00,'2023-02-20 15:42:50','1.00','12','newstock','1','','',1157.00,'','1','2','internal','1','4820000944625','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1648,'ELECTIO CABERNET SAUVIGNON RED DRY WINE 750ML','',1.00,'2023-02-20 15:43:52','1.00','12','newstock','1','','',900.00,'','1','2','internal','1','4840709004321','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1649,'Black Bird Natural Sweet Red 750ml','',3.00,'2023-02-20 15:45:21','0.00','12','newstock','1','','',700.00,'','1','3','internal','1','6009675642045','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1650,'BARBERA DASTI 750ML','',3.00,'2023-02-20 15:46:11','2.00','12','newstock','1','','',1.00,'','1','5','internal','1','8000530010304','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1651,'BLACK BIRD NATURAL SWEET WHITE 750ML','',6.00,'2023-02-20 15:50:45','2.00','12','newstock','1','','',700.00,'','1','8','internal','1','6009675642007','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1652,'HUNTERS CHOICE 250ML','',7.00,'2023-02-20 16:00:33','2.00','12','newstock','1','','',290.00,'','1','9','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1653,'HUNTERS CHOICE 350ML','',1.00,'2023-02-20 16:01:11','1.00','12','newstock','1','','',435.00,'','1','2','internal','1','6161100421363','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1654,'WILLIAM LAWSONS 750ML','',1.00,'2023-02-20 16:04:39','3.00','12','newstock','1','','',1474.00,'','1','4','internal','1','5010752000321','','',0.00,'','2200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1655,'WILLIAM LAWSONS 350ML','',1.00,'2023-02-20 16:05:15','1.00','12','newstock','1','','',659.00,'','1','2','internal','1','5010752000420','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1656,'PISTON 250ML','',7.00,'2023-02-20 16:08:34','9.00','12','newstock','1','','',165.00,'','1','16','internal','1','6164003409025','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1657,'SMIRNOFF RED 250ML','',2.00,'2023-02-20 16:08:58','9.00','12','newstock','1','','',392.00,'','1','11','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1658,'kenya cane 250ml','',11.00,'2023-02-20 16:14:13','0.00','12','newstock','1','','',247.00,'','1','11','internal','1','6161101602211','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1659,'KONYAGI 250ML','',12.00,'2023-02-20 16:15:29','1.00','12','newstock','1','','',288.00,'','1','13','internal','1','6203005570170','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1660,'RICHOT BRANDY 250ML','',1.00,'2023-02-20 16:15:53','30.00','12','newstock','1','','',388.00,'','1','31','internal','1','6161101602181','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1661,'NAPOLEON GOLD 250ML','',1.00,'2023-02-20 16:16:21','13.00','12','newstock','1','','',210.00,'','1','14','internal','1','6161101561020','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1662,'KIBAO 250ML','',3.00,'2023-02-20 16:18:35','2.00','12','newstock','1','','',198.00,'','1','5','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1663,'FRAGOLINO ROSE SPARKLING WINE 750ML','',3.00,'2023-02-20 16:19:29','0.00','12','newstock','1','','',1050.00,'','1','3','internal','1','8000530800462','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1664,'BLACK BIRD NATURAL SWEET ROSE 750ML','',2.00,'2023-02-20 16:20:05','0.00','12','newstock','1','','',700.00,'','1','2','internal','1','6009675642021','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1665,'FRAGOLINO SPARKLING WINE WHITE 750ML','',1.00,'2023-02-20 16:20:53','4.00','12','newstock','1','','',1050.00,'','1','5','internal','1','8000530300504','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1666,'CAPRICE DRY WHITE WINE 1LTR','',1.00,'2023-02-20 16:21:33','0.00','12','newstock','1','','',636.00,'','1','1','internal','1','6161100420083','','',0.00,'','1400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1667,'TALISKER WHISKY 1L','',1.00,'2023-02-20 16:26:34','0.00','12','newstock','1','','',6313.00,'','1','1','internal','1','5000281003641','','',0.00,'','8500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1668,'JACK DANIELS 1L','',2.00,'2023-02-20 16:29:54','0.00','12','newstock','1','','',3450.00,'','1','2','internal','1','082184090442','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1669,'DUNHILL EMBASSY BLUE','',3.00,'2023-02-20 17:10:47','0.00','12','newstock','1','','',337.00,'','1','3','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1670,'VELO BERRY FROST STRONG','',1.00,'2023-02-21 02:05:59','0.00','12','newstock','1','','',270.00,'','1','1','internal','1','6008165018193','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1671,'HEINEKEN GLASS300ML','',8.00,'2023-02-21 20:27:46','0.00','12','newstock','1','','',214.00,'','1','8','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1672,'HEINEKEN GLASS300ML','',2.00,'2023-02-21 23:40:34','0.00','12','newstock','1','','',214.00,'','1','2','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1673,'HEINEKEN GLASS300ML','',2.00,'2023-02-22 01:05:22','0.00','12','newstock','1','','',214.00,'','1','2','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1674,'HEINEKEN GLASS300ML','',3.00,'2023-02-22 01:05:54','2.00','12','newstock','1','','',214.00,'','1','5','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1675,'HEINEKEN GLASS300ML','',7.00,'2023-02-22 02:45:15','2.00','12','newstock','1','','',214.00,'','1','9','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1676,'DUNHILL DOUBLE SWITCH','',3.00,'2023-02-23 01:43:31','0.00','12','newstock','1','','',346.00,'','1','3','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1677,'DUNHILL SINGLE SWITCH','',3.00,'2023-02-23 02:29:54','0.00','12','newstock','1','','',346.00,'','1','3','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1678,'VELO BERRY FROST STRONG','',1.00,'2023-02-23 23:13:03','0.00','12','newstock','1','','',270.00,'','1','1','internal','1','6008165018193','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1679,'CHROME VODKA 750ML','',1.00,'2023-02-24 23:34:27','2.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1680,'GILBEYS GIN 750ML','',5.00,'2023-02-26 00:27:01','0.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1681,'ALL SEASONS 500ML','',3.00,'2023-02-26 01:24:42','0.00','12','newstock','1','','',631.00,'','1','3','internal','1','8908006354993','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1682,'TUSKER MALT CAN 500ML','',1.00,'2023-02-26 04:03:16','14.00','12','newstock','1','','',198.45,'','1','15','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1683,'CHROME VODKA 250ML','',10.00,'2023-02-26 05:55:09','0.00','12','newstock','1','','',192.00,'','1','10','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1684,'CHROME GIN 250ML','',4.00,'2023-02-26 09:05:10','0.00','12','newstock','1','','',182.00,'','1','4','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1685,'WHITE CAP CAN 500ML','',2.00,'2023-02-26 17:51:25','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1686,'OJ 16%','',1.00,'2023-02-26 22:47:45','2.00','12','newstock','1','','',225.00,'','1','3','internal','1','8719327068540','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1687,'WHITE CAP CAN 500ML','',10.00,'2023-02-26 23:59:43','0.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1688,'BALOZI LAGER CAN 500ML','',4.00,'2023-02-27 12:34:37','2.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1689,'DUNHILL DOUBLE SWITCH','',1.00,'2023-02-27 18:00:39','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1690,'DUNHILL DOUBLE SWITCH','',3.00,'2023-02-27 18:19:55','0.00','12','newstock','1','','',346.00,'','1','3','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1691,'TUSKER LITE CAN 500ML','',2.00,'2023-02-27 20:12:12','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1692,'CHROME GIN 250ML','',5.00,'2023-02-27 20:58:01','0.00','12','newstock','1','','',182.00,'','1','5','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1693,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-02-27 23:10:58','2.00','12','newstock','1','','',150.45,'','1','8','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1694,'DUNHILL EMBASSY BLUE','',2.00,'2023-02-28 04:24:46','0.00','12','newstock','1','','',337.00,'','1','2','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1695,'ROOIBERG RED MUSCADEL 750ML','',2.00,'2023-02-28 04:25:35','0.00','12','newstock','1','','',1110.00,'','1','2','internal','1','6002886000277','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1696,'SMIRNOFF BLACK ICE 330ML CAN','',3.00,'2023-02-28 12:23:01','2.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1697,'REDBULL','',57.00,'2023-02-28 14:54:40','3.00','12','newstock','1','','',147.00,'','1','60','internal','1','90162602','','',0.00,'','230','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1698,'CHROME GIN 250ML','',10.00,'2023-02-28 14:56:02','4.00','12','newstock','1','','',182.00,'','1','14','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1699,'CHROME VODKA 250ML','',5.00,'2023-02-28 14:57:07','6.00','12','newstock','1','','',192.00,'','1','11','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1700,'TUSKER MALT CAN 500ML','',8.00,'2023-02-28 23:17:04','2.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1701,'TUSKER LAGER CAN 500ML','',7.00,'2023-03-01 23:53:39','0.00','12','newstock','1','','',172.75,'','1','7','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1702,'TUSKER LAGER CAN 500ML','',2.00,'2023-03-02 15:21:43','0.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1703,'BALOZI LAGER CAN 500ML','',6.00,'2023-03-02 20:57:01','0.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1704,'KERINGET 1LTR','',10.00,'2023-03-03 21:18:31','1.00','12','newstock','1','','',74.58,'','1','11','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1705,'PREDATOR ENERGY DRINK','',6.00,'2023-03-03 23:47:49','0.00','12','newstock','1','','',41.82,'','1','6','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1706,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-03-03 23:49:04','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1707,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-03-04 04:59:33','1.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1708,'TUSKER MALT CAN 500ML','',6.00,'2023-03-04 05:53:43','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1709,'WHITE CAP CAN 500ML','',2.00,'2023-03-04 06:05:44','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1710,'TUSKER MALT CAN 500ML','',8.00,'2023-03-04 23:40:43','5.00','12','newstock','1','','',198.45,'','1','13','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1711,'TUSKER LITE CAN 500ML','',6.00,'2023-03-05 02:16:56','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1712,'DUNHILL SINGLE SWITCH','',3.00,'2023-03-05 02:28:17','0.00','12','newstock','1','','',346.00,'','1','3','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1713,'GUINNESS CAN 500ML','',7.00,'2023-03-05 02:28:50','0.00','12','newstock','1','','',189.75,'','1','7','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1714,'SMIRNOFF GUARANA 330ML','',3.00,'2023-03-05 02:50:51','8.00','12','newstock','1','','',150.45,'','1','11','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1715,'WHITE CAP CAN 500ML','',6.00,'2023-03-05 02:51:10','1.00','12','newstock','1','','',190.38,'','1','7','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1716,'BALOZI LAGER CAN 500ML','',5.00,'2023-03-05 04:03:27','0.00','12','newstock','1','','',172.83,'','1','5','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1717,'WHITE CAP CAN 500ML','',1.00,'2023-03-05 04:28:33','2.00','12','newstock','1','','',190.38,'','1','3','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1718,'TUSKER LAGER CAN 500ML','',3.00,'2023-03-05 05:43:02','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1719,'TUSKER LITE CAN 500ML','',4.00,'2023-03-05 05:43:58','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1720,'WHITE CAP CAN 500ML','',6.00,'2023-03-05 07:28:42','0.00','12','newstock','1','','',190.38,'','1','6','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1721,'WHITE CAP CRISP CAN','',6.00,'2023-03-05 09:28:15','0.00','12','newstock','1','','',159.00,'','1','6','internal','1','6161101606820','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1722,'TUSKER LAGER CAN 500ML','',6.00,'2023-03-05 20:00:31','0.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1723,'DUNHILL EMBASSY BLUE','',3.00,'2023-03-05 21:49:25','0.00','12','newstock','1','','',337.00,'','1','3','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1724,'SMIRNOFF GUARANA 330ML','',2.00,'2023-03-05 23:39:20','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1725,'SMIRNOFF GUARANA 330ML','',6.00,'2023-03-06 04:22:40','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1726,'TUSKER LAGER CAN 500ML','',4.00,'2023-03-06 19:05:07','0.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1727,'SMIRNOFF GUARANA 330ML','',2.00,'2023-03-06 19:07:01','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1728,'TUSKER MALT CAN 500ML','',2.00,'2023-03-06 22:17:25','2.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1729,'GUINNESS CAN 500ML','',2.00,'2023-03-06 22:18:18','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1730,'CHROME VODKA 250ML','',2.00,'2023-03-06 22:44:35','0.00','12','newstock','1','','',192.00,'','1','2','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1731,'TUSKER MALT CAN 500ML','',4.00,'2023-03-06 23:05:52','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1732,'SMIRNOFF GUARANA 330ML','',3.00,'2023-03-06 23:13:51','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1733,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-03-07 03:25:35','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1734,'DUNHILL DOUBLE SWITCH','',1.00,'2023-03-07 22:26:36','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1735,'SMIRNOFF GUARANA 330ML','',2.00,'2023-03-07 23:17:40','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1736,'COKE ZERO 500ML','',2.00,'2023-03-07 23:21:57','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1737,'FANTA BLACKCURRENT 2LRTS','',6.00,'2023-03-08 08:26:21','0.00','12','newstock','1','','',158.00,'','1','6','internal','1','5449000022752','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1738,'FANTA BLACKCURRENT 500ML','',5.00,'2023-03-08 08:27:55','13.00','12','newstock','1','','',56.00,'','1','18','internal','1','50112753','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1739,'FANTA ORANGE 500ML','',10.00,'2023-03-08 08:29:30','8.00','12','newstock','1','','',53.33,'','1','18','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1740,'FANTA ORANGE 500ML','',11.00,'2023-03-08 08:30:09','18.00','12','newstock','1','','',53.33,'','1','29','internal','1','40822938','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1741,'SODA WATER 500ML','',11.00,'2023-03-08 08:30:41','1.00','12','newstock','1','','',53.33,'','1','12','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1742,'TONIC WATER 500ML','',16.00,'2023-03-08 08:32:35','8.00','12','newstock','1','','',53.33,'','1','24','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1743,'SPRITE 500ML','',24.00,'2023-03-08 08:32:54','0.00','12','newstock','1','','',53.33,'','1','24','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1744,'COKE ZERO 500ML','',22.00,'2023-03-08 08:34:06','1.00','12','newstock','1','','',53.33,'','1','23','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1745,'MINUTE MAID ORANGE PULPY 400ML','',12.00,'2023-03-08 08:34:34','0.00','12','newstock','1','','',59.67,'','1','12','internal','1','90490224','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1746,'MINUTE MAID TROPICAL 400ML','',11.00,'2023-03-08 08:36:13','1.00','12','newstock','1','','',59.67,'','1','12','internal','1','90399480','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1747,'MONSTER MULE','',16.00,'2023-03-08 08:36:39','0.00','12','newstock','1','','',153.00,'','1','16','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1748,'PREDATOR ENERGY DRINK','',29.00,'2023-03-08 08:36:58','0.00','12','newstock','1','','',41.82,'','1','29','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1749,'COCACOLA 1.25ML','',12.00,'2023-03-08 08:37:21','1.00','12','newstock','1','','',103.00,'','1','13','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1750,'COCACOLA SODA 2LTRS','',7.00,'2023-03-08 08:37:43','2.00','12','newstock','1','','',158.00,'','1','9','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1751,'COCACOLA SODA 2LTRS','',6.00,'2023-03-08 08:38:43','9.00','12','newstock','1','','',158.00,'','1','15','internal','1','5449000000286','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1752,'sprite 1.25ml','',29.00,'2023-03-08 08:39:21','9.00','12','newstock','1','','',103.00,'','1','38','internal','1','5449000028976','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1753,'BALOZI LAGER CAN 500ML','',16.00,'2023-03-08 08:40:12','0.00','12','newstock','1','','',172.83,'','1','16','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1754,'TUSKER LAGER CAN 500ML','',4.00,'2023-03-08 08:40:52','1.00','12','newstock','1','','',172.75,'','1','5','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1755,'DUNHILL EMBASSY RED','',12.00,'2023-03-08 08:42:42','3.00','12','newstock','1','','',337.00,'','1','15','internal','1','6008165007968','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1756,'DUNHILL EMBASSY BLUE','',6.00,'2023-03-08 08:44:53','0.00','12','newstock','1','','',337.00,'','1','6','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1757,'DUNHILL DOUBLE SWITCH','',5.00,'2023-03-08 08:45:22','0.00','12','newstock','1','','',346.00,'','1','5','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1758,'DUNHILL SINGLE SWITCH','',12.00,'2023-03-08 08:47:55','2.00','12','newstock','1','','',346.00,'','1','14','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1759,'SMIRNOFF BLACK ICE 330ML CAN','',2.00,'2023-03-08 21:26:08','4.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1760,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-03-08 22:41:11','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1761,'TUSKER MALT CAN 500ML','',2.00,'2023-03-09 21:51:01','1.00','12','newstock','1','','',198.45,'','1','3','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1762,'KERINGET 1LTR','',4.00,'2023-03-10 01:52:40','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1763,'SAFARI WATER 1L','',7.00,'2023-03-11 00:10:21','0.00','12','newstock','1','','',38.00,'','1','7','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1764,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-03-11 00:35:31','4.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1765,'SMIRNOFF GUARANA 330ML','',2.00,'2023-03-11 16:54:55','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1766,'KERINGET 1LTR','',5.00,'2023-03-11 20:55:56','2.00','12','newstock','1','','',74.58,'','1','7','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1767,'ROOIBERG RED MUSCADEL 750ML','',1.00,'2023-03-11 23:26:48','0.00','12','newstock','1','','',1110.00,'','1','1','internal','1','6002886000277','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1768,'FRAGOLINO SPARKLING WINE WHITE 750ML','',1.00,'2023-03-12 23:22:47','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300504','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1769,'KERINGET 1LTR','',4.00,'2023-03-12 23:38:36','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1770,'FRAGOLINO SPARKLING WINE WHITE 750ML','',1.00,'2023-03-13 18:51:47','0.00','12','newstock','1','','',1050.00,'','1','1','internal','1','8000530300504','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1771,'SAFARI WATER 1L','',5.00,'2023-03-13 22:48:04','0.00','12','newstock','1','','',38.00,'','1','5','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1772,'TUSKER MALT CAN 500ML','',11.00,'2023-03-15 18:33:52','1.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1773,'TUSKER LAGER CAN 500ML','',7.00,'2023-03-15 18:34:30','5.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1774,'TUSKER LITE CAN 500ML','',12.00,'2023-03-15 18:34:53','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1775,'WHITE CAP CAN 500ML','',12.00,'2023-03-15 18:35:15','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1776,'GUINNESS CAN 500ML','',12.00,'2023-03-15 18:35:33','0.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1777,'SMIRNOFF GUARANA 330ML','',12.00,'2023-03-15 18:35:51','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1778,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2023-03-15 18:36:13','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1779,'BALOZI LAGER CAN 500ML','',11.00,'2023-03-15 18:36:29','1.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1780,'TUSKER MALT CAN 500ML','',2.00,'2023-03-15 18:40:41','10.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1781,'MINUTE MAID APPLE 400ML','',4.00,'2023-03-17 00:30:16','0.00','12','newstock','1','','',59.67,'','1','4','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1782,'KIBAO VODKA 750ML','',1.00,'2023-03-18 04:21:37','0.00','12','newstock','1','','',502.00,'','1','1','internal','1','6161100421370','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1783,'KERINGET 1LTR','',3.00,'2023-03-18 08:02:22','0.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1784,'WHITE CAP CAN 500ML','',5.00,'2023-03-18 20:50:57','0.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1785,'TUSKER LAGER CAN 500ML','',1.00,'2023-03-18 20:57:39','1.00','12','newstock','1','','',172.75,'','1','2','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1786,'TUSKER LAGER CAN 500ML','',12.00,'2023-03-18 23:06:23','0.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1787,'TUSKER LAGER CAN 500ML','',10.00,'2023-03-18 23:06:43','12.00','12','newstock','1','','',172.75,'','1','22','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1788,'TUSKER LITE CAN 500ML','',10.00,'2023-03-18 23:14:53','1.00','12','newstock','1','','',198.45,'','1','11','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1789,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-03-19 01:28:28','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1790,'KIBAO VODKA 750ML','',1.00,'2023-03-19 06:15:01','0.00','12','newstock','1','','',502.00,'','1','1','internal','1','6161100421370','','',0.00,'','700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1791,'SAFARI WATER 1L','',1.00,'2023-03-19 06:15:19','0.00','12','newstock','1','','',38.00,'','1','1','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1792,'SMIRNOFF GUARANA 330ML','',4.00,'2023-03-19 23:03:52','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1793,'GUINNESS CAN 500ML','',4.00,'2023-03-20 00:02:46','0.00','12','newstock','1','','',189.75,'','1','4','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1794,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-03-20 21:22:01','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1795,'SAFARI WATER 1L','',5.00,'2023-03-20 21:49:06','0.00','12','newstock','1','','',38.00,'','1','5','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1796,'GUINNESS CAN 500ML','',3.00,'2023-03-20 22:14:17','0.00','12','newstock','1','','',189.75,'','1','3','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1797,'SAFARI WATER 1L','',4.00,'2023-03-21 00:57:30','3.00','12','newstock','1','','',38.00,'','1','7','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1798,'JACK DANIEL HONEY 700ML','',1.00,'2023-03-21 09:05:09','4.00','12','newstock','1','','',3000.00,'','1','5','internal','1','5099873001370','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1799,'BACARDI CARTA NEGRA 1L','',2.00,'2023-03-21 09:15:13','0.00','12','newstock','1','','',1570.00,'','1','2','internal','1','5010677038874','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1800,'GILBEYS GIN 350ML','',5.00,'2023-03-21 17:14:33','0.00','12','newstock','1','','',586.00,'','1','5','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1801,'GILBEYS GIN 750ML','',5.00,'2023-03-21 17:14:50','0.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1802,'GILBEYS GIN 250ML','',5.00,'2023-03-21 17:15:06','0.00','12','newstock','1','','',418.00,'','1','5','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1803,'CHROME GIN 250ML','',16.00,'2023-03-21 17:15:37','4.00','12','newstock','1','','',182.00,'','1','20','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1804,'CHROME VODKA 250ML','',8.00,'2023-03-21 17:16:02','0.00','12','newstock','1','','',192.00,'','1','8','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1805,'CHROME VODKA 750ML','',5.00,'2023-03-21 17:16:52','2.00','12','newstock','1','','',501.00,'','1','7','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1806,'GORDONS DRY GIN 750ML','',3.00,'2023-03-21 17:17:58','0.00','12','newstock','1','','',1900.00,'','1','3','internal','1','5000289020701','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1807,'VAT 69 750ML','',1.00,'2023-03-21 17:18:44','0.00','12','newstock','1','','',1141.00,'','1','1','internal','1','5000292001001','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1808,'CHROME GIN 750ML','',5.00,'2023-03-21 17:21:46','0.00','12','newstock','1','','',501.00,'','1','5','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1809,'GUINNESS CAN 500ML','',1.00,'2023-03-22 00:50:49','0.00','12','newstock','1','','',189.75,'','1','1','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1810,'GUINNESS CAN 500ML','',6.00,'2023-03-22 01:43:46','0.00','12','newstock','1','','',189.75,'','1','6','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1811,'WHITE CAP CAN 500ML','',8.00,'2023-03-22 17:49:07','0.00','12','newstock','1','','',190.38,'','1','8','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1812,'SMIRNOFF BLACK ICE 330ML CAN','',3.00,'2023-03-22 18:37:50','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1813,'ROOIBERG RED MUSCADEL 750ML','',1.00,'2023-03-22 22:35:49','0.00','12','newstock','1','','',1110.00,'','1','1','internal','1','6002886000277','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1814,'TUSKER LITE CAN 500ML','',3.00,'2023-03-22 22:36:01','0.00','12','newstock','1','','',198.45,'','1','3','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1815,'SAFARI WATER 1L','',2.00,'2023-03-22 22:51:51','0.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1816,'SMIRNOFF GUARANA 330ML','',1.00,'2023-03-22 23:14:32','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1817,'KERINGET 1LTR','',2.00,'2023-03-24 00:29:01','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1818,'KERINGET 1LTR','',1.00,'2023-03-24 06:53:33','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1819,'WHITE CAP CAN 500ML','',1.00,'2023-03-24 06:54:33','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1820,'SAFARI WATER 1L','',2.00,'2023-03-24 20:11:02','0.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1821,'TUSKER CIDER CAN 500ML','',2.00,'2023-03-24 21:29:48','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1822,'WHITE CAP CAN 500ML','',14.00,'2023-03-24 22:05:09','0.00','12','newstock','1','','',190.38,'','1','14','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1823,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-03-24 22:10:33','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1824,'KERINGET 1LTR','',2.00,'2023-03-25 00:14:08','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1825,'DELMONTE PASSION FRUIT','',1.00,'2023-03-25 02:03:57','2.00','12','newstock','1','','',205.00,'','1','3','internal','1','024000191667','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1826,'KERINGET 1LTR','',1.00,'2023-03-25 02:04:28','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1827,'SMIRNOFF GUARANA 330ML','',4.00,'2023-03-25 02:46:33','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1828,'BIRDS& BEES SWEET PINK MOSCATO','',1.00,'2023-03-25 04:07:14','0.00','12','newstock','1','','',985.00,'','1','1','internal','1','7798039598126','','',0.00,'','1700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1829,'TUSKER LITE CAN 500ML','',6.00,'2023-03-25 11:51:57','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1830,'SMIRNOFF GUARANA 330ML','',1.00,'2023-03-25 14:48:24','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1831,'CAPTAIN MORGAN 750ML','',1.00,'2023-03-25 22:43:21','0.00','12','newstock','1','','',788.00,'','1','1','internal','1','6161101604543','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1832,'GORDONS PINK GIN 700ML','',3.00,'2023-03-25 23:36:24','0.00','12','newstock','1','','',1900.00,'','1','3','internal','1','5000289929417','','',0.00,'','3000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1833,'TUSKER LAGER CAN 500ML','',7.00,'2023-03-26 12:59:15','5.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1834,'TUSKER LITE CAN 500ML','',6.00,'2023-03-26 12:59:31','0.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1835,'SMIRNOFF GUARANA 330ML','',6.00,'2023-03-27 19:03:25','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1836,'SMIRNOFF BLACK ICE 330ML CAN','',6.00,'2023-03-27 19:03:49','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1837,'GUINNESS CAN 500ML','',12.00,'2023-03-27 19:04:27','0.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1838,'WHITE CAP CAN 500ML','',20.00,'2023-03-27 19:04:50','4.00','12','newstock','1','','',190.38,'','1','24','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1839,'TUSKER LITE CAN 500ML','',24.00,'2023-03-27 19:05:13','0.00','12','newstock','1','','',198.45,'','1','24','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1840,'TUSKER MALT CAN 500ML','',2.00,'2023-03-27 19:05:32','4.00','12','newstock','1','','',198.45,'','1','6','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1841,'TUSKER CIDER CAN 500ML','',6.00,'2023-03-27 19:05:51','0.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1842,'GILBEYS GIN 350ML','',8.00,'2023-03-27 19:06:09','2.00','12','newstock','1','','',586.00,'','1','10','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1843,'GILBEYS GIN 250ML','',10.00,'2023-03-27 19:06:51','0.00','12','newstock','1','','',418.00,'','1','10','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1844,'CHROME VODKA 750ML','',6.00,'2023-03-27 19:07:17','4.00','12','newstock','1','','',501.00,'','1','10','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1845,'CHROME GIN 250ML','',8.00,'2023-03-27 19:08:03','2.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1846,'CHROME VODKA 250ML','',7.00,'2023-03-27 19:08:25','3.00','12','newstock','1','','',192.00,'','1','10','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1847,'KERINGET 1LTR','',24.00,'2023-03-27 19:11:36','0.00','12','newstock','1','','',74.58,'','1','24','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1848,'GORDON','',1.00,'2023-03-28 05:48:55','1.00','12','newstock','1','','',168.00,'','1','2','internal','1','6161101606721','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1849,'TUSKER LAGER CAN 500ML','',1.00,'2023-03-29 04:32:56','2.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1850,'SMIRNOFF RED 750ML','',1.00,'2023-03-29 04:55:13','0.00','12','newstock','1','','',1144.00,'','1','1','internal','1','6161101600934','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1851,'CAPTAIN MORGAN GOLD 250ML','',1.00,'2023-03-30 22:39:54','0.00','12','newstock','1','','',284.00,'','1','1','internal','1','6161101604550','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1852,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-03-30 22:56:36','6.00','12','newstock','1','','',150.45,'','1','7','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1853,'SMIRNOFF RED 350ML','',1.00,'2023-03-30 22:57:47','0.00','12','newstock','1','','',544.00,'','1','1','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1854,'BLACK & WHITE 350ML','',1.00,'2023-04-02 02:31:41','0.00','12','newstock','1','','',443.00,'','1','1','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1855,'MINUTE MAID APPLE 400ML','',1.00,'2023-04-03 03:43:48','0.00','12','newstock','1','','',59.67,'','1','1','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1856,'DELMONTE MANGO 1LTR','',1.00,'2023-04-04 23:27:35','0.00','12','newstock','1','','',205.00,'','1','1','internal','1','024000150152','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1857,'GILBEYS GIN 350ML','',1.00,'2023-04-05 23:11:49','6.00','12','newstock','1','','',586.00,'','1','7','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1858,'SMIRNOFF GUARANA 330ML','',1.00,'2023-04-06 23:28:22','1.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1859,'BALOZI LAGER CAN 500ML','',1.00,'2023-04-06 23:54:21','1.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1860,'GUINNESS CAN 500ML','',2.00,'2023-04-07 06:08:38','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1861,'HEINEKEN CAN 500ML','',1.00,'2023-04-07 23:22:15','1.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1862,'DASANI 500ML','',4.00,'2023-04-07 23:22:28','0.00','12','newstock','1','','',23.00,'','1','4','internal','1','87303322','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1863,'SMIRNOFF GUARANA 330ML','',2.00,'2023-04-08 00:23:46','0.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1864,'SMIRNOFF GUARANA 330ML','',3.00,'2023-04-08 00:24:32','0.00','12','newstock','1','','',150.45,'','1','3','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1865,'JW RED 750ML','',2.00,'2023-04-08 00:41:20','0.00','12','newstock','1','','',1465.00,'','1','2','internal','1','5000267014005','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1866,'SMIRNOFF GUARANA 330ML','',4.00,'2023-04-08 00:43:09','2.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1867,'TUSKER MALT CAN 500ML','',2.00,'2023-04-08 01:15:39','0.00','12','newstock','1','','',198.45,'','1','2','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1868,'CAPTAIN MORGAN 750ML','',1.00,'2023-04-08 02:40:16','0.00','12','newstock','1','','',788.00,'','1','1','internal','1','6161101604543','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1869,'GUINNESS CAN 500ML','',2.00,'2023-04-08 03:15:57','0.00','12','newstock','1','','',189.75,'','1','2','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1870,'BLACK &WHITE 1L','',1.00,'2023-04-08 06:50:07','0.00','12','newstock','1','','',1130.00,'','1','1','internal','1','50196081','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1871,'GORDONS DRY GIN 750ML','',2.00,'2023-04-08 09:11:04','0.00','12','newstock','1','','',1900.00,'','1','2','internal','1','5000289020701','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1872,'CHROME GIN 750ML','',7.00,'2023-04-08 09:11:38','1.00','12','newstock','1','','',501.00,'','1','8','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1873,'GORDONS SICILIAN LEMON 700ML','',1.00,'2023-04-08 09:12:02','0.00','12','newstock','1','','',1540.00,'','1','1','internal','1','5000289932479','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1874,'BALOZI LAGER CAN 500ML','',12.00,'2023-04-08 09:12:19','0.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1875,'GORDON','',6.00,'2023-04-08 09:12:46','0.00','12','newstock','1','','',168.00,'','1','6','internal','1','6161101606721','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1876,'WHITE CAP CRISP CAN','',12.00,'2023-04-08 09:13:14','0.00','12','newstock','1','','',159.00,'','1','12','internal','1','6161101606820','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1877,'SMIRNOFF BLACK ICE 330ML CAN','',9.00,'2023-04-08 09:13:55','3.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1878,'SNAPP 330ML CAN','',6.00,'2023-04-08 09:14:10','6.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101602433','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1879,'PILSNER CAN 500ML','',12.00,'2023-04-08 09:14:24','0.00','12','newstock','1','','',154.95,'','1','12','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1880,'TUSKER LAGER CAN 500ML','',12.00,'2023-04-08 09:14:41','0.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1881,'TUSKER CIDER CAN 500ML','',12.00,'2023-04-08 09:15:03','0.00','12','newstock','1','','',181.71,'','1','12','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1882,'VAT 69 750ML','',2.00,'2023-04-08 09:15:31','0.00','12','newstock','1','','',1141.00,'','1','2','internal','1','5000292001001','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1883,'VAT 69 375ML','',2.00,'2023-04-08 09:16:20','3.00','12','newstock','1','','',635.00,'','1','5','internal','1','6161101601115','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1884,'BLACK & WHITE 350ML','',4.00,'2023-04-08 09:16:56','0.00','12','newstock','1','','',443.00,'','1','4','internal','1','50196166','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1885,'KENYA CANE 750ML','',2.00,'2023-04-08 09:17:22','1.00','12','newstock','1','','',653.00,'','1','3','internal','1','5010103930833','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1886,'KENYA CANE 350ML','',3.00,'2023-04-08 09:17:46','0.00','12','newstock','1','','',335.00,'','1','3','internal','1','5010103930840','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1887,'JW BLACK LABEL 1L','',1.00,'2023-04-08 09:18:57','0.00','12','newstock','1','','',3540.00,'','1','1','internal','1','5000267125046','','',0.00,'','5300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1888,'JW BLACK LABEL 750ML','',2.00,'2023-04-08 09:19:21','0.00','12','newstock','1','','',2835.00,'','1','2','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1889,'kenya cane 250ml','',1.00,'2023-04-08 09:20:35','3.00','12','newstock','1','','',247.00,'','1','4','internal','1','6161101602211','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1890,'SMIRNOFF RED 750ML','',2.00,'2023-04-08 09:20:59','0.00','12','newstock','1','','',1144.00,'','1','2','internal','1','6161101600934','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1891,'SMIRNOFF RED 750ML','',3.00,'2023-04-08 09:21:23','2.00','12','newstock','1','','',1144.00,'','1','5','internal','1','6161101600934','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1892,'SMIRNOFF RED 1L','',1.00,'2023-04-08 09:21:45','0.00','12','newstock','1','','',1417.00,'','1','1','internal','1','6161101600927','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1893,'RICHOT BRANDY 750ML','',3.00,'2023-04-08 09:22:25','7.00','12','newstock','1','','',1125.00,'','1','10','internal','1','5010103930864','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1894,'BAILEYS ORIGINAL 750ML','',1.00,'2023-04-08 09:22:45','0.00','12','newstock','1','','',1916.00,'','1','1','internal','1','5011013100132','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1895,'J&B RARE 750ML','',1.00,'2023-04-08 09:23:21','0.00','12','newstock','1','','',1353.00,'','1','1','internal','1','5010103800303','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1896,'BLACK & WHITE 750ML','',3.00,'2023-04-08 09:23:47','0.00','12','newstock','1','','',855.00,'','1','3','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1897,'CHROME VODKA 250ML','',9.00,'2023-04-08 09:24:19','3.00','12','newstock','1','','',192.00,'','1','12','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1898,'CHROME VODKA 750ML','',5.00,'2023-04-08 09:27:22','9.00','12','newstock','1','','',501.00,'','1','14','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1899,'CAPTAIN MORGAN GOLD 250ML','',4.00,'2023-04-08 09:27:53','0.00','12','newstock','1','','',284.00,'','1','4','internal','1','6161101604550','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1900,'TRIPLE ACE VODKA 250ML','',6.00,'2023-04-08 09:28:18','2.00','12','newstock','1','','',192.00,'','1','8','internal','1','6161101604864','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1901,'HEINEKEN CAN 500ML','',2.00,'2023-04-08 12:17:48','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1902,'HEINEKEN GLASS300ML','',24.00,'2023-04-08 12:23:50','0.00','12','newstock','1','','',214.00,'','1','24','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1903,'HEINEKEN CAN 500ML','',16.00,'2023-04-08 12:25:31','0.00','12','newstock','1','','',182.00,'','1','16','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1904,'MINUTE MAID TROPICAL 1L','',4.00,'2023-04-08 20:42:07','0.00','12','newstock','1','','',125.00,'','1','4','internal','1','40262144','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1905,'MONSTER MULE','',8.00,'2023-04-08 20:42:39','0.00','12','newstock','1','','',153.00,'','1','8','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1906,'JAGERMEISTER 700ML','',1.00,'2023-04-08 20:55:37','0.00','12','newstock','1','','',1850.00,'','1','1','internal','1','4067700014559','','',0.00,'','3600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1907,'TONIC WATER 500ML','',8.00,'2023-04-08 20:57:14','0.00','12','newstock','1','','',53.33,'','1','8','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1908,'DASANI WATER 1L','',8.00,'2023-04-08 20:57:47','0.00','12','newstock','1','','',49.00,'','1','8','internal','1','5449000014536','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1909,'TUSKER MALT CAN 500ML','',4.00,'2023-04-08 21:42:05','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1910,'SMIRNOFF GUARANA 330ML','',6.00,'2023-04-08 21:42:30','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1911,'WHITE CAP CAN 500ML','',10.00,'2023-04-08 21:59:30','0.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1912,'GUINNESS CAN 500ML','',10.00,'2023-04-09 00:52:33','0.00','12','newstock','1','','',189.75,'','1','10','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1913,'VICEROY 250ML','',2.00,'2023-04-09 01:28:19','0.00','12','newstock','1','','',425.00,'','1','2','internal','1','6001108016034','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1914,'MINUTE MAID APPLE 400ML','',1.00,'2023-04-09 14:51:16','0.00','12','newstock','1','','',59.67,'','1','1','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1915,'HUNTERS CHOICE 250ML','',1.00,'2023-04-11 00:49:46','0.00','12','newstock','1','','',290.00,'','1','1','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1916,'MINUTE MAID APPLE 400ML','',6.00,'2023-04-11 13:25:31','0.00','12','newstock','1','','',59.67,'','1','6','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1917,'4TH STREET SWEET WHITE750ML','',1.00,'2023-04-11 21:20:03','0.00','12','newstock','1','','',810.00,'','1','1','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1918,'SMIRNOFF GUARANA 330ML','',6.00,'2023-04-11 23:45:57','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1919,'4TH STREET SWEET RED 750ML','',1.00,'2023-04-12 15:56:49','0.00','12','newstock','1','','',810.00,'','1','1','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1920,'JAGERMEISTER 1L','',1.00,'2023-04-13 18:42:06','0.00','12','newstock','1','','',3350.00,'','1','1','internal','1','4067700014535','','',0.00,'','5200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1921,'TUSKER MALT CAN 500ML','',4.00,'2023-04-13 18:47:18','0.00','12','newstock','1','','',198.45,'','1','4','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1922,'GORDONS DRY GIN 750ML','',1.00,'2023-04-13 18:57:51','1.00','12','newstock','1','','',1900.00,'','1','2','internal','1','5000289020701','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1923,'GORDONS SICILIAN LEMON 700ML','',1.00,'2023-04-13 19:12:05','1.00','12','newstock','1','','',1840.00,'','1','2','internal','1','5000289932479','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1924,'GILBEYS GIN 750ML','',4.00,'2023-04-13 19:12:27','0.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1925,'JW DOUBLE BLACK 1L','',2.00,'2023-04-13 19:12:53','0.00','12','newstock','1','','',5120.00,'','1','2','internal','1','5000267112077','','',0.00,'','7000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1926,'BAILEYS ORIGINAL 1L','',2.00,'2023-04-13 19:14:29','0.00','12','newstock','1','','',2560.00,'','1','2','internal','1','5011013100118','','',0.00,'','3700','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1927,'BAILEYS ORIGINAL 375ML','',2.00,'2023-04-13 19:14:52','0.00','12','newstock','1','','',1040.00,'','1','2','internal','1','5011013100194','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1928,'FRAGOLINO RED SPARKLING WINE 750ML','',2.00,'2023-04-14 14:20:08','0.00','12','newstock','1','','',1050.00,'','1','2','internal','1','8000530300474','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1929,'ROOIBERG RED MUSCADEL 750ML','',2.00,'2023-04-14 14:20:40','0.00','12','newstock','1','','',1110.00,'','1','2','internal','1','6002886000277','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1930,'CUVEE BRUT SPARKLING WINE 750ML','',2.00,'2023-04-14 14:21:34','0.00','12','newstock','1','','',1050.00,'','1','2','internal','1','8000530800783','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1931,'SAVANNA DRY CIDER 330ML','',3.00,'2023-04-14 18:42:45','0.00','12','newstock','1','','',201.00,'','1','3','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1932,'TUSKER LAGER CAN 500ML','',3.00,'2023-04-14 19:18:34','1.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1933,'TUSKER LAGER CAN 500ML','',6.00,'2023-04-15 18:01:14','0.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1934,'SAVANNA DRY CIDER 330ML','',5.00,'2023-04-15 18:01:35','0.00','12','newstock','1','','',201.00,'','1','5','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1935,'SAVANNA DRY CIDER 330ML','',1.00,'2023-04-15 18:04:53','5.00','12','newstock','1','','',201.00,'','1','6','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1936,'DESPARADO ORIGINAL 330ML','',2.00,'2023-04-15 18:09:38','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1937,'SAVANNA DRY CIDER 330ML','',7.00,'2023-04-15 18:11:24','0.00','12','newstock','1','','',201.00,'','1','7','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1938,'DESPARADO ORIGINAL 330ML','',6.00,'2023-04-15 18:11:40','0.00','12','newstock','1','','',188.00,'','1','6','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1939,'4TH STREET SWEET RED 750ML','',1.00,'2023-04-15 19:31:35','0.00','12','newstock','1','','',810.00,'','1','1','internal','1','6001108049582','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1940,'4TH STREET SWEET WHITE750ML','',1.00,'2023-04-15 19:34:13','0.00','12','newstock','1','','',810.00,'','1','1','internal','1','6001108049599','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1941,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-04-15 20:52:52','1.00','12','newstock','1','','',150.45,'','1','2','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1942,'TUSKER MALT CAN 500ML','',1.00,'2023-04-15 22:13:54','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1943,'COKE ZERO 500ML','',1.00,'2023-04-15 22:14:20','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1944,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-04-16 23:27:49','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1945,'COKE ZERO 500ML','',1.00,'2023-04-16 23:51:02','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1946,'BIANCO NOBILE VANILLA 750ML','',2.00,'2023-04-18 00:07:11','0.00','12','newstock','1','','',1150.00,'','1','2','internal','1','4058387000317','','',0.00,'','1550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1947,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-04-18 00:48:21','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1948,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-04-18 21:52:21','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1949,'TONIC WATER 500ML','',5.00,'2023-04-18 22:35:33','0.00','12','newstock','1','','',53.33,'','1','5','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1950,'COKE ZERO 500ML','',1.00,'2023-04-18 22:36:20','0.00','12','newstock','1','','',53.33,'','1','1','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1951,'CHROME GIN 250ML','',1.00,'2023-04-19 22:32:38','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1952,'JW BLACK LABEL 375ML','',1.00,'2023-04-20 00:58:16','0.00','12','newstock','1','','',1406.00,'','1','1','internal','1','5000267024608','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1953,'HUNTERS CHOICE 250ML','',1.00,'2023-04-20 01:05:56','0.00','12','newstock','1','','',290.00,'','1','1','internal','1','6161100420786','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1954,'HEINEKEN GLASS300ML','',7.00,'2023-04-20 02:29:53','11.00','12','newstock','1','','',214.00,'','1','18','internal','1','8712000900663','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1955,'CAPTAIN MORGAN 750ML','',3.00,'2023-04-20 12:57:19','0.00','12','newstock','1','','',788.00,'','1','3','internal','1','6161101604543','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1956,'CAPTAIN MORGAN GOLD 250ML','',2.00,'2023-04-20 12:57:43','0.00','12','newstock','1','','',284.00,'','1','2','internal','1','6161101604550','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1957,'THE SINGLETON 18YRS 700ML','',1.00,'2023-04-20 12:58:46','0.00','12','newstock','1','','',8000.00,'','1','1','internal','1','5000281028620','','',0.00,'','11000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1958,'KIBAO 250ML','',1.00,'2023-04-20 13:53:05','0.00','12','newstock','1','','',198.00,'','1','1','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1959,'BEST WHISKY 750ML','',1.00,'2023-04-20 18:01:27','0.00','12','newstock','1','','',787.00,'','1','1','internal','1','6161100421509','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1960,'BAILEYS ORIGINAL 375ML','5011013100194',1.00,'2023-04-20 20:27:48','1.00','12','newstock','1','','',0.00,'','1','2','1','1','5011013100194','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1961,'WHITE CAP CAN 500ML','',6.00,'2023-04-20 22:25:12','1.00','12','newstock','1','','',190.38,'','1','7','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1962,'TUSKER MALT CAN 500ML','',1.00,'2023-04-21 03:05:30','0.00','12','newstock','1','','',198.45,'','1','1','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1963,'TUSKER LAGER CAN 500ML','',1.00,'2023-04-21 03:05:47','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1964,'GENERAL MEAKINS 250ML','',1.00,'2023-04-21 03:41:01','9.00','12','newstock','1','','',197.00,'','1','10','internal','1','6161101561532','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1965,'CHROME GIN 250ML','',2.00,'2023-04-21 03:41:44','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1966,'WHITE CAP CAN 500ML','',2.00,'2023-04-21 04:46:04','0.00','12','newstock','1','','',190.38,'','1','2','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1967,'KERINGET 1LTR','',6.00,'2023-04-21 21:03:57','0.00','12','newstock','1','','',74.58,'','1','6','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1968,'MINUTE MAID APPLE 400ML','',3.00,'2023-04-21 21:05:18','0.00','12','newstock','1','','',59.67,'','1','3','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1969,'WHITE CAP CAN 500ML','',1.00,'2023-04-22 00:22:26','0.00','12','newstock','1','','',190.38,'','1','1','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1970,'TUSKER LAGER CAN 500ML','',3.00,'2023-04-22 02:06:21','0.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1971,'GILBEYS GIN 750ML','',1.00,'2023-04-23 10:49:03','1.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1972,'MINUTE MAID APPLE 400ML','',5.00,'2023-04-23 10:49:42','1.00','12','newstock','1','','',59.67,'','1','6','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1973,'SMIRNOFF BLACK ICE 330ML CAN','',1.00,'2023-04-23 10:50:07','0.00','12','newstock','1','','',150.45,'','1','1','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1974,'KWV CHARDONAY BLANC 750ML','',1.00,'2023-04-23 20:59:12','0.00','12','newstock','1','','',1325.00,'','1','1','internal','1','6002323413530','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1975,'TUSKER LAGER CAN 500ML','',6.00,'2023-04-23 21:53:41','0.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1976,'SMIRNOFF RED 350ML','',2.00,'2023-04-23 21:54:24','0.00','12','newstock','1','','',544.00,'','1','2','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1977,'TUSKER LAGER CAN 500ML','',1.00,'2023-04-23 23:21:49','0.00','12','newstock','1','','',172.75,'','1','1','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1978,'HEINEKEN CAN 500ML','',2.00,'2023-04-23 23:48:37','3.00','12','newstock','1','','',182.00,'','1','5','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1979,'TONIC WATER 500ML','',2.00,'2023-04-23 23:49:25','1.00','12','newstock','1','','',53.33,'','1','3','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1980,'COKE ZERO 500ML','',4.00,'2023-04-24 00:25:27','0.00','12','newstock','1','','',53.33,'','1','4','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1981,'HEINEKEN CAN 500ML','',1.00,'2023-04-24 00:41:43','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1982,'SMIRNOFF GUARANA 330ML','',12.00,'2023-04-24 16:55:52','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1983,'TUSKER LAGER CAN 500ML','',12.00,'2023-04-24 16:56:10','0.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1984,'GUINNESS CAN 500ML','',11.00,'2023-04-24 16:56:30','1.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1985,'WHITE CAP CAN 500ML','',12.00,'2023-04-24 16:56:46','0.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1986,'TUSKER LITE CAN 500ML','',17.00,'2023-04-24 16:57:05','3.00','12','newstock','1','','',198.45,'','1','20','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1987,'TUSKER MALT CAN 500ML','',12.00,'2023-04-24 16:57:23','0.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1988,'VAT 69 375ML','',1.00,'2023-04-24 16:57:52','5.00','12','newstock','1','','',635.00,'','1','6','internal','1','6161101601115','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1989,'V&A 750ML','',2.00,'2023-04-24 16:58:33','0.00','12','newstock','1','','',711.00,'','1','2','internal','1','6161101130424','','',0.00,'','1300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1990,'GILBEYS GIN 750ML','',3.00,'2023-04-24 16:58:48','0.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1991,'JW BLACK LABEL 750ML','',1.00,'2023-04-24 16:59:36','1.00','12','newstock','1','','',2835.00,'','1','2','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1992,'BLACK &WHITE 1L','',2.00,'2023-04-24 16:59:52','0.00','12','newstock','1','','',1130.00,'','1','2','internal','1','50196081','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1993,'CHROME VODKA 250ML','',2.00,'2023-04-24 17:00:24','3.00','12','newstock','1','','',192.00,'','1','5','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1994,'CAPTAIN MORGAN GOLD 250ML','',4.00,'2023-04-24 17:00:46','1.00','12','newstock','1','','',284.00,'','1','5','internal','1','6161101604550','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1995,'CHROME GIN 250ML','',3.00,'2023-04-24 17:01:21','2.00','12','newstock','1','','',182.00,'','1','5','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1996,'DESPARADO ORIGINAL 330ML','',2.00,'2023-04-24 18:21:28','0.00','12','newstock','1','','',188.00,'','1','2','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1997,'DESPARADO ORIGINAL 330ML','',4.00,'2023-04-24 19:28:43','1.00','12','newstock','1','','',188.00,'','1','5','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1998,'BIANCO NOBILE VANILLA 750ML','',6.00,'2023-04-24 19:30:48','1.00','12','newstock','1','','',1350.00,'','1','7','internal','1','4058387000317','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(1999,'ROSSO NOBILE AL CIOCCOLATA 750ML','',6.00,'2023-04-24 19:31:19','2.00','12','newstock','1','','',1350.00,'','1','8','internal','1','3263280124362','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2000,'WHITE CAP CAN 500ML','',1.00,'2023-04-24 20:39:16','9.00','12','newstock','1','','',190.38,'','1','10','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2001,'KERINGET 1LTR','',1.00,'2023-04-24 21:13:42','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2002,'BEST WHISKY 750ML','',1.00,'2023-04-24 23:10:00','0.00','12','newstock','1','','',787.00,'','1','1','internal','1','6161100421509','','',0.00,'','1350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2003,'BALOZI LAGER CAN 500ML','',2.00,'2023-04-25 22:44:13','2.00','12','newstock','1','','',172.83,'','1','4','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2004,'HEINEKEN CAN 500ML','',1.00,'2023-04-25 23:15:32','1.00','12','newstock','1','','',182.00,'','1','2','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2005,'KERINGET 1LTR','',4.00,'2023-04-26 02:04:27','0.00','12','newstock','1','','',74.58,'','1','4','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2006,'ELECTIO CHARDONNAY 750ML','',3.00,'2023-04-26 02:05:43','1.00','12','newstock','1','','',900.00,'','1','4','internal','1','4840709004338','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2007,'SAFARI WATER 1L','',1.00,'2023-04-26 17:55:49','1.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2008,'MARTEL VSOP 750ML','',2.00,'2023-04-26 18:26:47','0.00','12','newstock','1','','',8000.00,'','1','2','internal','1','3219820005899','','',0.00,'','11000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2009,'GRANT','',1.00,'2023-04-26 18:29:53','1.00','12','newstock','1','','',1600.00,'','1','2','internal','1','5010327000046','','',0.00,'','2300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2010,'SAFARI WATER 1L','',10.00,'2023-04-26 18:32:39','0.00','12','newstock','1','','',38.00,'','1','10','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2011,'BALOZI LAGER CAN 500ML','',2.00,'2023-04-26 21:56:41','0.00','12','newstock','1','','',172.83,'','1','2','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2012,'VICEROY 375ML','',1.00,'2023-04-27 03:54:34','0.00','12','newstock','1','','',610.00,'','1','1','internal','1','6001496011772','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2013,'SODA WATER 500ML','',2.00,'2023-04-27 22:10:08','0.00','12','newstock','1','','',53.33,'','1','2','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2014,'SMIRNOFF RED 350ML','',1.00,'2023-04-27 22:11:29','0.00','12','newstock','1','','',544.00,'','1','1','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2015,'JW BLACK LABEL 375ML','',2.00,'2023-04-28 18:04:59','0.00','12','newstock','1','','',1406.00,'','1','2','internal','1','5000267024608','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2016,'BALOZI LAGER CAN 500ML','',11.00,'2023-04-28 18:05:27','1.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2017,'WHITE CAP CRISP CAN','',6.00,'2023-04-28 18:06:08','3.00','12','newstock','1','','',159.00,'','1','9','internal','1','6161101606820','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2018,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2023-04-28 18:06:32','0.00','12','newstock','1','','',150.45,'','1','12','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2019,'SMIRNOFF GUARANA 330ML','',6.00,'2023-04-28 18:08:00','8.00','12','newstock','1','','',150.45,'','1','14','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2020,'TUSKER LAGER CAN 500ML','',12.00,'2023-04-28 18:08:24','2.00','12','newstock','1','','',172.75,'','1','14','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2021,'GUINNESS CAN 500ML','',18.00,'2023-04-28 18:08:55','0.00','12','newstock','1','','',189.75,'','1','18','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2022,'WHITE CAP CAN 500ML','',17.00,'2023-04-28 18:09:18','1.00','12','newstock','1','','',190.38,'','1','18','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2023,'TUSKER MALT CAN 500ML','',8.00,'2023-04-28 18:10:16','4.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2024,'GILBEYS GIN 350ML','',5.00,'2023-04-28 18:10:45','2.00','12','newstock','1','','',576.00,'','1','7','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2025,'GILBEYS GIN 750ML','',1.00,'2023-04-28 18:11:09','3.00','12','newstock','1','','',1125.00,'','1','4','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2026,'GILBEYS GIN 250ML','',1.00,'2023-04-28 18:12:24','5.00','12','newstock','1','','',418.00,'','1','6','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2027,'CHROME VODKA 250ML','',8.00,'2023-04-28 18:13:03','2.00','12','newstock','1','','',192.00,'','1','10','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2028,'CHROME GIN 250ML','',5.00,'2023-04-28 18:13:51','1.00','12','newstock','1','','',182.00,'','1','6','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2029,'REDBULL','',2.00,'2023-04-28 19:18:12','2.00','12','newstock','1','','',147.00,'','1','4','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2030,'COKE ZERO 500ML','',1.00,'2023-04-28 19:19:47','2.00','12','newstock','1','','',53.33,'','1','3','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2031,'TUSKER LITE CAN 500ML','',2.00,'2023-04-28 20:57:27','16.00','12','newstock','1','','',198.45,'','1','18','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2032,'SMIRNOFF RED 250ML','',1.00,'2023-04-28 20:58:08','0.00','12','newstock','1','','',392.00,'','1','1','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2033,'TOP SECRET WHISKY 750ML','',1.00,'2023-04-28 20:59:06','0.00','12','newstock','1','','',740.00,'','1','1','internal','1','6161101560108','','',0.00,'','1100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2034,'SAVANNA DRY CIDER 330ML','',2.00,'2023-04-28 22:48:40','2.00','12','newstock','1','','',201.00,'','1','4','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2035,'PILSNER CAN 500ML','',4.00,'2023-04-28 22:49:23','1.00','12','newstock','1','','',154.95,'','1','5','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2036,'KIBAO 250ML','',1.00,'2023-04-28 23:46:01','0.00','12','newstock','1','','',198.00,'','1','1','internal','1','6161100420823','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2037,'TUSKER CIDER CAN 500ML','',2.00,'2023-04-29 02:19:44','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2038,'HEINEKEN CAN 500ML','',1.00,'2023-04-29 05:00:53','0.00','12','newstock','1','','',182.00,'','1','1','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2039,'TUSKER CIDER CAN 500ML','',3.00,'2023-04-29 17:08:32','1.00','12','newstock','1','','',181.71,'','1','4','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2040,'KERINGET 1LTR','',1.00,'2023-04-29 21:54:47','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2041,'MONSTER MULE','',3.00,'2023-04-29 21:55:19','0.00','12','newstock','1','','',153.00,'','1','3','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2042,'KERINGET 1LTR','',2.00,'2023-04-29 23:07:47','0.00','12','newstock','1','','',74.58,'','1','2','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2043,'THE SINGLETON 12YRS 700ML','',1.00,'2023-04-30 00:29:16','0.00','12','newstock','1','','',4450.00,'','1','1','internal','1','5000281021621','','',0.00,'','6500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2044,'MONSTER MULE','',1.00,'2023-04-30 00:58:33','0.00','12','newstock','1','','',153.00,'','1','1','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2045,'SINGLETON 15YRS','',1.00,'2023-04-30 04:29:57','0.00','12','newstock','1','','',6000.00,'','1','1','internal','1','5000281026626','','',0.00,'','8200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2046,'REDBULL','',2.00,'2023-04-30 04:30:41','0.00','12','newstock','1','','',147.00,'','1','2','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2047,'DESPARADO ORIGINAL 330ML','',5.00,'2023-04-30 04:31:25','1.00','12','newstock','1','','',188.00,'','1','6','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2048,'MINUTE MAID MANGO 400ML','',4.00,'2023-04-30 15:53:29','0.00','12','newstock','1','','',68.00,'','1','4','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2049,'HEINEKEN CAN 500ML','',3.00,'2023-04-30 18:13:18','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2050,'DESPARADO ORIGINAL 330ML','',1.00,'2023-04-30 19:53:28','2.00','12','newstock','1','','',188.00,'','1','3','internal','1','3155930006015','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2051,'MINUTE MAID APPLE 400ML','',2.00,'2023-04-30 23:15:41','0.00','12','newstock','1','','',59.67,'','1','2','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2052,'JACK DANIELS 700ML','',1.00,'2023-04-30 23:23:19','0.00','12','newstock','1','','',2600.00,'','1','1','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2053,'JACK DANIELS 700ML','',1.00,'2023-04-30 23:23:31','1.00','12','newstock','1','','',2600.00,'','1','2','internal','1','082184090473','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2054,'MONSTER MULE','',1.00,'2023-05-01 02:29:26','0.00','12','newstock','1','','',153.00,'','1','1','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2055,'TUSKER LAGER CAN 500ML','',3.00,'2023-05-02 22:57:53','1.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2056,'PILSNER CAN 500ML','',1.00,'2023-05-03 01:38:29','0.00','12','newstock','1','','',154.95,'','1','1','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2057,'REDBULL','',3.00,'2023-05-03 02:54:13','0.00','12','newstock','1','','',147.00,'','1','3','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2058,'SAFARI WATER 1L','',2.00,'2023-05-03 10:04:12','0.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2059,'SAFARI WATER 1L','',1.00,'2023-05-03 20:00:17','1.00','12','newstock','1','','',38.00,'','1','2','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2060,'PILSNER CAN 500ML','',6.00,'2023-05-03 21:44:48','0.00','12','newstock','1','','',154.95,'','1','6','internal','1','6161101602600','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2061,'SODA WATER 500ML','',3.00,'2023-05-03 22:45:03','0.00','12','newstock','1','','',53.33,'','1','3','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2062,'WHITE CAP CAN 500ML','',4.00,'2023-05-04 01:05:19','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2063,'TUSKER CIDER CAN 500ML','',2.00,'2023-05-04 02:56:07','0.00','12','newstock','1','','',181.71,'','1','2','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2064,'TUSKER LAGER CAN 500ML','',4.00,'2023-05-04 18:39:57','1.00','12','newstock','1','','',172.75,'','1','5','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2065,'SAFARI WATER 1L','',3.00,'2023-05-04 18:40:39','0.00','12','newstock','1','','',38.00,'','1','3','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2066,'BALOZI LAGER CAN 500ML','',6.00,'2023-05-04 20:48:18','3.00','12','newstock','1','','',172.83,'','1','9','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2067,'SMIRNOFF RED 250ML','',1.00,'2023-05-05 02:27:03','0.00','12','newstock','1','','',392.00,'','1','1','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2068,'SAVANNA DRY CIDER 330ML','',2.00,'2023-05-05 02:49:35','1.00','12','newstock','1','','',201.00,'','1','3','internal','1','6001108028044','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2069,'COCACOLA 1.25ML','',2.00,'2023-05-05 18:24:16','0.00','12','newstock','1','','',103.00,'','1','2','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2070,'SAFARI WATER 1L','',1.00,'2023-05-05 22:21:19','0.00','12','newstock','1','','',38.00,'','1','1','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2071,'KERINGET 500ML','',5.00,'2023-05-05 22:21:35','0.00','12','newstock','1','','',44.58,'','1','5','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2072,'PREDATOR ENERGY DRINK','',1.00,'2023-05-05 22:23:32','0.00','12','newstock','1','','',41.82,'','1','1','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2073,'TUSKER CIDER CAN 500ML','',1.00,'2023-05-05 22:33:16','0.00','12','newstock','1','','',181.71,'','1','1','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2074,'GILBEYS GIN 750ML','',1.00,'2023-05-05 23:49:51','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2075,'PREDATOR ENERGY DRINK','',3.00,'2023-05-06 01:23:26','0.00','12','newstock','1','','',41.82,'','1','3','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2076,'JW RED 750ML','',1.00,'2023-05-06 01:49:25','0.00','12','newstock','1','','',1465.00,'','1','1','internal','1','5000267014005','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2077,'VICEROY 250ML','',1.00,'2023-05-06 06:09:46','1.00','12','newstock','1','','',425.00,'','1','2','internal','1','6001108016034','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2078,'GILBEYS GIN 250ML','',2.00,'2023-05-06 08:12:45','0.00','12','newstock','1','','',418.00,'','1','2','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2079,'MINUTE MAID APPLE 400ML','',2.00,'2023-05-06 08:13:16','0.00','12','newstock','1','','',59.67,'','1','2','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2080,'SMIRNOFF BLACK ICE 330ML CAN','',5.00,'2023-05-06 08:13:33','0.00','12','newstock','1','','',150.45,'','1','5','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2081,'TUSKER LAGER CAN 500ML','',2.00,'2023-05-06 18:59:53','1.00','12','newstock','1','','',172.75,'','1','3','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2082,'SODA WATER 500ML','',4.00,'2023-05-06 20:50:44','0.00','12','newstock','1','','',53.33,'','1','4','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2083,'CARIBIA GIN 750ML','',2.00,'2023-05-06 21:21:19','0.00','12','newstock','1','','',603.00,'','1','2','internal','1','6161100421899','','',0.00,'','900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2084,'DASANI 500ML','',2.00,'2023-05-06 21:44:51','0.00','12','newstock','1','','',23.00,'','1','2','internal','1','87303322','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2085,'GILBEYS GIN 750ML','',2.00,'2023-05-06 22:28:48','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2086,'CLUBMAN MINTPUNCH','',1.00,'2023-05-06 23:07:22','0.00','12','newstock','1','','',655.00,'','1','1','internal','1','6001496566050','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2087,'MONSTER MULE','',2.00,'2023-05-07 00:08:53','0.00','12','newstock','1','','',153.00,'','1','2','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2088,'SODA WATER 500ML','',8.00,'2023-05-07 00:17:56','0.00','12','newstock','1','','',53.33,'','1','8','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2089,'DASANI 500ML','',5.00,'2023-05-07 00:29:10','1.00','12','newstock','1','','',23.00,'','1','6','internal','1','87303322','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2090,'CHROME VODKA 750ML','',1.00,'2023-05-07 00:29:45','2.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2091,'CHROME VODKA 250ML','',1.00,'2023-05-07 00:30:09','0.00','12','newstock','1','','',192.00,'','1','1','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2092,'SMIRNOFF GUARANA 330ML','',4.00,'2023-05-07 05:45:37','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2093,'TUSKER LAGER CAN 500ML','',3.00,'2023-05-07 05:47:10','1.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2094,'WHITE CAP CAN 500ML','',5.00,'2023-05-07 08:54:10','0.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2095,'SMIRNOFF RED 350ML','',1.00,'2023-05-07 14:14:46','0.00','12','newstock','1','','',544.00,'','1','1','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2096,'GILBEYS GIN MIXED BERRY 750ML','',1.00,'2023-05-07 14:15:30','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','6161101606561','','',0.00,'','1850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2097,'TUSKER MALT CAN 500ML','',2.00,'2023-05-07 23:49:59','1.00','12','newstock','1','','',198.45,'','1','3','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2098,'GILBEYS GIN MIXED BERRY 750ML','',1.00,'2023-05-08 02:24:26','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','6161101606561','','',0.00,'','1850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2099,'JAMESON 350ML','',2.00,'2023-05-09 20:22:53','0.00','12','newstock','1','','',920.00,'','1','2','internal','1','5011007003654','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2100,'BALOZI LAGER CAN 500ML','',6.00,'2023-05-09 22:36:11','0.00','12','newstock','1','','',172.83,'','1','6','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2101,'TUSKER LAGER CAN 500ML','',5.00,'2023-05-09 22:36:58','1.00','12','newstock','1','','',172.75,'','1','6','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2102,'CASILLERO DEL SAUVIGNON 750ML','',1.00,'2023-05-10 20:46:26','2.00','12','newstock','1','','',1200.00,'','1','3','internal','1','7804320303178','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2103,'CASILLERO DEL SAUVIGNON 750ML','',1.00,'2023-05-10 20:47:06','3.00','12','newstock','1','','',1200.00,'','1','4','internal','1','7804320303178','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2104,'CASILLERO DEL DIABLO BLANC 750ML','',1.00,'2023-05-10 20:50:50','0.00','12','newstock','1','','',1200.00,'','1','1','internal','1','7804320301174','','',0.00,'','2000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2105,'COCACOLA 1.25ML','',6.00,'2023-05-10 21:59:11','0.00','12','newstock','1','','',103.00,'','1','6','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2106,'KERINGET 500ML','',5.00,'2023-05-11 00:54:46','0.00','12','newstock','1','','',44.58,'','1','5','internal','1','5018907197803','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2107,'SMIRNOFF RED 250ML','',3.00,'2023-05-11 03:08:11','0.00','12','newstock','1','','',392.00,'','1','3','internal','1','6161101602051','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2108,'ELECTIO CHARDONNAY 750ML','',1.00,'2023-05-11 21:13:33','0.00','12','newstock','1','','',900.00,'','1','1','internal','1','4840709004338','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2109,'NEDERBURG SAUVIGNON BLANC 750ML','',1.00,'2023-05-11 21:14:02','0.00','12','newstock','1','','',1150.00,'','1','1','internal','1','6001452258005','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2110,'TONIC WATER 500ML','',12.00,'2023-05-13 02:57:54','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','50112265','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2111,'MINUTE MAID APPLE 400ML','',11.00,'2023-05-13 02:58:15','1.00','12','newstock','1','','',59.67,'','1','12','internal','1','5449000188342','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2112,'SPRITE 500ML','',12.00,'2023-05-13 02:58:32','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','54491069','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2113,'SAFARI LEMONADE','',8.00,'2023-05-13 02:59:15','4.00','12','newstock','1','','',37.08,'','1','12','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2114,'SAFARI WATER 1L','',12.00,'2023-05-13 02:59:45','0.00','12','newstock','1','','',38.00,'','1','12','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2115,'KERINGET 1LTR','',12.00,'2023-05-13 03:00:08','0.00','12','newstock','1','','',74.58,'','1','12','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2116,'COKE ZERO 500ML','',12.00,'2023-05-13 03:00:42','0.00','12','newstock','1','','',53.33,'','1','12','internal','1','5449000131836','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2117,'TUSKER LAGER CAN 500ML','',10.00,'2023-05-13 08:01:39','1.00','12','newstock','1','','',172.75,'','1','11','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2118,'TUSKER LITE CAN 500ML','',9.00,'2023-05-13 08:01:58','1.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2119,'BALOZI LAGER CAN 500ML','',12.00,'2023-05-13 08:02:21','0.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2120,'WHITE CAP CAN 500ML','',9.00,'2023-05-13 08:02:59','2.00','12','newstock','1','','',190.38,'','1','11','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2121,'TUSKER MALT CAN 500ML','',12.00,'2023-05-13 08:03:22','1.00','12','newstock','1','','',198.45,'','1','13','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2122,'TUSKER CIDER CAN 500ML','',6.00,'2023-05-13 08:06:23','0.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2123,'SMIRNOFF GUARANA 330ML','',18.00,'2023-05-13 08:06:59','0.00','12','newstock','1','','',150.45,'','1','18','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2124,'REDBULL','',10.00,'2023-05-13 22:39:57','1.00','12','newstock','1','','',147.00,'','1','11','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2125,'SMIRNOFF BLACK ICE 330ML CAN','',12.00,'2023-05-13 22:43:11','1.00','12','newstock','1','','',150.45,'','1','13','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2126,'HEINEKEN CAN 500ML','',12.00,'2023-05-13 22:44:15','0.00','12','newstock','1','','',182.00,'','1','12','internal','1','8712000900045','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2127,'SMIRNOFF RED 350ML','',2.00,'2023-05-13 22:45:32','0.00','12','newstock','1','','',544.00,'','1','2','internal','1','6161101600941','','',0.00,'','750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2128,'GILBEYS GIN 350ML','',1.00,'2023-05-14 03:37:56','0.00','12','newstock','1','','',576.00,'','1','1','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2129,'VELO BERRY FROST STRONG','',4.00,'2023-05-14 22:06:03','0.00','12','newstock','1','','',270.00,'','1','4','internal','1','6008165018193','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2130,'VELO BERRY FROST MEDIUM','',4.00,'2023-05-14 22:06:29','0.00','12','newstock','1','','',270.00,'','1','4','internal','1','6008165018186','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2131,'ELECTIO CHARDONNAY 750ML','',1.00,'2023-05-16 21:23:20','0.00','12','newstock','1','','',900.00,'','1','1','internal','1','4840709004338','','',0.00,'','1800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2132,'WILLIAM LAWSONS 350ML','',2.00,'2023-05-16 21:56:09','0.00','12','newstock','1','','',659.00,'','1','2','internal','1','5010752000420','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2133,'GORDON','',1.00,'2023-05-16 22:22:41','0.00','12','newstock','1','','',168.00,'','1','1','internal','1','6161101606714','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2134,'GILBEYS GIN 750ML','',1.00,'2023-05-17 03:34:45','0.00','12','newstock','1','','',1125.00,'','1','1','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2135,'GILBEYS GIN 750ML','',2.00,'2023-05-17 18:19:27','0.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2136,'MINUTE MAID APPLE 1L','',3.00,'2023-05-17 20:41:55','0.00','12','newstock','1','','',125.00,'','1','3','internal','1','5449000180292','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2137,'MINUTE MAID TROPICAL 1L','',3.00,'2023-05-17 20:42:26','0.00','12','newstock','1','','',125.00,'','1','3','internal','1','40262144','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2138,'TUSKER CIDER CAN 500ML','',3.00,'2023-05-17 22:04:07','3.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2139,'MONSTER MULE','',3.00,'2023-05-18 04:12:46','0.00','12','newstock','1','','',153.00,'','1','3','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2140,'MINUTE MAID MANGO 400ML','',2.00,'2023-05-20 02:58:24','0.00','12','newstock','1','','',68.00,'','1','2','internal','1','90490279','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2141,'MINUTE MAID TROPICAL 1L','',1.00,'2023-05-20 05:56:00','0.00','12','newstock','1','','',125.00,'','1','1','internal','1','40262144','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2142,'TUSKER LITE CAN 500ML','',2.00,'2023-05-20 09:32:53','7.00','12','newstock','1','','',198.45,'','1','9','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2143,'BALOZI LAGER CAN 500ML','',14.00,'2023-05-20 16:52:39','7.00','12','newstock','1','','',172.83,'','1','21','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2144,'BALOZI LAGER CAN 500ML','',6.00,'2023-05-20 16:53:34','21.00','12','newstock','1','','',172.83,'','1','27','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2145,'GUINNESS CAN 500ML','',7.00,'2023-05-20 16:54:06','5.00','12','newstock','1','','',189.75,'','1','12','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2146,'GILBEYS GIN 750ML','',1.00,'2023-05-20 16:55:41','1.00','12','newstock','1','','',1125.00,'','1','2','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2147,'GILBEYS GIN 350ML','',3.00,'2023-05-20 16:56:10','0.00','12','newstock','1','','',576.00,'','1','3','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2148,'GILBEYS GIN 250ML','',2.00,'2023-05-20 16:56:27','1.00','12','newstock','1','','',418.00,'','1','3','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2149,'CHROME GIN 250ML','',8.00,'2023-05-20 16:57:05','0.00','12','newstock','1','','',182.00,'','1','8','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2150,'CHROME GIN 750ML','',1.00,'2023-05-20 16:57:40','0.00','12','newstock','1','','',501.00,'','1','1','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2151,'CHROME VODKA 250ML','',5.00,'2023-05-20 16:58:39','0.00','12','newstock','1','','',192.00,'','1','5','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2152,'TUSKER CIDER CAN 500ML','',5.00,'2023-05-20 16:59:02','1.00','12','newstock','1','','',181.71,'','1','6','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2153,'TUSKER MALT CAN 500ML','',12.00,'2023-05-20 16:59:47','4.00','12','newstock','1','','',198.45,'','1','16','internal','1','6161101602921','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2154,'TUSKER LITE CAN 500ML','',16.00,'2023-05-20 17:00:55','1.00','12','newstock','1','','',198.45,'','1','17','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2155,'WHITE CAP CAN 500ML','',5.00,'2023-05-20 17:01:34','7.00','12','newstock','1','','',190.38,'','1','12','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2156,'SMIRNOFF GUARANA 330ML','',6.00,'2023-05-20 17:03:59','4.00','12','newstock','1','','',150.45,'','1','10','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2157,'MONSTER MULE','',5.00,'2023-05-20 23:08:50','0.00','12','newstock','1','','',153.00,'','1','5','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2158,'GORDONS DRY GIN 750ML','',2.00,'2023-05-23 19:56:32','0.00','12','newstock','1','','',1900.00,'','1','2','internal','1','5000289020701','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2159,'BALOZI LAGER CAN 500ML','',4.00,'2023-05-23 19:57:08','8.00','12','newstock','1','','',172.83,'','1','12','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2160,'GORDON','',12.00,'2023-05-23 19:57:40','0.00','12','newstock','1','','',168.00,'','1','12','internal','1','6161101606714','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2161,'GORDON','',9.00,'2023-05-23 19:58:00','3.00','12','newstock','1','','',168.00,'','1','12','internal','1','6161101606721','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2162,'WHITE CAP CAN 500ML','',18.00,'2023-05-23 19:58:24','0.00','12','newstock','1','','',190.38,'','1','18','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2163,'WHITE CAP CRISP CAN','',3.00,'2023-05-23 19:58:42','9.00','12','newstock','1','','',159.00,'','1','12','internal','1','6161101606820','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2164,'SMIRNOFF GUARANA 330ML','',8.00,'2023-05-23 19:59:17','10.00','12','newstock','1','','',150.45,'','1','18','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2165,'GUINNESS CAN 500ML','',7.00,'2023-05-23 19:59:35','11.00','12','newstock','1','','',189.75,'','1','18','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2166,'TUSKER LITE CAN 500ML','',6.00,'2023-05-23 19:59:54','6.00','12','newstock','1','','',198.45,'','1','12','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2167,'TUSKER CIDER CAN 500ML','',16.00,'2023-05-23 20:00:28','2.00','12','newstock','1','','',181.71,'','1','18','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2168,'GILBEYS GIN 350ML','',5.00,'2023-05-23 20:00:46','0.00','12','newstock','1','','',576.00,'','1','5','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2169,'GILBEYS GIN 750ML','',4.00,'2023-05-23 20:00:59','1.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2170,'TANQUERAY LONDON GIN 750ML','',2.00,'2023-05-23 20:01:20','0.00','12','newstock','1','','',2070.00,'','1','2','internal','1','5000291020706','','',0.00,'','2800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2171,'JW RED 750ML','',1.00,'2023-05-23 20:01:38','0.00','12','newstock','1','','',1465.00,'','1','1','internal','1','5000267014005','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2172,'JW BLACK LABEL 750ML','',1.00,'2023-05-23 20:01:58','0.00','12','newstock','1','','',2835.00,'','1','1','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2173,'GILBEYS GIN 250ML','',5.00,'2023-05-23 20:02:16','3.00','12','newstock','1','','',418.00,'','1','8','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2174,'BLACK & WHITE 750ML','',1.00,'2023-05-23 20:02:42','1.00','12','newstock','1','','',855.00,'','1','2','internal','1','50196111','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2175,'CHROME VODKA 250ML','',9.00,'2023-05-23 20:03:06','1.00','12','newstock','1','','',192.00,'','1','10','internal','1','1000','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2176,'CHROME VODKA 750ML','',2.00,'2023-05-23 20:03:22','1.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101603522','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2177,'CHROME GIN 750ML','',2.00,'2023-05-23 20:03:57','1.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2178,'CHROME GIN 250ML','',5.00,'2023-05-23 20:04:15','5.00','12','newstock','1','','',182.00,'','1','10','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2179,'BARBERA DASTI 750ML','',1.00,'2023-05-25 02:30:58','0.00','12','newstock','1','','',1.00,'','1','1','internal','1','8000530010304','','',0.00,'','1600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2180,'WILLIAM LAWSON 1L','',1.00,'2023-05-25 02:31:18','0.00','12','newstock','1','','',1750.00,'','1','1','internal','1','5010752000345','','',0.00,'','2500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2181,'SAFARI WATER 1L','',1.00,'2023-05-25 21:12:22','0.00','12','newstock','1','','',38.00,'','1','1','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2182,'SAFARI WATER 1L','',9.00,'2023-05-25 21:12:37','1.00','12','newstock','1','','',38.00,'','1','10','internal','1','6164001199010','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2183,'SAFARI LEMONADE','',5.00,'2023-05-26 20:32:45','2.00','12','newstock','1','','',37.08,'','1','7','internal','1','6164001199331','','',0.00,'','70','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2184,'PREDATOR ENERGY DRINK','',6.00,'2023-05-26 23:43:57','0.00','12','newstock','1','','',41.82,'','1','6','internal','1','5060608740253','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2185,'DUNHILL EMBASSY BLUE','',4.00,'2023-05-27 01:15:27','0.00','12','newstock','1','','',337.00,'','1','4','internal','1','6008165007982','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2186,'JW BLACK LABEL 750ML','',1.00,'2023-05-28 10:12:15','0.00','12','newstock','1','','',2835.00,'','1','1','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2187,'DUNHILL SINGLE SWITCH','',2.00,'2023-05-28 15:57:24','4.00','12','newstock','1','','',346.00,'','1','6','internal','1','6008165007814','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2188,'REDBULL','',2.00,'2023-05-28 15:58:03','0.00','12','newstock','1','','',147.00,'','1','2','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2189,'KERINGET 1LTR','',4.00,'2023-05-28 19:14:46','2.00','12','newstock','1','','',74.58,'','1','6','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2190,'MONSTER MULE','',1.00,'2023-05-28 22:03:40','0.00','12','newstock','1','','',153.00,'','1','1','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2191,'MONSTER MULE','',4.00,'2023-05-30 21:13:21','0.00','12','newstock','1','','',153.00,'','1','4','internal','1','5060639129003','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2192,'CHROME GIN 250ML','',2.00,'2023-05-31 19:12:37','4.00','12','newstock','1','','',182.00,'','1','6','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2193,'CHROME GIN 750ML','',1.00,'2023-05-31 19:13:11','2.00','12','newstock','1','','',501.00,'','1','3','internal','1','6161101605465','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2194,'WHITE CAP CAN 500ML','',1.00,'2023-05-31 19:13:57','10.00','12','newstock','1','','',190.38,'','1','11','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2195,'BALOZI LAGER CAN 500ML','',9.00,'2023-05-31 19:14:56','4.00','12','newstock','1','','',172.83,'','1','13','internal','1','6161101606011','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2196,'TUSKER LAGER CAN 500ML','',11.00,'2023-05-31 19:15:20','1.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2197,'GUINNESS CAN 500ML','',5.00,'2023-05-31 19:16:48','10.00','12','newstock','1','','',189.75,'','1','15','internal','1','6161101602372','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2198,'TUSKER CIDER CAN 500ML','',1.00,'2023-05-31 19:17:09','16.00','12','newstock','1','','',181.71,'','1','17','internal','1','6161101604406','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2199,'GILBEYS GIN 250ML','',2.00,'2023-05-31 19:18:44','4.00','12','newstock','1','','',418.00,'','1','6','internal','1','6161101602167','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2200,'GILBEYS GIN 350ML','',4.00,'2023-05-31 19:19:26','1.00','12','newstock','1','','',576.00,'','1','5','internal','1','5010103930666','','',0.00,'','850','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2201,'GILBEYS GIN 750ML','',2.00,'2023-05-31 19:19:44','1.00','12','newstock','1','','',1125.00,'','1','3','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2202,'JW BLACK LABEL 750ML','',1.00,'2023-05-31 19:20:21','0.00','12','newstock','1','','',2835.00,'','1','1','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2203,'DUNHILL DOUBLE SWITCH','',1.00,'2023-05-31 22:18:34','0.00','12','newstock','1','','',346.00,'','1','1','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2204,'BLACK LABEL 250ML','',1.00,'2023-06-01 00:16:10','0.00','12','newstock','1','','',1000.00,'','1','1','internal','1','5000267184210','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2205,'SMIRNOFF GUARANA 330ML','',6.00,'2023-06-01 04:46:32','0.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101603324','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2206,'KERINGET 1LTR','',1.00,'2023-06-01 22:11:38','0.00','12','newstock','1','','',74.58,'','1','1','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2207,'KERINGET 1LTR','',7.00,'2023-06-01 23:23:00','0.00','12','newstock','1','','',74.58,'','1','7','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2208,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-06-02 21:09:58','0.00','12','newstock','1','','',150.45,'','1','4','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2209,'DUNHILL DOUBLE SWITCH','',4.00,'2023-06-02 22:12:58','0.00','12','newstock','1','','',346.00,'','1','4','internal','1','6008165007784','','',0.00,'','550','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2210,'VELO POLAR MINT STRONG','',2.00,'2023-06-03 01:28:47','0.00','12','newstock','1','','',270.00,'','1','2','internal','1','6008165018933','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2211,'WHITE CAP CAN 500ML','',4.00,'2023-06-03 20:20:16','0.00','12','newstock','1','','',190.38,'','1','4','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2212,'REDBULL','',7.00,'2023-06-03 20:20:49','0.00','12','newstock','1','','',147.00,'','1','7','internal','1','90162602','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2213,'ROTHMANS BLUE','',1.00,'2023-06-03 20:48:25','0.00','12','newstock','1','','',257.00,'','1','1','internal','1','6008165007074','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2214,'KIBAO 350ML','',2.00,'2023-06-04 00:20:59','0.00','12','newstock','1','','',318.00,'','1','2','internal','1','6161100421387','','',0.00,'','450','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2215,'SMIRNOFF BLACK ICE 330ML CAN','',4.00,'2023-06-04 00:26:21','2.00','12','newstock','1','','',150.45,'','1','6','internal','1','6161101604703','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2216,'GORDONS DRY GIN 350ML','',1.00,'2023-06-04 00:31:10','0.00','12','newstock','1','','',710.00,'','1','1','internal','1','5000289933292','','',0.00,'','950','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2217,'TUSKER LAGER CAN 500ML','',2.00,'2023-06-04 00:52:10','2.00','12','newstock','1','','',172.75,'','1','4','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2218,'CHROME GIN 250ML','',2.00,'2023-06-04 02:38:58','0.00','12','newstock','1','','',182.00,'','1','2','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2219,'CHROME GIN 250ML','',1.00,'2023-06-04 02:42:12','2.00','12','newstock','1','','',182.00,'','1','3','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2220,'TUSKER LAGER CAN 500ML','',12.00,'2023-06-04 20:50:04','0.00','12','newstock','1','','',172.75,'','1','12','internal','1','6161101601979','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2221,'CHROME GIN 250ML','',3.00,'2023-06-06 19:19:20','0.00','12','newstock','1','','',182.00,'','1','3','internal','1','6161101605458','','',0.00,'','270','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2222,'KENYA CANE 350ML','',2.00,'2023-06-06 20:21:47','0.00','12','newstock','1','','',335.00,'','1','2','internal','1','5010103930840','','',0.00,'','500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2223,'WHITE CAP CAN 500ML','',4.00,'2023-06-06 20:49:19','1.00','12','newstock','1','','',190.38,'','1','5','internal','1','6161101603379','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2224,'J&B RARE 375ML','',4.00,'2023-06-06 20:53:06','15.00','12','newstock','1','','',719.00,'','1','19','internal','1','5010103800167','','',0.00,'','1000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2225,'KERINGET 1LTR','',3.00,'2023-06-06 20:56:12','0.00','12','newstock','1','','',74.58,'','1','3','internal','1','5018907194802','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2226,'COCACOLA 1.25ML','',4.00,'2023-06-06 20:59:00','1.00','12','newstock','1','','',103.00,'','1','5','internal','1','5449000028921','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2227,'GILBEYS GIN 750ML','',5.00,'2023-06-06 21:40:41','0.00','12','newstock','1','','',1125.00,'','1','5','internal','1','5010103930628','','',0.00,'','1750','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2228,'Black Bird Natural Sweet Red 750ml','',1.00,'2023-06-07 20:00:11','1.00','12','newstock','1','','',700.00,'','1','2','internal','1','6009675642045','','',0.00,'','1500','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2229,'JW BLUE 750ML','',1.00,'2023-06-09 23:26:51','0.00','12','newstock','1','','',21211.00,'','1','1','internal','1','5000267114279','','',0.00,'','25000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2230,'JW BLACK LABEL 750ML','',1.00,'2023-06-09 23:27:40','0.00','12','newstock','1','','',2835.00,'','1','1','internal','1','5000267024011','','',0.00,'','4000','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2231,'SODA WATER 500ML','',4.00,'2023-06-15 07:44:06','0.00','12','newstock','1','','',53.33,'','1','4','internal','1','54493360','','',0.00,'','80','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2232,'HENDRIX GIN 750ML','',1.00,'2023-06-17 18:15:23','0.00','12','newstock','1','','',3850.00,'','1','1','internal','1','5010327755045','','',0.00,'','5600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2233,'HENDRIX GIN 750ML','',1.00,'2023-06-17 18:19:38','0.00','12','newstock','1','','',3850.00,'','1','1','internal','1','5010327755045','','',0.00,'','5600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2234,'TUSKER LITE CAN 500ML','',7.00,'2023-06-18 20:54:18','3.00','12','newstock','1','','',198.45,'','1','10','internal','1','6161101602938','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''),(2235,'ROSSO NOBILE MAZIPANV','',1.00,'2023-06-23 01:54:54','0.00','12','newstock','1','','',1350.00,'','1','1','internal','1','4058387004193','','',0.00,'','1900','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'',''); /*!40000 ALTER TABLE `newstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newupgrade` -- DROP TABLE IF EXISTS `newupgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newupgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `phone` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, `comment` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'new', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newupgrade` -- LOCK TABLES `newupgrade` WRITE; /*!40000 ALTER TABLE `newupgrade` DISABLE KEYS */; INSERT INTO `newupgrade` VALUES (1,'General systems',1,'','','','','','new'),(2,'E-commerce',1,'','','','','','new'),(3,'Biometric',1,'','','','','','new'),(4,'Website',1,'','','','','','new'),(5,'PMS',1,'','','','','','new'),(6,'Bulk sms',1,'','','','','','new'),(7,'Pos',1,'','','','','','new'); /*!40000 ALTER TABLE `newupgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nhif` -- DROP TABLE IF EXISTS `nhif`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nhif` ( `id` int(50) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `nhifrelief` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nhif` -- LOCK TABLES `nhif` WRITE; /*!40000 ALTER TABLE `nhif` DISABLE KEYS */; INSERT INTO `nhif` VALUES (1,0.00,5999.00,150.00,1,1,'active','employee',1,22.50),(2,6000.00,7999.00,300.00,1,1,'active','employee',1,45.00),(3,8000.00,11999.00,400.00,1,1,'active','employee',1,60.00),(4,12000.00,14999.00,500.00,1,1,'active','employee',1,75.00),(5,15000.00,19999.00,600.00,1,1,'active','employee',1,90.00),(6,20000.00,24999.00,750.00,1,1,'active','employee',1,112.50),(7,25000.00,29999.00,850.00,1,1,'active','employee',1,127.50),(8,30000.00,34999.00,900.00,1,1,'active','employee',1,135.00),(9,35000.00,39000.00,950.00,1,1,'active','employee',1,142.50),(10,40000.00,44999.00,1000.00,1,1,'active','employee',1,150.00),(11,45000.00,49000.00,1100.00,1,1,'active','employee',1,165.00),(12,50000.00,59999.00,1200.00,1,1,'active','employee',1,180.00),(13,60000.00,69999.00,1300.00,1,1,'active','employee',1,195.00),(14,70000.00,79999.00,1400.00,1,1,'active','employee',1,210.00),(15,80000.00,89999.00,1500.00,1,1,'active','employee',1,225.00),(16,90000.00,99999.00,1600.00,1,1,'active','employee',1,240.00),(17,100000.00,99999999.00,1700.00,1,1,'active','employee',1,255.00),(18,0.00,0.00,500.00,1,1,'active','employer',1,75.00); /*!40000 ALTER TABLE `nhif` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nssf` -- DROP TABLE IF EXISTS `nssf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nssf` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `tire1` decimal(10,2) NOT NULL, `tire2` decimal(10,2) NOT NULL, `tire1tire2` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nssf` -- LOCK TABLES `nssf` WRITE; /*!40000 ALTER TABLE `nssf` DISABLE KEYS */; INSERT INTO `nssf` VALUES (1,0.00,3000.00,180.00,1,1,'active','employee',1,180.00,0.00,180.00),(2,3000.00,4500.00,270.00,1,1,'active','employee',1,270.00,0.00,270.00),(3,4500.00,6000.00,360.00,1,1,'active','employee',1,360.00,0.00,360.00),(4,6000.00,10000.00,360.00,1,1,'active','employee',1,360.00,240.00,600.00),(5,10000.00,14000.00,360.00,1,1,'active','employee',1,360.00,480.00,840.00),(6,14000.00,18000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(7,18000.00,20000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(8,20000.00,100000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(9,100000.00,500000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00); /*!40000 ALTER TABLE `nssf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offdays` -- DROP TABLE IF EXISTS `offdays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offdays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupid` int(11) NOT NULL, `offday` varchar(30) NOT NULL, `type` int(11) NOT NULL, `title` varchar(128) NOT NULL, `userid` varchar(30) DEFAULT NULL, `createdate` varchar(30) NOT NULL, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `contract` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of non working days'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offdays` -- LOCK TABLES `offdays` WRITE; /*!40000 ALTER TABLE `offdays` DISABLE KEYS */; /*!40000 ALTER TABLE `offdays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offtypes` -- DROP TABLE IF EXISTS `offtypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offtypes` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offtypes` -- LOCK TABLES `offtypes` WRITE; /*!40000 ALTER TABLE `offtypes` DISABLE KEYS */; INSERT INTO `offtypes` VALUES (1,'All day is off','2018-05-17 04:40:12am'),(2,'Half day is off','2018-05-17 04:41:13am'),(3,'Morning is off ','2018-05-17 04:41:30am'),(4,'Afternoon is off','2018-05-17 04:41:30am'); /*!40000 ALTER TABLE `offtypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `openorders` -- DROP TABLE IF EXISTS `openorders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `openorders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `description` text NOT NULL, `startdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `closedate` text NOT NULL, `receiver` text NOT NULL, `millage` varchar(30) NOT NULL, `fuel` varchar(50) NOT NULL, `trips` text NOT NULL, `createdate` varchar(30) NOT NULL, `nextfuel` varchar(20) NOT NULL, `previoufueldate` varchar(30) NOT NULL, `previousfuelused` varchar(20) NOT NULL, `adjusted` varchar(20) NOT NULL, `fuellimit` varchar(20) NOT NULL, `fuelrate` varchar(20) NOT NULL, `exactfuel` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `openorders` -- LOCK TABLES `openorders` WRITE; /*!40000 ALTER TABLE `openorders` DISABLE KEYS */; /*!40000 ALTER TABLE `openorders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orderlist` -- DROP TABLE IF EXISTS `orderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `orderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `itemid` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `qty` decimal(10,2) DEFAULT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `code` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orderlist` -- LOCK TABLES `orderlist` WRITE; /*!40000 ALTER TABLE `orderlist` DISABLE KEYS */; INSERT INTO `orderlist` VALUES (1,'P.O','1','2023-04-28 18:33:10','11682695987','11','11682666208',1.00,1,1,'1',0.00),(2,'P.O','1','2023-04-28 18:34:56','11682696083','13','11682666208',1.00,1,1,'1',0.00),(3,'P.O','1','2023-04-28 18:34:56','11682696083','12','11682666208',1.00,1,1,'3',0.00),(4,'P.O','1','2023-05-24 09:10:38','11684908636','10','11684908577',100.00,1,1,'1',0.00),(5,'P.O','1','2023-05-24 09:10:38','11684908636','9','11684908577',1.00,1,1,'2',0.00),(6,'P.O','1','2023-05-24 09:10:38','11684908636','8','11684908577',1.00,1,1,'2',0.00); /*!40000 ALTER TABLE `orderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `outgoingstock` -- DROP TABLE IF EXISTS `outgoingstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `outgoingstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` varchar(50) NOT NULL, `date` varchar(50) NOT NULL, `item_id` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'shop', `comments` text NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `outgoingstock` -- LOCK TABLES `outgoingstock` WRITE; /*!40000 ALTER TABLE `outgoingstock` DISABLE KEYS */; /*!40000 ALTER TABLE `outgoingstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `parceldelivery` -- DROP TABLE IF EXISTS `parceldelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `parceldelivery` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateposted` datetime NOT NULL, `customer` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` text NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', `type` varchar(50) DEFAULT NULL, `receiver` varchar(50) NOT NULL, `receiverphone` varchar(50) NOT NULL, `receiveraddress` text NOT NULL, `origin` text NOT NULL, `destination` text NOT NULL, `weight` varchar(50) NOT NULL, `receiveremail` varchar(50) DEFAULT NULL, `totalvalue` varchar(20) NOT NULL, `vat` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `receiveridno` varchar(20) NOT NULL, `riderdetails` text NOT NULL, `senderidno` varchar(50) NOT NULL, `senderphone` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `parceldelivery` -- LOCK TABLES `parceldelivery` WRITE; /*!40000 ALTER TABLE `parceldelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `parceldelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paye` -- DROP TABLE IF EXISTS `paye`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paye` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(15,2) NOT NULL, `amt` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `percentage` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paye` -- LOCK TABLES `paye` WRITE; /*!40000 ALTER TABLE `paye` DISABLE KEYS */; INSERT INTO `paye` VALUES (1,0.00,24000.00,24000.00,1,1,'active',10.00),(2,24001.00,32333.00,8333.00,1,1,'active',25.00),(3,32333.00,10000000000.00,32333.00,1,1,'active',30.00); /*!40000 ALTER TABLE `paye` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentmethodes` -- DROP TABLE IF EXISTS `paymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentmethodes` -- LOCK TABLES `paymentmethodes` WRITE; /*!40000 ALTER TABLE `paymentmethodes` DISABLE KEYS */; INSERT INTO `paymentmethodes` VALUES (1,'cash','Cash payment','active','2021-09-07 05:52:05','1','1','1050','',1,NULL),(2,'mpesa','mpesa','active','2021-09-22 10:35:37','1','1','1010','',1,NULL),(3,'card','card payment','active','2021-09-07 05:52:50','1','1','1030','',1,NULL),(4,'bank','Bank payment','active','2021-09-07 05:53:23','1','1','1030','',1,NULL),(5,'credit','account receivable ','active','2021-09-07 06:31:55','1','1','1100','',1,NULL),(6,'voucher','Directors account','active','2021-09-07 06:32:21','1','1','1040','',1,NULL),(7,'creditnote','Account payable','active','2021-09-07 06:34:11','1','1','2130','',1,NULL),(8,'points','Account redeemable','active','2021-09-07 06:36:16','1','1','2130','',1,NULL); /*!40000 ALTER TABLE `paymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` int(100) NOT NULL AUTO_INCREMENT, `paidto` varchar(100) NOT NULL, `paiby` varchar(100) NOT NULL, `paiddate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `approvedby` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `receiptno` varchar(100) NOT NULL DEFAULT 'no', `comments` text NOT NULL, `idno` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentsection` -- DROP TABLE IF EXISTS `paymentsection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentsection` ( `id` int(40) NOT NULL AUTO_INCREMENT, `methodid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentsection` -- LOCK TABLES `paymentsection` WRITE; /*!40000 ALTER TABLE `paymentsection` DISABLE KEYS */; INSERT INTO `paymentsection` VALUES (8,'2','KCB Bank','KCB Bank','2016-04-20 10:39:59','','3','3'),(9,'2','Equity Bank','Equity Bank','2016-04-20 10:40:10','','3','3'),(10,'4','cash','CASH','2016-04-20 10:40:34','','3','3'),(11,'3','Lipa rent','','2016-04-20 10:40:48','','3','3'),(12,'1','Airtel Money','Airtel Money','2016-04-20 10:41:17','','3','3'),(13,'1','M-pesa','M-pesa','2016-04-20 10:41:32','','3','3'),(15,'6','Coparent','Coparent','2016-05-25 04:21:55','','3','3'),(16,'2','Unaitas','Unaitas','2017-12-16 06:51:45','','',''); /*!40000 ALTER TABLE `paymentsection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payroll` -- DROP TABLE IF EXISTS `payroll`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payroll` ( `id` int(100) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `designation` varchar(255) NOT NULL, `allowance` varchar(255) NOT NULL, `paytype` varchar(255) NOT NULL, `nohours` varchar(255) NOT NULL, `salary` varchar(255) NOT NULL, `nodays` varchar(255) NOT NULL, `nodaysyearly` varchar(255) NOT NULL, `annualsalary` varchar(255) NOT NULL, `monthlysalary` varchar(50) NOT NULL, `dailysalary` varchar(100) DEFAULT NULL, `comments` text NOT NULL, `vat` varchar(50) NOT NULL DEFAULT 'active', `payee` varchar(50) NOT NULL, `nssf` varchar(100) NOT NULL, `nihf` text NOT NULL, `employeeid` varchar(100) NOT NULL, `advance` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `other` varchar(50) NOT NULL, `month` varchar(50) NOT NULL, `year` varchar(50) NOT NULL, `loan` varchar(100) NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`type`), KEY `last_name` (`designation`), KEY `email` (`paytype`), KEY `phppos_people_ibfk_1` (`dailysalary`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payroll` -- LOCK TABLES `payroll` WRITE; /*!40000 ALTER TABLE `payroll` DISABLE KEYS */; /*!40000 ALTER TABLE `payroll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `people` -- DROP TABLE IF EXISTS `people`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `people` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1112 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `people` -- LOCK TABLES `people` WRITE; /*!40000 ALTER TABLE `people` DISABLE KEYS */; INSERT INTO `people` VALUES (1,135.00,'Admin','Advanta','FAITH','254718667391','robisearch@gmail.com','12345678','','female','','','0','','155663771675825033','user','1','','','','3343455',-2225708.00,'1','2023-06-21','','1','2019-06-11','Contract',20000.00,'','2019-06-06','','','','2019-06-05','2019-06-06','KCB','2412423','Daily','1','2019-09-20','0222222',0.00,'','','Single','',0.00,1,'','1000','yes','admin','',0,0,0,'','2019-08-28',0,'',5.00,'','','','Yes',0.00,0,0.00,5.00,'no',200.00,'','2023-06-06 06:32:15','','','','','','','','P06666xxx',1,'022','444',2,'','534032','2022-10-23 20:40:59','B0-22-7A-ED-77-F6','new','2023-02-04 09:37:04','Submited by ROBERT MANYALA, With Phone No: 254718667391 at 2023-02-04 09:37:04'),(2,NULL,'Default','','','254718667391','admin','Robisearch321','Default','','','','1 ','',NULL,'supplier','1','Default','','','666663',5200.00,'1','2022-01-27 05:57:22','','1','','',0.00,'','','','','','','','','','Monthly','4','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',10.00,'','','','yes',8883.00,0,0.00,0.00,'no',300.00,'yes','2022-05-24 06:40:00','','','','','','','','',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(3,NULL,'JAMES','','','254718667391','','','','','','','1 ','',NULL,'member','1','JAMES','','','',4180.00,'1','2022-02-26 05:42:28','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',20.00,NULL,NULL,NULL,'',3000.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:32:37','','','','','','','','',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(4,NULL,'JKUAT','','','254718667391','','','','','','','1 ','',NULL,'member','1','','','','',3688.00,'1','2022-03-08 09:11:00','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',10.00,NULL,NULL,NULL,'',4000.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:32:37','','','','','','','','PO56RR5DDD66R',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(6,NULL,'Waiter','','','254718667391','','','','','','','1 ','','2388441645858969','accommodation','1','60','','','34522453',11986.00,'1','2022-02-26 10:03:06','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',76555.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:34:48','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(7,NULL,'DANIEL','','','254718667391','','','','Male','','','1 ','','937491645860690','accommodation','1','','','','3425354',10660.00,'1','2022-02-26 10:32:08','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',5600.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:34:48','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(8,NULL,'juma','','','254718667391','','','','','','','1 ','','2799591645862150','accommodation','1','','','','43345345',8500.00,'1','2022-02-26 10:56:03','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',15677.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:34:48','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(9,NULL,'DAVID','','','254718667391','','','','','','','1 ','','1716281645862259','accommodation','1','','','','4454566',0.00,'1','2022-02-26 10:57:58','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',6015.00,0,0.00,0.00,'no',0.00,'no','2022-04-09 08:34:48','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(10,NULL,'dd','','','254718667391','','','','','','','1 ','','3222831646116281','accommodation','1','','','','dd',0.00,'1','2022-03-01 09:31:26','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(11,NULL,'john walter','','','254718667391','','','','Male','','','1 ','','6610511651729069','accommodation','1','','','','435345',6950.00,'1','2022-05-05 08:38:30','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',47,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,NULL,1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(12,NULL,'ESTHER','WANJIRU',NULL,'0715460070','kairegiesther@gmail.com','hadassahesther','','female','','','','',NULL,'user','1',NULL,'','','35472309',0.00,'','2023-07-13','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','1000000','no','admin','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'550233262','','0000-00-00 00:00:00','','new','',''),(13,NULL,'CONGRESS LOGISTICS LTD','',NULL,'254720000001','','','','','','2023-07-01','1','',NULL,'supplier','1','','','','',0.00,'12','2022-07-01 10:43:46','','1','2022-07-01','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(14,NULL,'BRISTECH LIMITED','',NULL,'254731531631','','','','','','2023-07-01','1','',NULL,'supplier','1','','','','',0.00,'12','2022-07-01 10:45:05','','1','2022-07-01','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(15,NULL,'WELBAY STORE','',NULL,'254732444432','','','','','','2023-07-01','1','',NULL,'supplier','1','','','','',0.00,'12','2022-07-01 10:46:20','','1','2022-07-01','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(16,NULL,'MARY','MWAI',NULL,'0717770743','yenne45@gmail.com','xtrasecret7','','','','','','',NULL,'user','1',NULL,'','','',0.00,'','2022-07-01','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','1000000','no','admin','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'063363022','','0000-00-00 00:00:00','','new','',''),(17,NULL,'OCEAN DISTRIBUTORS','',NULL,'254728007298','','','','','','2023-07-01','1','',NULL,'supplier','1','','','','',0.00,'16','2022-07-01 18:03:00','','1','2022-07-01','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(18,NULL,'NGINA VAPE TOWN','',NULL,'0792675646','','','','female','','','1','',NULL,'supplier','1','VAPE TOWN NAIROBI','','','',0.00,'12','2022-08-02 17:25:15','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(19,NULL,'LAURYNE SHININA','SHININA',NULL,'0759809901','shininalauryne@gmail.com','solopian','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2023-02-20','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'yes','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'229204727','','0000-00-00 00:00:00','','new','',''),(20,NULL,'GEORGE MAYI','',NULL,'0700113119','','','','male','','','1','',NULL,'supplier','1','TOP IT UP DISTRIBUTORS','','','',0.00,'12','2022-10-03 12:57:55','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(21,NULL,'NORRIS','',NULL,'0757663793','kairegiesther@gmail.com','','0714743242','male','MOMBASA','','1','',NULL,'supplier','1','SHIVA MOMBASA LIMITED','','','',0.00,'12','2022-11-09 18:39:17','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'P051137332T',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(22,NULL,'SABIBU','',NULL,'0790177777','','','','male','','','1','',NULL,'supplier','1','SABIBU BEVERAGES AFRICA LTD','','','',0.00,'12','2022-11-26 16:34:00','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(23,NULL,'ALI','',NULL,'0202340838','','','','male','','','1','',NULL,'supplier','1','PRIDE INDUSTRIES','','','',0.00,'12','2022-12-01 21:24:54','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(24,NULL,'LICKETY MART LTD','',NULL,'0714411885','','','','','','','1','',NULL,'supplier','1','LICKETY MART LTD','','','',0.00,'12','2022-12-14 22:54:40','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(25,NULL,'HARLEY\'S LIMITED','',NULL,'254020426100','','','','','','','1','',NULL,'supplier','1','HARLEY\'S LIMITED','','','',0.00,'12','2023-02-13 14:39:32','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(26,NULL,'S LIQUOR','',NULL,'0711573631','','','','','','','1','',NULL,'supplier','1','S LIQUOR','','','',0.00,'12','2023-04-08 20:14:55','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(27,NULL,'kiokos','',NULL,'kiokodepo@gmail.com','','','','male','','','1','',NULL,'supplier','1','KIOKO ENTERPRISES ','','','',0.00,'12','2023-04-17 23:43:19','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'no','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'','','0000-00-00 00:00:00','','new','',''),(1111,NULL,'Robisearch','Advanta','JOHN','254718667391','robisearch@gmail.com','12345678','','female','','','0','','132222201635401988','user','1','','','','3343455',8897374.00,'1','2022-05-25','','1','2019-06-11','Contract',30000.00,'','2019-06-06','','','','2019-06-05','2019-06-06','KCB','2412423','Daily','1','2019-09-20','0222222',0.00,'','','Single','',30.00,1,'','1000','yes','admin','',0,0,0,'','2019-08-28',0,'',0.00,'','','','Yes',2000.00,0,0.00,0.00,'no',200.00,'','2022-04-09 08:32:37','','','','','','','','P06666xxx',1,'022','444',2,'','','0000-00-00 00:00:00','','new','',''); /*!40000 ALTER TABLE `people` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `peopleregistration` -- DROP TABLE IF EXISTS `peopleregistration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `peopleregistration` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `peopleregistration` -- LOCK TABLES `peopleregistration` WRITE; /*!40000 ALTER TABLE `peopleregistration` DISABLE KEYS */; /*!40000 ALTER TABLE `peopleregistration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `periods` -- DROP TABLE IF EXISTS `periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `periods` -- LOCK TABLES `periods` WRITE; /*!40000 ALTER TABLE `periods` DISABLE KEYS */; INSERT INTO `periods` VALUES (1,'Daily','Daily','','active','1','','1'),(2,'Weekly','Weekly','','active','1','','1'),(3,'Monthly','Monthly','','active','1','','1'),(4,'Quarterly','Quarterly','','active','1','','1'),(5,'Annually','Annually','','active','1','','1'),(6,'Fortnightly','Fortnightly','','active','1','','1'),(7,'Bi monthly','Bi monthly','','active','1','','1'); /*!40000 ALTER TABLE `periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES ('accomodation',1),('accounting',1),('accountingreports',1),('assets',1),('bankdeposits',1),('banktransfer',1),('biometricrecords',1),('branch',1),('callcenter',1),('cashiersales',1),('cashiersales',5),('cashiersales',12),('cashiersales',16),('complain',1),('config',1),('config',12),('config',16),('damagedproducts',1),('damagedproducts',12),('damagedproducts',16),('deals',1),('departments',1),('displayreport',1),('documents',1),('ecommerce',1),('events',1),('grouping',1),('humanresource',1),('income',1),('income',16),('incomeexpenses',1),('incomeexpenses',16),('incomingstock',1),('incomingstock',12),('incomingstock',16),('incomingstore',1),('journalentry',1),('labourrecords',1),('leavemanagement',1),('lowproducts',1),('lowstocklist',1),('lowstocklist',12),('lowstocklist',16),('loyalitycards',1),('members',1),('members',12),('members',16),('password',1),('password',5),('password',12),('password',16),('payroll',1),('payrollsetup',1),('peoplecategory',1),('productlist',1),('productlist',12),('productlist',16),('products',1),('products',12),('products',16),('productscategory',1),('productscategory',12),('productscategory',16),('profile',1),('profile',5),('projectsmanagement',1),('purchases',1),('purchases',12),('purchases',16),('quotation',1),('recorddelivery',1),('reports',1),('reports',12),('reports',16),('sales',1),('sales',5),('sales',12),('sales',16),('sendsms',1),('task',1),('taskscategory',1),('users',1),('users',12),('users',16),('viewreturnsales',1),('viewreturnsales',12),('viewreturnsales',16),('wholesale',1),('wholesale',16); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissionsactions` -- DROP TABLE IF EXISTS `permissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=76628 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissionsactions` -- LOCK TABLES `permissionsactions` WRITE; /*!40000 ALTER TABLE `permissionsactions` DISABLE KEYS */; INSERT INTO `permissionsactions` VALUES (74045,'sales','5','suspend'),(74046,'sales','5','add'),(74047,'sales','5','update'),(74048,'sales','5','cash'),(74049,'sales','5','sale'),(74050,'sales','5','moresales'),(74051,'sales','5','Logout'),(74052,'sales','5','select'),(74053,'sales','5','discount'),(74054,'sales','5','displaycustomers'),(74055,'sales','5','mpesa'),(74056,'sales','5','printbill'),(74057,'sales','5','productdiscount'),(74058,'sales','5','order'),(74059,'sales','5','closebill'),(74060,'sales','5','editsellingprice'),(74061,'sales','5','updatepaymentmode'),(74062,'sales','5','card'),(74063,'sales','5','clearpayments'),(74064,'sales','5','viewbuyingprice'),(74065,'sales','5','cheque'),(74066,'sales','5','creditnote'),(74067,'sales','5','voucher'),(74068,'sales','5','salesbeyondbprice'),(74069,'sales','5','points'),(74070,'sales','5','credit'),(74071,'sales','5','selectroom'),(74072,'sales','5','dontprint'),(74073,'sales','5','backdatesales'),(74074,'sales','5','recordcoins'),(74075,'sales','5','changetaxstatus'),(74076,'sales','5','giveloyalityponts'),(74077,'sales','5','splitbill'),(74078,'sales','5','changeuomonsales'),(74079,'sales','5','selecttable'),(74080,'sales','5','printdelivery'),(74081,'sales','5','sendsms'),(74082,'sales','5','selectcurrency'),(74083,'sales','5','salesperson'),(74084,'sales','5','usekeyboard'),(74085,'sales','5','receiptno'),(74086,'cashiersales','5','entermpesacode'),(74087,'cashiersales','5','editmpesa'),(74088,'cashiersales','5','all'),(74089,'cashiersales','5','cashiersales'),(74090,'cashiersales','5','editmpesadate'),(74091,'cashiersales','5','dontshowtotal'),(74092,'cashiersales','5','viewtill'),(74093,'cashiersales','5','viewdailycollections'),(74094,'cashiersales','5','updatedailycollections'),(74095,'cashiersales','5','viewallcounters'),(74096,'cashiersales','5','viewcommission'),(74097,'cashiersales','5','dailysalesonly'),(74098,'cashiersales','5','viewmpesamessages'),(74099,'password','5','change'),(74100,'profile','5','update'),(75315,'sales','1','suspend'),(75316,'sales','1','add'),(75317,'sales','1','printreceipt'),(75318,'sales','1','selectmessage'),(75319,'sales','1','update'),(75320,'sales','1','delete'),(75321,'sales','1','cash'),(75322,'sales','1','sale'),(75323,'sales','1','moresales'),(75324,'sales','1','reprint'),(75325,'sales','1','Logout'),(75326,'sales','1','select'),(75327,'sales','1','mpesabalance'),(75328,'sales','1','discount'),(75329,'sales','1','displaycustomers'),(75330,'sales','1','mpesa'),(75331,'sales','1','printbill'),(75332,'sales','1','productdiscount'),(75333,'sales','1','order'),(75334,'sales','1','updatepaymentmode'),(75335,'sales','1','card'),(75336,'sales','1','clearpayments'),(75337,'sales','1','viewbuyingprice'),(75338,'sales','1','cheque'),(75339,'sales','1','creditnote'),(75340,'sales','1','voucher'),(75341,'sales','1','salesbeyondbprice'),(75342,'sales','1','points'),(75343,'sales','1','credit'),(75344,'sales','1','selectroom'),(75345,'sales','1','dontprint'),(75346,'sales','1','backdatesales'),(75347,'sales','1','recordcoins'),(75348,'sales','1','leaseitems'),(75349,'sales','1','giveloyalityponts'),(75350,'sales','1','splitbill'),(75351,'sales','1','changeuomonsales'),(75352,'sales','1','selecttable'),(75353,'sales','1','printdelivery'),(75354,'sales','1','sendsms'),(75355,'sales','1','selectcurrency'),(75356,'sales','1','salesperson'),(75357,'wholesale','1','sale'),(75358,'wholesale','1','add'),(75359,'wholesale','1','delete'),(75360,'wholesale','1','update'),(75361,'cashiersales','1','entermpesacode'),(75362,'cashiersales','1','editmpesa'),(75363,'cashiersales','1','all'),(75364,'cashiersales','1','delete'),(75365,'cashiersales','1','cashiersales'),(75366,'cashiersales','1','editmpesadate'),(75367,'cashiersales','1','adddailycollection'),(75368,'cashiersales','1','viewtill'),(75369,'cashiersales','1','viewdailycollections'),(75370,'cashiersales','1','updatedailycollections'),(75371,'cashiersales','1','reversempesa'),(75372,'cashiersales','1','deletedailycollections'),(75373,'cashiersales','1','clearallsales'),(75374,'cashiersales','1','viewallcollections'),(75375,'cashiersales','1','mpesapendingreport'),(75376,'cashiersales','1','viewallcounters'),(75377,'cashiersales','1','mpesaverifiedreport'),(75378,'cashiersales','1','viewcommission'),(75379,'cashiersales','1','viewmpesamessages'),(75380,'recorddelivery','1','add'),(75381,'recorddelivery','1','view'),(75382,'recorddelivery','1','update'),(75383,'recorddelivery','1','delete'),(75384,'recorddelivery','1','changestatus'),(75385,'recorddelivery','1','report'),(75386,'recorddelivery','1','Dispatched'),(75387,'recorddelivery','1','FailedDelivery'),(75388,'recorddelivery','1','ReturnedandReceived'),(75389,'recorddelivery','1','Delivered'),(75390,'recorddelivery','1','Claimraised'),(75391,'recorddelivery','1','ClaimOK'),(75392,'recorddelivery','1','ClaimDamaged'),(75393,'purchases','1','add'),(75394,'purchases','1','update'),(75395,'purchases','1','delete'),(75396,'purchases','1','updatebuyingprice'),(75397,'purchases','1','updatesellingprice'),(75398,'purchases','1','updateclosedinvoice'),(75399,'purchases','1','viewquotation'),(75400,'purchases','1','viewdirectpurchases'),(75401,'purchases','1','viewserials'),(75402,'purchases','1','viewpurchase'),(75403,'purchases','1','salesorder'),(75404,'purchases','1','budget'),(75405,'purchases','1','showdefaultserials'),(75406,'purchases','1','approve'),(75407,'purchases','1','addbatchno'),(75408,'purchases','1','addexpirydate'),(75409,'viewreturnsales','1','add'),(75410,'viewreturnsales','1','update'),(75411,'viewreturnsales','1','delete'),(75412,'viewreturnsales','1','return'),(75413,'viewreturnsales','1','clear'),(75414,'viewreturnsales','1','moresales'),(75415,'income','1','View'),(75416,'income','1','add'),(75417,'income','1','wiewinvoices'),(75418,'income','1','detailedvatinvoice'),(75419,'incomeexpenses','1','add'),(75420,'incomeexpenses','1','closeexpense'),(75421,'incomeexpenses','1','update'),(75422,'incomeexpenses','1','wiewinvoices'),(75423,'incomeexpenses','1','viewbills'),(75424,'incomeexpenses','1','viewdebtors'),(75425,'incomeexpenses','1','viewcreditors'),(75426,'incomeexpenses','1','postrentalexpenses'),(75427,'accomodation','1','dailysales'),(75428,'accomodation','1','viewrooms'),(75429,'accomodation','1','viewhouse'),(75430,'accomodation','1','addhouse'),(75431,'accomodation','1','cheque'),(75432,'accomodation','1','credit'),(75433,'accomodation','1','card'),(75434,'accomodation','1','cash'),(75435,'accomodation','1','mpesa'),(75436,'accomodation','1','voucher'),(75437,'accomodation','1','points'),(75438,'accomodation','1','checkinroom'),(75439,'accomodation','1','addroom'),(75440,'accomodation','1','checkoutroom'),(75441,'accomodation','1','cancel'),(75442,'accomodation','1','givediscount'),(75443,'accomodation','1','checkin'),(75444,'accomodation','1','addcharges'),(75445,'accomodation','1','cleanrooms'),(75446,'accomodation','1','updatecharges'),(75447,'accomodation','1','postexpense'),(75448,'accomodation','1','updatehouse'),(75449,'accomodation','1','updateroom'),(75450,'accomodation','1','Post Bank Deposits'),(75451,'accomodation','1','managehotel'),(75452,'accomodation','1','assignrooms'),(75453,'accomodation','1','managerental'),(75454,'accomodation','1','housekeeping'),(75455,'accomodation','1','changepayment'),(75456,'accomodation','1','customerregister'),(75457,'accomodation','1','dailypayments'),(75458,'accomodation','1','advancebooking'),(75459,'accomodation','1','checkoutcustomerwithbalance'),(75460,'accomodation','1','managecustomer'),(75461,'accomodation','1','viewreports'),(75462,'accomodation','1','viewroomcleaned'),(75463,'accomodation','1','config'),(75464,'accomodation','1','clearsales'),(75465,'accomodation','1','dailycollections'),(75466,'branch','1','add'),(75467,'branch','1','view'),(75468,'branch','1','update'),(75469,'branch','1','delete'),(75470,'members','1','add'),(75471,'members','1','update'),(75472,'members','1','opencloseshift'),(75473,'users','1','add'),(75474,'users','1','update'),(75475,'users','1','delete'),(75476,'users','1','deleteallroles'),(75477,'productscategory','1','add'),(75478,'productscategory','1','update'),(75479,'productscategory','1','delete'),(75480,'productlist','1','bulk'),(75481,'productlist','1','move'),(75482,'productlist','1','updatestock'),(75483,'productlist','1','more'),(75484,'productlist','1','transfer'),(75485,'productlist','1','addstock'),(75486,'productlist','1','delete'),(75487,'productlist','1','view'),(75488,'productlist','1','update'),(75489,'productlist','1','add'),(75490,'productlist','1','stocktaking'),(75491,'productlist','1','editstocktaken'),(75492,'productlist','1','editopenclosestock'),(75493,'productlist','1','changeserialstatus'),(75494,'productlist','1','viewserials'),(75495,'productlist','1','viewproductsfromallbranches'),(75496,'productlist','1','bulkpriceupdate'),(75497,'productlist','1','viewbprice'),(75498,'products','1','add'),(75499,'products','1','update'),(75500,'products','1','delete'),(75501,'products','1','addstock'),(75502,'products','1','more'),(75503,'products','1','bulk'),(75504,'products','1','deleteorder'),(75505,'products','1','removestock'),(75506,'products','1','dispatch'),(75507,'products','1','price'),(75508,'products','1','removeallstock'),(75509,'products','1','bulkpriceupdate'),(75510,'incomingstock','1','add'),(75511,'incomingstock','1','update'),(75512,'incomingstock','1','view'),(75513,'incomingstock','1','delete'),(75514,'incomingstore','1','add'),(75515,'incomingstore','1','delete'),(75516,'incomingstore','1','view'),(75517,'lowstocklist','1','more'),(75518,'lowstocklist','1','view'),(75519,'lowproducts','1','add'),(75520,'lowproducts','1','update'),(75521,'damagedproducts','1','add'),(75522,'damagedproducts','1','update'),(75523,'damagedproducts','1','delete'),(75524,'projectsmanagement','1','view'),(75525,'projectsmanagement','1','add'),(75526,'projectsmanagement','1','update'),(75527,'projectsmanagement','1','delete'),(75528,'assets','1','add'),(75529,'assets','1','update'),(75530,'assets','1','delete'),(75531,'accounting','1','deletebank'),(75532,'accounting','1','deleteglaccount'),(75533,'accounting','1','view'),(75534,'bankdeposits','1','update'),(75535,'bankdeposits','1','delete'),(75536,'banktransfer','1','add'),(75537,'journalentry','1','add'),(75538,'accountingreports','1','view'),(75539,'peoplecategory','1','add'),(75540,'peoplecategory','1','update'),(75541,'peoplecategory','1','delete'),(75542,'departments','1','add'),(75543,'payrollsetup','1','add'),(75544,'labourrecords','1','add'),(75545,'leavemanagement','1','add'),(75546,'biometricrecords','1','add'),(75547,'payroll','1','add'),(75548,'loyalitycards','1','add'),(75549,'loyalitycards','1','update'),(75550,'reports','1','view'),(75551,'reports','1','download'),(75552,'reports','1','delete'),(75553,'reports','1','update'),(75554,'reports','1','viewall'),(75555,'displayreport','1','view'),(75556,'grouping','1','add'),(75557,'grouping','1','update'),(75558,'grouping','1','delete'),(75559,'sendsms','1','add'),(75560,'sendsms','1','update'),(75561,'sendsms','1','delete'),(75562,'sendsms','1','transfersms'),(75563,'documents','1','add'),(75564,'documents','1','update'),(75565,'documents','1','delete'),(75566,'documents','1','viewalldocuments'),(75567,'humanresource','1','add'),(75568,'humanresource','1','update'),(75569,'humanresource','1','approve'),(75570,'humanresource','1','delete'),(75571,'humanresource','1','view'),(75572,'humanresource','1','allocate'),(75573,'humanresource','1','viewallpayroll'),(75574,'humanresource','1','leavesetup'),(75575,'humanresource','1','allleaves '),(75576,'humanresource','1','bioattendance'),(75577,'taskscategory','1','add'),(75578,'taskscategory','1','update'),(75579,'taskscategory','1','delete'),(75580,'task','1','add'),(75581,'task','1','viewall'),(75582,'task','1','update'),(75583,'task','1','delete'),(75584,'task','1','postspecifictask'),(75585,'task','1','postgeneraltask'),(75586,'task','1','viewothersspecifictask'),(75587,'task','1','viewothersgeneraltask'),(75588,'task','1','assigntask'),(75589,'task','1','posttaskforothers'),(75590,'callcenter','1','add'),(75591,'callcenter','1','upadate'),(75592,'callcenter','1','view'),(75593,'callcenter','1','download'),(75594,'callcenter','1','delete'),(75595,'deals','1','update'),(75596,'deals','1','delete'),(75597,'deals','1','viewall'),(75598,'complain','1','add'),(75599,'complain','1','view'),(75600,'complain','1','update'),(75601,'complain','1','allcompalin'),(75602,'complain','1','delete'),(75603,'events','1','add'),(75604,'events','1','update'),(75605,'events','1','delete'),(75606,'password','1','change'),(75607,'profile','1','update'),(75608,'ecommerce','1','add'),(75609,'ecommerce','1','update'),(75610,'ecommerce','1','delete'),(75611,'ecommerce','1','vieworders'),(75612,'ecommerce','1','setup'),(75613,'ecommerce','1','approveorders'),(75614,'quotation','1','add'),(75615,'quotation','1','update'),(75616,'quotation','1','delete'),(75617,'quotation','1','view'),(75618,'config','1','delete'),(75619,'config','1','update'),(76063,'sales','16','suspend'),(76064,'sales','16','add'),(76065,'sales','16','printreceipt'),(76066,'sales','16','update'),(76067,'sales','16','delete'),(76068,'sales','16','cash'),(76069,'sales','16','sale'),(76070,'sales','16','moresales'),(76071,'sales','16','reprint'),(76072,'sales','16','Logout'),(76073,'sales','16','select'),(76074,'sales','16','mpesabalance'),(76075,'sales','16','discount'),(76076,'sales','16','mpesa'),(76077,'sales','16','printbill'),(76078,'sales','16','productdiscount'),(76079,'sales','16','closebill'),(76080,'sales','16','editsellingprice'),(76081,'sales','16','updatepaymentmode'),(76082,'sales','16','card'),(76083,'sales','16','clearpayments'),(76084,'sales','16','viewbuyingprice'),(76085,'sales','16','cheque'),(76086,'sales','16','creditnote'),(76087,'sales','16','voucher'),(76088,'sales','16','salesbeyondbprice'),(76089,'sales','16','points'),(76090,'sales','16','credit'),(76091,'sales','16','dontprint'),(76092,'sales','16','backdatesales'),(76093,'sales','16','recordcoins'),(76094,'sales','16','changetaxstatus'),(76095,'sales','16','leaseitems'),(76096,'sales','16','giveloyalityponts'),(76097,'wholesale','16','sale'),(76098,'wholesale','16','add'),(76099,'wholesale','16','delete'),(76100,'wholesale','16','update'),(76101,'cashiersales','16','entermpesacode'),(76102,'cashiersales','16','editmpesa'),(76103,'cashiersales','16','all'),(76104,'cashiersales','16','delete'),(76105,'cashiersales','16','cashiersales'),(76106,'cashiersales','16','editmpesadate'),(76107,'cashiersales','16','adddailycollection'),(76108,'cashiersales','16','viewtill'),(76109,'cashiersales','16','viewdailycollections'),(76110,'cashiersales','16','updatedailycollections'),(76111,'cashiersales','16','reversempesa'),(76112,'cashiersales','16','deletedailycollections'),(76113,'cashiersales','16','clearallsales'),(76114,'cashiersales','16','viewallcollections'),(76115,'cashiersales','16','mpesapendingreport'),(76116,'cashiersales','16','viewallcounters'),(76117,'cashiersales','16','mpesaverifiedreport'),(76118,'cashiersales','16','viewcommission'),(76119,'cashiersales','16','viewmpesamessages'),(76120,'purchases','16','add'),(76121,'purchases','16','update'),(76122,'purchases','16','delete'),(76123,'purchases','16','updatebuyingprice'),(76124,'purchases','16','updatesellingprice'),(76125,'purchases','16','updateclosedinvoice'),(76126,'purchases','16','viewquotation'),(76127,'purchases','16','viewdirectpurchases'),(76128,'purchases','16','viewserials'),(76129,'purchases','16','viewpurchase'),(76130,'purchases','16','salesorder'),(76131,'purchases','16','budget'),(76132,'purchases','16','showdefaultserials'),(76133,'purchases','16','viewallcounters'),(76134,'purchases','16','approve'),(76135,'viewreturnsales','16','add'),(76136,'viewreturnsales','16','update'),(76137,'viewreturnsales','16','delete'),(76138,'viewreturnsales','16','return'),(76139,'viewreturnsales','16','clear'),(76140,'viewreturnsales','16','moresales'),(76141,'income','16','View'),(76142,'income','16','add'),(76143,'income','16','wiewinvoices'),(76144,'income','16','detailedvatinvoice'),(76145,'incomeexpenses','16','add'),(76146,'incomeexpenses','16','closeexpense'),(76147,'incomeexpenses','16','update'),(76148,'incomeexpenses','16','updateclosedexpenses'),(76149,'incomeexpenses','16','wiewinvoices'),(76150,'incomeexpenses','16','viewexpense'),(76151,'incomeexpenses','16','viewbills'),(76152,'incomeexpenses','16','viewdebtors'),(76153,'incomeexpenses','16','viewcreditors'),(76154,'members','16','add'),(76155,'members','16','update'),(76156,'members','16','deletepeople'),(76157,'members','16','opencloseshift'),(76158,'users','16','add'),(76159,'users','16','update'),(76160,'users','16','delete'),(76161,'users','16','deleteallroles'),(76162,'productscategory','16','add'),(76163,'productscategory','16','update'),(76164,'productscategory','16','delete'),(76165,'productlist','16','bulk'),(76166,'productlist','16','move'),(76167,'productlist','16','updatestock'),(76168,'productlist','16','more'),(76169,'productlist','16','transfer'),(76170,'productlist','16','addstock'),(76171,'productlist','16','delete'),(76172,'productlist','16','view'),(76173,'productlist','16','update'),(76174,'productlist','16','add'),(76175,'productlist','16','openclosestock'),(76176,'productlist','16','stocktaking'),(76177,'productlist','16','editstocktaken'),(76178,'productlist','16','editopenclosestock'),(76179,'productlist','16','changeserialstatus'),(76180,'productlist','16','viewserials'),(76181,'productlist','16','viewproductsfromallbranches'),(76182,'productlist','16','bulkpriceupdate'),(76183,'productlist','16','viewbprice'),(76184,'products','16','add'),(76185,'products','16','update'),(76186,'products','16','delete'),(76187,'products','16','addstock'),(76188,'products','16','more'),(76189,'products','16','bulk'),(76190,'products','16','deleteorder'),(76191,'products','16','removestock'),(76192,'products','16','dispatch'),(76193,'products','16','price'),(76194,'products','16','removeallstock'),(76195,'products','16','bulkpriceupdate'),(76196,'products','16','viewbprice'),(76197,'incomingstock','16','add'),(76198,'incomingstock','16','update'),(76199,'incomingstock','16','view'),(76200,'incomingstock','16','delete'),(76201,'lowstocklist','16','add'),(76202,'lowstocklist','16','more'),(76203,'lowstocklist','16','view'),(76204,'damagedproducts','16','add'),(76205,'damagedproducts','16','update'),(76206,'damagedproducts','16','delete'),(76207,'reports','16','view'),(76208,'reports','16','download'),(76209,'reports','16','delete'),(76210,'reports','16','update'),(76211,'reports','16','viewall'),(76212,'password','16','change'),(76213,'config','16','delete'),(76214,'config','16','add'),(76215,'config','16','update'),(76490,'sales','12','add'),(76491,'sales','12','suspend'),(76492,'sales','12','printreceipt'),(76493,'sales','12','update'),(76494,'sales','12','cash'),(76495,'sales','12','delete'),(76496,'sales','12','moresales'),(76497,'sales','12','sale'),(76498,'sales','12','Logout'),(76499,'sales','12','mpesabalance'),(76500,'sales','12','discount'),(76501,'sales','12','reprint'),(76502,'sales','12','printbill'),(76503,'sales','12','productdiscount'),(76504,'sales','12','mpesa'),(76505,'sales','12','closebill'),(76506,'sales','12','viewbuyingprice'),(76507,'sales','12','updatepaymentmode'),(76508,'sales','12','card'),(76509,'sales','12','editsellingprice'),(76510,'sales','12','clearpayments'),(76511,'sales','12','cheque'),(76512,'sales','12','creditnote'),(76513,'sales','12','voucher'),(76514,'sales','12','salesbeyondbprice'),(76515,'sales','12','points'),(76516,'sales','12','credit'),(76517,'sales','12','dontprint'),(76518,'sales','12','backdatesales'),(76519,'sales','12','recordcoins'),(76520,'sales','12','giveloyalityponts'),(76521,'sales','12','leaseitems'),(76522,'sales','12','changetaxstatus'),(76523,'sales','12','changeuomonsales'),(76524,'sales','12','entermpesacode'),(76525,'sales','12','updateqtysales'),(76526,'cashiersales','12','entermpesacode'),(76527,'cashiersales','12','editmpesa'),(76528,'cashiersales','12','all'),(76529,'cashiersales','12','delete'),(76530,'cashiersales','12','cashiersales'),(76531,'cashiersales','12','editmpesadate'),(76532,'cashiersales','12','adddailycollection'),(76533,'cashiersales','12','viewtill'),(76534,'cashiersales','12','viewdailycollections'),(76535,'cashiersales','12','deletedailycollections'),(76536,'cashiersales','12','reversempesa'),(76537,'cashiersales','12','updatedailycollections'),(76538,'cashiersales','12','clearallsales'),(76539,'cashiersales','12','viewallcollections'),(76540,'cashiersales','12','viewallcounters'),(76541,'cashiersales','12','mpesapendingreport'),(76542,'cashiersales','12','mpesaverifiedreport'),(76543,'cashiersales','12','viewcommission'),(76544,'cashiersales','12','viewmpesamessages'),(76545,'purchases','12','add'),(76546,'purchases','12','update'),(76547,'purchases','12','delete'),(76548,'purchases','12','updatebuyingprice'),(76549,'purchases','12','updatesellingprice'),(76550,'purchases','12','updateclosedinvoice'),(76551,'purchases','12','viewquotation'),(76552,'purchases','12','viewserials'),(76553,'purchases','12','viewdirectpurchases'),(76554,'purchases','12','viewpurchase'),(76555,'purchases','12','salesorder'),(76556,'purchases','12','budget'),(76557,'purchases','12','showdefaultserials'),(76558,'purchases','12','viewallcounters'),(76559,'purchases','12','approve'),(76560,'viewreturnsales','12','add'),(76561,'viewreturnsales','12','update'),(76562,'viewreturnsales','12','delete'),(76563,'viewreturnsales','12','return'),(76564,'viewreturnsales','12','clear'),(76565,'viewreturnsales','12','moresales'),(76566,'members','12','add'),(76567,'members','12','update'),(76568,'members','12','deletepeople'),(76569,'members','12','opencloseshift'),(76570,'users','12','add'),(76571,'users','12','update'),(76572,'users','12','delete'),(76573,'users','12','deleteallroles'),(76574,'productscategory','12','add'),(76575,'productscategory','12','update'),(76576,'productscategory','12','delete'),(76577,'productlist','12','bulk'),(76578,'productlist','12','updatestock'),(76579,'productlist','12','move'),(76580,'productlist','12','more'),(76581,'productlist','12','transfer'),(76582,'productlist','12','addstock'),(76583,'productlist','12','delete'),(76584,'productlist','12','view'),(76585,'productlist','12','update'),(76586,'productlist','12','add'),(76587,'productlist','12','stocktaking'),(76588,'productlist','12','openclosestock'),(76589,'productlist','12','editstocktaken'),(76590,'productlist','12','editopenclosestock'),(76591,'productlist','12','viewserials'),(76592,'productlist','12','changeserialstatus'),(76593,'productlist','12','viewproductsfromallbranches'),(76594,'productlist','12','bulkpriceupdate'),(76595,'productlist','12','negativestockadjustment'),(76596,'products','12','add'),(76597,'products','12','update'),(76598,'products','12','delete'),(76599,'products','12','addstock'),(76600,'products','12','more'),(76601,'products','12','bulk'),(76602,'products','12','deleteorder'),(76603,'products','12','dispatch'),(76604,'products','12','removestock'),(76605,'products','12','price'),(76606,'products','12','removeallstock'),(76607,'products','12','bulkpriceupdate'),(76608,'products','12','negativestockadjustment'),(76609,'incomingstock','12','add'),(76610,'incomingstock','12','update'),(76611,'incomingstock','12','view'),(76612,'incomingstock','12','delete'),(76613,'lowstocklist','12','add'),(76614,'lowstocklist','12','more'),(76615,'lowstocklist','12','view'),(76616,'damagedproducts','12','add'),(76617,'damagedproducts','12','update'),(76618,'damagedproducts','12','delete'),(76619,'reports','12','view'),(76620,'reports','12','download'),(76621,'reports','12','delete'),(76622,'reports','12','update'),(76623,'reports','12','viewall'),(76624,'password','12','change'),(76625,'config','12','delete'),(76626,'config','12','add'),(76627,'config','12','update'); /*!40000 ALTER TABLE `permissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plot` -- DROP TABLE IF EXISTS `plot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plot` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `agentid` varchar(100) NOT NULL, `landlordid` varchar(100) NOT NULL, `totalhouse` varchar(100) NOT NULL, `country` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `commission` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', `tax` decimal(10,2) NOT NULL, `bank` text NOT NULL, `branch` text NOT NULL, `penalty` decimal(10,2) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(11) NOT NULL, `penaltytype` varchar(30) NOT NULL DEFAULT 'percentage', `areas` varchar(30) NOT NULL DEFAULT 'yes', `coparent` varchar(30) NOT NULL DEFAULT 'yes', `water` varchar(30) NOT NULL DEFAULT 'yes', `garbage` varchar(30) NOT NULL DEFAULT 'yes', `power` varchar(30) NOT NULL DEFAULT 'yes', `showpenalty` varchar(30) NOT NULL, `partial` varchar(30) NOT NULL DEFAULT '', `vat2` decimal(10,0) DEFAULT 0, `invoicedate` varchar(10) NOT NULL DEFAULT '01', `penaltydate` varchar(10) NOT NULL DEFAULT '10', `duedate` varchar(30) NOT NULL DEFAULT '10', `taxtype` varchar(30) NOT NULL DEFAULT 'Landlord', `invoicesms` text NOT NULL, `receiptsms` text NOT NULL, `utility` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plot` -- LOCK TABLES `plot` WRITE; /*!40000 ALTER TABLE `plot` DISABLE KEYS */; INSERT INTO `plot` VALUES (1,'','JUJA SQUARE','JUJA','2 ','2 ','5','1 ','2023-05-23 15:37:12','','','1','','','','1','1',0.00,'KCB Bank','',0.00,'accommodation',1,'percentage','no','no','no','no','no','no','no',0,'01','10','10','Landlord','','','yes'); /*!40000 ALTER TABLE `plot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plotcharges` -- DROP TABLE IF EXISTS `plotcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plotcharges` ( `id` int(100) NOT NULL AUTO_INCREMENT, `chargeid` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `order` int(10) NOT NULL, `plotcharges` int(5) NOT NULL DEFAULT 1, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plotcharges` -- LOCK TABLES `plotcharges` WRITE; /*!40000 ALTER TABLE `plotcharges` DISABLE KEYS */; INSERT INTO `plotcharges` VALUES (1,'13 ','','1','800','active','2023-06-08 05:46:26','','',0,1,1),(2,'12 ','','1','1000','active','2023-06-08 05:46:46','','',0,1,1); /*!40000 ALTER TABLE `plotcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post` -- DROP TABLE IF EXISTS `post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `post` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post` -- LOCK TABLES `post` WRITE; /*!40000 ALTER TABLE `post` DISABLE KEYS */; INSERT INTO `post` VALUES (1,'ICT','','2023-05-27 01:27:28pm','0000-00-00 00:00:00',0); /*!40000 ALTER TABLE `post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `postrecharge` -- DROP TABLE IF EXISTS `postrecharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `postrecharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) DEFAULT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `postrecharge` -- LOCK TABLES `postrecharge` WRITE; /*!40000 ALTER TABLE `postrecharge` DISABLE KEYS */; /*!40000 ALTER TABLE `postrecharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `printers` -- DROP TABLE IF EXISTS `printers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `printers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `categoryno` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `printers` -- LOCK TABLES `printers` WRITE; /*!40000 ALTER TABLE `printers` DISABLE KEYS */; /*!40000 ALTER TABLE `printers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategory` -- DROP TABLE IF EXISTS `productcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategory` -- LOCK TABLES `productcategory` WRITE; /*!40000 ALTER TABLE `productcategory` DISABLE KEYS */; INSERT INTO `productcategory` VALUES (1,'WHISKY',0,'2022-07-01 10:19:17','active','1','','1','1','0','','Percentage',NULL),(2,'GIN',0,'2022-07-01 10:19:42','active','1','','1','1','0','','Percentage',NULL),(3,'BEERS',0,'2022-07-01 10:19:57','active','1','','1','1','0','','Percentage',NULL),(4,'VODKA',0,'2022-07-01 10:20:11','active','1','','1','1','0','','Percentage',NULL),(5,'CREAMS',0,'2022-07-01 10:20:25','active','1','','1','1','0','','Percentage',NULL),(6,'LIQUER',0,'2022-07-01 10:21:05','active','1','','1','1','0','','Percentage',NULL),(7,'RUM',0,'2022-07-01 15:34:45','active','1','','1','1','0','','Percentage',NULL),(10,'BEVERAGES',0,'2022-07-01 15:36:01','active','1','','1','1','0','','Percentage',NULL),(11,'SPIRITS',0,'2022-07-01 15:36:36','active','1','','1','1','0','','Percentage',NULL),(12,'WINES',0,'2022-07-01 15:36:53','active','1','','1','1','0','','Percentage',NULL),(13,'TOBACCO',0,'2022-07-01 17:58:07','active','1','','1','1','0','','Percentage',NULL),(14,'IN STORE',0,'2022-07-01 17:58:22','active','1','','1','1','0','','Percentage',NULL); /*!40000 ALTER TABLE `productcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategorybox` -- DROP TABLE IF EXISTS `productcategorybox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategorybox` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'New', `imgid` varchar(50) DEFAULT NULL, `myheader` varchar(50) DEFAULT 'primary', `icon` varchar(50) NOT NULL DEFAULT 'home', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategorybox` -- LOCK TABLES `productcategorybox` WRITE; /*!40000 ALTER TABLE `productcategorybox` DISABLE KEYS */; /*!40000 ALTER TABLE `productcategorybox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productlist` -- DROP TABLE IF EXISTS `productlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(51) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` varchar(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branch` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `store` text NOT NULL, `code` varchar(100) NOT NULL, `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, `iddd` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`,`branch`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=420 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productlist` -- LOCK TABLES `productlist` WRITE; /*!40000 ALTER TABLE `productlist` DISABLE KEYS */; INSERT INTO `productlist` VALUES (1,'ALVARO PINEAPPLE 330ML CAN','6','13','',16.00,'95.75','120','0','',NULL,NULL,'0',0,0,'885221656670430',0,0,0,0.00,'2022-07-01 13:22:32','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602525','pcs','Inventory','VATABLE',NULL,NULL,0),(2,'BAILEYS ORIGINAL 375ML','5','13','',16.00,'1040','1600','0','0',NULL,NULL,'0',0,0,'3194131656671033',0,0,0,2.00,'2022-07-01 13:25:55','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5011013100194','pcs','Inventory','VATABLE',NULL,NULL,0),(3,'BAILEYS ORIGINAL 750ML','5','13','',16.00,'1916','2800','0','0',NULL,NULL,'0',0,0,'5055021656671155',0,0,0,1.00,'2022-07-01 13:27:18','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5011013100132','pcs','Inventory','VATABLE',NULL,NULL,0),(4,'BAILEYS ORIGINAL 1L','5','13','',16.00,'2560','3700','0','0',NULL,NULL,'0',0,0,'8994631656671239',0,0,0,1.00,'2022-07-01 13:30:00','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5011013100118','pcs','Inventory','VATABLE',NULL,NULL,0),(5,'BALOZI LAGER CAN 500ML','3','13','',16.00,'172.833','250','0','0',NULL,NULL,'5',0,0,'8961101656671401',0,0,0,5.00,'2022-07-01 13:31:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606011','pcs','Inventory','VATABLE',NULL,NULL,0),(6,'BLACK &WHITE 1L','1','13','',16.00,'1130','1800','0','0',NULL,NULL,'0',0,0,'762271656671502',0,0,0,0.00,'2022-07-01 13:33:28','16','1','1','0000-00-00','mainitem','Inclusive','','active','','50196081','pcs','Inventory','VATABLE','5',NULL,0),(7,'BLACK & WHITE 750ML','1','13','',16.00,'855','1500','0','0',NULL,NULL,'0',0,0,'7986241656671609',0,0,0,0.00,'2022-07-01 13:35:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','50196111','pcs','Inventory','VATABLE','5',NULL,0),(8,'BLACK & WHITE 250ML','1','13','',16.00,'310','500','0','0',NULL,NULL,'0',0,0,'1245021656671705',0,0,0,0.00,'2022-07-01 13:36:31','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000196006652','pcs','Inventory','VATABLE',NULL,NULL,0),(9,'BLACK & WHITE 350ML','1','13','',16.00,'443','750','0','0',NULL,NULL,'0',0,0,'786141656671792',0,0,0,1.00,'2022-07-01 13:37:39','16','1','1','0000-00-00','mainitem','Inclusive','','active','','50196166','pcs','Inventory','VATABLE',NULL,NULL,0),(10,'BOND 7 350ML','1','13','',16.00,'542','750','0','',NULL,NULL,'0',0,0,'651101656671859',0,0,0,11.00,'2022-07-01 13:38:53','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930970','pcs','Inventory','VATABLE','5',NULL,0),(11,'BOND 7 250ML','1','13','',16.00,'388','550','0','',NULL,NULL,'0',0,0,'4214901656671934',0,0,0,25.00,'2022-07-01 13:40:13','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602143','pcs','Inventory','VATABLE',NULL,NULL,0),(12,'BOND 7 750ML','1','13','',16.00,'1125','1500','0','',NULL,NULL,'0',0,0,'8950831656672014',0,0,0,1.00,'2022-07-01 13:41:02','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930963','pcs','Inventory','VATABLE',NULL,NULL,0),(13,'CAPTAIN MORGAN GOLD 250ML','6','13','',16.00,'284','400','0','',NULL,NULL,'0',0,0,'8315831656672062',0,0,0,0.00,'2022-07-01 13:42:17','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604550','pcs','Inventory','VATABLE',NULL,NULL,0),(14,'CAPTAIN MORGAN 750ML','6','13','',16.00,'788','1800','0','0',NULL,NULL,'0',0,0,'2611991656672137',0,0,0,0.00,'2022-07-01 13:43:19','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604543','pcs','Inventory','VATABLE','5',NULL,0),(15,'CHROME GIN 250ML','2','13','',16.00,'182','270','0','0',NULL,NULL,'0',0,0,'8800381656672200',0,0,0,2.00,'2022-07-01 13:44:36','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101605458','pcs','Inventory','VATABLE',NULL,NULL,0),(16,'CHROME GIN 750ML','2','13','',16.00,'501','800','0','0',NULL,NULL,'0',0,0,'1828661656672277',0,0,0,0.00,'2022-09-28 22:49:45','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101605465','pcs','Inventory','VATABLE','',NULL,0),(18,'CHROME VODKA 750ML','4','13','',16.00,'501','800','0','0',NULL,NULL,'0',0,0,'4636321656672508',0,0,0,1.00,'2022-07-01 13:49:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603522','pcs','Inventory','VATABLE',NULL,NULL,0),(19,'CIROC VODKA 1L','4','13','',16.00,'4160','5800','0','0',NULL,NULL,'0',0,0,'1356191656672581',0,0,0,0.00,'2022-07-01 13:50:50','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103912976','pcs','Inventory','VATABLE',NULL,NULL,0),(20,'GILBEYS GIN 250ML','2','13','',16.00,'418','600','0','0',NULL,NULL,'0',0,0,'923591656672650',0,0,0,0.00,'2022-07-29 19:11:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602167','pcs','Inventory','VATABLE','',NULL,0),(21,'GILBEYS GIN 350ML','2','13','',16.00,'576','850','0','0',NULL,NULL,'0',0,0,'1789091656672714',0,0,0,0.00,'2022-07-01 13:53:17','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930666','pcs','Inventory','VATABLE',NULL,NULL,0),(22,'GILBEYS GIN 750ML','2','13','',16.00,'1125','1750','12','1125',NULL,NULL,'0',0,0,'4955941656672819',0,0,0,2.00,'2022-07-28 16:20:03','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930628','pcs','Inventory','VATABLE','',NULL,0),(23,'GILBEYS GIN MIXED BERRY 250ML','2','13','',16.00,'388','550','0','0',NULL,NULL,'0',0,0,'482831656672881',0,0,0,3.00,'2022-07-01 13:55:47','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606547','pcs','Inventory','VATABLE',NULL,NULL,0),(24,'GILBEYS GIN MIXED BERRY 750ML','2','13','',16.00,'1125','1850','0','0',NULL,NULL,'0',0,0,'1945871656672948',0,0,0,0.00,'2022-07-01 13:56:51','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606561','pcs','Inventory','VATABLE',NULL,NULL,0),(25,'GORDONS DRY GIN 1L','2','13','',16.00,'1840','3000','0','2500',NULL,NULL,'0',0,0,'3025561656673012',0,0,0,0.00,'2022-07-01 13:58:29','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289020800','pcs','Inventory','VATABLE',NULL,NULL,0),(26,'GORDONS DRY GIN 750ML','2','13','',16.00,'1900','2800','6','0',NULL,NULL,'0',0,0,'3858131656673110',0,0,0,0.00,'2022-07-01 13:59:25','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289020701','pcs','Inventory','VATABLE',NULL,NULL,0),(27,'GORDONS DRY GIN 350ML','2','13','',16.00,'710','950','0','',NULL,NULL,'0',0,0,'9356841656673166',0,0,0,0.00,'2022-07-01 14:00:25','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289933292','pcs','Inventory','VATABLE',NULL,NULL,0),(28,'GORDONS PINK GIN 700ML','2','13','',16.00,'1900','3000','6','0',NULL,NULL,'0',0,0,'5188551656673225',0,0,0,3.00,'2022-07-01 14:03:42','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289929417','pcs','Inventory','VATABLE',NULL,NULL,0),(29,'GORDONS SICILIAN LEMON 700ML','2','13','',16.00,'1840','2800','0','0',NULL,NULL,'0',0,0,'1936811656673422',0,0,0,0.00,'2022-07-01 14:05:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000289932479','pcs','Inventory','VATABLE',NULL,NULL,0),(30,'GUINNESS CAN 500ML','3','13','',16.00,'189.75','250','0','0',NULL,NULL,'0',0,0,'5829591656673542',0,0,0,0.00,'2022-07-01 14:07:13','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602372','pcs','Inventory','VATABLE',NULL,NULL,0),(31,'GUINNESS SMOOTH CAN 500ML','3','13','',16.00,'172.833','250','0','0',NULL,NULL,'0',0,0,'2606861656673633',0,0,0,0.00,'2022-07-01 14:08:53','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101605199','pcs','Inventory','VATABLE','5',NULL,0),(32,'JW GOLD RESERVE 750ML','1','13','',16.00,'5685','7700','0','',NULL,NULL,'0',0,0,'932651656673734',0,0,0,0.00,'2022-07-01 14:11:11','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267107776','pcs','Inventory','VATABLE',NULL,NULL,0),(33,'JW RED 1L','1','13','',16.00,'1780','2800','6','0',NULL,NULL,'0',0,0,'3308921656673872',0,0,0,0.00,'2022-07-01 14:12:40','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267013602','pcs','Inventory','VATABLE',NULL,NULL,0),(34,'JW RED 375ML','1','13','',16.00,'864','1700','0','0',NULL,NULL,'0',0,0,'4905191656673961',0,0,0,0.00,'2022-07-01 14:14:12','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267014609','pcs','Inventory','VATABLE','5',NULL,0),(35,'JW RED 750ML','1','13','',16.00,'1465','2500','3','0',NULL,NULL,'0',0,0,'2683891656674052',0,0,0,1.00,'2022-07-01 14:16:04','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267014005','pcs','Inventory','VATABLE',NULL,NULL,0),(36,'J&B RARE 1L','1','13','',16.00,'1699','2300','0','',NULL,NULL,'0',0,0,'7190831656674165',0,0,0,0.00,'2022-07-01 14:20:40','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103800457','pcs','Inventory','VATABLE',NULL,NULL,0),(37,'J&B RARE 375ML','1','13','',16.00,'719','1000','0','',NULL,NULL,'0',0,0,'9629331656674441',0,0,0,18.00,'2022-07-01 14:22:07','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103800167','pcs','Inventory','VATABLE',NULL,NULL,0),(38,'J&B RARE 750ML','1','13','',16.00,'1353','1900','0','',NULL,NULL,'0',0,0,'5808141656674528',0,0,0,0.00,'2022-07-01 14:23:23','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103800303','pcs','Inventory','VATABLE',NULL,NULL,0),(39,'JW AGED 18YRS 750ML','1','13','',16.00,'7531','10000','0','',NULL,NULL,'0',0,0,'3016501656674604',0,0,0,1.00,'2022-07-01 14:25:15','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267165806','pcs','Inventory','VATABLE',NULL,NULL,0),(40,'JW BLACK LABEL 750ML','1','13','',16.00,'2835','4000','0','0',NULL,NULL,'0',0,0,'4403411656674716',0,0,0,0.00,'2022-07-01 14:26:50','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267024011','pcs','Inventory','VATABLE',NULL,NULL,0),(41,'JW DOUBLE BLACK 750ML','1','13','',16.00,'3870','5500','0','0',NULL,NULL,'0',0,0,'7477211656674811',0,0,0,0.00,'2022-07-01 14:27:55','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267116419','pcs','Inventory','VATABLE',NULL,NULL,0),(42,'KETEL ONE 750ML','4','13','',16.00,'2461','3000','0','',NULL,NULL,'0',0,0,'8060251656674875',0,0,0,3.00,'2022-07-01 14:29:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','085156275021','pcs','Inventory','VATABLE',NULL,NULL,0),(43,'PILSNER CAN 500ML','3','13','',16.00,'154.95','250','0','0',NULL,NULL,'0',0,0,'132411656674941',0,0,0,0.00,'2022-07-01 14:30:02','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602600','pcs','Inventory','VATABLE',NULL,NULL,0),(44,'RICHOT BRANDY 250ML','6','13','',16.00,'388','550','0','',NULL,NULL,'0',0,0,'6237421656675003',0,0,0,21.00,'2022-07-01 14:31:08','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602181','pcs','Inventory','VATABLE',NULL,NULL,0),(45,'RICHOT BRANDY 750ML','6','13','',16.00,'1125','1500','0','',NULL,NULL,'0',0,0,'9197031656675068',0,0,0,8.00,'2022-07-01 14:32:04','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930864','pcs','Inventory','VATABLE',NULL,NULL,0),(46,'SHERIDAN\"S 1L','6','13','',16.00,'4049','5500','0','',NULL,NULL,'0',0,0,'4102821656675125',0,0,0,0.00,'2022-07-01 14:33:26','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5011013500604','pcs','Inventory','VATABLE',NULL,NULL,0),(47,'SMIRNOFF RED 1L','4','13','',16.00,'1417','1900','0','',NULL,NULL,'0',0,0,'469541656675206',0,0,0,0.00,'2022-07-01 14:35:20','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101600927','pcs','Inventory','VATABLE',NULL,NULL,0),(48,'SMIRNOFF GUARANA 330ML','6','13','',16.00,'150.45','250','12','0',NULL,NULL,'0',0,0,'7084491656675320',0,0,0,0.00,'2022-07-01 14:37:37','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603324','pcs','Inventory','VATABLE',NULL,NULL,0),(49,'SMIRNOFF BLACK ICE 330ML CAN','6','13','',16.00,'150.45','250','0','0',NULL,NULL,'0',0,0,'1906901656675458',0,0,0,0.00,'2022-07-01 14:39:10','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604703','pcs','Inventory','VATABLE',NULL,NULL,0),(50,'THE SINGLETON 18YRS 700ML','1','13','',16.00,'8000','11000','0','0',NULL,NULL,'0',0,0,'1844371656675550',0,0,0,1.00,'2022-11-09 03:26:04','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281028620','pcs','Inventory','VATABLE','',NULL,0),(51,'SMIRNOFF RED 250ML','4','13','',16.00,'392','550','0','',NULL,NULL,'0',0,0,'8984961656675653',0,0,0,0.00,'2022-07-01 14:42:21','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602051','pcs','Inventory','VATABLE',NULL,NULL,0),(52,'SMIRNOFF RED 350ML','4','13','',16.00,'544','750','0','',NULL,NULL,'0',0,0,'6323821656675742',0,0,0,0.00,'2022-07-01 14:43:56','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101600941','pcs','Inventory','VATABLE',NULL,NULL,0),(53,'SMIRNOFF RED 750ML','4','13','',16.00,'1144','1600','0','0',NULL,NULL,'0',0,0,'2021701656675836',0,0,0,3.00,'2022-07-01 14:45:10','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101600934','pcs','Inventory','VATABLE',NULL,NULL,0),(54,'SNAPP 330ML CAN','3','13','',16.00,'150.45','200','0','',NULL,NULL,'0',0,0,'6424721656675911',0,0,0,1.00,'2022-07-01 14:46:37','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602433','pcs','Inventory','VATABLE',NULL,NULL,0),(55,'TALISKER WHISKY 1L','1','13','',16.00,'6313','8500','0','',NULL,NULL,'0',0,0,'1954941656675998',0,0,0,1.00,'2022-07-01 14:47:50','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281003641','pcs','Inventory','VATABLE',NULL,NULL,0),(56,'TALISKER STORM 750ML','1','13','',16.00,'3996','5400','0','',NULL,NULL,'0',0,0,'3096551656676070',0,0,0,0.00,'2022-07-01 14:49:03','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281032733','pcs','Inventory','VATABLE',NULL,NULL,0),(57,'TANQUERAY SEVILLA 700ML','2','13','',16.00,'2220','3000','0','',NULL,NULL,'0',0,0,'7068181656676143',0,0,0,0.00,'2022-07-01 14:52:09','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291023462','pcs','Inventory','VATABLE',NULL,NULL,0),(58,'TANQUERAY LONDON GIN 750ML','2','13','',16.00,'2070','2800','0','',NULL,NULL,'0',0,0,'5573421656676329',0,0,0,0.00,'2022-07-01 14:53:18','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291020706','pcs','Inventory','VATABLE',NULL,NULL,0),(59,'TANQUERAY NO.TEN 1L','2','13','',16.00,'4000','5400','0','',NULL,NULL,'0',0,0,'440841656676399',0,0,0,0.00,'2022-07-01 14:55:00','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281016689','pcs','Inventory','VATABLE',NULL,NULL,0),(60,'TANQUERAY NO.TEN 750ML','2','13','',16.00,'3381','4500','0','',NULL,NULL,'0',0,0,'4772871656676500',0,0,0,0.00,'2022-07-01 14:55:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291021925','pcs','Inventory','VATABLE',NULL,NULL,0),(61,'TANQUERAY ROYALE GIN 700ML','2','13','',16.00,'2200','3000','0','',NULL,NULL,'0',0,0,'4282571656676558',0,0,0,0.00,'2022-07-01 14:57:24','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291025824','pcs','Inventory','VATABLE',NULL,NULL,0),(62,'TANQUERAY RANGPUR LIME 700ML','2','13','',16.00,'2220','3000','0','',NULL,NULL,'0',0,0,'3505891656676645',0,0,0,3.00,'2022-07-01 14:59:03','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291025930','pcs','Inventory','VATABLE',NULL,NULL,0),(63,'TUSKER CIDER CAN 500ML','3','13','',16.00,'181.708','250','0','0',NULL,NULL,'0',0,0,'8380171656676754',0,0,0,10.00,'2022-07-01 15:00:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604406','pcs','Inventory','VATABLE',NULL,NULL,0),(64,'TUSKER LAGER CAN 500ML','3','13','',16.00,'172.75','250','0','0',NULL,NULL,'0',0,0,'6737081656676857',0,0,0,5.00,'2022-07-01 15:02:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101601979','pcs','Inventory','VATABLE',NULL,NULL,0),(65,'TUSKER LITE CAN 500ML','3','13','',16.00,'198.45','250','0','0',NULL,NULL,'0',0,0,'88001656676921',0,0,0,0.00,'2022-07-01 15:03:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602938','pcs','Inventory','VATABLE',NULL,NULL,0),(66,'TUSKER MALT CAN 500ML','3','13','',16.00,'198.45','250','0','0',NULL,NULL,'0',0,0,'5853761656676986',0,0,0,2.00,'2022-07-01 15:03:52','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602921','pcs','Inventory','VATABLE',NULL,NULL,0),(67,'V&A 750ML','6','13','',16.00,'711','1300','0','0',NULL,NULL,'0',0,0,'5926261656677032',0,0,0,2.00,'2022-07-01 15:05:37','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101130424','pcs','Inventory','VATABLE',NULL,NULL,0),(68,'VAT 69 250ML','1','13','',16.00,'430','600','0','',NULL,NULL,'0',0,0,'1315411656677138',0,0,0,10.00,'2022-07-01 15:08:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000292263171','pcs','Inventory','VATABLE',NULL,NULL,0),(69,'VAT 69 375ML','1','13','',16.00,'635','850','0','',NULL,NULL,'0',0,0,'1183991656677281',0,0,0,2.00,'2022-07-01 15:10:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101601115','pcs','Inventory','VATABLE',NULL,NULL,0),(70,'VAT 69 750ML','1','13','',16.00,'1141','1600','0','',NULL,NULL,'0',0,0,'9055651656677406',0,0,0,1.00,'2022-07-01 15:11:12','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000292001001','pcs','Inventory','VATABLE',NULL,NULL,0),(71,'WHITE CAP CAN 500ML','3','13','',16.00,'190.375','250','0','0',NULL,NULL,'1',0,0,'5944991656677472',0,0,0,1.00,'2022-07-28 16:55:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603379','pcs','Inventory','VATABLE','',NULL,0),(72,'JW WHITE 1L','1','13','',16.00,'3056','4500','0','0',NULL,NULL,'0',0,0,'4803981656677569',0,0,0,0.00,'2022-07-01 15:16:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267173139','pcs','Inventory','VATABLE',NULL,NULL,0),(73,'JW BLUE 750ML','1','13','',16.00,'21211','25000','0','0',NULL,NULL,'0',0,0,'8984061656677818',0,0,0,1.00,'2022-07-01 15:19:40','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267114279','pcs','Inventory','VATABLE',NULL,NULL,0),(74,'JW GREEN LABEL 750ML','1','13','',16.00,'5458','7300','0','',NULL,NULL,'0',0,0,'5999671656677980',0,0,0,0.00,'2022-07-01 15:21:18','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267134338','pcs','Inventory','VATABLE',NULL,NULL,0),(75,'AMARULA CREAM 1L','5','13','',16.00,'1960','3200','0','0',NULL,NULL,'0',0,0,'3852391656678288',0,0,0,0.00,'2022-12-18 13:19:17','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495062669','pcs','Inventory','VATABLE','',NULL,0),(76,'BACARDI CARTA BLANCA 1L','6','13','',16.00,'1730','2300','0','',NULL,NULL,'0',0,0,'6618961656678577',0,0,0,0.00,'2022-07-01 15:31:43','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010677015738','pcs','Inventory','VATABLE',NULL,NULL,0),(77,'BACARDI CARTA BLANCA 750ML','7','13','',16.00,'1300','1800','0','',NULL,NULL,'0',0,0,'6300861656679104',0,0,0,1.00,'2022-07-01 15:40:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010677015615','pcs','Inventory','VATABLE',NULL,NULL,0),(78,'BACARDI CARTA NEGRA 1L','7','13','',16.00,'1570','2300','0','0',NULL,NULL,'0',0,0,'2304461656679202',0,0,0,2.00,'2022-07-01 15:41:22','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010677038874','pcs','Inventory','VATABLE',NULL,NULL,0),(79,'BACARDI CARTA ORO 750ML','7','13','',16.00,'1270','1750','0','',NULL,NULL,'0',0,0,'6245271656679283',0,0,0,0.00,'2022-07-01 15:42:26','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010677025003','pcs','Inventory','VATABLE',NULL,NULL,0),(80,'BALLANTINES 750ML','1','13','',16.00,'1600','2200','0','',NULL,NULL,'0',0,0,'9582201656679347',0,0,0,0.00,'2022-07-01 15:43:19','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010106111451','pcs','Inventory','VATABLE',NULL,NULL,0),(81,'BEEFEATER PINK GIN 750ML','2','13','',16.00,'2460','3500','0','0',NULL,NULL,'0',0,0,'9028161656679400',0,0,0,2.00,'2022-07-01 15:44:27','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000299618073','pcs','Inventory','VATABLE',NULL,NULL,0),(82,'BIANCO NOBILE VANILLA 750ML','12','13','',16.00,'1350','1900','0','0',NULL,NULL,'0',0,0,'1161641656679468',0,0,0,4.00,'2022-07-01 15:45:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387000317','pcs','Inventory','VATABLE',NULL,NULL,0),(83,'CAPTAIN MORGAN BLACK RUM 1L','7','13','',16.00,'1650','2250','0','',NULL,NULL,'0',0,0,'7021661656679558',0,0,0,3.00,'2022-07-01 15:47:29','16','1','1','0000-00-00','mainitem','Inclusive','','active','','087000006935','pcs','Inventory','VATABLE',NULL,NULL,0),(84,'CAPTAIN MORGAN DARK RUM 750ML','6','13','',16.00,'1320','1800','0','',NULL,NULL,'0',0,0,'8841471656679650',0,0,0,1.00,'2022-07-01 15:49:06','16','1','1','0000-00-00','mainitem','Inclusive','','active','','087000006928','pcs','Inventory','VATABLE',NULL,NULL,0),(85,'CHIVAS REGAL 12YRS 1LTR','1','13','',16.00,'3250','4800','0','0',NULL,NULL,'0',0,0,'4326681656679747',0,0,0,0.00,'2022-11-09 03:17:59','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080432400432','pcs','Inventory','VATABLE','',NULL,0),(86,'CHIVAS REGAL 12YRS 750ML','1','13','',16.00,'3200','4350','0','0',NULL,NULL,'0',0,0,'1957961656679822',0,0,0,0.00,'2022-07-01 15:51:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','080432400395','pcs','Inventory','VATABLE',NULL,NULL,0),(87,'GENTLEMAN JACK 750ML','1','13','',16.00,'3920','8500','0','',NULL,NULL,'0',0,0,'7694721656679912',0,0,0,0.00,'2022-07-01 15:53:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5099873038758','pcs','Inventory','VATABLE',NULL,NULL,0),(88,'GLENFIDDICH 12YRS','1','13','',16.00,'6800','8500','0','1',NULL,NULL,'0',0,0,'2670901656680037',0,0,0,1.00,'2022-07-01 15:56:53','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327302201','pcs','Inventory','VATABLE',NULL,NULL,0),(89,'HENNESSY VS 1L','1','13','',16.00,'9200','12500','0','',NULL,NULL,'0',0,0,'5996051656680214',0,0,0,0.00,'2022-07-01 15:58:47','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3245990255215','pcs','Inventory','VATABLE',NULL,NULL,0),(90,'HENNESSY VSOP 1L','1','13','',16.00,'13000','17500','0','',NULL,NULL,'0',0,0,'7073621656680327',0,0,0,0.00,'2022-07-01 15:59:58','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3245990987611','pcs','Inventory','VATABLE',NULL,NULL,0),(91,'JACK DANIELS 1L','1','13','',16.00,'3450','5300','0','0',NULL,NULL,'0',0,0,'7737921656680399',0,0,0,0.00,'2022-07-01 16:07:49','16','1','1','0000-00-00','mainitem','Inclusive','','active','','082184090442','pcs','Inventory','VATABLE',NULL,NULL,0),(92,'JACK DANIELS 700ML','1','13','',16.00,'2600','4000','0','0',NULL,NULL,'0',0,0,'7508031656680869',0,0,0,1.00,'2022-07-01 16:09:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','082184090473','pcs','Inventory','VATABLE',NULL,NULL,0),(93,'JACK DANIELS 350ML','1','13','',16.00,'1650','2300','0','',NULL,NULL,'0',0,0,'9617851656680942',0,0,0,0.00,'2022-07-01 16:09:55','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5099873089712','pcs','Inventory','VATABLE',NULL,NULL,0),(94,'JACK DANIEL HONEY 1L','1','13','',16.00,'3100','4700','0','0',NULL,NULL,'0',0,0,'4718791656680996',0,0,0,1.00,'2022-07-01 16:10:51','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5099873046968','pcs','Inventory','VATABLE',NULL,NULL,0),(95,'JACK DANIEL HONEY 700ML','1','13','',16.00,'3000','4000','0','',NULL,NULL,'0',0,0,'4595241656681052',0,0,0,0.00,'2022-07-01 16:12:17','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5099873001370','pcs','Inventory','VATABLE',NULL,NULL,0),(96,'JACK DANIEL RYE 1L','1','13','',16.00,'3300','4500','0','',NULL,NULL,'0',0,0,'4169591656681137',0,0,0,0.00,'2022-07-01 16:13:15','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5099873011737','pcs','Inventory','VATABLE',NULL,NULL,0),(97,'JACK DANIELS SINGLE BARREL 750ML','1','13','',16.00,'5900','8000','0','',NULL,NULL,'0',0,0,'4547511656681196',0,0,0,2.00,'2022-07-01 16:14:33','16','1','1','0000-00-00','mainitem','Inclusive','','active','','082184087008','pcs','Inventory','VATABLE',NULL,NULL,0),(98,'JAGERMEISTER 700ML','6','13','',16.00,'2600','3600','0','0',NULL,NULL,'0',0,0,'3112861656681274',0,0,0,0.00,'2022-07-01 16:16:08','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4067700014559','pcs','Inventory','VATABLE',NULL,NULL,0),(99,'JAGERMEISTER 1L','6','13','',16.00,'3350','5200','0','0',NULL,NULL,'0',0,0,'321821656681368',0,0,0,0.00,'2022-07-01 16:18:20','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4067700014535','pcs','Inventory','VATABLE',NULL,NULL,0),(100,'JAMESON 750ML','1','13','',16.00,'1900','2700','0','0',NULL,NULL,'0',0,0,'4694931656682290',0,0,0,0.00,'2022-07-01 16:34:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5011007003029','pcs','Inventory','VATABLE',NULL,NULL,0),(101,'JW BLACK LABEL 1L','1','13','',16.00,'3540','5300','0','0',NULL,NULL,'0',0,0,'5588221656682443',0,0,0,0.00,'2022-07-01 16:36:36','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267125046','pcs','Inventory','VATABLE',NULL,NULL,0),(102,'JW BLUE LABEL1L','1','13','',16.00,'18500','28500','0','0',NULL,NULL,'0',0,0,'868911656682598',0,0,0,0.00,'2022-07-01 16:38:53','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267114293','pcs','Inventory','VATABLE',NULL,NULL,0),(103,'JW DOUBLE BLACK 1L','1','13','',16.00,'5120','7000','0','0',NULL,NULL,'0',0,0,'2346751656682733',0,0,0,0.00,'2022-07-01 16:40:14','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267112077','pcs','Inventory','VATABLE',NULL,NULL,0),(104,'MALIBU COCONUT RUM 700ML','7','13','',16.00,'1590','2150','0','',NULL,NULL,'0',0,0,'1199701656682815',0,0,0,1.00,'2022-07-01 16:43:50','16','1','1','0000-00-00','mainitem','Inclusive','','active','','089540448992','pcs','Inventory','VATABLE',NULL,NULL,0),(105,'MALIBU COCONUT RUM 1L','7','13','',16.00,'1970','2600','0','',NULL,NULL,'0',0,0,'4454461656683031',0,0,0,1.00,'2022-07-01 16:45:07','16','1','1','0000-00-00','mainitem','Inclusive','','active','','089540448978','pcs','Inventory','VATABLE',NULL,NULL,0),(106,'NEDERBURG SHIRAZ 750ML','12','13','',16.00,'1150','1600','0','',NULL,NULL,'0',0,0,'8816701656683107',0,0,0,0.00,'2022-07-01 16:48:12','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001452371506','pcs','Inventory','VATABLE',NULL,NULL,0),(107,'NEDERBURG CABERNET SAUVIGNON 750ML','12','13','',16.00,'1150','1600','0','',NULL,NULL,'0',0,0,'3199261656683293',0,0,0,0.00,'2022-07-01 16:50:06','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001452301862','pcs','Inventory','VATABLE',NULL,NULL,0),(108,'NEDERBURG MERLOT 750ML','12','13','',16.00,'1150','1600','0','',NULL,NULL,'0',0,0,'9503361656683408',0,0,0,0.00,'2022-07-01 16:51:40','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108001436','pcs','Inventory','VATABLE',NULL,NULL,0),(109,'NEDERBURG SAUVIGNON BLANC 750ML','12','13','',16.00,'1150','1600','0','',NULL,NULL,'0',0,0,'5787001656683501',0,0,0,0.00,'2022-07-01 16:52:56','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001452258005','pcs','Inventory','VATABLE',NULL,NULL,0),(110,'REMY MARTIN VSOP 700ML','12','13','',16.00,'7200','9700','0','',NULL,NULL,'0',0,0,'17611656683577',0,0,0,0.00,'2022-07-01 16:56:50','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3024482270123','pcs','Inventory','VATABLE',NULL,NULL,0),(111,'REMY MARTIN XO 700ML','12','13','',16.00,'18500','25000','0','',NULL,NULL,'0',0,0,'2759721656683811',0,0,0,2.00,'2022-07-01 16:58:13','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3024480004522','pcs','Inventory','VATABLE',NULL,NULL,0),(112,'ROBERTSON NATURAL SWEET RED 750ML','12','13','',16.00,'790','1400','0','0',NULL,NULL,'0',0,0,'8741171656683893',0,0,0,0.00,'2022-07-01 17:00:27','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6002039006019','pcs','Inventory','VATABLE',NULL,NULL,0),(113,'ROBERTSON NATURAL SWEET WHITE 750ML','12','13','',16.00,'790','1400','0','0',NULL,NULL,'0',0,0,'3716141656684028',0,0,0,0.00,'2022-07-01 17:01:35','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6002039005753','pcs','Inventory','VATABLE',NULL,NULL,0),(114,'ROBERTSON NATURAL SWEET RED 750ML','12','13','',16.00,'790','1400','0','0',NULL,NULL,'0',0,0,'5186441656684096',0,0,0,0.00,'2022-07-01 17:02:47','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6002039005746','pcs','Inventory','VATABLE',NULL,NULL,0),(115,'ROBERTSON NATURAL SWEET ROSE 1.5L','12','13','',16.00,'1400','2000','0','0',NULL,NULL,'0',0,0,'2627101656684167',0,0,0,0.00,'2022-07-01 17:04:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6002039008686','pcs','Inventory','VATABLE',NULL,NULL,0),(116,'ROSSO NOBILE NOUGAT 750ML','12','13','',16.00,'1150','1500','0','',NULL,NULL,'0',0,0,'6079121656684245',0,0,0,0.00,'2022-07-01 17:07:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387002267','pcs','Inventory','VATABLE',NULL,NULL,0),(117,'ROSSO CHERRY 750ML','12','13','',16.00,'1150','1500','0','',NULL,NULL,'0',0,0,'7887761656684462',0,0,0,0.00,'2022-07-01 17:09:04','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387003585','pcs','Inventory','VATABLE',NULL,NULL,0),(118,'ROSSO NOBILE ALL EXPRESSO 750ML','12','13','',16.00,'1050','1400','0','',NULL,NULL,'0',0,0,'6894171656684545',0,0,0,0.00,'2022-07-01 17:10:14','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387001451','pcs','Inventory','VATABLE','1',NULL,0),(119,'ROSSO NOBILE TASPBERRY & LEMON 750ML','12','13','',16.00,'1050','1400','0','',NULL,NULL,'0',0,0,'8078081656684615',0,0,0,1.00,'2022-07-01 17:11:24','16','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387004605','pcs','Inventory','VATABLE','1',NULL,0),(120,'SOUTHERN COMFORT 1L','1','13','',16.00,'2100','2900','0','',NULL,NULL,'0',0,0,'1968231656684684',0,0,0,0.00,'2022-07-01 17:13:41','16','1','1','0000-00-00','mainitem','Inclusive','','active','','088544018941','pcs','Inventory','VATABLE',NULL,NULL,0),(121,'SOUTHERN COMFORT 700ML','1','13','',16.00,'1650','2300','0','',NULL,NULL,'0',0,0,'8107681656684822',0,0,0,0.00,'2022-07-01 17:15:53','16','1','1','0000-00-00','mainitem','Inclusive','','active','','1210000100511','pcs','Inventory','VATABLE',NULL,NULL,0),(122,'ST CLAIRE 750ML','12','13','',16.00,'700','1400','0','0',NULL,NULL,'0',0,0,'7954221656684954',0,0,0,0.00,'2022-07-01 17:17:03','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001812011936','pcs','Inventory','VATABLE',NULL,NULL,0),(123,'TANQUERAY RANGPUR 1L','2','13','',16.00,'2822','3800','0','',NULL,NULL,'0',0,0,'7845161656685024',0,0,0,6.00,'2022-07-01 17:21:07','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291022663','pcs','Inventory','VATABLE',NULL,NULL,0),(124,'TANQUERAY LONDON GIN 1L','2','13','',16.00,'2760','3750','0','',NULL,NULL,'0',0,0,'5169821656685268',0,0,0,1.00,'2022-07-01 17:22:45','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000291020805','pcs','Inventory','VATABLE',NULL,NULL,0),(125,'VAT 69 1L','1','13','',16.00,'1250','1800','0','0',NULL,NULL,'0',0,0,'2063991656685366',0,0,0,0.00,'2022-07-01 17:29:45','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5000292262716','pcs','Inventory','VATABLE',NULL,NULL,0),(126,'ROTHMANS SPORTMAN','13','17','',16.00,'257','350','0','0',NULL,NULL,'0',0,0,'7095371656687798',0,0,0,0.00,'2022-07-01 18:05:32','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007685','pcs','Inventory','VATABLE',NULL,NULL,0),(127,'DUNHILL EMBASSY RED','13','17','',16.00,'337','500','0','0',NULL,NULL,'0',0,0,'5532031656687933',0,0,0,6.00,'2022-12-07 10:11:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007968','pcs','Inventory','VATABLE','',NULL,0),(128,'DUNHILL EMBASSY BLUE','13','17','',16.00,'337','500','10','0',NULL,NULL,'0',0,0,'8637551656688038',0,0,0,0.00,'2022-12-07 10:09:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007982','pcs','Inventory','VATABLE','',NULL,0),(129,'DUNHILL SINGLE SWITCH','13','17','',16.00,'346','550','0','0',NULL,NULL,'0',0,0,'8511281656688124',0,0,0,0.00,'2022-07-01 18:09:51','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007814','pcs','Inventory','VATABLE',NULL,NULL,0),(130,'DUNHILL DOUBLE SWITCH','13','17','',16.00,'346','550','0','0',NULL,NULL,'0',0,0,'9161391656688191',0,0,0,2.00,'2022-07-01 18:11:03','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007784','pcs','Inventory','VATABLE',NULL,NULL,0),(131,'REDBULL','10','14','',16.00,'147','250','0','0',NULL,NULL,'0',0,0,'5736851656688724',0,0,0,4.00,'2022-07-01 18:19:47','16','1','1','0000-00-00','mainitem','Inclusive','','active','','90162602','pcs','Inventory','VATABLE',NULL,NULL,0),(132,'DELMONTE MANGO 1LTR','10','15','',16.00,'205','300','0','0',NULL,NULL,'0',0,0,'651711656688788',0,0,0,0.00,'2022-07-01 18:21:16','16','1','1','0000-00-00','mainitem','Inclusive','','active','','024000150152','pcs','Inventory','VATABLE',NULL,NULL,0),(133,'DELMONTE TROPICAL 1LTR','10','15','',16.00,'205','300','0','0',NULL,NULL,'0',0,0,'7435221656688876',0,0,0,0.00,'2022-07-01 18:22:32','16','1','1','0000-00-00','mainitem','Inclusive','','active','','024000150121','pcs','Inventory','VATABLE',NULL,NULL,0),(134,'DELMONTE MIXED BERRIES 1 LTR','10','15','',16.00,'205','300','0','0',NULL,NULL,'0',0,0,'336321656688952',0,0,0,1.00,'2022-07-01 18:24:59','16','1','1','0000-00-00','mainitem','Inclusive','','active','','024000150138','pcs','Inventory','VATABLE',NULL,NULL,0),(135,'DELMONTE APPLE 1LTR','10','15','',16.00,'205','300','0','0',NULL,NULL,'0',0,0,'6030791656689100',0,0,0,3.00,'2022-07-01 18:26:25','16','1','1','0000-00-00','mainitem','Inclusive','','active','','024000150053','pcs','Inventory','VATABLE',NULL,NULL,0),(136,'AMARULA CREAM 750ML','5','13','',16.00,'2011','2800','0','0',NULL,NULL,'0',0,0,'1993611656689186',0,0,0,0.00,'2022-12-18 13:18:46','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495062508','pcs','Inventory','VATABLE','',NULL,0),(137,'MINUTE MAID APPLE 400ML','10','14','',16.00,'59.666','100','0','0',NULL,NULL,'0',0,0,'6314761656689413',0,0,0,7.00,'2022-07-01 18:31:34','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000188342','pcs','Inventory','VATABLE',NULL,NULL,0),(138,'MINUTE MAID TROPICAL 400ML','10','14','',16.00,'59.666','100','0','0',NULL,NULL,'0',0,0,'6469131656689494',0,0,0,0.00,'2022-07-01 18:32:31','16','1','1','0000-00-00','mainitem','Inclusive','','active','','90399480','pcs','Inventory','VATABLE',NULL,NULL,0),(139,'MINUTE MAID ORANGE PULPY 400ML','10','14','',16.00,'59.666','100','0','0',NULL,NULL,'0',0,0,'2772711656689551',0,0,0,2.00,'2022-07-01 18:33:30','16','1','1','0000-00-00','mainitem','Inclusive','','active','','90490224','pcs','Inventory','VATABLE',NULL,NULL,0),(140,'KERINGET 1LTR','10','14','',16.00,'74.58','150','0','0',NULL,NULL,'0',0,0,'8844191656689611',0,0,0,2.00,'2022-07-01 18:35:23','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5018907194802','pcs','Inventory','VATABLE',NULL,NULL,0),(141,'KERINGET 500ML','10','14','',16.00,'44.58','100','0','0',NULL,NULL,'0',0,0,'2450671656689724',0,0,0,0.00,'2022-07-01 18:36:13','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5018907197803','pcs','Inventory','VATABLE',NULL,NULL,0),(142,'COKE ZERO 500ML','10','14','',16.00,'53.333','80','0','0',NULL,NULL,'0',0,0,'4545091656689773',0,0,0,6.00,'2022-07-01 18:37:22','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000131836','pcs','Inventory','VATABLE',NULL,NULL,0),(143,'KREST 500ML','10','14','',16.00,'53.333','70','0','',NULL,NULL,'0',0,0,'542051656689843',0,0,0,1.00,'2022-07-01 18:38:19','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000139030','pcs','Inventory','VATABLE',NULL,NULL,0),(144,'SPRITE 500ML','10','14','',16.00,'53.333','80','0','0',NULL,NULL,'0',0,0,'7739431656689899',0,0,0,2.00,'2022-07-01 18:39:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','54491069','pcs','Inventory','VATABLE',NULL,NULL,0),(145,'FANTA ORANGE 500ML','10','14','',16.00,'53.333','70','0','',NULL,NULL,'0',0,0,'7044921656689946',0,0,0,11.00,'2022-07-01 18:40:01','16','1','1','0000-00-00','mainitem','Inclusive','','active','','40822938','pcs','Inventory','VATABLE',NULL,NULL,0),(146,'TONIC WATER 500ML','10','14','',16.00,'53.33','80','0','0',NULL,NULL,'0',0,0,'5032071656690002',0,0,0,3.00,'2022-07-01 18:41:04','16','1','1','0000-00-00','mainitem','Inclusive','','active','','50112265','pcs','Inventory','VATABLE',NULL,NULL,0),(147,'SODA WATER 500ML','10','14','',16.00,'53.333','80','0','0',NULL,NULL,'0',0,0,'2974501656690064',0,0,0,2.00,'2022-07-01 18:42:23','16','1','1','0000-00-00','mainitem','Inclusive','','active','','54493360','pcs','Inventory','VATABLE',NULL,NULL,0),(148,'HEINEKEN GLASS300ML','3','15','',16.00,'214','300','48','0',NULL,NULL,'0',0,0,'2969071656772708',0,0,0,4.00,'2022-07-02 17:40:14','16','1','1','0000-00-00','mainitem','Inclusive','','active','','8712000900663','pcs','Inventory','VATABLE',NULL,NULL,0),(149,'HEINEKEN CAN 500ML','3','15','',16.00,'182','300','20','0',NULL,NULL,'0',0,0,'9747451656772815',0,0,0,2.00,'2022-09-01 14:03:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8712000900045','pcs','Inventory','VATABLE','',NULL,0),(150,'SAVANNA DRY CIDER 330ML','3','15','',16.00,'201','300','36','0',NULL,NULL,'0',0,0,'8109191656772876',0,0,0,1.00,'2022-07-28 16:43:49','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108028044','pcs','Inventory','VATABLE','',NULL,0),(151,'J5 MINI LIGHTER','14','15','',16.00,'59.74','80','0','',NULL,NULL,'0',0,0,'9696091656772965',0,0,0,0.00,'2022-07-02 17:44:36','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3086120600051','pcs','Inventory','VATABLE',NULL,NULL,0),(152,'J5 MAXI LIGHTERS','14','15','',16.00,'93.86','120','0','',NULL,NULL,'0',0,0,'3579901656773077',0,0,0,12.00,'2022-07-02 17:46:11','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3086120600020','pcs','Inventory','VATABLE',NULL,NULL,0),(153,'DUREX FEATHERLITE','14','15','',16.00,'263.157','600','0','0',NULL,NULL,'0',0,0,'8943881656773171',0,0,0,1.00,'2022-07-02 17:47:21','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010232953994','pcs','Inventory','VATABLE',NULL,NULL,0),(154,'DUREX EXTRA SAFE','14','15','',16.00,'263.157','600','0','0',NULL,NULL,'0',0,0,'5539281656773241',0,0,0,1.00,'2022-07-02 17:48:24','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010232965096','pcs','Inventory','VATABLE',NULL,NULL,0),(155,'DUREX PERFORMA','14','14','',16.00,'315.787','700','0','0',NULL,NULL,'0',0,0,'548991656773305',0,0,0,0.00,'2022-07-02 17:50:06','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010232953925','pcs','Inventory','VATABLE',NULL,NULL,0),(156,'MONSTER MULE','10','15','',16.00,'153','250','0','0',NULL,NULL,'0',0,0,'1040501657194834',0,0,0,0.00,'2022-07-07 14:54:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5060639129003','pcs','Inventory','VATABLE',NULL,NULL,0),(157,'AZAM ENERGY 300ML','10','15','',16.00,'31.25','70','0','',NULL,NULL,'0',0,0,'1535331657194897',0,0,0,4.00,'2022-07-07 14:56:02','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6009644549320','pcs','Inventory','VATABLE',NULL,NULL,0),(158,'SAFARI LEMONADE','10','15','',16.00,'37.08','70','','0',NULL,NULL,'0',0,0,'748071657194963',0,0,0,0.00,'2022-11-11 21:25:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164001199331','pcs','Inventory','VATABLE','',NULL,0),(159,'PREDATOR ENERGY DRINK','10','15','',16.00,'41.82','80','12','0',NULL,NULL,'1',0,0,'7722211657195153',0,0,0,1.00,'2022-07-23 23:36:38','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5060608740253','pcs','Inventory','VATABLE','',NULL,0),(160,'CAPRICE DRY WHITE WINE 1LTR','12','15','',16.00,'636','1400','1','0',NULL,NULL,'0',0,0,'4239671657195228',0,0,0,1.00,'2022-07-07 15:02:05','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100420083','pcs','Inventory','VATABLE',NULL,NULL,0),(161,'CAPRICE SWEET WHITE 1LTR','12','15','',16.00,'636','1400','0','0',NULL,NULL,'0',0,0,'9874931657195541',0,0,0,2.00,'2022-07-07 15:07:44','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421288','pcs','Inventory','VATABLE',NULL,NULL,0),(162,'CAPRICE SWEET RED 1LTR','12','15','',16.00,'636','1400','0','1',NULL,NULL,'0',0,0,'499751657195665',0,0,0,0.00,'2022-07-07 15:08:57','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421271','pcs','Inventory','VATABLE',NULL,NULL,0),(163,'4TH STREET SWEET WHITE750ML','12','15','',16.00,'810','1300','0','0',NULL,NULL,'0',0,0,'572861657195737',0,0,0,1.00,'2022-07-07 15:11:28','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108049599','pcs','Inventory','VATABLE',NULL,NULL,0),(164,'4TH STREET SWEET RED 750ML','12','14','',16.00,'810','1300','0','0',NULL,NULL,'0',0,0,'8733621657195888',0,0,0,0.00,'2022-07-07 15:12:43','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108049582','pcs','Inventory','VATABLE',NULL,NULL,0),(165,'KIBAO VODKA 750ML','4','15','',16.00,'502','700','0','',NULL,NULL,'0',0,0,'7496241657195964',0,0,0,0.00,'2022-07-07 15:16:34','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421370','pcs','Inventory','VATABLE',NULL,NULL,0),(166,'KENYA CANE 750ML','11','15','',16.00,'653','1100','0','0',NULL,NULL,'0',0,0,'5327821657196194',0,0,0,3.00,'2022-07-07 15:18:51','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930833','pcs','Inventory','VATABLE',NULL,NULL,0),(167,'KENYA CANE 350ML','11','15','',16.00,'335','500','0','0',NULL,NULL,'0',0,0,'4090441657196331',0,0,0,2.00,'2022-07-07 15:20:20','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010103930840','pcs','Inventory','VATABLE',NULL,NULL,0),(168,'WILLIAM LAWSONS 750ML','1','15','',16.00,'1474','2200','0','0',NULL,NULL,'0',0,0,'8172331657196421',0,0,0,0.00,'2022-07-07 15:24:49','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010752000321','pcs','Inventory','VATABLE',NULL,NULL,0),(169,'WILLIAM LAWSONS 350ML','1','15','',16.00,'659','1000','0','0',NULL,NULL,'0',0,0,'2535861657196690',0,0,0,0.00,'2022-07-07 15:26:03','16','1','1','0000-00-00','mainitem','Inclusive','','active','','5010752000420','pcs','Inventory','VATABLE',NULL,NULL,0),(170,'SAINT ANNA NATURAL SWEET WHITE 750ML','12','15','',16.00,'815','1100','0','',NULL,NULL,'0',0,0,'5697581657197023',0,0,0,0.00,'2022-07-07 15:31:56','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001812011912','pcs','Inventory','VATABLE',NULL,NULL,0),(171,'DROSTDY HOF PREMIER GRAND CRU 750ML','12','2','',16.00,'628','1400','3','0',NULL,NULL,'0',0,0,'4804591657197116',0,0,0,6.00,'2022-07-07 15:33:59','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495203055','pcs','Inventory','VATABLE',NULL,NULL,0),(172,'DROSTDY HOF CLARET 750ML','12','15','',16.00,'628','1400','0','0',NULL,NULL,'0',0,0,'6041961657197240',0,0,0,2.00,'2022-07-07 15:35:38','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495201501','pcs','Inventory','VATABLE',NULL,NULL,0),(173,'VICEROY 750ML','7','15','',16.00,'1072','1700','0','1173',NULL,NULL,'0',0,0,'185571657197338',0,0,0,0.00,'2022-11-14 21:01:39','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001496011796','pcs','Inventory','VATABLE','',NULL,0),(174,'VICEROY 250ML','7','15','',16.00,'425','600','0','0',NULL,NULL,'0',0,0,'9189181657197559',0,0,0,0.00,'2022-07-07 15:40:40','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108016034','pcs','Inventory','VATABLE',NULL,NULL,0),(175,'VICEROY 375ML','7','15','',16.00,'610','900','0','0',NULL,NULL,'0',0,0,'2405961657197640',0,0,0,0.00,'2022-07-07 15:41:54','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001496011772','pcs','Inventory','VATABLE',NULL,NULL,0),(176,'HUNTERS CHOICE 350ML','1','15','',16.00,'435','700','0','0',NULL,NULL,'0',0,0,'8264771657197919',0,0,0,0.00,'2022-07-07 15:47:31','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421363','pcs','Inventory','VATABLE',NULL,NULL,0),(177,'CULEMBORG CAPE WHITE 750ML','12','15','',16.00,'850','1200','0','',NULL,NULL,'0',0,0,'3784121657198052',0,0,0,0.00,'2022-07-07 15:50:06','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001506003599','pcs','Inventory','VATABLE',NULL,NULL,0),(178,'CULEMBORG CAPE RED 750ML','12','15','',16.00,'850','1200','0','',NULL,NULL,'0',0,0,'1881531657198206',0,0,0,0.00,'2022-07-07 15:51:18','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001506011709','pcs','Inventory','VATABLE',NULL,NULL,0),(179,'OJ 16%','3','15','',16.00,'225','300','0','',NULL,NULL,'0',0,0,'3118911657198279',0,0,0,1.00,'2022-07-07 15:52:44','16','1','1','0000-00-00','mainitem','Inclusive','','active','','8719327068540','pcs','Inventory','VATABLE',NULL,NULL,0),(180,'CELLAR CASK RED 750ML','12','15','',16.00,'729','1200','0','0',NULL,NULL,'0',0,0,'378311657198364',0,0,0,0.00,'2022-07-07 15:55:34','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001496301804','pcs','Inventory','VATABLE',NULL,NULL,0),(181,'CELLA CASK WHITE 750ML','12','15','',16.00,'729','1350','0','0',NULL,NULL,'0',0,0,'6939181657198534',0,0,0,1.00,'2022-07-07 15:56:38','16','1','1','0000-00-00','mainitem','Inclusive','','active','','6001496301705','pcs','Inventory','VATABLE',NULL,NULL,0),(182,'DESPARADO ORIGINAL 330ML','10','15','',16.00,'188','250','0','',NULL,NULL,'0',0,0,'8592851657198774',0,0,0,0.00,'2022-07-07 16:01:24','16','1','1','0000-00-00','mainitem','Inclusive','','active','','3155930006015','pcs','Inventory','VATABLE',NULL,NULL,0),(183,'WILLIAM LAWSON CAN 330ML','1','15','',16.00,'177','250','0','',NULL,NULL,'0',0,0,'1298491658493989',0,0,0,1.00,'2022-07-22 15:49:00','12','1','1','0000-00-00','mainitem','Inclusive','','active','','100','pcs','Inventory','VATABLE',NULL,NULL,0),(184,'STRAWBERRY MILKSHAKE 15ML','14','18','',16.00,'2500','3250','0','0',NULL,NULL,'0',0,0,'378311659450611',0,0,0,0.00,'2022-08-02 17:34:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6974929190378','pcs','Inventory','VATABLE','1',NULL,0),(185,'PEACH MANGO WATERMELON 15ML','14','18','',16.00,'2500','3250','0','',NULL,NULL,'0',0,0,'6258871659450883',0,0,0,0.00,'2022-08-02 17:37:44','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6974929192235','pcs','Inventory','VATABLE','1',NULL,0),(186,'WATERMELON RAINBOW CANDY 15ML','14','18','',16.00,'2500','3250','0','',NULL,NULL,'0',0,0,'8722751659451168',0,0,0,1.00,'2022-08-02 17:43:24','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6974929192181','pcs','Inventory','VATABLE','1',NULL,0),(187,'PINK LEMONADE 15ML','14','18','',16.00,'2500','3250','0','',NULL,NULL,'0',0,0,'1811441659451259',0,0,0,0.00,'2022-08-02 17:42:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6974929190361','pcs','Inventory','VATABLE','1',NULL,0),(188,'STRAWBERRY BANANA SMOOTHIE 15ML','14','18','',16.00,'2500','3250','0','',NULL,NULL,'0',0,0,'1168591659451404',0,0,0,0.00,'2022-08-02 17:45:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6974929192211','pcs','Inventory','VATABLE','1',NULL,0),(189,'BLACKCURRANT LEMON ','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'7004441659451502',0,0,0,0.00,'2022-08-02 17:46:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322693936','pcs','Inventory','VATABLE','1',NULL,0),(190,'PEACH ICE','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'6322911659451611',0,0,0,0.00,'2022-08-02 17:48:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322691321','pcs','Inventory','VATABLE','1',NULL,0),(191,'PINEAPPLE ICE','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'6372461659451682',0,0,0,2.00,'2022-08-02 17:49:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322690379','pcs','Inventory','VATABLE','1',NULL,0),(192,'BUBBLE GUM','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'297351659451742',0,0,0,0.00,'2022-08-02 17:50:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322691345','pcs','Inventory','VATABLE','1',NULL,0),(193,'STRAWBERRY ICE','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'8592851659451801',0,0,0,0.00,'2022-08-02 17:51:03','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322691314','pcs','Inventory','VATABLE','1',NULL,0),(194,'MANGO GUAVA','14','18','',16.00,'1000','1750','0','',NULL,NULL,'0',0,0,'5039011659451864',0,0,0,0.00,'2022-08-02 17:52:00','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6973322690362','pcs','Inventory','VATABLE','1',NULL,0),(195,'kenya cane 250ml','4','15','',16.00,'247','400','0','0',NULL,NULL,'1',0,0,'3222831660405304',0,0,0,1.00,'2022-08-13 18:46:05','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602211','pcs','Inventory','VATABLE','1',NULL,0),(196,'CHROME VODKA 250ML','4','15','',16.00,'192','270','0','0',NULL,NULL,'1',0,0,'5815091660406439',0,0,0,2.00,'2022-08-13 19:02:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','1000','pcs','Inventory','VATABLE',NULL,NULL,0),(197,'ALL SEASONS 750ML','1','15','',16.00,'920','1300','0','0',NULL,NULL,'1',0,0,'6565191660837771',0,0,0,0.00,'2022-08-18 18:55:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8908006354191','pcs','Inventory','VATABLE','1',NULL,0),(198,'ALL SEASONS 375ML','1','15','',16.00,'445','650','0','',NULL,NULL,'0',0,0,'5010621660838208',0,0,0,0.00,'2022-08-18 19:02:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8908006354207','pcs','Inventory','VATABLE','1',NULL,0),(199,'JIM BEAM 750ML','1','15','',16.00,'1670','2300','0','',NULL,NULL,'0',0,0,'1092461661022676',0,0,0,0.00,'2022-08-20 22:14:33','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080686001409','pcs','Inventory','VATABLE','1',NULL,0),(200,'BEST CREAM 750ML','5','15','',16.00,'922','1500','4','0',NULL,NULL,'0',0,0,'6686631662222946',0,0,0,2.00,'2022-09-04 19:12:46','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421622','pcs','Inventory','VATABLE','1',NULL,0),(201,'BEST LONDON DRY GIN 750ML','2','15','',16.00,'645','1300','0','0',NULL,NULL,'0',0,0,'4460201662223112',0,0,0,0.00,'2022-09-03 19:41:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421561','pcs','Inventory','VATABLE','1',NULL,0),(202,'BEST WHISKY 750ML','1','15','',16.00,'787','1350','0','0',NULL,NULL,'0',0,0,'7951801662223296',0,0,0,0.00,'2022-09-03 19:45:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421509','pcs','Inventory','VATABLE','1',NULL,0),(203,'CAPRICE RED DRY 1L','12','15','',16.00,'363','1400','0','0',NULL,NULL,'0',0,0,'2350081662224737',0,0,0,0.00,'2022-09-03 20:07:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100420076','pcs','Inventory','VATABLE','1',NULL,0),(204,'FANTA BLACKCURRENT 2LRTS','10','15','',16.00,'158','250','0','',NULL,NULL,'0',0,0,'647481663254512',0,0,0,3.00,'2022-09-15 18:13:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000022752','pcs','Inventory','VATABLE','1',NULL,0),(205,'COCACOLA SODA 2LTRS','10','15','',16.00,'158','250','0','',NULL,NULL,'0',0,0,'8733621663254980',0,0,0,2.00,'2022-09-15 18:17:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000000286','pcs','Inventory','VATABLE','1',NULL,0),(206,'SPRITE SODA 2LTRS','10','15','',16.00,'158','250','0','',NULL,NULL,'0',0,0,'2546741663255076',0,0,0,3.00,'2022-09-15 18:19:47','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000004864','pcs','Inventory','VATABLE','1',NULL,0),(207,'CUVEE BRUT SPARKLING WINE 750ML','12','15','',16.00,'1050','1600','0','',NULL,NULL,'0',0,0,'3335811663255510',0,0,0,0.00,'2022-09-15 18:28:44','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530800783','pcs','Inventory','VATABLE','1',NULL,0),(208,'FRAGOLINO RED SPARKLING WINE 750ML','12','15','',16.00,'1050','1600','0','',NULL,NULL,'0',0,0,'9039941663255724',0,0,0,0.00,'2022-09-15 18:42:45','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530300474','pcs','Inventory','VATABLE','1',NULL,0),(209,'BARBERA DASTI 750ML','12','15','',16.00,'1O2O','1600','0','0',NULL,NULL,'0',0,0,'8369301663255843',0,0,0,0.00,'2022-09-15 18:34:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530010304','pcs','Inventory','VATABLE','1',NULL,0),(210,'CORTESE DELLALTO MONFERRATO 750ML','12','15','',16.00,'1020','1500','0','',NULL,NULL,'0',0,0,'7485371663256059',0,0,0,2.00,'2022-09-15 18:38:56','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530300320','pcs','Inventory','VATABLE','1',NULL,0),(212,'FRAGOLINO SPARKLING WINE WHITE 750ML','12','15','',16.00,'1050','1600','0','',NULL,NULL,'0',0,0,'5135081663256566',0,0,0,0.00,'2022-09-15 18:44:58','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530300504','pcs','Inventory','VATABLE','1',NULL,0),(213,'FRAGOLINO ROSE SPARKLING WINE 750ML','12','15','',16.00,'1050','1600','0','',NULL,NULL,'1',0,0,'7400181663366652',0,0,0,1.00,'2022-09-17 01:19:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8000530800462','pcs','Inventory','VATABLE','1',NULL,0),(214,'RAW KINGSIZE SLIM','13','2','',16.00,'130','250','0','',NULL,NULL,'0',0,0,'748071664138213',0,0,0,17.00,'2022-09-25 23:40:10','12','1','1','0000-00-00','mainitem','Inclusive','','active','','716165177364','pcs','Inventory','VATABLE','1',NULL,0),(215,'RAW SINGLE WIDE','13','2','',16.00,'46','150','0','',NULL,NULL,'0',0,0,'6934951664138411',0,0,0,20.00,'2022-09-25 23:42:10','12','1','1','0000-00-00','mainitem','Inclusive','','active','','716165173670','pcs','Inventory','VATABLE','1',NULL,0),(216,'MINUTE MAID MANGO 400ML','10','14','',16.00,'68','100','0','',NULL,NULL,'0',0,0,'5247461664226463',0,0,0,2.00,'2022-09-28 22:48:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','90490279','pcs','Inventory','VATABLE','1',NULL,0),(217,'MARTEL VS 700ML','1','13','',16.00,'4500','6600','0','0',NULL,NULL,'0',0,0,'499751664288816',0,0,0,1.00,'2022-09-27 17:29:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','3219820000078','pcs','Inventory','VATABLE','1',NULL,0),(218,'GRANTS TRIPLE WOOD 1L','1','13','',16.00,'1764','2500','0','',NULL,NULL,'0',0,0,'5246851664288960',0,0,0,0.00,'2022-09-27 17:32:39','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327000039','pcs','Inventory','VATABLE','1',NULL,0),(219,'ABSOLUT VODKA 750ML','4','13','',16.00,'1576','2200','0','',NULL,NULL,'0',0,0,'499751664289159',0,0,0,0.00,'2022-09-27 17:34:52','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7312040017010','pcs','Inventory','VATABLE','1',NULL,0),(220,'RESERVE 7 WHISKY 750ML','1','13','',16.00,'660','1000','0','',NULL,NULL,'0',0,0,'8172331664289293',0,0,0,0.00,'2022-09-27 17:38:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906125990009','pcs','Inventory','VATABLE','1',NULL,0),(221,'DUREX PLEASURE ME','14','2','',16.00,'272','600','0','0',NULL,NULL,'0',0,0,'5449261664313525',0,0,0,1.00,'2022-09-28 00:29:46','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001106225421','pcs','Inventory','VATABLE','1',NULL,0),(222,'DUREX SELECT FLAVOURS','14','2','',16.00,'272','600','0','0',NULL,NULL,'0',0,0,'6686631664314187',0,0,0,0.00,'2022-09-28 00:34:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5052197004281','pcs','Inventory','VATABLE','1',NULL,0),(223,'FANTA BLACKCURRENT 500ML','10','14','',16.00,'56','80','0','',NULL,NULL,'0',0,0,'9874931664393935',0,0,0,5.00,'2022-09-28 22:47:27','12','1','1','0000-00-00','mainitem','Inclusive','','active','','50112753','pcs','Inventory','VATABLE','1',NULL,0),(224,'SAFARI WATER 1L','10','15','',16.00,'38','100','0','',NULL,NULL,'0',0,0,'4211881664476855',0,0,0,7.00,'2022-09-29 21:50:51','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164001199010','pcs','Inventory','VATABLE','1',NULL,0),(225,'BLACKCURRANT MENTHOL','14','2','',16.00,'1500','3800','0','',NULL,NULL,'0',0,0,'8959591664639305',0,0,0,1.00,'2022-10-01 18:51:05','12','1','1','0000-00-00','mainitem','Inclusive','','active','','852848252017','pcs','Inventory','VATABLE','1',NULL,0),(226,'VIMTO','14','2','',16.00,'1500','3800','0','',NULL,NULL,'0',0,0,'8959591664639466',0,0,0,1.00,'2022-10-01 18:52:06','12','1','1','0000-00-00','mainitem','Inclusive','','active','','852848252000','pcs','Inventory','VATABLE','1',NULL,0),(227,'PINEAPPLE ICE MESH OIL','14','2','',16.00,'1500','3800','0','',NULL,NULL,'0',0,0,'2450671664639527',0,0,0,2.00,'2022-10-01 18:54:06','12','1','1','0000-00-00','mainitem','Inclusive','','active','','852848252001','pcs','Inventory','VATABLE','1',NULL,0),(228,'KHOR PLATINUM VODKA 1.75L','4','20','',16.00,'2173','3500','0','0',NULL,NULL,'0',0,0,'7144311664791076',0,0,0,2.00,'2022-10-03 13:01:33','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229032295','pcs','Inventory','VATABLE','1',NULL,0),(229,'KHOR PLATINUM VODKA 1L','4','20','',16.00,'1275','2000','0','',NULL,NULL,'0',0,0,'3113471664791353',0,0,0,1.00,'2022-10-03 13:08:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229031328','pcs','Inventory','VATABLE','1',NULL,0),(230,'KHOR STRUCTED VODKA 1L','4','20','',16.00,'2625','3700','0','',NULL,NULL,'0',0,0,'9021211664791707',0,0,0,1.00,'2022-10-03 13:11:30','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229032240','pcs','Inventory','VATABLE','1',NULL,0),(231,'KHOR BLACK$GOLD VODKA 1L','4','20','',16.00,'1800','2600','0','',NULL,NULL,'0',0,0,'865591664791891',0,0,0,2.00,'2022-10-03 13:14:51','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229032356','pcs','Inventory','VATABLE','1',NULL,0),(232,'KHOR WHITE$GOLD VODKA 1L','4','20','',16.00,'1800','2600','0','',NULL,NULL,'0',0,0,'281341664792092',0,0,0,2.00,'2022-10-03 13:17:58','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229032318','pcs','Inventory','VATABLE','1',NULL,0),(233,'PERVAK CRAFTED VODKA PEPPER$HONEY700ML','4','20','',16.00,'1400','2000','0','',NULL,NULL,'0',0,0,'9189181664792279',0,0,0,1.00,'2022-10-03 13:23:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229033520','pcs','Inventory','VATABLE','1',NULL,0),(234,'PERVAK CRAFTED VODKA HOMEMADE WHEAT 1L','4','20','',16.00,'1500','2200','0','',NULL,NULL,'0',0,0,'391301664792622',0,0,0,2.00,'2022-10-03 13:27:12','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229032004','pcs','Inventory','VATABLE','1',NULL,0),(235,'PERVAK CRAFTED VODKA HOME MADE WHEAT 700ML','4','20','',16.00,'1300','1900','0','',NULL,NULL,'0',0,0,'6834361664792833',0,0,0,2.00,'2022-10-03 13:29:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229031991','pcs','Inventory','VATABLE','1',NULL,0),(236,'PERVAK CRAFTED VODKA HOME MADE WHEAT 500ML','4','20','',16.00,'650','900','0','',NULL,NULL,'0',0,0,'9540211664792998',0,0,0,0.00,'2022-10-03 13:36:30','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229031984','pcs','Inventory','VATABLE','1',NULL,0),(237,'PERVAK CRAFTED VODKA HOME MAID WHEAT 250ML','4','20','',16.00,'350','450','0','',NULL,NULL,'0',0,0,'9771011664793390',0,0,0,33.00,'2022-10-03 13:39:43','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820229031977','pcs','Inventory','VATABLE','1',NULL,0),(238,'OREANDA CHARDONNAY','12','20','',16.00,'885','1500','0','',NULL,NULL,'0',0,0,'6759741664793583',0,0,0,1.00,'2022-10-03 13:44:25','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820163121956','pcs','Inventory','VATABLE','1',NULL,0),(239,'OREANDA SPARKLING WINE SEMI SWEET 750ML','12','20','',16.00,'1029','2000','0','0',NULL,NULL,'0',0,0,'6428951664793865',0,0,0,2.00,'2022-10-03 13:49:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820071841151','pcs','Inventory','VATABLE','',NULL,0),(240,'OREANDA BRUT SPARKLING WINE 750ML','12','20','',16.00,'1050','2200','0','0',NULL,NULL,'0',0,0,'7457271664794147',0,0,0,1.00,'2022-10-03 13:53:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820071841168','pcs','Inventory','VATABLE','1',NULL,0),(241,'GRANDE FRANCE SPARKLING WINE 750ML','12','20','',16.00,'1350','4200','0','',NULL,NULL,'0',0,0,'8978321664794600',0,0,0,2.00,'2022-10-03 14:00:44','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820256580196','pcs','Inventory','VATABLE','1',NULL,0),(242,'OREANDA SPARKLING WINE CRYSTAL BRUT 750ML','12','20','',16.00,'1157','2000','0','',NULL,NULL,'0',0,0,'3421301664794845',0,0,0,2.00,'2022-10-03 14:18:49','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000944625','pcs','Inventory','VATABLE','1',NULL,0),(243,'MIKADO WHITE WINE PINEAPPLE 750ML ','12','20','',16.00,'931','1700','0','0',NULL,NULL,'0',0,0,'245691664795930',0,0,0,1.00,'2022-10-03 14:21:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000944626','pcs','Inventory','VATABLE','1',NULL,0),(244,'MIKADO CHERRY RED SWEET WINE 750ML','12','20','',16.00,'931','1700','0','',NULL,NULL,'0',0,0,'724511664796080',0,0,0,1.00,'2022-10-03 14:22:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000944627','pcs','Inventory','VATABLE','1',NULL,0),(245,'MIKADO SWEETWHITE WINE PULM 700ML','12','20','',16.00,'931','1700','0','',NULL,NULL,'0',0,0,'7886851664796195',0,0,0,1.00,'2022-10-03 14:25:31','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000943888','pcs','Inventory','VATABLE','1',NULL,0),(246,'MIKADO SWEET WHIT WINE LYCHEE 700ML','12','20','',16.00,'931','1700','0','',NULL,NULL,'0',0,0,'2342831664796332',0,0,0,0.00,'2022-10-03 14:27:44','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000946902','pcs','Inventory','VATABLE','1',NULL,0),(247,'SHUSTOFF BRANDY 3YRS','4','20','',16.00,'1148','1900','0','',NULL,NULL,'0',0,0,'3312251664796464',0,0,0,1.00,'2022-10-03 14:31:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000947305','pcs','Inventory','VATABLE','',NULL,0),(248,'SHUSTOFF BRANDY 5YRS','4','20','',16.00,'1357','2400','0','0',NULL,NULL,'0',0,0,'378311664796662',0,0,0,5.00,'2022-10-03 14:33:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000947343','pcs','Inventory','VATABLE','1',NULL,0),(249,'SHUSTOFF BRANDY 4YRS','4','20','',16.00,'1624','2000','0','0',NULL,NULL,'0',0,0,'1109981664796795',0,0,0,2.00,'2022-10-03 14:36:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4820000947947','pcs','Inventory','VATABLE','1',NULL,0),(250,'THE FAMOUS GROUSE 1L','1','15','',16.00,'1854','2600','0','',NULL,NULL,'0',0,0,'3091411664797320',0,0,0,0.00,'2022-10-03 14:46:59','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010314101015','pcs','Inventory','VATABLE','1',NULL,0),(251,'THE FAMOUSE GROUSE 750ML','1','15','',16.00,'1552','2100','0','',NULL,NULL,'0',0,0,'1092461664797619',0,0,0,0.00,'2022-10-03 14:48:59','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010314750008','pcs','Inventory','VATABLE','1',NULL,0),(252,'TLIA MALBEC 750ML','12','15','',16.00,'1280','2000','0','',NULL,NULL,'0',0,0,'9156851664797740',0,0,0,0.00,'2022-10-03 14:51:45','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7794450091598','pcs','Inventory','VATABLE','1',NULL,0),(253,'GINGER ALE CAN 330ML','10','14','',16.00,'84','180','0','',NULL,NULL,'0',0,0,'7400481664797906',0,0,0,0.00,'2022-10-03 15:00:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000061478','pcs','Inventory','VATABLE','1',NULL,0),(254,'SPRITE CAN 330ML','10','14','',16.00,'64','120','0','',NULL,NULL,'0',0,0,'5995141664798421',0,0,0,0.00,'2022-10-03 15:03:14','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000014535','pcs','Inventory','VATABLE','1',NULL,0),(255,'DASANI WATER 1L','10','14','',16.00,'49','100','0','0',NULL,NULL,'0',0,0,'67461664798594',0,0,0,0.00,'2022-10-03 15:05:59','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000014536','pcs','Inventory','VATABLE','1',NULL,0),(256,'FOUR COUSINS SWEET RED 750ml','12','15','',16.00,'680','1200','0','0',NULL,NULL,'0',0,0,'3784121665323873',0,0,0,0.00,'2022-10-09 17:02:14','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002269000566','pcs','Inventory','VATABLE','1',NULL,0),(257,'Best Cream 250ml','5','15','',16.00,'310','500','0','',NULL,NULL,'0',0,0,'6258871665686351',0,0,0,1.00,'2022-10-13 21:44:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421615','pcs','Inventory','VATABLE','1',NULL,0),(258,'sprite 1.25ml','10','14','',16.00,'103','150','0','0',NULL,NULL,'0',0,0,'297951665693363',0,0,0,24.00,'2022-10-13 23:44:54','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000028976','pcs','Inventory','VATABLE','1',NULL,0),(259,'COCACOLA 1.25ML','10','14','',16.00,'103','150','0','',NULL,NULL,'0',0,0,'4416101665693921',0,0,0,2.00,'2022-10-13 23:46:39','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000028921','pcs','Inventory','VATABLE','1',NULL,0),(260,'WHITE PEARL 250ML','4','15','',16.00,'190','350','0','0',NULL,NULL,'0',0,0,'4925431665851810',0,0,0,1.00,'2022-10-15 19:47:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561280','pcs','Inventory','VATABLE','1',NULL,0),(261,'SCOTTISH LEADER 12YRS','1','15','',16.00,'3527','4900','0','',NULL,NULL,'0',0,0,'7722211666203389',0,0,0,1.00,'2022-10-19 21:22:10','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5029704218134','pcs','Inventory','VATABLE','1',NULL,0),(262,'NEDERBURG ROSE 750ML','12','15','',16.00,'1139','1700','0','',NULL,NULL,'0',0,0,'1535331666203731',0,0,0,0.00,'2022-10-19 21:24:04','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001452260909','pcs','Inventory','VATABLE','1',NULL,0),(263,'SCOTTISH LEADER 3YRS 750ML','1','15','',16.00,'1734','2500','0','',NULL,NULL,'0',0,0,'6162801666204063',0,0,0,0.00,'2022-10-19 21:35:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5029704217830','pcs','Inventory','VATABLE','1',NULL,0),(264,'NAPOLEON GOLD BRANDY 750ML','14','15','',16.00,'600','1000','0','0',NULL,NULL,'0',0,0,'2772711666204746',0,0,0,7.00,'2022-10-19 21:41:13','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101560948','pcs','Inventory','VATABLE','1',NULL,0),(265,'NAPOLEON GOLD 250ML','14','15','',16.00,'210','400','0','',NULL,NULL,'0',0,0,'7951801666204874',0,0,0,13.00,'2022-10-19 21:45:48','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561020','pcs','Inventory','VATABLE','1',NULL,0),(266,'PENASOL SANGRIA 1L','12','15','',16.00,'836','1400','0','0',NULL,NULL,'0',0,0,'7722211666206629',0,0,0,0.00,'2022-10-19 22:12:05','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561021','pcs','Inventory','VATABLE','1',NULL,0),(267,'CHAMDOR SPARKLING GRAPE 750ML','12','15','',16.00,'668','1000','0','',NULL,NULL,'0',0,0,'1535331666206725',0,0,0,1.00,'2022-10-19 22:13:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495080007','pcs','Inventory','VATABLE','1',NULL,0),(268,'THE SINGLETON 12YRS 700ML','1','15','',16.00,'4450','6500','0','0',NULL,NULL,'0',0,0,'7924011666206842',0,0,0,0.00,'2022-10-19 22:16:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281021621','pcs','Inventory','VATABLE','1',NULL,0),(269,'BEEFEATER DRY GIN 750ML','2','15','',16.00,'2460','3500','0','0',NULL,NULL,'0',0,0,'8722751666209323',0,0,0,1.00,'2022-10-19 22:57:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000329002230','pcs','Inventory','VATABLE','1',NULL,0),(270,'IMPERIAL BLUE 375ML','1','15','',16.00,'450','800','0','',NULL,NULL,'0',0,0,'1213301666792348',0,0,0,6.00,'2022-10-26 16:57:13','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8901522001105','pcs','Inventory','VATABLE','1',NULL,0),(271,'PREDATOR MANGO 400ML','10','15','',16.00,'67','80','0','',NULL,NULL,'0',0,0,'8539681666792634',0,0,0,0.00,'2022-10-26 16:59:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5060608747818','pcs','Inventory','VATABLE','1',NULL,0),(272,'HAMPTON DRAM BLENDED 750ML','1','15','',16.00,'970','1600','0','',NULL,NULL,'0',0,0,'9409711666792968',0,0,0,0.00,'2022-10-26 17:06:13','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906120780179','pcs','Inventory','VATABLE','1',NULL,0),(273,'KENYA CANE PINE 750ML','11','15','',16.00,'653','1100','0','',NULL,NULL,'0',0,0,'5697581666793174',0,0,0,0.00,'2022-10-26 17:09:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604994','pcs','Inventory','VATABLE','1',NULL,0),(274,'MEAKINS VODKA 750ML','4','15','',16.00,'600','1000','0','',NULL,NULL,'0',0,0,'9189181666793494',0,0,0,0.00,'2022-10-26 17:13:33','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101560009','pcs','Inventory','VATABLE','1',NULL,0),(275,'FLIRT VODKA STRAWBERRY 1L','4','15','',16.00,'1018','1700','0','0',NULL,NULL,'0',0,0,'572861666793613',0,0,0,0.00,'2022-11-17 05:35:46','12','1','1','0000-00-00','mainitem','Inclusive','','active','','3800032010568','pcs','Inventory','VATABLE','1',NULL,0),(276,'LIME JUICE 700ML','10','15','',16.00,'130','180','0','',NULL,NULL,'0',0,0,'6834361666793743',0,0,0,31.00,'2022-10-26 17:18:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008835000930','pcs','Inventory','VATABLE','1',NULL,0),(277,'COUNTY 750ML','14','15','',16.00,'561','900','0','',NULL,NULL,'0',0,0,'2183921666793895',0,0,0,0.00,'2022-10-26 17:21:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421219','pcs','Inventory','VATABLE','1',NULL,0),(278,'GENERAL MEAKINS 750ML','11','15','',16.00,'570','950','0','',NULL,NULL,'0',0,0,'6759741666794068',0,0,0,1.00,'2022-10-26 17:23:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561549','pcs','Inventory','VATABLE','',NULL,0),(279,'BOMBAY SAPHIRE 1L','2','15','',16.00,'2280','3350','0','',NULL,NULL,'0',0,0,'2535861666794580',0,0,0,1.00,'2022-10-26 17:31:54','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7640175740030','pcs','Inventory','VATABLE','1',NULL,0),(280,'BOMBAY SAPHIRE 750ML','2','15','',16.00,'1820','2700','0','',NULL,NULL,'0',0,0,'630861666794714',0,0,0,2.00,'2022-10-26 17:34:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7640175740047','pcs','Inventory','VATABLE','1',NULL,0),(281,'GREY GOOSE750ML','4','15','',16.00,'1846','2600','0','',NULL,NULL,'0',0,0,'5488231666794856',0,0,0,0.00,'2022-10-26 17:36:32','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080480280024','pcs','Inventory','VATABLE','',NULL,0),(282,'WHITE PEARL 750ML','4','15','',16.00,'555','900','0','',NULL,NULL,'0',0,0,'378311666795208',0,0,0,1.00,'2022-10-26 17:42:04','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561303','pcs','Inventory','VATABLE','1',NULL,0),(283,'ALL SEASONS 500ML','1','15','',16.00,'631','900','0','',NULL,NULL,'0',0,0,'7401691667496901',0,0,0,0.00,'2022-11-03 20:36:56','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8908006354993','pcs','Inventory','VATABLE','1',NULL,0),(284,'CRAZY COCK 750ML','1','15','',16.00,'795','1300','0','0',NULL,NULL,'0',0,0,'742941667506003',0,0,0,3.00,'2022-11-03 23:14:56','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906054940120','pcs','Inventory','VATABLE','1',NULL,0),(285,'HUNTERS CHOICE 250ML','1','15','',16.00,'290','400','0','',NULL,NULL,'0',0,0,'568331667506703',0,0,0,0.00,'2022-11-03 23:20:38','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100420786','pcs','Inventory','VATABLE','',NULL,0),(286,'KWV PINOTAGE 750ML','12','15','',16.00,'1325','2000','0','',NULL,NULL,'0',0,0,'9874931667690177',0,0,0,0.00,'2022-11-06 02:18:33','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323400530','pcs','Inventory','VATABLE','1',NULL,0),(287,'KWV SAUV BLANC 750ML','12','15','',16.00,'1125','1700','0','',NULL,NULL,'0',0,0,'7722211667753181',0,0,0,1.00,'2022-11-06 19:51:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323400332','pcs','Inventory','VATABLE','1',NULL,0),(288,'CASILLERO DEL SAUVIGNON 750ML','12','15','',16.00,'1200','2000','0','',NULL,NULL,'0',0,0,'748071667753481',0,0,0,3.00,'2022-11-06 19:54:13','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7804320303178','pcs','Inventory','VATABLE','1',NULL,0),(289,'ROOIBERG ROSE NATURAL SWEET 750ML','12','15','',16.00,'1110','1900','0','',NULL,NULL,'0',0,0,'1213301667753654',0,0,0,0.00,'2022-11-06 20:01:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002886001182','pcs','Inventory','VATABLE','1',NULL,0),(290,'ROOIBERG RED NATURAL SWEET 750ML','12','15','',16.00,'1110','1900','0','',NULL,NULL,'0',0,0,'7400181667754087',0,0,0,3.00,'2022-11-06 20:03:48','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002886001410','pcs','Inventory','VATABLE','1',NULL,0),(291,'ROOIBERG RED MUSCADEL 750ML','12','15','',16.00,'1110','1900','0','',NULL,NULL,'0',0,0,'1737131667754228',0,0,0,2.00,'2022-11-06 20:09:23','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002886000277','pcs','Inventory','VATABLE','1',NULL,0),(292,'ROOIBERG BLANC NATURAL SWEET WHITE 750ML','12','15','',16.00,'1110','1900','0','',NULL,NULL,'0',0,0,'7924011667754564',0,0,0,1.00,'2022-11-06 20:16:23','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002886001274','pcs','Inventory','VATABLE','1',NULL,0),(293,'BIRDS$BEES SWEET MALBEC 750ML','12','15','',16.00,'895','1600','0','',NULL,NULL,'0',0,0,'5697581667755302',0,0,0,0.00,'2022-11-06 20:24:58','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7798039597570','pcs','Inventory','VATABLE','1',NULL,0),(294,'CANTI PROSECCO 750ML','12','15','',16.00,'1270','2300','0','',NULL,NULL,'0',0,0,'9189181667755499',0,0,0,1.00,'2022-11-06 20:27:04','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8005415046447','pcs','Inventory','VATABLE','1',NULL,0),(295,'CULEMBORGROSE 750ML','12','15','',16.00,'835','1500','0','',NULL,NULL,'0',0,0,'9409711667755624',0,0,0,0.00,'2022-11-06 20:29:54','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001506910347','pcs','Inventory','VATABLE','1',NULL,0),(296,'JACOBS GREEK ROSE 750ML','12','15','',16.00,'1055','1800','0','',NULL,NULL,'0',0,0,'6759741667755794',0,0,0,0.00,'2022-11-06 20:32:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','9300727019967','pcs','Inventory','VATABLE','1',NULL,0),(297,'JACOBS GREEK MERLOT 750ML','12','15','',16.00,'1055','1800','0','',NULL,NULL,'0',0,0,'3002301667755941',0,0,0,0.00,'2022-11-06 20:34:14','12','1','1','0000-00-00','mainitem','Inclusive','','active','','9300727508287','pcs','Inventory','VATABLE','1',NULL,0),(298,'KWV MERLOT 750ML','12','15','',16.00,'1325','2000','0','',NULL,NULL,'0',0,0,'1810231667756055',0,0,0,0.00,'2022-11-06 20:36:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323300533','pcs','Inventory','VATABLE','1',NULL,0),(299,'KWV SHIRAZ RED WINE 750ML','12','15','',16.00,'1300','2000','0','',NULL,NULL,'0',0,0,'5691841667756254',0,0,0,0.00,'2022-11-06 20:39:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323400639','pcs','Inventory','VATABLE','',NULL,0),(300,'TALL HORSE MOSCATO 750ML','12','15','',16.00,'865','1500','0','',NULL,NULL,'0',0,0,'1105451667756369',0,0,0,0.00,'2022-11-06 20:46:53','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001506908146','pcs','Inventory','VATABLE','',NULL,0),(301,'TALL HORSE PINOTAGE ROSE 750ML','12','15','',16.00,'865','1500','0','',NULL,NULL,'0',0,0,'4416101667756814',0,0,0,2.00,'2022-11-06 20:50:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001506900973','pcs','Inventory','VATABLE','1',NULL,0),(302,'CASILLERO DEL DIABLO BLANC 750ML','12','15','',16.00,'1200','2000','0','',NULL,NULL,'0',0,0,'7924011667757277',0,0,0,0.00,'2022-11-06 20:57:31','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7804320301174','pcs','Inventory','VATABLE','1',NULL,0),(303,'CANTI MERLOT 750ML','12','15','',16.00,'790','1550','0','',NULL,NULL,'0',0,0,'9189181667757497',0,0,0,0.00,'2022-11-06 20:59:52','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8005415049608','pcs','Inventory','VATABLE','1',NULL,0),(304,'TILIA CHARDONY 750ML','12','15','',16.00,'1231','2000','0','',NULL,NULL,'0',0,0,'4010081667757616',0,0,0,0.00,'2022-11-06 21:01:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7794450091604','pcs','Inventory','VATABLE','1',NULL,0),(305,'KWV CHARDONAY BLANC 750ML','12','15','',16.00,'1325 ','2000','0','',NULL,NULL,'0',0,0,'3784121667757761',0,0,0,0.00,'2023-01-06 03:08:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323413530','pcs','Inventory','VATABLE','1',NULL,0),(306,'KWV CONCORDIA WHITE 750ML','12','15','',16.00,'820','1700','0','',NULL,NULL,'0',0,0,'6484831667758044',0,0,0,1.00,'2022-11-06 21:10:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6002323013129','pcs','Inventory','VATABLE','1',NULL,0),(307,'STAR WALKER WHISKY 750ML','1','15','',16.00,'950','1700','0','',NULL,NULL,'0',0,0,'8722751667758525',0,0,0,1.00,'2022-11-06 21:17:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8908006354153','pcs','Inventory','VATABLE','1',NULL,0),(308,'TOP SECRET WHISKY 750ML','1','15','',16.00,'740','1100','0','0',NULL,NULL,'0',0,0,'4925431667758640',0,0,0,0.00,'2022-11-06 21:23:22','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101560108','pcs','Inventory','VATABLE','1',NULL,0),(309,'OFFICERS CHOICE PRESTIGE 750ML','1','15','',16.00,'690','1500','0','',NULL,NULL,'0',0,0,'6162801667759160',0,0,0,1.00,'2022-11-06 21:29:25','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8901544019027','pcs','Inventory','VATABLE','1',NULL,0),(310,'OFFICERS CHOICE BLUE 750ML','1','15','',16.00,'828','1900','0','',NULL,NULL,'0',0,0,'6372461667759365',0,0,0,1.00,'2022-11-06 21:31:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8901544040236','pcs','Inventory','VATABLE','1',NULL,0),(311,'BEST WHISKY 250ML','1','15','',16.00,'301','450','0','',NULL,NULL,'0',0,0,'6162801667759475',0,0,0,1.00,'2022-11-06 21:33:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421493','pcs','Inventory','VATABLE','1',NULL,0),(312,'LEADING WANGARI GIN 750ML','2','15','',16.00,'480','1000','0','',NULL,NULL,'0',0,0,'5449261667759607',0,0,0,0.00,'2022-11-06 21:35:25','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7174000401020','pcs','Inventory','VATABLE','1',NULL,0),(313,'DASANI 500ML','10','14','',16.00,'23','80','0','0',NULL,NULL,'0',0,0,'8637551667933601',0,0,0,1.00,'2022-11-08 21:55:39','12','1','1','0000-00-00','mainitem','Inclusive','','active','','87303322','pcs','Inventory','VATABLE','1',NULL,0),(314,'KIBAO 350ML','4','15','',16.00,'318','450','0','',NULL,NULL,'0',0,0,'8959591667945061',0,0,0,1.00,'2022-11-09 01:05:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421387','pcs','Inventory','VATABLE','1',NULL,0),(315,'KIBAO 250ML','4','15','',16.00,'198','300','0','',NULL,NULL,'0',0,0,'4925431667945141',0,0,0,0.00,'2022-11-09 01:29:41','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100420823','pcs','Inventory','VATABLE','1',NULL,0),(316,'WHITE CAP CRISP CAN','3','21','',16.00,'159','250','0','',NULL,NULL,'0',0,0,'5697581668008358',0,0,0,3.00,'2022-11-09 18:42:05','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606820','pcs','Inventory','VATABLE','1',NULL,0),(317,'SAFARI WATER 500ML','10','15','',0.00,'19','50','0','',NULL,NULL,'0',0,0,'6162801668289787',0,0,0,16.00,'2022-11-13 00:56:45','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164001199034','pcs','Inventory','EXEMPTED','1',NULL,0),(318,'VERSUS SWEET WHITE 750ML','12','15','',0.00,'930','1500','0','',NULL,NULL,'0',0,0,'3186271668956182',0,0,0,0.00,'2022-11-20 17:59:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6004786010240','pcs','Inventory','EXEMPTED','1',NULL,0),(319,'BEST GIN 250ML','2','15','',0.00,'244','450','0','',NULL,NULL,'0',0,0,'5316641668956343',0,0,0,0.00,'2022-11-20 18:03:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421554','pcs','Inventory','EXEMPTED','1',NULL,0),(320,'CRAZY COCK 250ML','1','15','',0.00,'305','500','0','',NULL,NULL,'0',0,0,'7052471668956588',0,0,0,3.00,'2022-11-20 18:05:23','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906054940410','pcs','Inventory','EXEMPTED','1',NULL,0),(321,'TOP SECRET 250ML','1','15','',0.00,'245','350','0','',NULL,NULL,'0',0,0,'6484231668956723',0,0,0,2.00,'2022-11-20 18:07:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101560832','pcs','Inventory','EXEMPTED','1',NULL,0),(322,'HUNTERS CHOICE 750ML','1','15','',0.00,'829','1400','0','',NULL,NULL,'0',0,0,'2450671668956871',0,0,0,1.00,'2022-11-20 18:10:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421356','pcs','Inventory','EXEMPTED','1',NULL,0),(323,'CRAZY COCK 375ML','1','15','',0.00,'405','700','0','',NULL,NULL,'0',0,0,'2974501668957026',0,0,0,6.00,'2022-11-20 18:12:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906054940137','pcs','Inventory','EXEMPTED','1',NULL,0),(324,'WHITE PEARL PINK 250ML','4','15','',0.00,'197','350','0','',NULL,NULL,'0',0,0,'3122231668957163',0,0,0,5.00,'2022-11-20 18:15:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561563','pcs','Inventory','EXEMPTED','1',NULL,0),(325,'IMA GIN 250ML','2','22','',0.00,'209','290','0','',NULL,NULL,'1',0,0,'1213301669469641',0,0,0,0.00,'2022-11-26 16:37:19','12','1','1','0000-00-00','mainitem','Inclusive','','active','','725765052087','pcs','Inventory','EXEMPTED','1',NULL,0),(326,'SYMBA VODKA 250ML','4','22','',0.00,'175','250','0','',NULL,NULL,'1',0,0,'1737131669469948',0,0,0,0.00,'2022-11-26 16:41:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','725765052063','pcs','Inventory','EXEMPTED','1',NULL,0),(327,'BIRDS& BEES SWEET PINK MOSCATO','12','15','',0.00,'985','1700','0','',NULL,NULL,'0',0,0,'6484831669506520',0,0,0,0.00,'2022-11-27 02:59:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7798039598126','pcs','Inventory','EXEMPTED','1',NULL,0),(328,'PEARLY 700ML GLASS BOTLLE','10','23','',0.00,'42','100','0','',NULL,NULL,'0',0,0,'1213301669919095',0,0,0,51.00,'2022-12-01 21:45:31','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164002099210','pcs','Inventory','EXEMPTED','1',NULL,0),(329,'PRIDE 1L','10','23','',0.00,'36','80','0','',NULL,NULL,'0',0,0,'1213301669920332',0,0,0,6.00,'2022-12-01 21:57:04','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164002099029','pcs','Inventory','EXEMPTED','1',NULL,0),(330,'PRIDE 1.5L','10','23','',0.00,'40','120','0','',NULL,NULL,'0',0,0,'6484831669921025',0,0,0,2.00,'2022-12-01 21:59:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164002099036','pcs','Inventory','EXEMPTED','1',NULL,0),(331,'V$A 250ML','5','15','',0.00,'268','450','0','',NULL,NULL,'0',0,0,'1213301670105281',0,0,0,11.00,'2023-02-20 15:13:19','12','1','1','0000-00-00','mainitem','na','','active','','6161101602204','pcs','Inventory','EXEMPTED','1',NULL,0),(332,'WILLIAM LAWSON 1L','1','15','',0.00,'1750','2500','0','',NULL,NULL,'0',0,0,'4925431670129493',0,0,0,0.00,'2022-12-04 07:53:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010752000345','pcs','Inventory','EXEMPTED','1',NULL,0),(333,'Black Bird Natural Sweet Red 750ml','12','15','',0.00,'700','1500','0','0',NULL,NULL,'0',0,0,'572861670246675',0,0,0,2.00,'2022-12-05 16:45:47','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6009675642045','pcs','Inventory','EXEMPTED','1',NULL,0),(334,'ELECTIO CABERNET SAUVIGNON RED DRY WINE 750ML','12','15','',0.00,'900','1800','0','0',NULL,NULL,'0',0,0,'6162801670247948',0,0,0,0.00,'2022-12-05 17:03:49','12','1','1','0000-00-00','mainitem','na','','active','','4840709004321','pcs','Inventory','EXEMPTED','1',NULL,0),(335,'BLACK BIRD NATURAL SWEET ROSE 750ML','12','15','',0.00,'700','1500','0','0',NULL,NULL,'0',0,0,'4090441670249030',0,0,0,0.00,'2022-12-05 17:13:48','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6009675642021','pcs','Inventory','EXEMPTED','1',NULL,0),(336,'BLACK BIRD NATURAL SWEET WHITE 750ML','12','15','',0.00,'700','1400','0','0',NULL,NULL,'0',0,0,'2535861670249813',0,0,0,2.00,'2022-12-05 17:24:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6009675642007','pcs','Inventory','EXEMPTED','1',NULL,0),(337,'DELMONTE PASSION FRUIT','10','15','',0.00,'205','300','0','0',NULL,NULL,'0',0,0,'8086541670251128',0,0,0,0.00,'2022-12-05 17:40:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','024000191667','pcs','Inventory','EXEMPTED','1',NULL,0),(338,'DELMONTE PINEAPPLE','10','15','',0.00,'205','300','0','0',NULL,NULL,'0',0,0,'2772711670251255',0,0,0,1.00,'2022-12-05 17:42:43','12','1','1','0000-00-00','mainitem','Inclusive','','active','','024000224556','pcs','Inventory','EXEMPTED','1',NULL,0),(339,'fanta orange 350ml','10','14','',0.00,'40','60','0','',NULL,NULL,'0',0,0,'5449261670357031',0,0,0,12.00,'2022-12-06 23:05:03','12','1','1','0000-00-00','mainitem','Inclusive','','active','','90377884','pcs','Inventory','EXEMPTED','1',NULL,0),(340,'SPARKLING WATER 1L','10','14','',0.00,'92','180','0','',NULL,NULL,'0',0,0,'6484831670357105',0,0,0,0.00,'2022-12-06 23:06:43','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6009627080246','pcs','Inventory','EXEMPTED','1',NULL,0),(341,'MINUTE MAID TROPICAL 1L','10','14','',0.00,'125','200','0','',NULL,NULL,'0',0,0,'3222831670357204',0,0,0,0.00,'2022-12-06 23:09:02','12','1','1','0000-00-00','mainitem','Inclusive','','active','','40262144','pcs','Inventory','EXEMPTED','1',NULL,0),(342,'MINUTE MAID APPLE 1L','10','14','',0.00,'125','200','0','',NULL,NULL,'0',0,0,'6054951670357343',0,0,0,3.00,'2022-12-06 23:10:22','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000180292','pcs','Inventory','EXEMPTED','1',NULL,0),(343,'MINUTE MAID MANGO 1L','10','14','',0.00,'125','200','0','',NULL,NULL,'0',0,0,'157481670357423',0,0,0,0.00,'2022-12-06 23:11:22','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5449000180247','pcs','Inventory','EXEMPTED','1',NULL,0),(344,'ELECTIO CHARDONNAY 750ML','12','15','',0.00,'900','1800','0','',NULL,NULL,'0',0,0,'5697581670358075',0,0,0,0.00,'2022-12-06 23:22:38','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4840709004338','pcs','Inventory','EXEMPTED','',NULL,0),(345,'JAMESON 350ML','1','15','',0.00,'920','1500','0','0',NULL,NULL,'0',0,0,'9874931670623904',0,0,0,0.00,'2022-12-10 01:13:53','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5011007003654','pcs','Inventory','EXEMPTED','3',NULL,0),(346,'GLENFIDDICH 15YRS','1','24','',0.00,'7900','1100','0','',NULL,NULL,'0',0,0,'7793811671048004',0,0,0,0.00,'2022-12-14 23:02:24','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327325125','pcs','Inventory','EXEMPTED','',NULL,0),(347,'GLENFIDDICH 18YRS','1','24','',0.00,'9500','14000','0','',NULL,NULL,'0',0,0,'6686631671048145',0,0,0,0.00,'2022-12-14 23:05:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327325323','pcs','Inventory','EXEMPTED','',NULL,0),(348,'MARTEL VSOP 750ML','1','24','',0.00,'8000','11000','0','0',NULL,NULL,'0',0,0,'1606931671049460',0,0,0,1.00,'2022-12-14 23:26:13','12','1','1','0000-00-00','mainitem','Inclusive','','active','','3219820005899','pcs','Inventory','EXEMPTED','',NULL,0),(349,'HENDRIX GIN 750ML','2','24','',0.00,'3850','5600','0','',NULL,NULL,'0',0,0,'7951801671049648',0,0,0,0.00,'2022-12-14 23:30:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327755045','pcs','Inventory','EXEMPTED','',NULL,0),(350,'GLENLIVET 12YRS','1','24','',0.00,'5200','7500','0','',NULL,NULL,'0',0,0,'223941671049856',0,0,0,0.00,'2022-12-14 23:39:40','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080432402825','pcs','Inventory','EXEMPTED','',NULL,0),(351,'GLENLIVET 15YRS','1','24','',0.00,'7400','10500','0','',NULL,NULL,'0',0,0,'647481671050381',0,0,0,0.00,'2022-12-14 23:42:16','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000299295021','pcs','Inventory','EXEMPTED','',NULL,0),(352,'SINGLETON 15YRS','1','24','',0.00,'6000','8200','0','0',NULL,NULL,'0',0,0,'5449261671050689',0,0,0,0.00,'2022-12-14 23:46:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000281026626','pcs','Inventory','EXEMPTED','',NULL,0),(353,'CORONA EXTRA 355ML','3','24','',0.00,'295','450','0','',NULL,NULL,'0',0,0,'3222831671051247',0,0,0,0.00,'2022-12-14 23:55:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','75032814','pcs','Inventory','EXEMPTED','',NULL,0),(354,'LIME JUICE 1.5L','10','15','',0.00,'230','380','0','',NULL,NULL,'0',0,0,'5247461671144197',0,0,0,4.00,'2022-12-16 01:46:10','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008835000947','pcs','Inventory','EXEMPTED','1',NULL,0),(355,'AMARULA CREAM 375ML','5','15','',0.00,'1098','1600','0','',NULL,NULL,'1',0,0,'4010081671358558',0,0,0,0.00,'2022-12-18 13:18:07','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001495062478','pcs','Inventory','EXEMPTED','1',NULL,0),(356,'VELO BERRY FROST MEDIUM','13','17','',0.00,'270','400','0','',NULL,NULL,'0',0,0,'1628071671902021',0,0,0,4.00,'2022-12-24 20:17:59','12','1','1','0000-00-00','mainitem','na','','active','','6008165018186','pcs','Inventory','EXEMPTED','1',NULL,0),(357,'VELO BERRY FROST STRONG','13','17','',0.00,'270','400','0','',NULL,NULL,'1',0,0,'5697581671902280',0,0,0,2.00,'2022-12-24 20:19:45','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165018193','pcs','Inventory','EXEMPTED','1',NULL,0),(358,'VELO POLAR MINT MEDIUM','13','17','',0.00,'270','400','0','',NULL,NULL,'0',0,0,'4925431671902508',0,0,0,1.00,'2022-12-24 20:23:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165018926','pcs','Inventory','EXEMPTED','1',NULL,0),(359,'VELO POLAR MINT STRONG','13','17','',0.00,'270','400','0','',NULL,NULL,'0',0,0,'9189181671902609',0,0,0,1.00,'2023-02-03 16:52:25','12','1','1','0000-00-00','mainitem','na','','active','','6008165018933','pcs','Inventory','EXEMPTED','',NULL,0),(360,'KONYAGI 250ML','11','15','',0.00,'288','350','0','',NULL,NULL,'0',0,0,'6484831672939344',0,0,0,5.00,'2023-01-05 20:28:28','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6203005570170','pcs','Inventory','EXEMPTED','1',NULL,0),(361,'CARIBIA GIN 250ML','2','15','',0.00,'220','350','0','',NULL,NULL,'1',0,0,'8959591672939709',0,0,0,3.00,'2023-01-05 20:31:53','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421882','pcs','Inventory','EXEMPTED','1',NULL,0),(362,'TRIPLE ACE VODKA 250ML','4','15','',0.00,'192','270','0','',NULL,NULL,'0',0,0,'7722211672949358',0,0,0,5.00,'2023-01-05 23:23:10','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604864','pcs','Inventory','EXEMPTED','1',NULL,0),(363,'COUNTY 250ML','11','15','',0.00,'188','300','0','0',NULL,NULL,'0',0,0,'6686631672950191',0,0,0,6.00,'2023-01-05 23:36:00','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421929','pcs','Inventory','EXEMPTED','1',NULL,0),(364,'PISTON 250ML','4','15','',0.00,'165','250','0','',NULL,NULL,'0',0,0,'7924011672950961',0,0,0,1.00,'2023-01-05 23:40:55','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6164003409025','pcs','Inventory','EXEMPTED','1',NULL,0),(365,'CARIBIA GIN 750ML','2','15','',0.00,'603','900','0','',NULL,NULL,'0',0,0,'5697581672951333',0,0,0,1.00,'2023-01-05 23:45:18','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421899','pcs','Inventory','EXEMPTED','1',NULL,0),(366,'DELMONTE MANGO & PINEAPPLE','10','15','',0.00,'225','300','','',NULL,NULL,'1',0,0,'61111672968950',0,0,0,2.00,'2023-01-06 04:38:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','024000224532','pcs','Inventory','EXEMPTED','1',NULL,0),(367,'ROTHMANS BLUE','13','17','',0.00,'257','350','0','',NULL,NULL,'0',0,0,'499751673260798',0,0,0,0.00,'2023-01-09 13:47:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165007074','pcs','Inventory','EXEMPTED','1',NULL,0),(368,'PALL MALL GREEN','13','17','',0.00,'170','270','0','',NULL,NULL,'0',0,0,'1535331673261263',0,0,0,9.00,'2023-01-09 13:50:06','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165265979','pcs','Inventory','EXEMPTED','1',NULL,0),(369,'PALL MALL KINGS','13','17','',0.00,'170','270','0','',NULL,NULL,'0',0,0,'1810231673261407',0,0,0,3.00,'2023-01-09 13:51:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165265962','pcs','Inventory','EXEMPTED','1',NULL,0),(370,'GENERAL MEAKINS 250ML','11','15','',0.00,'197','350','0','',NULL,NULL,'0',0,0,'5449261674234912',0,0,0,9.00,'2023-01-20 20:25:57','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561532','pcs','Inventory','EXEMPTED','1',NULL,0),(371,'OLD SMUGGLER 750ML','1','15','',0.00,'1000','1600','0','',NULL,NULL,'0',0,0,'9189181674235559',0,0,0,0.00,'2023-01-20 20:27:25','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327605005','pcs','Inventory','EXEMPTED','1',NULL,0),(372,'DUREX PLAY TINGLING LUBE','14','25','',0.00,'584','900','0','',NULL,NULL,'0',0,0,'5449261676288432',0,0,0,3.00,'2023-02-13 14:45:00','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5011417567647','pcs','Inventory','EXEMPTED','1',NULL,0),(373,'DUREX FEEL PLEASURE GEL','14','25','',0.00,'584','900','0','',NULL,NULL,'0',0,0,'6041961676288701',0,0,0,4.00,'2023-02-13 14:46:35','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5011417567623','pcs','Inventory','EXEMPTED','1',NULL,0),(374,'VELO URBAN VIBE STRONG','13','17','',0.00,'270','400','0','',NULL,NULL,'0',0,0,'8637551676366314',0,0,0,4.00,'2023-02-14 12:21:25','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6008165018230','pcs','Inventory','EXEMPTED','1',NULL,0),(375,'GORDON\'S & TONIC','3','21','',0.00,'168','250','0','',NULL,NULL,'1',0,0,'8959591677964413',0,0,0,11.00,'2023-03-05 00:20:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606714','pcs','Inventory','EXEMPTED','1',NULL,0),(376,'GORDON\'S PINK &TONIC','3','21','',0.00,'168','250','0','',NULL,NULL,'0',0,0,'6686631677964838',0,0,0,10.00,'2023-03-05 00:23:01','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101606721','pcs','Inventory','EXEMPTED','1',NULL,0),(377,'MR DOWELL\'S 750ML','1','21','',0.00,'640','1200','0','',NULL,NULL,'0',0,0,'729951680892398',0,0,0,2.00,'2023-04-07 21:38:39','12','1','1','0000-00-00','mainitem','na','','active','','6161101604932','pcs','Inventory','EXEMPTED','1',NULL,0),(378,'MR DOWELL\'S 250ML ','1','21','',0.00,'216','400','0','',NULL,NULL,'0',0,0,'6035921680892719',0,0,0,2.00,'2023-04-07 21:42:52','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604925','pcs','Inventory','EXEMPTED','1',NULL,0),(379,'ORIJIN 750ML ','11','21','',0.00,'520','950','0','',NULL,NULL,'0',0,0,'6162801680892973',0,0,0,2.00,'2023-04-07 21:49:33','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603614','pcs','Inventory','EXEMPTED','1',NULL,0),(380,'ORIJIN 250ML','11','21','',0.00,'192','350','0','',NULL,NULL,'0',0,0,'4010081680893374',0,0,0,3.00,'2023-04-07 21:51:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603607','pcs','Inventory','EXEMPTED','1',NULL,0),(381,'KENYA CANE CITRUS FUSION 750ML','4','21','',0.00,'624','1100','0','',NULL,NULL,'0',0,0,'6686631680893497',0,0,0,1.00,'2023-04-07 21:55:49','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604857','pcs','Inventory','EXEMPTED','1',NULL,0),(382,'KENYA CANE CITRUS 250ML','11','21','',0.00,'400','236','0','',NULL,NULL,'0',0,0,'3688051680893749',0,0,0,4.00,'2023-04-07 22:00:48','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604840','pcs','Inventory','EXEMPTED','1',NULL,0),(383,'KENYA CANE COCONUT 750ML','11','21','',0.00,'624','1100','0','',NULL,NULL,'0',0,0,'4460201680894049',0,0,0,3.00,'2023-04-07 22:07:29','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603942','pcs','Inventory','EXEMPTED','1',NULL,0),(384,'KENYA CANE COCONUT 250ML','11','21','',0.00,'236','400','0','',NULL,NULL,'0',0,0,'169871680894449',0,0,0,1.00,'2023-04-07 22:10:12','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101603959','pcs','Inventory','EXEMPTED','1',NULL,0),(385,'KANE EXTRA 750ML','11','21','',0.00,'520','950','0','',NULL,NULL,'0',0,0,'480421680894613',0,0,0,0.00,'2023-04-07 22:17:48','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604871','pcs','Inventory','EXEMPTED','1',NULL,0),(386,'KANE EXTRA 250ML','11','21','',0.00,'184','350','0','',NULL,NULL,'0',0,0,'5087351680895069',0,0,0,2.00,'2023-04-07 22:23:17','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101602075','pcs','Inventory','EXEMPTED','1',NULL,0),(387,'KENYA CANE PINEAPPLE 250ML','11','21','',0.00,'236','400','0','',NULL,NULL,'0',0,0,'9071361680935341',0,0,0,2.00,'2023-04-08 09:31:29','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101604987','pcs','Inventory','EXEMPTED','1',NULL,0),(388,'SAINT CELINE 750ML','12','26','',0.00,'1075','1600','0','',NULL,NULL,'0',0,0,'6686631680974096',0,0,0,0.00,'2023-04-08 20:19:26','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001812011950','pcs','Inventory','EXEMPTED','1',NULL,0),(389,'FRONTERA SAUV BLANC','12','26','',0.00,'970','1400','0','',NULL,NULL,'0',0,0,'297951680974367',0,0,0,0.00,'2023-04-08 20:21:54','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7804320556000','pcs','Inventory','EXEMPTED','1',NULL,0),(390,'KENYA KING 750ML','11','26','',0.00,'645','1000','0','',NULL,NULL,'0',0,0,'5449261680974514',0,0,0,1.00,'2023-04-08 20:24:23','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101560702','pcs','Inventory','EXEMPTED','1',NULL,0),(391,'FROTERA CABERNET SAUV 750ML','12','26','',0.00,'970','1500','0','',NULL,NULL,'0',0,0,'9874931680974664',0,0,0,0.00,'2023-04-08 20:27:24','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7804320559001','pcs','Inventory','EXEMPTED','1',NULL,0),(392,'FRONTERA SWEET RED 750ML','12','26','',0.00,'950','1500','0','',NULL,NULL,'0',0,0,'4460201680974844',0,0,0,0.00,'2023-04-08 20:29:29','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7804320626994','pcs','Inventory','EXEMPTED','1',NULL,0),(393,'CAMINO TEQUILA 750ML','6','26','',0.00,'2450','3500','0','',NULL,NULL,'0',0,0,'499751680974970',0,0,0,0.00,'2023-04-08 20:31:30','12','1','1','0000-00-00','mainitem','Inclusive','','active','','7501012916127','pcs','Inventory','EXEMPTED','1',NULL,0),(394,'OLMECA SILVER TEQUILA 700ML','6','26','',0.00,'2175','3200','0','',NULL,NULL,'0',0,0,'7951801680975091',0,0,0,1.00,'2023-04-08 20:35:52','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080432115251','pcs','Inventory','EXEMPTED','1',NULL,0),(395,'OLMECA GOLD TEQUILA 700ML','6','26','',0.00,'2300','34OO','0','',NULL,NULL,'0',0,0,'8172331680975352',0,0,0,0.00,'2023-04-08 20:40:22','12','1','1','0000-00-00','mainitem','Inclusive','','active','','080432115305','pcs','Inventory','EXEMPTED','1',NULL,0),(396,'SUPREME VODKA 750ML','4','26','',0.00,'580','850','0','',NULL,NULL,'0',0,0,'4423651680977225',0,0,0,0.00,'2023-04-08 21:10:08','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421868','pcs','Inventory','EXEMPTED','',NULL,0),(397,'RESERVE 7 375ML','1','26','',0.00,'380','600','0','',NULL,NULL,'0',0,0,'4460201680977408',0,0,0,1.00,'2023-04-08 21:12:06','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8906125990016','pcs','Inventory','EXEMPTED','',NULL,0),(398,'XTRA ORDINARY 750ML','6','26','',0.00,'665','1000','0','',NULL,NULL,'0',0,0,'7951801680977649',0,0,0,0.00,'2023-04-08 21:16:30','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561327','pcs','Inventory','EXEMPTED','',NULL,0),(399,'IMPERIAL BLUE 750ML','1','26','',0.00,'835','1300','0','',NULL,NULL,'0',0,0,'6484831680977791',0,0,0,1.00,'2023-04-08 21:19:31','12','1','1','0000-00-00','mainitem','Inclusive','','active','','745110424901','pcs','Inventory','EXEMPTED','',NULL,0),(400,'HUNTERS DRY CRISP','3','26','',0.00,'180','250','0','',NULL,NULL,'0',0,0,'647481680977971',0,0,0,2.00,'2023-04-08 21:23:42','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108055187','pcs','Inventory','EXEMPTED','',NULL,0),(401,'HUNTERS GOLD SMOOTH','3','26','',0.00,'180','250','0','',NULL,NULL,'0',0,0,'7793811680978223',0,0,0,2.00,'2023-04-08 21:25:32','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108055231','pcs','Inventory','EXEMPTED','',NULL,0),(402,'NAMAQUA SWEET WHITE 750ML','12','26','',0.00,'1050','1600','0','',NULL,NULL,'0',0,0,'5522361680978332',0,0,0,1.00,'2023-04-08 21:28:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6004442004033','pcs','Inventory','EXEMPTED','',NULL,0),(403,'MOHANS RESERVE 750ML','12','26','',0.00,'585','1000','0','',NULL,NULL,'0',0,0,'6714431680978502',0,0,0,0.00,'2023-04-08 21:30:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6009676519216','pcs','Inventory','EXEMPTED','',NULL,0),(404,'KENYA KING 250ML','11','26','',0.00,'210','350','0','',NULL,NULL,'0',0,0,'6162801680978638',0,0,0,4.00,'2023-04-08 21:33:24','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161101561037','pcs','Inventory','EXEMPTED','',NULL,0),(405,'HENNESSY750ML','1','26','',0.00,'4350','6000','0','',NULL,NULL,'0',0,0,'7133431680978804',0,0,0,0.00,'2023-04-08 21:36:15','12','1','1','0000-00-00','mainitem','Inclusive','','active','','3245990250203','pcs','Inventory','EXEMPTED','',NULL,0),(406,'CLUBMAN MINTPUNCH','6','26','',0.00,'655','1000','0','',NULL,NULL,'0',0,0,'6410821680978975',0,0,0,0.00,'2023-04-08 21:41:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001496566050','pcs','Inventory','EXEMPTED','',NULL,0),(407,'BEST VODKA 750ML','4','26','',0.00,'640','900','0','',NULL,NULL,'0',0,0,'7133431680981523',0,0,0,0.00,'2023-04-08 22:22:06','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6161100421677','pcs','Inventory','EXEMPTED','1',NULL,0),(408,'JAMESON 1L','1','26','',0.00,'2500','3500','0','',NULL,NULL,'0',0,0,'5449261680982380',0,0,0,0.00,'2023-04-08 22:35:20','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5011007003227','pcs','Inventory','EXEMPTED','',NULL,0),(409,'VICEROY 10YRS 750ML','6','26','',0.00,'3250','4500','0','',NULL,NULL,'0',0,0,'2350081680982900',0,0,0,2.00,'2023-04-08 22:43:18','12','1','1','0000-00-00','mainitem','Inclusive','','active','','6001108097965','pcs','Inventory','EXEMPTED','1',NULL,0),(410,'JW BLACK LABEL 375ML','1','21','',0.00,'1406','2000','0','',NULL,NULL,'0',0,0,'4925431681400865',0,0,0,1.00,'2023-04-13 18:50:21','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267024608','pcs','Inventory','EXEMPTED','2',NULL,0),(411,'SANDARA PASSIONATE ROSE ','12','27','',0.00,'1100','1700','0','',NULL,NULL,'0',0,0,'5402131681764201',0,0,0,2.00,'2023-04-17 23:50:50','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8410310610707','pcs','Inventory','EXEMPTED','1',NULL,0),(412,'SANDARA PREMIUM SPARKLING SANGRIA ','12','27','',0.00,'1100','1700','0','',NULL,NULL,'0',0,0,'9530851681764709',0,0,0,2.00,'2023-04-17 23:55:03','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8410310612312','pcs','Inventory','EXEMPTED','1',NULL,0),(413,'ROSSO NOBILE AL CIOCCOLATA 750ML ','12','27','',0.00,'1350','1900','0','0',NULL,NULL,'0',0,0,'9484931681765110',0,0,0,0.00,'2023-04-18 00:04:14','12','1','1','0000-00-00','mainitem','Inclusive','','active','','3263280124362','pcs','Inventory','EXEMPTED','1',NULL,0),(414,'SANDARA WINE MOJITO 750ML','12','27','',0.00,'1100','1700','0','',NULL,NULL,'0',0,0,'3043081681768789',0,0,0,2.00,'2023-04-18 01:01:37','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8410310614316','pcs','Inventory','EXEMPTED','1',NULL,0),(415,'SANDARA PASSIONATE WHITE 750ML ','12','27','',0.00,'1100','1700','0','',NULL,NULL,'0',0,0,'1606931681768898',0,0,0,2.00,'2023-04-18 01:03:24','12','1','1','0000-00-00','mainitem','Inclusive','','active','','8410310610684','pcs','Inventory','EXEMPTED','1',NULL,0),(416,'DONJULIO TEQUILA BLANC','6','21','',0.00,'5760','8000','0','',NULL,NULL,'0',0,0,'8395881681916468',0,0,0,0.00,'2023-04-19 18:08:03','12','1','1','0000-00-00','mainitem','na','DONJULIO BLANCO TEQUILA','active','','674545000841','pcs','Inventory','EXEMPTED','1',NULL,0),(417,'GRANT\'S TRIPLE WOOD 750ML ','1','26','',0.00,'1600','2300','0','0',NULL,NULL,'0',0,0,'9874931682042340',0,0,0,1.00,'2023-04-21 05:03:53','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5010327000046','pcs','Inventory','EXEMPTED','1',NULL,0),(418,'ROSSO NOBILE MAZIPANV','12','27','',0.00,'1350','1900','0','',NULL,NULL,'0',0,0,'6583921682059072',0,0,0,0.00,'2023-04-21 09:42:09','12','1','1','0000-00-00','mainitem','Inclusive','','active','','4058387004193','pcs','Inventory','EXEMPTED','1',NULL,0),(419,'BLACK LABEL 250ML ','1','21','',0.00,'1000','1500','0','',NULL,NULL,'0',0,0,'4467451682344124',0,0,0,0.00,'2023-04-24 16:52:44','12','1','1','0000-00-00','mainitem','Inclusive','','active','','5000267184210','pcs','Inventory','EXEMPTED','1',NULL,0); /*!40000 ALTER TABLE `productlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `products` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` int(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `store` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_number` (`code`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=421 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (1,'ALVARO PINEAPPLE 330ML CAN','6','13','6161101602525','',16.00,'95.75','120','0','',NULL,NULL,0,0,0,'885221656670430',0,0,0,0.00,'2022-07-01 13:22:32','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(2,'BAILEYS ORIGINAL 375ML','5','13','5011013100194','',16.00,'1040','1600','0','0',NULL,NULL,0,0,0,'3194131656671033',0,0,0,0.00,'2022-07-01 13:25:55','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(3,'BAILEYS ORIGINAL 750ML','5','13','5011013100132','',16.00,'1916','2800','0','0',NULL,NULL,0,0,0,'5055021656671155',0,0,0,7.00,'2022-07-01 13:27:18','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(4,'BAILEYS ORIGINAL 1L','5','13','5011013100118','',16.00,'2560','3700','0','0',NULL,NULL,0,0,0,'8994631656671239',0,0,0,6.00,'2022-07-01 13:30:00','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(5,'BALOZI LAGER CAN 500ML','3','13','6161101606011','',16.00,'172.833','250','0','0',NULL,NULL,5,0,0,'8961101656671401',0,0,0,0.00,'2022-07-01 13:31:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(6,'BLACK &WHITE 1L','1','13','50196081','',16.00,'1130','1800','0','0',NULL,NULL,0,0,0,'762271656671502',0,0,0,0.00,'2022-07-01 13:33:28','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(7,'BLACK & WHITE 750ML','1','13','50196111','',16.00,'855','1500','0','0',NULL,NULL,0,0,0,'7986241656671609',0,0,0,0.00,'2022-07-01 13:35:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(8,'BLACK & WHITE 250ML','1','13','5000196006652','',16.00,'310','500','0','0',NULL,NULL,0,0,0,'1245021656671705',0,0,0,0.00,'2022-07-01 13:36:31','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(9,'BLACK & WHITE 350ML','1','13','50196166','',16.00,'443','750','0','0',NULL,NULL,0,0,0,'786141656671792',0,0,0,10.00,'2022-07-01 13:37:39','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(10,'BOND 7 350ML','1','13','5010103930970','',16.00,'542','750','0','',NULL,NULL,0,0,0,'651101656671859',0,0,0,0.00,'2022-07-01 13:38:53','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(11,'BOND 7 250ML','1','13','6161101602143','',16.00,'388','550','0','',NULL,NULL,0,0,0,'4214901656671934',0,0,0,0.00,'2022-07-01 13:40:13','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(12,'BOND 7 750ML','1','13','5010103930963','',16.00,'1125','1500','0','',NULL,NULL,0,0,0,'8950831656672014',0,0,0,0.00,'2022-07-01 13:41:02','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(13,'CAPTAIN MORGAN GOLD 250ML','6','13','6161101604550','',16.00,'284','400','0','',NULL,NULL,0,0,0,'8315831656672062',0,0,0,0.00,'2022-07-01 13:42:17','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(14,'CAPTAIN MORGAN 750ML','6','13','6161101604543','',16.00,'788','1200','0','0',NULL,NULL,0,0,0,'2611991656672137',0,0,0,3.00,'2022-07-01 13:43:19','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(15,'CHROME GIN 250ML','2','13','6161101605458','',16.00,'182','270','0','0',NULL,NULL,0,0,0,'8800381656672200',0,0,0,0.00,'2022-07-01 13:44:36','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(16,'CHROME GIN 750ML','2','13','6161101605465','',16.00,'501','800','0','0',NULL,NULL,0,0,0,'121664394577',0,0,0,5.00,'2022-09-28 22:49:45','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(17,'CHROME VODKA 250ML','4','13','6161101603515','',16.00,'182','270','0','0',NULL,NULL,0,0,0,'4755051656672366',0,0,0,0.00,'2022-07-01 13:48:27','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(18,'CHROME VODKA 750ML','4','13','6161101603522','',16.00,'501','800','0','0',NULL,NULL,0,0,0,'4636321656672508',0,0,0,0.00,'2022-07-01 13:49:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(19,'CIROC VODKA 1L','4','13','5010103912976','',16.00,'4160','5800','0','0',NULL,NULL,0,0,0,'1356191656672581',0,0,0,0.00,'2022-07-01 13:50:50','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(20,'GILBEYS GIN 250ML','2','13','6161101602167','',16.00,'418','600','0','0',NULL,NULL,0,0,0,'121659111097',0,0,0,1.00,'2022-07-29 19:11:50','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(21,'GILBEYS GIN 350ML','2','13','5010103930666','',16.00,'576','850','0','0',NULL,NULL,0,0,0,'1789091656672714',0,0,0,0.00,'2022-07-01 13:53:17','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(22,'GILBEYS GIN 750ML','2','13','5010103930628','',16.00,'1125','1750','12','1125',NULL,NULL,0,0,0,'121659014356',0,0,0,4.00,'2022-07-28 16:20:03','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(23,'GILBEYS GIN MIXED BERRY 250ML','2','13','6161101606547','',16.00,'388','550','0','0',NULL,NULL,0,0,0,'482831656672881',0,0,0,30.00,'2022-07-01 13:55:47','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(24,'GILBEYS GIN MIXED BERRY 750ML','2','13','6161101606561','',16.00,'1125','1850','0','0',NULL,NULL,0,0,0,'1945871656672948',0,0,0,6.00,'2022-07-01 13:56:51','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(25,'GORDONS DRY GIN 1L','2','13','5000289020800','',16.00,'1840','2500','0','',NULL,NULL,0,0,0,'3025561656673012',0,0,0,2.00,'2022-07-01 13:58:29','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(26,'GORDONS DRY GIN 750ML','2','13','5000289020701','',16.00,'1900','2800','6','0',NULL,NULL,0,0,0,'3858131656673110',0,0,0,0.00,'2022-07-01 13:59:25','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(27,'GORDONS DRY GIN 350ML','2','13','5000289933292','',16.00,'710','950','0','',NULL,NULL,0,0,0,'9356841656673166',0,0,0,14.00,'2022-07-01 14:00:25','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(28,'GORDONS PINK GIN 700ML','2','13','5000289929417','',16.00,'1900','3000','6','0',NULL,NULL,0,0,0,'5188551656673225',0,0,0,1.00,'2022-07-01 14:03:42','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(29,'GORDONS SICILIAN LEMON 700ML','2','13','5000289932479','',16.00,'1540','2000','0','',NULL,NULL,0,0,0,'1936811656673422',0,0,0,2.00,'2022-07-01 14:05:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(30,'GUINNESS CAN 500ML','3','13','6161101602372','',16.00,'189.75','250','0','0',NULL,NULL,0,0,0,'5829591656673542',0,0,0,22.00,'2022-07-01 14:07:13','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(31,'GUINNESS SMOOTH CAN 500ML','3','13','6161101605199','',16.00,'172.833','250','0','0',NULL,NULL,0,0,0,'2606861656673633',0,0,0,0.00,'2022-07-01 14:08:53','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(32,'JW GOLD RESERVE 750ML','1','13','5000267107776','',16.00,'5685','7700','0','',NULL,NULL,0,0,0,'932651656673734',0,0,0,4.00,'2022-07-01 14:11:11','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(33,'JW RED 1L','1','13','5000267013602','',16.00,'1780','2800','6','0',NULL,NULL,0,0,0,'3308921656673872',0,0,0,0.00,'2022-07-01 14:12:40','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(34,'JW RED 375ML','1','13','5000267014609','',16.00,'864','1700','0','0',NULL,NULL,0,0,0,'4905191656673961',0,0,0,0.00,'2022-07-01 14:14:12','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(35,'JW RED 750ML','1','13','5000267014005','',16.00,'1465','2500','3','0',NULL,NULL,0,0,0,'2683891656674052',0,0,0,0.00,'2022-07-01 14:16:04','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(36,'J&B RARE 1L','1','13','5010103800457','',16.00,'1699','2300','0','',NULL,NULL,0,0,0,'7190831656674165',0,0,0,4.00,'2022-07-01 14:20:40','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(37,'J&B RARE 375ML','1','13','5010103800167','',16.00,'719','1000','0','',NULL,NULL,0,0,0,'9629331656674441',0,0,0,16.00,'2022-07-01 14:22:07','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(38,'J&B RARE 750ML','1','13','5010103800303','',16.00,'1353','1900','0','',NULL,NULL,0,0,0,'5808141656674528',0,0,0,11.00,'2022-07-01 14:23:23','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(39,'JW AGED 18YRS 750ML','1','13','5000267165806','',16.00,'7531','10000','0','',NULL,NULL,0,0,0,'3016501656674604',0,0,0,0.00,'2022-07-01 14:25:15','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(40,'JW BLACK LABEL 750ML','1','13','5000267024011','',16.00,'2835','4000','0','0',NULL,NULL,0,0,0,'4403411656674716',0,0,0,0.00,'2022-07-01 14:26:50','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(41,'JW DOUBLE BLACK 750ML','1','13','5000267116419','',16.00,'3870','5500','0','0',NULL,NULL,0,0,0,'7477211656674811',0,0,0,3.00,'2022-07-01 14:27:55','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(42,'KETEL ONE 750ML','4','13','085156275021','',16.00,'2461','3000','0','',NULL,NULL,0,0,0,'8060251656674875',0,0,0,0.00,'2022-07-01 14:29:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(43,'PILSNER CAN 500ML','3','13','6161101602600','',16.00,'154.95','250','0','0',NULL,NULL,0,0,0,'132411656674941',0,0,0,0.00,'2022-07-01 14:30:02','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(44,'RICHOT BRANDY 250ML','6','13','6161101602181','',16.00,'388','550','0','',NULL,NULL,0,0,0,'6237421656675003',0,0,0,0.00,'2022-07-01 14:31:08','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(45,'RICHOT BRANDY 750ML','6','13','5010103930864','',16.00,'1125','1500','0','',NULL,NULL,0,0,0,'9197031656675068',0,0,0,0.00,'2022-07-01 14:32:04','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(46,'SHERIDAN\"S 1L','6','13','5011013500604','',16.00,'4049','5500','0','',NULL,NULL,0,0,0,'4102821656675125',0,0,0,0.00,'2022-07-01 14:33:26','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(47,'SMIRNOFF RED 1L','4','13','6161101600927','',16.00,'1417','1900','0','',NULL,NULL,0,0,0,'469541656675206',0,0,0,0.00,'2022-07-01 14:35:20','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(48,'SMIRNOFF GUARANA 330ML','6','13','6161101603324','',16.00,'150.45','250','12','0',NULL,NULL,0,0,0,'7084491656675320',0,0,0,0.00,'2022-07-01 14:37:37','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(49,'SMIRNOFF BLACK ICE 330ML CAN','6','13','6161101604703','',16.00,'150.45','250','0','0',NULL,NULL,0,0,0,'1906901656675458',0,0,0,0.00,'2022-07-01 14:39:10','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(50,'THE SINGLETON 18YRS 700ML','1','13','5000281028620','',16.00,'8000','11000','0','0',NULL,NULL,0,0,0,'121667953548',0,0,0,0.00,'2022-11-09 03:26:04','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(51,'SMIRNOFF RED 250ML','4','13','6161101602051','',16.00,'392','550','0','',NULL,NULL,0,0,0,'8984961656675653',0,0,0,0.00,'2022-07-01 14:42:21','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(52,'SMIRNOFF RED 350ML','4','13','6161101600941','',16.00,'544','750','0','',NULL,NULL,0,0,0,'6323821656675742',0,0,0,0.00,'2022-07-01 14:43:56','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(53,'SMIRNOFF RED 750ML','4','13','6161101600934','',16.00,'1144','1600','0','0',NULL,NULL,0,0,0,'2021701656675836',0,0,0,3.00,'2022-07-01 14:45:10','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(54,'SNAPP 330ML CAN','3','13','6161101602433','',16.00,'150.45','200','0','',NULL,NULL,0,0,0,'6424721656675911',0,0,0,0.00,'2022-07-01 14:46:37','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(55,'TALISKER WHISKY 1L','1','13','5000281003641','',16.00,'6313','8500','0','',NULL,NULL,0,0,0,'1954941656675998',0,0,0,0.00,'2022-07-01 14:47:50','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(56,'TALISKER STORM 750ML','1','13','5000281032733','',16.00,'3996','5400','0','',NULL,NULL,0,0,0,'3096551656676070',0,0,0,0.00,'2022-07-01 14:49:03','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(57,'TANQUERAY SEVILLA 700ML','2','13','5000291023462','',16.00,'2220','3000','0','',NULL,NULL,0,0,0,'7068181656676143',0,0,0,0.00,'2022-07-01 14:52:09','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(58,'TANQUERAY LONDON GIN 750ML','2','13','5000291020706','',16.00,'2070','2800','0','',NULL,NULL,0,0,0,'5573421656676329',0,0,0,0.00,'2022-07-01 14:53:18','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','3',NULL),(59,'TANQUERAY NO.TEN 1L','2','13','5000281016689','',16.00,'4000','5400','0','',NULL,NULL,0,0,0,'440841656676399',0,0,0,0.00,'2022-07-01 14:55:00','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(60,'TANQUERAY NO.TEN 750ML','2','13','5000291021925','',16.00,'3381','4500','0','',NULL,NULL,0,0,0,'4772871656676500',0,0,0,0.00,'2022-07-01 14:55:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(61,'TANQUERAY ROYALE GIN 700ML','2','13','5000291025824','',16.00,'2200','3000','0','',NULL,NULL,0,0,0,'4282571656676558',0,0,0,0.00,'2022-07-01 14:57:24','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(62,'TANQUERAY RANGPUR LIME 700ML','2','13','5000291025930','',16.00,'2220','3000','0','',NULL,NULL,0,0,0,'3505891656676645',0,0,0,0.00,'2022-07-01 14:59:03','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(63,'TUSKER CIDER CAN 500ML','3','13','6161101604406','',16.00,'181.708','250','0','0',NULL,NULL,0,0,0,'8380171656676754',0,0,0,0.00,'2022-07-01 15:00:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(64,'TUSKER LAGER CAN 500ML','3','13','6161101601979','',16.00,'172.75','250','0','0',NULL,NULL,0,0,0,'6737081656676857',0,0,0,0.00,'2022-07-01 15:02:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(65,'TUSKER LITE CAN 500ML','3','13','6161101602938','',16.00,'198.45','250','0','0',NULL,NULL,0,0,0,'88001656676921',0,0,0,0.00,'2022-07-01 15:03:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(66,'TUSKER MALT CAN 500ML','3','13','6161101602921','',16.00,'198.45','250','0','0',NULL,NULL,0,0,0,'5853761656676986',0,0,0,0.00,'2022-07-01 15:03:52','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(67,'V&A 750ML','6','13','6161101130424','',16.00,'711','1300','0','0',NULL,NULL,0,0,0,'5926261656677032',0,0,0,0.00,'2022-07-01 15:05:37','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(68,'VAT 69 250ML','1','13','5000292263171','',16.00,'430','600','0','',NULL,NULL,0,0,0,'1315411656677138',0,0,0,23.00,'2022-07-01 15:08:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(69,'VAT 69 375ML','1','13','6161101601115','',16.00,'635','850','0','',NULL,NULL,0,0,0,'1183991656677281',0,0,0,21.00,'2022-07-01 15:10:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','5',NULL),(70,'VAT 69 750ML','1','13','5000292001001','',16.00,'1141','1600','0','',NULL,NULL,0,0,0,'9055651656677406',0,0,0,6.00,'2022-07-01 15:11:12','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(71,'WHITE CAP CAN 500ML','3','13','6161101603379','',16.00,'190.375','250','12','0',NULL,NULL,1,0,0,'121659016527',0,0,0,24.00,'2022-07-28 16:55:55','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(72,'JW WHITE 1L','1','13','5000267173139','',16.00,'3056','4500','0','0',NULL,NULL,0,0,0,'4803981656677569',0,0,0,3.00,'2022-07-01 15:16:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(73,'JW BLUE 750ML','1','13','5000267114279','',16.00,'21211','25000','0','0',NULL,NULL,0,0,0,'8984061656677818',0,0,0,0.00,'2022-07-01 15:19:40','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','0',NULL),(74,'JW GREEN LABEL 750ML','1','13','5000267134338','',16.00,'5458','7300','0','',NULL,NULL,0,0,0,'5999671656677980',0,0,0,0.00,'2022-07-01 15:21:18','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(75,'AMARULA CREAM 1L','5','13','6001495062669','',16.00,'1960','3200','0','0',NULL,NULL,0,0,0,'121671358744',0,0,0,0.00,'2022-12-18 13:19:17','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(76,'BACARDI CARTA BLANCA 1L','6','13','5010677015738','',16.00,'1730','2300','0','',NULL,NULL,0,0,0,'6618961656678577',0,0,0,0.00,'2022-07-01 15:31:43','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(77,'BACARDI CARTA BLANCA 750ML','7','13','5010677015615','',16.00,'1300','1800','0','',NULL,NULL,0,0,0,'6300861656679104',0,0,0,0.00,'2022-07-01 15:40:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(78,'BACARDI CARTA NEGRA 1L','7','13','5010677038874','',16.00,'1570','2300','0','0',NULL,NULL,0,0,0,'2304461656679202',0,0,0,0.00,'2022-07-01 15:41:22','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(79,'BACARDI CARTA ORO 750ML','7','13','5010677025003','',16.00,'1270','1750','0','',NULL,NULL,0,0,0,'6245271656679283',0,0,0,0.00,'2022-07-01 15:42:26','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(80,'BALLANTINES 750ML','1','13','5010106111451','',16.00,'1600','2200','0','',NULL,NULL,0,0,0,'9582201656679347',0,0,0,0.00,'2022-07-01 15:43:19','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(81,'BEEFEATER PINK GIN 750ML','2','13','5000299618073','',16.00,'2460','3500','0','0',NULL,NULL,0,0,0,'9028161656679400',0,0,0,0.00,'2022-07-01 15:44:27','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(82,'BIANCO NOBILE VANILLA 750ML','12','13','4058387000317','',16.00,'1150','1550','0','',NULL,NULL,0,0,0,'1161641656679468',0,0,0,0.00,'2022-07-01 15:45:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(83,'CAPTAIN MORGAN BLACK RUM 1L','7','13','087000006935','',16.00,'1650','2250','0','',NULL,NULL,0,0,0,'7021661656679558',0,0,0,4.00,'2022-07-01 15:47:29','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(84,'CAPTAIN MORGAN DARK RUM 750ML','6','13','087000006928','',16.00,'1320','1800','0','',NULL,NULL,0,0,0,'8841471656679650',0,0,0,3.00,'2022-07-01 15:49:06','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(85,'CHIVAS REGAL 12YRS 1LTR','1','13','080432400432','',16.00,'3250','4800','0','0',NULL,NULL,0,0,0,'121667953062',0,0,0,0.00,'2022-11-09 03:17:59','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(86,'CHIVAS REGAL 12YRS 750ML','1','13','080432400395','',16.00,'3200','4800','0','0',NULL,NULL,0,0,0,'1957961656679822',0,0,0,0.00,'2022-07-01 15:51:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(87,'GENTLEMAN JACK 750ML','1','13','5099873038758','',16.00,'3920','8500','0','',NULL,NULL,0,0,0,'7694721656679912',0,0,0,0.00,'2022-07-01 15:53:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(88,'GLENFIDDICH 12YRS','1','13','5010327302201','',16.00,'6800','8500','0','1',NULL,NULL,0,0,0,'2670901656680037',0,0,0,0.00,'2022-07-01 15:56:53','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(89,'HENNESSY VS 1L','1','13','3245990255215','',16.00,'9200','12500','0','',NULL,NULL,0,0,0,'5996051656680214',0,0,0,0.00,'2022-07-01 15:58:47','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(90,'HENNESSY VSOP 1L','1','13','3245990987611','',16.00,'13000','17500','0','',NULL,NULL,0,0,0,'7073621656680327',0,0,0,0.00,'2022-07-01 15:59:58','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(91,'JACK DANIELS 1L','1','13','082184090442','',16.00,'3450','5300','0','0',NULL,NULL,0,0,0,'7737921656680399',0,0,0,7.00,'2022-07-01 16:07:49','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(92,'JACK DANIELS 700ML','1','13','082184090473','',16.00,'2600','4000','0','0',NULL,NULL,0,0,0,'7508031656680869',0,0,0,6.00,'2022-07-01 16:09:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(93,'JACK DANIELS 350ML','1','13','5099873089712','',16.00,'1650','2300','0','',NULL,NULL,0,0,0,'9617851656680942',0,0,0,0.00,'2022-07-01 16:09:55','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(94,'JACK DANIEL HONEY 1L','1','13','5099873046968','',16.00,'3100','4700','0','0',NULL,NULL,0,0,0,'4718791656680996',0,0,0,0.00,'2022-07-01 16:10:51','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(95,'JACK DANIEL HONEY 700ML','1','13','5099873001370','',16.00,'3000','4000','0','',NULL,NULL,0,0,0,'4595241656681052',0,0,0,0.00,'2022-07-01 16:12:17','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(96,'JACK DANIEL RYE 1L','1','13','5099873011737','',16.00,'3300','4500','0','',NULL,NULL,0,0,0,'4169591656681137',0,0,0,0.00,'2022-07-01 16:13:15','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(97,'JACK DANIELS SINGLE BARREL 750ML','1','13','082184087008','',16.00,'5900','8000','0','',NULL,NULL,0,0,0,'4547511656681196',0,0,0,0.00,'2022-07-01 16:14:33','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(98,'JAGERMEISTER 700ML','6','13','4067700014559','',16.00,'2600','3600','0','0',NULL,NULL,0,0,0,'3112861656681274',0,0,0,0.00,'2022-07-01 16:16:08','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','2',NULL),(99,'JAGERMEISTER 1L','6','13','4067700014535','',16.00,'3350','5200','0','0',NULL,NULL,0,0,0,'321821656681368',0,0,0,0.00,'2022-07-01 16:18:20','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(100,'JAMESON 750ML','1','13','5011007003029','',16.00,'1900','2700','0','0',NULL,NULL,0,0,0,'4694931656682290',0,0,0,0.00,'2022-07-01 16:34:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(101,'JW BLACK LABEL 1L','1','13','5000267125046','',16.00,'3540','5300','0','0',NULL,NULL,0,0,0,'5588221656682443',0,0,0,0.00,'2022-07-01 16:36:36','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(102,'JW BLUE LABEL1L','1','13','5000267114293','',16.00,'18500','28500','0','0',NULL,NULL,0,0,0,'868911656682598',0,0,0,0.00,'2022-07-01 16:38:53','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(103,'JW DOUBLE BLACK 1L','1','13','5000267112077','',16.00,'4520','6000','0','',NULL,NULL,0,0,0,'2346751656682733',0,0,0,0.00,'2022-07-01 16:40:14','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(104,'MALIBU COCONUT RUM 700ML','7','13','089540448992','',16.00,'1590','2150','0','',NULL,NULL,0,0,0,'1199701656682815',0,0,0,0.00,'2022-07-01 16:43:50','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(105,'MALIBU COCONUT RUM 1L','7','13','089540448978','',16.00,'1970','2600','0','',NULL,NULL,0,0,0,'4454461656683031',0,0,0,0.00,'2022-07-01 16:45:07','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(106,'NEDERBURG SHIRAZ 750ML','12','13','6001452371506','',16.00,'1150','1600','0','',NULL,NULL,0,0,0,'8816701656683107',0,0,0,0.00,'2022-07-01 16:48:12','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(107,'NEDERBURG CABERNET SAUVIGNON 750ML','12','13','6001452301862','',16.00,'1150','1600','0','',NULL,NULL,0,0,0,'3199261656683293',0,0,0,0.00,'2022-07-01 16:50:06','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(108,'NEDERBURG MERLOT 750ML','12','13','6001108001436','',16.00,'1150','1600','0','',NULL,NULL,0,0,0,'9503361656683408',0,0,0,0.00,'2022-07-01 16:51:40','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(109,'NEDERBURG SAUVIGNON BLANC 750ML','12','13','6001452258005','',16.00,'1150','1600','0','',NULL,NULL,0,0,0,'5787001656683501',0,0,0,0.00,'2022-07-01 16:52:56','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(110,'REMY MARTIN VSOP 700ML','12','13','3024482270123','',16.00,'7200','9700','0','',NULL,NULL,0,0,0,'17611656683577',0,0,0,0.00,'2022-07-01 16:56:50','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(111,'REMY MARTIN XO 700ML','12','13','3024480004522','',16.00,'18500','25000','0','',NULL,NULL,0,0,0,'2759721656683811',0,0,0,0.00,'2022-07-01 16:58:13','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(112,'ROBERTSON NATURAL SWEET RED 750ML','12','13','6002039006019','',16.00,'790','1400','0','0',NULL,NULL,0,0,0,'8741171656683893',0,0,0,0.00,'2022-07-01 17:00:27','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(113,'ROBERTSON NATURAL SWEET WHITE 750ML','12','13','6002039005753','',16.00,'790','1400','0','0',NULL,NULL,0,0,0,'3716141656684028',0,0,0,0.00,'2022-07-01 17:01:35','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(114,'ROBERTSON NATURAL SWEET RED 750ML','12','13','6002039005746','',16.00,'790','1400','0','0',NULL,NULL,0,0,0,'5186441656684096',0,0,0,6.00,'2022-07-01 17:02:47','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(115,'ROBERTSON NATURAL SWEET ROSE 1.5L','12','13','6002039008686','',16.00,'1400','2000','0','0',NULL,NULL,0,0,0,'2627101656684167',0,0,0,4.00,'2022-07-01 17:04:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(116,'ROSSO NOBILE NOUGAT 750ML','12','13','4058387002267','',16.00,'1150','1500','0','',NULL,NULL,0,0,0,'6079121656684245',0,0,0,0.00,'2022-07-01 17:07:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(117,'ROSSO CHERRY 750ML','12','13','4058387003585','',16.00,'1150','1500','0','',NULL,NULL,0,0,0,'7887761656684462',0,0,0,0.00,'2022-07-01 17:09:04','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(118,'ROSSO NOBILE ALL EXPRESSO 750ML','12','13','4058387001451','',16.00,'1050','1400','0','',NULL,NULL,0,0,0,'6894171656684545',0,0,0,0.00,'2022-07-01 17:10:14','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(119,'ROSSO NOBILE TASPBERRY & LEMON 750ML','12','13','4058387004605','',16.00,'1050','1400','0','',NULL,NULL,0,0,0,'8078081656684615',0,0,0,0.00,'2022-07-01 17:11:24','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(120,'SOUTHERN COMFORT 1L','1','13','088544018941','',16.00,'2100','2900','0','',NULL,NULL,0,0,0,'1968231656684684',0,0,0,3.00,'2022-07-01 17:13:41','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(121,'SOUTHERN COMFORT 700ML','1','13','1210000100511','',16.00,'1650','2300','0','',NULL,NULL,0,0,0,'8107681656684822',0,0,0,3.00,'2022-07-01 17:15:53','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(122,'ST CLAIRE 750ML','12','13','6001812011936','',16.00,'700','1400','0','0',NULL,NULL,0,0,0,'7954221656684954',0,0,0,0.00,'2022-07-01 17:17:03','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(123,'TANQUERAY RANGPUR 1L','2','13','5000291022663','',16.00,'2822','3800','0','',NULL,NULL,0,0,0,'7845161656685024',0,0,0,0.00,'2022-07-01 17:21:07','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(124,'TANQUERAY LONDON GIN 1L','2','13','5000291020805','',16.00,'2760','3750','0','',NULL,NULL,0,0,0,'5169821656685268',0,0,0,0.00,'2022-07-01 17:22:45','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(125,'VAT 69 1L','1','13','5000292262716','',16.00,'1250','1800','0','0',NULL,NULL,0,0,0,'2063991656685366',0,0,0,4.00,'2022-07-01 17:29:45','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(126,'ROTHMANS SPORTMAN','13','17','6008165007685','',16.00,'257','350','0','0',NULL,NULL,0,0,0,'7095371656687798',0,0,0,0.00,'2022-07-01 18:05:32','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(127,'DUNHILL EMBASSY RED','13','17','6008165007968','',16.00,'337','500','0','0',NULL,NULL,0,0,0,'121670397050',0,0,0,10.00,'2022-12-07 10:11:28','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(128,'DUNHILL EMBASSY BLUE','13','17','6008165007982','',16.00,'337','500','10','0',NULL,NULL,0,0,0,'121670396919',0,0,0,10.00,'2022-12-07 10:09:16','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(129,'DUNHILL SINGLE SWITCH','13','17','6008165007814','',16.00,'346','550','0','0',NULL,NULL,0,0,0,'8511281656688124',0,0,0,10.00,'2022-07-01 18:09:51','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(130,'DUNHILL DOUBLE SWITCH','13','17','6008165007784','',16.00,'346','550','0','0',NULL,NULL,0,0,0,'9161391656688191',0,0,0,10.00,'2022-07-01 18:11:03','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(131,'REDBULL','10','14','90162602','',16.00,'147','230','0','0',NULL,NULL,0,0,0,'5736851656688724',0,0,0,12.00,'2022-07-01 18:19:47','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(132,'DELMONTE MANGO 1LTR','10','15','024000150152','',16.00,'205','300','0','0',NULL,NULL,0,0,0,'651711656688788',0,0,0,0.00,'2022-07-01 18:21:16','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(133,'DELMONTE TROPICAL 1LTR','10','15','024000150121','',16.00,'205','300','0','0',NULL,NULL,0,0,0,'7435221656688876',0,0,0,0.00,'2022-07-01 18:22:32','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(134,'DELMONTE MIXED BERRIES 1 LTR','10','15','024000150138','',16.00,'205','300','0','0',NULL,NULL,0,0,0,'336321656688952',0,0,0,0.00,'2022-07-01 18:24:59','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(135,'DELMONTE APPLE 1LTR','10','15','024000150053','',16.00,'205','300','0','0',NULL,NULL,0,0,0,'6030791656689100',0,0,0,0.00,'2022-07-01 18:26:25','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(136,'AMARULA CREAM 750ML','5','13','6001495062508','',16.00,'2011','2800','0','0',NULL,NULL,0,0,0,'121671358715',0,0,0,1.00,'2022-12-18 13:18:46','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(137,'MINUTE MAID APPLE 400ML','10','14','5449000188342','',16.00,'59.666','100','0','0',NULL,NULL,0,0,0,'6314761656689413',0,0,0,0.00,'2022-07-01 18:31:34','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(138,'MINUTE MAID TROPICAL 400ML','10','14','90399480','',16.00,'59.666','100','0','0',NULL,NULL,0,0,0,'6469131656689494',0,0,0,0.00,'2022-07-01 18:32:31','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(139,'MINUTE MAID ORANGE PULPY 400ML','10','14','90490224','',16.00,'59.666','100','0','0',NULL,NULL,0,0,0,'2772711656689551',0,0,0,0.00,'2022-07-01 18:33:30','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(140,'KERINGET 1LTR','10','14','5018907194802','',16.00,'74.58','150','0','0',NULL,NULL,0,0,0,'8844191656689611',0,0,0,0.00,'2022-07-01 18:35:23','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(141,'KERINGET 500ML','10','14','5018907197803','',16.00,'44.58','100','0','0',NULL,NULL,0,0,0,'2450671656689724',0,0,0,0.00,'2022-07-01 18:36:13','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(142,'COKE ZERO 500ML','10','14','5449000131836','',16.00,'53.333','80','0','0',NULL,NULL,0,0,0,'4545091656689773',0,0,0,0.00,'2022-07-01 18:37:22','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(143,'KREST 500ML','10','14','5449000139030','',16.00,'53.333','70','0','',NULL,NULL,0,0,0,'542051656689843',0,0,0,0.00,'2022-07-01 18:38:19','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(144,'SPRITE 500ML','10','14','54491069','',16.00,'53.333','80','0','0',NULL,NULL,0,0,0,'7739431656689899',0,0,0,0.00,'2022-07-01 18:39:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(145,'FANTA ORANGE 500ML','10','14','40822938','',16.00,'53.333','70','0','',NULL,NULL,0,0,0,'7044921656689946',0,0,0,10.00,'2022-07-01 18:40:01','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(146,'TONIC WATER 500ML','10','14','50112265','',16.00,'53.33','80','0','0',NULL,NULL,0,0,0,'5032071656690002',0,0,0,24.00,'2022-07-01 18:41:04','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(147,'SODA WATER 500ML','10','14','54493360','',16.00,'53.333','80','0','0',NULL,NULL,0,0,0,'2974501656690064',0,0,0,0.00,'2022-07-01 18:42:23','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(148,'HEINEKEN GLASS300ML','3','15','8712000900663','',16.00,'214','300','48','0',NULL,NULL,0,0,0,'2969071656772708',0,0,0,0.00,'2022-07-02 17:40:14','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(149,'HEINEKEN CAN 500ML','3','15','8712000900045','',16.00,'182','300','20','0',NULL,NULL,0,0,0,'121662030155',0,0,0,24.00,'2022-09-01 14:03:28','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(150,'SAVANNA DRY CIDER 330ML','3','15','6001108028044','',16.00,'201','300','36','0',NULL,NULL,0,0,0,'121659015687',0,0,0,12.00,'2022-07-28 16:43:49','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(151,'J5 MINI LIGHTER','14','15','3086120600051','',16.00,'59.74','80','0','',NULL,NULL,0,0,0,'9696091656772965',0,0,0,0.00,'2022-07-02 17:44:36','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(152,'J5 MAXI LIGHTERS','14','15','3086120600020','',16.00,'93.86','120','0','',NULL,NULL,0,0,0,'3579901656773077',0,0,0,0.00,'2022-07-02 17:46:11','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(153,'DUREX FEATHERLITE','14','15','5010232953994','',16.00,'263.157','600','0','0',NULL,NULL,0,0,0,'8943881656773171',0,0,0,0.00,'2022-07-02 17:47:21','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(154,'DUREX EXTRA SAFE','14','15','5010232965096','',16.00,'263.157','600','0','0',NULL,NULL,0,0,0,'5539281656773241',0,0,0,0.00,'2022-07-02 17:48:24','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(155,'DUREX PERFORMA','14','14','5010232953925','',16.00,'315.787','700','0','0',NULL,NULL,0,0,0,'548991656773305',0,0,0,0.00,'2022-07-02 17:50:06','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(156,'MONSTER MULE','10','15','5060639129003','',16.00,'153','250','0','0',NULL,NULL,0,0,0,'1040501657194834',0,0,0,0.00,'2022-07-07 14:54:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(157,'AZAM ENERGY 300ML','10','15','6009644549320','',16.00,'31.25','70','0','',NULL,NULL,0,0,0,'1535331657194897',0,0,0,0.00,'2022-07-07 14:56:02','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(158,'SAFARI LEMONADE','10','15','6164001199331','',16.00,'37.08','70','8','0',NULL,NULL,0,0,0,'121668191102',0,0,0,0.00,'2022-11-11 21:25:40','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(159,'PREDATOR ENERGY DRINK','10','15','5060608740253','',16.00,'41.82','80','12','0',NULL,NULL,1,0,0,'121658608568',0,0,0,0.00,'2022-07-23 23:36:38','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(160,'CAPRICE DRY WHITE WINE 1LTR','12','15','6161100420083','',16.00,'636','1400','1','0',NULL,NULL,0,0,0,'4239671657195228',0,0,0,0.00,'2022-07-07 15:02:05','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(161,'CAPRICE SWEET WHITE 1LTR','12','15','6161100421288','',16.00,'636','1400','0','0',NULL,NULL,0,0,0,'9874931657195541',0,0,0,1.00,'2022-07-07 15:07:44','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(162,'CAPRICE SWEET RED 1LTR','12','15','6161100421271','',16.00,'636','1400','0','1',NULL,NULL,0,0,0,'499751657195665',0,0,0,0.00,'2022-07-07 15:08:57','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(163,'4TH STREET SWEET WHITE750ML','12','15','6001108049599','',16.00,'810','1300','0','0',NULL,NULL,0,0,0,'572861657195737',0,0,0,5.00,'2022-07-07 15:11:28','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(164,'4TH STREET SWEET RED 750ML','12','14','6001108049582','',16.00,'810','1300','0','0',NULL,NULL,0,0,0,'8733621657195888',0,0,0,2.00,'2022-07-07 15:12:43','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(165,'KIBAO VODKA 750ML','4','15','6161100421370','',16.00,'502','700','0','',NULL,NULL,0,0,0,'7496241657195964',0,0,0,0.00,'2022-07-07 15:16:34','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(166,'KENYA CANE 750ML','11','15','5010103930833','',16.00,'653','1100','0','0',NULL,NULL,0,0,0,'5327821657196194',0,0,0,0.00,'2022-07-07 15:18:51','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(167,'KENYA CANE 350ML','11','15','5010103930840','',16.00,'335','500','0','0',NULL,NULL,0,0,0,'4090441657196331',0,0,0,0.00,'2022-07-07 15:20:20','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(168,'WILLIAM LAWSONS 750ML','1','15','5010752000321','',16.00,'1474','2200','0','0',NULL,NULL,0,0,0,'8172331657196421',0,0,0,6.00,'2022-07-07 15:24:49','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(169,'WILLIAM LAWSONS 350ML','1','15','5010752000420','',16.00,'659','1000','0','0',NULL,NULL,0,0,0,'2535861657196690',0,0,0,6.00,'2022-07-07 15:26:03','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(170,'SAINT ANNA NATURAL SWEET WHITE 750ML','12','15','6001812011912','',16.00,'815','1100','0','',NULL,NULL,0,0,0,'5697581657197023',0,0,0,0.00,'2022-07-07 15:31:56','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(171,'DROSTDY HOF PREMIER GRAND CRU 750ML','12','2','6001495203055','',16.00,'628','1400','3','0',NULL,NULL,0,0,0,'4804591657197116',0,0,0,0.00,'2022-07-07 15:33:59','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(172,'DROSTDY HOF CLARET 750ML','12','15','6001495201501','',16.00,'628','1400','0','0',NULL,NULL,0,0,0,'6041961657197240',0,0,0,0.00,'2022-07-07 15:35:38','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(173,'VICEROY 750ML','7','15','6001496011796','',16.00,'1072','1700','0','1173',NULL,NULL,0,0,0,'121668448889',0,0,0,6.00,'2022-11-14 21:01:39','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(174,'VICEROY 250ML','7','15','6001108016034','',16.00,'425','600','0','0',NULL,NULL,0,0,0,'9189181657197559',0,0,0,0.00,'2022-07-07 15:40:40','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(175,'VICEROY 375ML','7','15','6001496011772','',16.00,'610','900','0','0',NULL,NULL,0,0,0,'2405961657197640',0,0,0,0.00,'2022-07-07 15:41:54','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(176,'HUNTERS CHOICE 350ML','1','15','6161100421363','',16.00,'435','700','0','0',NULL,NULL,0,0,0,'8264771657197919',0,0,0,0.00,'2022-07-07 15:47:31','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(177,'CULEMBORG CAPE WHITE 750ML','12','15','6001506003599','',16.00,'850','1200','0','',NULL,NULL,0,0,0,'3784121657198052',0,0,0,0.00,'2022-07-07 15:50:06','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(178,'CULEMBORG CAPE RED 750ML','12','15','6001506011709','',16.00,'850','1200','0','',NULL,NULL,0,0,0,'1881531657198206',0,0,0,0.00,'2022-07-07 15:51:18','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(179,'OJ 16%','3','15','8719327068540','',16.00,'225','300','0','',NULL,NULL,0,0,0,'3118911657198279',0,0,0,0.00,'2022-07-07 15:52:44','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(180,'CELLAR CASK RED 750ML','12','15','6001496301804','',16.00,'729','1200','0','0',NULL,NULL,0,0,0,'378311657198364',0,0,0,2.00,'2022-07-07 15:55:34','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(181,'CELLA CASK WHITE 750ML','12','15','6001496301705','',16.00,'729','1350','0','0',NULL,NULL,0,0,0,'6939181657198534',0,0,0,5.00,'2022-07-07 15:56:38','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(182,'DESPARADO ORIGINAL 330ML','10','15','3155930006015','',16.00,'188','250','0','',NULL,NULL,0,0,0,'8592851657198774',0,0,0,0.00,'2022-07-07 16:01:24','16','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(183,'lawson can 330ml','1','15','7640171032436','',16.00,'177','NaN','0','',NULL,NULL,0,0,0,'7455161657901003',0,0,0,0.00,'2022-07-15 19:10:27','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','0',NULL),(184,'WILLIAM LAWSON CAN 330ML','1','15','100','',16.00,'177','250','0','',NULL,NULL,0,0,0,'1298491658493989',0,0,0,0.00,'2022-07-22 15:49:00','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(185,'STRAWBERRY MILKSHAKE 15ML','14','18','6974929190378','',16.00,'2500','3250','0','0',NULL,NULL,0,0,0,'378311659450611',0,0,0,0.00,'2022-08-02 17:34:42','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(186,'PEACH MANGO WATERMELON 15ML','14','18','6974929192235','',16.00,'2500','3250','0','',NULL,NULL,0,0,0,'6258871659450883',0,0,0,0.00,'2022-08-02 17:37:44','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(187,'WATERMELON RAINBOW CANDY 15ML','14','18','6974929192181','',16.00,'2500','3250','0','',NULL,NULL,0,0,0,'121659451389',0,0,0,0.00,'2022-08-02 17:43:24','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(188,'PINK LEMONADE 15ML','14','18','6974929190361','',16.00,'2500','3250','0','',NULL,NULL,0,0,0,'1811441659451259',0,0,0,0.00,'2022-08-02 17:42:57','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(189,'STRAWBERRY BANANA SMOOTHIE 15ML','14','18','6974929192211','',16.00,'2500','3250','0','',NULL,NULL,0,0,0,'1168591659451404',0,0,0,0.00,'2022-08-02 17:45:02','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(190,'BLACKCURRANT LEMON ','14','18','6973322693936','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'7004441659451502',0,0,0,0.00,'2022-08-02 17:46:50','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(191,'PEACH ICE','14','18','6973322691321','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'6322911659451611',0,0,0,0.00,'2022-08-02 17:48:01','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(192,'PINEAPPLE ICE','14','18','6973322690379','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'6372461659451682',0,0,0,0.00,'2022-08-02 17:49:02','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(193,'BUBBLE GUM','14','18','6973322691345','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'297351659451742',0,0,0,0.00,'2022-08-02 17:50:01','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(194,'STRAWBERRY ICE','14','18','6973322691314','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'8592851659451801',0,0,0,0.00,'2022-08-02 17:51:03','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(195,'MANGO GUAVA','14','18','6973322690362','',16.00,'1000','1750','0','',NULL,NULL,0,0,0,'5039011659451864',0,0,0,0.00,'2022-08-02 17:52:00','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(196,'kenya cane 250ml','4','15','6161101602211','',16.00,'247','400','0','0',NULL,NULL,1,0,0,'3222831660405304',0,0,0,0.00,'2022-08-13 18:46:05','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(197,'CHROME VODKA 250ML','4','15','1000','',16.00,'192','270','0','0',NULL,NULL,1,0,0,'5815091660406439',0,0,0,24.00,'2022-08-13 19:02:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE',NULL,NULL),(198,'ALL SEASONS 750ML','1','15','8908006354191','',16.00,'920','1300','0','0',NULL,NULL,1,0,0,'6565191660837771',0,0,0,0.00,'2022-08-18 18:55:16','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(199,'ALL SEASONS 375ML','1','15','8908006354207','',16.00,'445','650','0','',NULL,NULL,0,0,0,'5010621660838208',0,0,0,0.00,'2022-08-18 19:02:50','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(200,'JIM BEAM 750ML','1','15','080686001409','',16.00,'1670','2300','0','',NULL,NULL,0,0,0,'1092461661022676',0,0,0,6.00,'2022-08-20 22:14:33','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(201,'BEST CREAM 750ML','5','15','6161100421622','',16.00,'922','1500','4','0',NULL,NULL,0,0,0,'121662307955',0,0,0,5.00,'2022-09-04 19:12:46','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(202,'BEST LONDON DRY GIN 750ML','2','15','6161100421561','',16.00,'645','1300','0','0',NULL,NULL,0,0,0,'4460201662223112',0,0,0,2.00,'2022-09-03 19:41:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(203,'BEST WHISKY 750ML','1','15','6161100421509','',16.00,'787','1350','0','0',NULL,NULL,0,0,0,'7951801662223296',0,0,0,0.00,'2022-09-03 19:45:02','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(204,'CAPRICE RED DRY 1L','12','15','6161100420076','',16.00,'363','1400','0','0',NULL,NULL,0,0,0,'2350081662224737',0,0,0,0.00,'2022-09-03 20:07:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(205,'FANTA BLACKCURRENT 2LRTS','10','15','5449000022752','',16.00,'158','250','0','',NULL,NULL,0,0,0,'647481663254512',0,0,0,5.00,'2022-09-15 18:13:26','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(206,'COCACOLA SODA 2LTRS','10','15','5449000000286','',16.00,'158','250','0','',NULL,NULL,0,0,0,'8733621663254980',0,0,0,0.00,'2022-09-15 18:17:55','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(207,'SPRITE SODA 2LTRS','10','15','5449000004864','',16.00,'158','250','0','',NULL,NULL,0,0,0,'2546741663255076',0,0,0,0.00,'2022-09-15 18:19:47','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(208,'CUVEE BRUT SPARKLING WINE 750ML','12','15','8000530800783','',16.00,'1050','1600','0','',NULL,NULL,0,0,0,'3335811663255510',0,0,0,0.00,'2022-09-15 18:28:44','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(209,'FRAGOLINO RED SPARKLING WINE 750ML','12','15','8000530300474','',16.00,'1050','1600','0','',NULL,NULL,0,0,0,'121663256523',0,0,0,0.00,'2022-09-15 18:42:45','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(210,'BARBERA DASTI 750ML','12','15','8000530010304','',16.00,'1O2O','1600','0','0',NULL,NULL,0,0,0,'8369301663255843',0,0,0,0.00,'2022-09-15 18:34:19','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(211,'CORTESE DELLALTO MONFERRATO 750ML','12','15','8000530300320','',16.00,'1020','1500','0','',NULL,NULL,0,0,0,'7485371663256059',0,0,0,0.00,'2022-09-15 18:38:56','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(212,'FRAGOLINO ROSE SPARKLING WINE 750ML','12','15','80005303003218000530800462','',16.00,'1O5O','1600','0','',NULL,NULL,0,0,0,'6979061663256336',0,0,0,0.00,'2022-09-15 18:41:33','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(213,'FRAGOLINO SPARKLING WINE WHITE 750ML','12','15','8000530300504','',16.00,'1050','1600','0','',NULL,NULL,0,0,0,'5135081663256566',0,0,0,0.00,'2022-09-15 18:44:58','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(214,'FRAGOLINO ROSE SPARKLING WINE 750ML','12','15','8000530800462','',16.00,'1050','1600','0','',NULL,NULL,1,0,0,'7400181663366652',0,0,0,0.00,'2022-09-17 01:19:19','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(215,'RAW KINGSIZE SLIM','13','2','716165177364','',16.00,'130','250','0','',NULL,NULL,0,0,0,'748071664138213',0,0,0,0.00,'2022-09-25 23:40:10','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(216,'RAW SINGLE WIDE','13','2','716165173670','',16.00,'46','150','0','',NULL,NULL,0,0,0,'6934951664138411',0,0,0,0.00,'2022-09-25 23:42:10','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(217,'MINUTE MAID MANGO 400ML','10','14','90490279','',16.00,'68','100','0','',NULL,NULL,0,0,0,'121664394490',0,0,0,0.00,'2022-09-28 22:48:21','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(218,'MARTEL VS 700ML','1','13','3219820000078','',16.00,'4500','6600','0','0',NULL,NULL,0,0,0,'499751664288816',0,0,0,0.00,'2022-09-27 17:29:19','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(219,'GRANTS TRIPLE WOOD 1L','1','13','5010327000039','',16.00,'1764','2500','0','',NULL,NULL,0,0,0,'5246851664288960',0,0,0,0.00,'2022-09-27 17:32:39','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(220,'ABSOLUT VODKA 750ML','4','13','7312040017010','',16.00,'1576','2200','0','',NULL,NULL,0,0,0,'499751664289159',0,0,0,0.00,'2022-09-27 17:34:52','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(221,'RESERVE 7 WHISKY 750ML','1','13','8906125990009','',16.00,'660','1000','0','',NULL,NULL,0,0,0,'8172331664289293',0,0,0,0.00,'2022-09-27 17:38:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(222,'DUREX PLEASURE ME','14','2','6001106225421','',16.00,'272','600','0','0',NULL,NULL,0,0,0,'5449261664313525',0,0,0,0.00,'2022-09-28 00:29:46','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(223,'DUREX SELECT FLAVOURS','14','2','5052197004281','',16.00,'272','600','0','0',NULL,NULL,0,0,0,'6686631664314187',0,0,0,0.00,'2022-09-28 00:34:37','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(224,'FANTA BLACKCURRENT 500ML','10','14','50112753','',16.00,'56','80','0','',NULL,NULL,0,0,0,'9874931664393935',0,0,0,0.00,'2022-09-28 22:47:27','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(225,'SAFARI WATER 1L','10','15','6164001199010','',16.00,'38','100','0','',NULL,NULL,0,0,0,'4211881664476855',0,0,0,0.00,'2022-09-29 21:50:51','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(226,'BLACKCURRANT MENTHOL','14','2','852848252017','',16.00,'1500','3800','0','',NULL,NULL,0,0,0,'8959591664639305',0,0,0,0.00,'2022-10-01 18:51:05','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(227,'VIMTO','14','2','852848252000','',16.00,'1500','3800','0','',NULL,NULL,0,0,0,'8959591664639466',0,0,0,0.00,'2022-10-01 18:52:06','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(228,'PINEAPPLE ICE MESH OIL','14','2','852848252001','',16.00,'1500','3800','0','',NULL,NULL,0,0,0,'2450671664639527',0,0,0,0.00,'2022-10-01 18:54:06','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(229,'KHOR PLATINUM VODKA 1.75L','4','20','4820229032295','',16.00,'2173','3500','0','0',NULL,NULL,0,0,0,'7144311664791076',0,0,0,0.00,'2022-10-03 13:01:33','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(230,'KHOR PLATINUM VODKA 1L','4','20','4820229031328','',16.00,'1275','2000','0','',NULL,NULL,0,0,0,'3113471664791353',0,0,0,0.00,'2022-10-03 13:08:26','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(231,'KHOR STRUCTED VODKA 1L','4','20','4820229032240','',16.00,'2625','3700','0','',NULL,NULL,0,0,0,'9021211664791707',0,0,0,0.00,'2022-10-03 13:11:30','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(232,'KHOR BLACK$GOLD VODKA 1L','4','20','4820229032356','',16.00,'1800','2600','0','',NULL,NULL,0,0,0,'865591664791891',0,0,0,0.00,'2022-10-03 13:14:51','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(233,'KHOR WHITE$GOLD VODKA 1L','4','20','4820229032318','',16.00,'1800','2600','0','',NULL,NULL,0,0,0,'281341664792092',0,0,0,0.00,'2022-10-03 13:17:58','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(234,'PERVAK CRAFTED VODKA PEPPER$HONEY700ML','4','20','4820229033520','',16.00,'1400','2000','0','',NULL,NULL,0,0,0,'9189181664792279',0,0,0,0.00,'2022-10-03 13:23:42','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(235,'PERVAK CRAFTED VODKA HOMEMADE WHEAT 1L','4','20','4820229032004','',16.00,'1500','2200','0','',NULL,NULL,0,0,0,'391301664792622',0,0,0,0.00,'2022-10-03 13:27:12','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(236,'PERVAK CRAFTED VODKA HOME MADE WHEAT 700ML','4','20','4820229031991','',16.00,'1300','1900','0','',NULL,NULL,0,0,0,'6834361664792833',0,0,0,0.00,'2022-10-03 13:29:57','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(237,'PERVAK CRAFTED VODKA HOME MADE WHEAT 500ML','4','20','4820229031984','',16.00,'650','900','0','',NULL,NULL,0,0,0,'9540211664792998',0,0,0,0.00,'2022-10-03 13:36:30','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(238,'PERVAK CRAFTED VODKA HOME MAID WHEAT 250ML','4','20','4820229031977','',16.00,'350','450','0','',NULL,NULL,0,0,0,'9771011664793390',0,0,0,0.00,'2022-10-03 13:39:43','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(239,'OREANDA CHARDONNAY','12','20','4820163121956','',16.00,'885','1500','0','',NULL,NULL,0,0,0,'6759741664793583',0,0,0,0.00,'2022-10-03 13:44:25','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(240,'OREANDA SPARKLING WINE SEMI SWEET 750ML','12','20','4820071841151','',16.00,'1029','2000','0','0',NULL,NULL,0,0,0,'6428951664793865',0,0,0,0.00,'2022-10-03 13:49:07','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(241,'OREANDA BRUT SPARKLING WINE 750ML','12','20','4820071841168','',16.00,'1050','2200','0','0',NULL,NULL,0,0,0,'7457271664794147',0,0,0,0.00,'2022-10-03 13:53:57','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(242,'GRANDE FRANCE SPARKLING WINE 750ML','12','20','4820256580196','',16.00,'1350','4200','0','',NULL,NULL,0,0,0,'8978321664794600',0,0,0,0.00,'2022-10-03 14:00:44','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(243,'OREANDA SPARKLING WINE CRYSTAL BRUT 750ML','12','20','4820000944625','',16.00,'1157','2000','0','',NULL,NULL,0,0,0,'3421301664794845',0,0,0,0.00,'2022-10-03 14:18:49','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(244,'MIKADO WHITE WINE PINEAPPLE 750ML ','12','20','4820000944626','',16.00,'931','1700','0','0',NULL,NULL,0,0,0,'245691664795930',0,0,0,0.00,'2022-10-03 14:21:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(245,'MIKADO CHERRY RED SWEET WINE 750ML','12','20','4820000944627','',16.00,'931','1700','0','',NULL,NULL,0,0,0,'724511664796080',0,0,0,0.00,'2022-10-03 14:22:55','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(246,'MIKADO SWEETWHITE WINE PULM 700ML','12','20','4820000943888','',16.00,'931','1700','0','',NULL,NULL,0,0,0,'7886851664796195',0,0,0,0.00,'2022-10-03 14:25:31','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(247,'MIKADO SWEET WHIT WINE LYCHEE 700ML','12','20','4820000946902','',16.00,'931','1700','0','',NULL,NULL,0,0,0,'2342831664796332',0,0,0,0.00,'2022-10-03 14:27:44','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(248,'SHUSTOFF BRANDY 3YRS','4','20','4820000947305','',16.00,'1148','1900','0','',NULL,NULL,0,0,0,'3312251664796464',0,0,0,0.00,'2022-10-03 14:31:02','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(249,'SHUSTOFF BRANDY 5YRS','4','20','4820000947343','',16.00,'1357','2400','0','0',NULL,NULL,0,0,0,'378311664796662',0,0,0,0.00,'2022-10-03 14:33:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(250,'SHUSTOFF BRANDY 4YRS','4','20','4820000947947','',16.00,'1624','2000','0','0',NULL,NULL,0,0,0,'1109981664796795',0,0,0,0.00,'2022-10-03 14:36:16','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(251,'THE FAMOUS GROUSE 1L','1','15','5010314101015','',16.00,'1854','2600','0','',NULL,NULL,0,0,0,'3091411664797320',0,0,0,5.00,'2022-10-03 14:46:59','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(252,'THE FAMOUSE GROUSE 750ML','1','15','5010314750008','',16.00,'1552','2100','0','',NULL,NULL,0,0,0,'1092461664797619',0,0,0,4.00,'2022-10-03 14:48:59','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(253,'TLIA MALBEC 750ML','12','15','7794450091598','',16.00,'1280','2000','0','',NULL,NULL,0,0,0,'9156851664797740',0,0,0,0.00,'2022-10-03 14:51:45','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(254,'GINGER ALE CAN 330ML','10','14','5449000061478','',16.00,'84','180','0','',NULL,NULL,0,0,0,'7400481664797906',0,0,0,0.00,'2022-10-03 15:00:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(255,'SPRITE CAN 330ML','10','14','5449000014535','',16.00,'64','120','0','',NULL,NULL,0,0,0,'5995141664798421',0,0,0,0.00,'2022-10-03 15:03:14','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(256,'DASANI WATER 1L','10','14','5449000014536','',16.00,'49','100','0','0',NULL,NULL,0,0,0,'67461664798594',0,0,0,0.00,'2022-10-03 15:05:59','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(257,'FOUR COUSINS SWEET RED 750ml','12','15','6002269000566','',16.00,'680','1200','0','0',NULL,NULL,0,0,0,'3784121665323873',0,0,0,3.00,'2022-10-09 17:02:14','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(258,'Best Cream 250ml','5','15','6161100421615','',16.00,'310','500','0','',NULL,NULL,0,0,0,'6258871665686351',0,0,0,5.00,'2022-10-13 21:44:42','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(259,'sprite 1.25ml','10','14','5449000028976','',16.00,'103','150','0','0',NULL,NULL,0,0,0,'121665693841',0,0,0,0.00,'2022-10-13 23:44:54','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(260,'COCACOLA 1.25ML','10','14','5449000028921','',16.00,'103','150','0','',NULL,NULL,0,0,0,'4416101665693921',0,0,0,0.00,'2022-10-13 23:46:39','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(261,'WHITE PEARL 250ML','4','15','6161101561280','',16.00,'190','350','0','0',NULL,NULL,0,0,0,'4925431665851810',0,0,0,0.00,'2022-10-15 19:47:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(262,'SCOTTISH LEADER 12YRS','1','15','5029704218134','',16.00,'3527','4900','0','',NULL,NULL,0,0,0,'7722211666203389',0,0,0,0.00,'2022-10-19 21:22:10','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(263,'NEDERBURG ROSE 750ML','12','15','6001452260909','',16.00,'1139','1700','0','',NULL,NULL,0,0,0,'1535331666203731',0,0,0,0.00,'2022-10-19 21:24:04','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(264,'SCOTTISH LEADER 3YRS 750ML','1','15','5029704217830','',16.00,'1734','2500','0','',NULL,NULL,0,0,0,'6162801666204063',0,0,0,0.00,'2022-10-19 21:35:40','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(265,'NAPOLEON GOLD BRANDY 750ML','14','15','6161101560948','',16.00,'600','1000','0','0',NULL,NULL,0,0,0,'2772711666204746',0,0,0,7.00,'2022-10-19 21:41:13','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(266,'NAPOLEON GOLD 250ML','14','15','6161101561020','',16.00,'210','400','0','',NULL,NULL,0,0,0,'7951801666204874',0,0,0,4.00,'2022-10-19 21:45:48','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(267,'PENASOL SANGRIA 1L','12','15','6161101561021','',16.00,'836','1400','0','0',NULL,NULL,0,0,0,'7722211666206629',0,0,0,0.00,'2022-10-19 22:12:05','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(268,'CHAMDOR SPARKLING GRAPE 750ML','12','15','6001495080007','',16.00,'668','1000','0','',NULL,NULL,0,0,0,'1535331666206725',0,0,0,0.00,'2022-10-19 22:13:40','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(269,'THE SINGLETON 12YRS 700ML','1','15','5000281021621','',16.00,'4450','6500','0','0',NULL,NULL,0,0,0,'7924011666206842',0,0,0,0.00,'2022-10-19 22:16:26','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(270,'BEEFEATER DRY GIN 750ML','2','15','5000329002230','',16.00,'2460','3500','0','0',NULL,NULL,0,0,0,'8722751666209323',0,0,0,6.00,'2022-10-19 22:57:01','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(271,'IMPERIAL BLUE 375ML','1','15','8901522001105','',16.00,'450','800','0','',NULL,NULL,0,0,0,'1213301666792348',0,0,0,8.00,'2022-10-26 16:57:13','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(272,'PREDATOR MANGO 400ML','10','15','5060608747818','',16.00,'67','80','0','',NULL,NULL,0,0,0,'8539681666792634',0,0,0,0.00,'2022-10-26 16:59:16','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(273,'HAMPTON DRAM BLENDED 750ML','1','15','8906120780179','',16.00,'970','1600','0','',NULL,NULL,0,0,0,'9409711666792968',0,0,0,0.00,'2022-10-26 17:06:13','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(274,'KENYA CANE PINE 750ML','11','15','6161101604994','',16.00,'653','1100','0','',NULL,NULL,0,0,0,'5697581666793174',0,0,0,0.00,'2022-10-26 17:09:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(275,'MEAKINS VODKA 750ML','4','15','6161101560009','',16.00,'600','1000','0','',NULL,NULL,0,0,0,'9189181666793494',0,0,0,0.00,'2022-10-26 17:13:33','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(276,'FLIRT VODKA STRAWBERRY 1L','4','15','3800032010568','',16.00,'1018','1700','0','0',NULL,NULL,0,0,0,'121668652523',0,0,0,0.00,'2022-11-17 05:35:46','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(277,'LIME JUICE 700ML','10','15','6008835000930','',16.00,'130','180','0','',NULL,NULL,0,0,0,'6834361666793743',0,0,0,0.00,'2022-10-26 17:18:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(278,'COUNTY 750ML','14','15','6161100421219','',16.00,'561','900','0','',NULL,NULL,0,0,0,'2183921666793895',0,0,0,0.00,'2022-10-26 17:21:07','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(279,'GENERAL MEAKINS 750ML','11','15','6161101561549','',16.00,'570','950','0','',NULL,NULL,0,0,0,'6759741666794068',0,0,0,0.00,'2022-10-26 17:23:28','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(280,'BOMBAY SAPHIRE 1L','2','15','7640175740030','',16.00,'2280','3350','0','',NULL,NULL,0,0,0,'2535861666794580',0,0,0,6.00,'2022-10-26 17:31:54','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(281,'BOMBAY SAPHIRE 750ML','2','15','7640175740047','',16.00,'1820','2700','0','',NULL,NULL,0,0,0,'630861666794714',0,0,0,7.00,'2022-10-26 17:34:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(282,'GREY GOOSE750ML','4','15','080480280024','',16.00,'1846','2600','0','',NULL,NULL,0,0,0,'5488231666794856',0,0,0,0.00,'2022-10-26 17:36:32','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(283,'WHITE PEARL 750ML','4','15','6161101561303','',16.00,'555','900','0','',NULL,NULL,0,0,0,'378311666795208',0,0,0,0.00,'2022-10-26 17:42:04','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(284,'ALL SEASONS 500ML','1','15','8908006354993','',16.00,'631','900','0','',NULL,NULL,0,0,0,'7401691667496901',0,0,0,0.00,'2022-11-03 20:36:56','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(285,'CRAZY COCK 750ML','1','15','8906054940120','',16.00,'795','1300','0','0',NULL,NULL,0,0,0,'742941667506003',0,0,0,0.00,'2022-11-03 23:14:56','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(286,'HUNTERS CHOICE 250ML','1','15','6161100420786','',16.00,'290','400','0','',NULL,NULL,0,0,0,'568331667506703',0,0,0,0.00,'2022-11-03 23:20:38','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(287,'KWV PINOTAGE 750ML','12','15','6002323400530','',16.00,'1325','2000','0','',NULL,NULL,0,0,0,'9874931667690177',0,0,0,0.00,'2022-11-06 02:18:33','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(288,'KWV SAUV BLANC 750ML','12','15','6002323400332','',16.00,'1125','1700','0','',NULL,NULL,0,0,0,'7722211667753181',0,0,0,0.00,'2022-11-06 19:51:20','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(289,'CASILLERO DEL SAUVIGNON 750ML','12','15','7804320303178','',16.00,'1200','2000','0','',NULL,NULL,0,0,0,'748071667753481',0,0,0,0.00,'2022-11-06 19:54:13','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(290,'ROOIBERG ROSE NATURAL SWEET 750ML','12','15','6002886001182','',16.00,'1110','1900','0','',NULL,NULL,0,0,0,'1213301667753654',0,0,0,0.00,'2022-11-06 20:01:26','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(291,'ROOIBERG RED NATURAL SWEET 750ML','12','15','6002886001410','',16.00,'1110','1900','0','',NULL,NULL,0,0,0,'7400181667754087',0,0,0,0.00,'2022-11-06 20:03:48','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(292,'ROOIBERG RED MUSCADEL 750ML','12','15','6002886000277','',16.00,'1110','1900','0','',NULL,NULL,0,0,0,'1737131667754228',0,0,0,0.00,'2022-11-06 20:09:23','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(293,'ROOIBERG BLANC NATURAL SWEET WHITE 750ML','12','15','6002886001274','',16.00,'1110','1900','0','',NULL,NULL,0,0,0,'7924011667754564',0,0,0,0.00,'2022-11-06 20:16:23','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(294,'BIRDS$BEES SWEET MALBEC 750ML','12','15','7798039597570','',16.00,'895','1600','0','',NULL,NULL,0,0,0,'5697581667755302',0,0,0,0.00,'2022-11-06 20:24:58','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(295,'CANTI PROSECCO 750ML','12','15','8005415046447','',16.00,'1270','2300','0','',NULL,NULL,0,0,0,'9189181667755499',0,0,0,0.00,'2022-11-06 20:27:04','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(296,'CULEMBORGROSE 750ML','12','15','6001506910347','',16.00,'835','1500','0','',NULL,NULL,0,0,0,'9409711667755624',0,0,0,0.00,'2022-11-06 20:29:54','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(297,'JACOBS GREEK ROSE 750ML','12','15','9300727019967','',16.00,'1055','1800','0','',NULL,NULL,0,0,0,'6759741667755794',0,0,0,0.00,'2022-11-06 20:32:21','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(298,'JACOBS GREEK MERLOT 750ML','12','15','9300727508287','',16.00,'1055','1800','0','',NULL,NULL,0,0,0,'3002301667755941',0,0,0,0.00,'2022-11-06 20:34:14','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(299,'KWV MERLOT 750ML','12','15','6002323300533','',16.00,'1325','2000','0','',NULL,NULL,0,0,0,'1810231667756055',0,0,0,0.00,'2022-11-06 20:36:01','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(300,'KWV SHIRAZ RED WINE 750ML','12','15','6002323400639','',16.00,'1300','2000','0','',NULL,NULL,0,0,0,'5691841667756254',0,0,0,0.00,'2022-11-06 20:39:28','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(301,'TALL HORSE MOSCATO 750ML','12','15','6001506908146','',16.00,'865','1500','0','',NULL,NULL,0,0,0,'1105451667756369',0,0,0,0.00,'2022-11-06 20:46:53','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','',NULL),(302,'TALL HORSE PINOTAGE ROSE 750ML','12','15','6001506900973','',16.00,'865','1500','0','',NULL,NULL,0,0,0,'4416101667756814',0,0,0,0.00,'2022-11-06 20:50:19','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(303,'CASILLERO DEL DIABLO BLANC 750ML','12','15','7804320301174','',16.00,'1200','2000','0','',NULL,NULL,0,0,0,'7924011667757277',0,0,0,0.00,'2022-11-06 20:57:31','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(304,'CANTI MERLOT 750ML','12','15','8005415049608','',16.00,'790','1550','0','',NULL,NULL,0,0,0,'9189181667757497',0,0,0,0.00,'2022-11-06 20:59:52','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(305,'TILIA CHARDONY 750ML','12','15','7794450091604','',16.00,'1231','2000','0','',NULL,NULL,0,0,0,'4010081667757616',0,0,0,0.00,'2022-11-06 21:01:50','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(306,'KWV CHARDONAY BLANC 750ML','12','15','6002323413530','',16.00,'1325 ','2000','0','',NULL,NULL,0,0,0,'121672963656',0,0,0,0.00,'2023-01-06 03:08:21','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(307,'KWV CONCORDIA WHITE 750ML','12','15','6002323013129','',16.00,'820','1700','0','',NULL,NULL,0,0,0,'6484831667758044',0,0,0,0.00,'2022-11-06 21:10:16','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(308,'STAR WALKER WHISKY 750ML','1','15','8908006354153','',16.00,'950','1700','0','',NULL,NULL,0,0,0,'8722751667758525',0,0,0,0.00,'2022-11-06 21:17:19','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(309,'TOP SECRET WHISKY 750ML','1','15','6161101560108','',16.00,'740','1100','0','0',NULL,NULL,0,0,0,'4925431667758640',0,0,0,0.00,'2022-11-06 21:23:22','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(310,'OFFICERS CHOICE PRESTIGE 750ML','1','15','8901544019027','',16.00,'690','1500','0','',NULL,NULL,0,0,0,'6162801667759160',0,0,0,0.00,'2022-11-06 21:29:25','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(311,'OFFICERS CHOICE BLUE 750ML','1','15','8901544040236','',16.00,'828','1900','0','',NULL,NULL,0,0,0,'6372461667759365',0,0,0,0.00,'2022-11-06 21:31:15','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(312,'BEST WHISKY 250ML','1','15','6161100421493','',16.00,'301','450','0','',NULL,NULL,0,0,0,'6162801667759475',0,0,0,0.00,'2022-11-06 21:33:26','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(313,'LEADING WANGARI GIN 750ML','2','15','7174000401020','',16.00,'480','1000','0','',NULL,NULL,0,0,0,'5449261667759607',0,0,0,2.00,'2022-11-06 21:35:25','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(314,'DASANI 500ML','10','14','87303322','',16.00,'23','80','0','0',NULL,NULL,0,0,0,'8637551667933601',0,0,0,0.00,'2022-11-08 21:55:39','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(315,'KIBAO 350ML','4','15','6161100421387','',16.00,'318','450','0','',NULL,NULL,0,0,0,'8959591667945061',0,0,0,0.00,'2022-11-09 01:05:40','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(316,'KIBAO 250ML','4','15','6161100420823','',16.00,'198','300','0','',NULL,NULL,0,0,0,'121667946565',0,0,0,0.00,'2022-11-09 01:29:41','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(317,'WHITE CAP CRISP CAN','3','21','6161101606820','',16.00,'159','250','0','',NULL,NULL,0,0,0,'5697581668008358',0,0,0,1.00,'2022-11-09 18:42:05','12','1','','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','1110','4000','5500','VATABLE','1',NULL),(318,'SAFARI WATER 500ML','10','15','6164001199034','',0.00,'19','50','0','',NULL,NULL,0,0,0,'6162801668289787',0,0,0,0.00,'2022-11-13 00:56:45','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(319,'VERSUS SWEET WHITE 750ML','12','15','6004786010240','',0.00,'930','1500','0','',NULL,NULL,0,0,0,'3186271668956182',0,0,0,0.00,'2022-11-20 17:59:02','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(320,'BEST GIN 250ML','2','15','6161100421554','',0.00,'244','450','0','',NULL,NULL,0,0,0,'5316641668956343',0,0,0,0.00,'2022-11-20 18:03:07','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(321,'CRAZY COCK 250ML','1','15','8906054940410','',0.00,'305','500','0','',NULL,NULL,0,0,0,'7052471668956588',0,0,0,0.00,'2022-11-20 18:05:23','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(322,'TOP SECRET 250ML','1','15','6161101560832','',0.00,'245','350','0','',NULL,NULL,0,0,0,'6484231668956723',0,0,0,0.00,'2022-11-20 18:07:50','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(323,'HUNTERS CHOICE 750ML','1','15','6161100421356','',0.00,'829','1400','0','',NULL,NULL,0,0,0,'2450671668956871',0,0,0,0.00,'2022-11-20 18:10:26','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(324,'CRAZY COCK 375ML','1','15','8906054940137','',0.00,'405','700','0','',NULL,NULL,0,0,0,'2974501668957026',0,0,0,0.00,'2022-11-20 18:12:42','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(325,'WHITE PEARL PINK 250ML','4','15','6161101561563','',0.00,'197','350','0','',NULL,NULL,0,0,0,'3122231668957163',0,0,0,0.00,'2022-11-20 18:15:40','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(326,'IMA GIN 250ML','2','22','725765052087','',0.00,'209','290','0','',NULL,NULL,1,0,0,'1213301669469641',0,0,0,0.00,'2022-11-26 16:37:19','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(327,'SYMBA VODKA 250ML','4','22','725765052063','',0.00,'175','250','0','',NULL,NULL,1,0,0,'1737131669469948',0,0,0,0.00,'2022-11-26 16:41:07','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(328,'BIRDS& BEES SWEET PINK MOSCATO','12','15','7798039598126','',0.00,'985','1700','0','',NULL,NULL,0,0,0,'6484831669506520',0,0,0,0.00,'2022-11-27 02:59:57','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(329,'PEARLY 700ML GLASS BOTLLE','10','23','6164002099210','',0.00,'42','100','0','',NULL,NULL,0,0,0,'1213301669919095',0,0,0,0.00,'2022-12-01 21:45:31','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(330,'PRIDE 1L','10','23','6164002099029','',0.00,'36','80','0','',NULL,NULL,0,0,0,'1213301669920332',0,0,0,0.00,'2022-12-01 21:57:04','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(331,'PRIDE 1.5L','10','23','6164002099036','',0.00,'40','120','0','',NULL,NULL,0,0,0,'6484831669921025',0,0,0,0.00,'2022-12-01 21:59:57','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(332,'V$A 250ML','5','15','6161101602204','',0.00,'268','450','0','',NULL,NULL,0,0,0,'121676895187',0,0,0,0.00,'2023-02-20 15:13:19','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(333,'WILLIAM LAWSON 1L','1','15','5010752000345','',0.00,'1750','2500','0','',NULL,NULL,0,0,0,'4925431670129493',0,0,0,0.00,'2022-12-04 07:53:37','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(334,'Black Bird Natural Sweet Red 750ml','12','15','6009675642045','',0.00,'700','1500','0','0',NULL,NULL,0,0,0,'572861670246675',0,0,0,0.00,'2022-12-05 16:45:47','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(335,'ELECTIO CABERNET SAUVIGNON RED DRY WINE 750ML','12','15','4840709004321','',0.00,'900','1800','0','0',NULL,NULL,0,0,0,'121670248991',0,0,0,0.00,'2022-12-05 17:03:49','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(336,'BLACK BIRD NATURAL SWEET ROSE 750ML','12','15','6009675642021','',0.00,'700','1500','0','0',NULL,NULL,0,0,0,'4090441670249030',0,0,0,0.00,'2022-12-05 17:13:48','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(337,'BLACK BIRD NATURAL SWEET WHITE 750ML','12','15','6009675642007','',0.00,'700','1400','0','0',NULL,NULL,0,0,0,'2535861670249813',0,0,0,0.00,'2022-12-05 17:24:01','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(338,'DELMONTE PASSION FRUIT','10','15','024000191667','',0.00,'205','300','0','0',NULL,NULL,0,0,0,'8086541670251128',0,0,0,0.00,'2022-12-05 17:40:55','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(339,'DELMONTE PINEAPPLE','10','15','024000224556','',0.00,'205','300','0','0',NULL,NULL,0,0,0,'2772711670251255',0,0,0,0.00,'2022-12-05 17:42:43','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(340,'fanta orange 350ml','10','14','90377884','',0.00,'40','60','0','',NULL,NULL,0,0,0,'5449261670357031',0,0,0,0.00,'2022-12-06 23:05:03','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(341,'SPARKLING WATER 1L','10','14','6009627080246','',0.00,'92','180','0','',NULL,NULL,0,0,0,'6484831670357105',0,0,0,0.00,'2022-12-06 23:06:43','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(342,'MINUTE MAID TROPICAL 1L','10','14','40262144','',0.00,'125','200','0','',NULL,NULL,0,0,0,'3222831670357204',0,0,0,0.00,'2022-12-06 23:09:02','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(343,'MINUTE MAID APPLE 1L','10','14','5449000180292','',0.00,'125','200','0','',NULL,NULL,0,0,0,'6054951670357343',0,0,0,0.00,'2022-12-06 23:10:22','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(344,'MINUTE MAID MANGO 1L','10','14','5449000180247','',0.00,'125','200','0','',NULL,NULL,0,0,0,'157481670357423',0,0,0,0.00,'2022-12-06 23:11:22','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(345,'ELECTIO CHARDONNAY 750ML','12','15','4840709004338','',0.00,'900','1800','0','',NULL,NULL,0,0,0,'5697581670358075',0,0,0,0.00,'2022-12-06 23:22:38','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(346,'JAMESON 350ML','1','15','5011007003654','',0.00,'920','1500','0','0',NULL,NULL,0,0,0,'9874931670623904',0,0,0,0.00,'2022-12-10 01:13:53','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','3',NULL),(347,'GLENFIDDICH 15YRS','1','24','5010327325125','',0.00,'7900','1100','0','',NULL,NULL,0,0,0,'7793811671048004',0,0,0,0.00,'2022-12-14 23:02:24','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(348,'GLENFIDDICH 18YRS','1','24','5010327325323','',0.00,'9500','14000','0','',NULL,NULL,0,0,0,'6686631671048145',0,0,0,0.00,'2022-12-14 23:05:07','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(349,'MARTEL VSOP 750ML','1','24','3219820005899','',0.00,'8000','11000','0','0',NULL,NULL,0,0,0,'1606931671049460',0,0,0,0.00,'2022-12-14 23:26:13','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(350,'HENDRIX GIN 750ML','2','24','5010327755045','',0.00,'3850','5600','0','',NULL,NULL,0,0,0,'7951801671049648',0,0,0,0.00,'2022-12-14 23:30:55','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(351,'GLENLIVET 12YRS','1','24','080432402825','',0.00,'5200','7500','0','',NULL,NULL,0,0,0,'223941671049856',0,0,0,0.00,'2022-12-14 23:39:40','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(352,'GLENLIVET 15YRS','1','24','5000299295021','',0.00,'7400','10500','0','',NULL,NULL,0,0,0,'647481671050381',0,0,0,0.00,'2022-12-14 23:42:16','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(353,'SINGLETON 15YRS','1','24','5000281026626','',0.00,'6000','8200','0','0',NULL,NULL,0,0,0,'5449261671050689',0,0,0,0.00,'2022-12-14 23:46:55','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(354,'CORONA EXTRA 355ML','3','24','75032814','',0.00,'295','450','0','',NULL,NULL,0,0,0,'3222831671051247',0,0,0,0.00,'2022-12-14 23:55:42','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(355,'LIME JUICE 1.5L','10','15','6008835000947','',0.00,'230','380','0','',NULL,NULL,0,0,0,'5247461671144197',0,0,0,0.00,'2022-12-16 01:46:10','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(356,'AMARULA CREAM 375ML','5','15','6001495062478','',0.00,'1098','1600','0','',NULL,NULL,1,0,0,'4010081671358558',0,0,0,0.00,'2022-12-18 13:18:07','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(357,'VELO BERRY FROST MEDIUM','13','17','6008165018186','',0.00,'270','400','0','',NULL,NULL,0,0,0,'121671902271',0,0,0,0.00,'2022-12-24 20:17:59','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(358,'VELO BERRY FROST STRONG','13','17','6008165018193','',0.00,'270','400','0','',NULL,NULL,1,0,0,'5697581671902280',0,0,0,0.00,'2022-12-24 20:19:45','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(359,'VELO POLAR MINT MEDIUM','13','17','6008165018926','',0.00,'270','400','0','',NULL,NULL,0,0,0,'4925431671902508',0,0,0,0.00,'2022-12-24 20:23:28','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(360,'VELO POLAR MINT STRONG','13','17','6008165018933','',0.00,'270','400','0','',NULL,NULL,0,0,0,'121675432315',0,0,0,0.00,'2023-02-03 16:52:25','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(361,'KONYAGI 250ML','11','15','6203005570170','',0.00,'288','350','0','',NULL,NULL,0,0,0,'6484831672939344',0,0,0,0.00,'2023-01-05 20:28:28','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(362,'CARIBIA GIN 250ML','2','15','6161100421882','',0.00,'220','350','0','',NULL,NULL,1,0,0,'8959591672939709',0,0,0,0.00,'2023-01-05 20:31:53','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(363,'TRIPLE ACE VODKA 250ML','4','15','6161101604864','',0.00,'192','270','0','',NULL,NULL,0,0,0,'7722211672949358',0,0,0,0.00,'2023-01-05 23:23:10','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(364,'COUNTY 250ML','11','15','6161100421929','',0.00,'188','300','0','0',NULL,NULL,0,0,0,'6686631672950191',0,0,0,0.00,'2023-01-05 23:36:00','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(365,'PISTON 250ML','4','15','6164003409025','',0.00,'165','250','0','',NULL,NULL,0,0,0,'7924011672950961',0,0,0,0.00,'2023-01-05 23:40:55','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(366,'CARIBIA GIN 750ML','2','15','6161100421899','',0.00,'603','900','0','',NULL,NULL,0,0,0,'5697581672951333',0,0,0,0.00,'2023-01-05 23:45:18','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(367,'DELMONTE MANGO & PINEAPPLE','10','15','024000224532','',0.00,'225','300','','',NULL,NULL,1,0,0,'61111672968950',0,0,0,0.00,'2023-01-06 04:38:20','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(368,'ROTHMANS BLUE','13','17','6008165007074','',0.00,'257','350','0','',NULL,NULL,0,0,0,'499751673260798',0,0,0,0.00,'2023-01-09 13:47:42','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(369,'PALL MALL GREEN','13','17','6008165265979','',0.00,'170','270','0','',NULL,NULL,0,0,0,'1535331673261263',0,0,0,0.00,'2023-01-09 13:50:06','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(370,'PALL MALL KINGS','13','17','6008165265962','',0.00,'170','270','0','',NULL,NULL,0,0,0,'1810231673261407',0,0,0,0.00,'2023-01-09 13:51:01','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(371,'GENERAL MEAKINS 250ML','11','15','6161101561532','',0.00,'197','350','0','',NULL,NULL,0,0,0,'5449261674234912',0,0,0,0.00,'2023-01-20 20:25:57','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(372,'OLD SMUGGLER 750ML','1','15','5010327605005','',0.00,'1000','1600','0','',NULL,NULL,0,0,0,'9189181674235559',0,0,0,0.00,'2023-01-20 20:27:25','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(373,'DUREX PLAY TINGLING LUBE','14','25','5011417567647','',0.00,'584','900','0','',NULL,NULL,0,0,0,'5449261676288432',0,0,0,0.00,'2023-02-13 14:45:00','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(374,'DUREX FEEL PLEASURE GEL','14','25','5011417567623','',0.00,'584','900','0','',NULL,NULL,0,0,0,'6041961676288701',0,0,0,0.00,'2023-02-13 14:46:35','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(375,'VELO URBAN VIBE STRONG','13','17','6008165018230','',0.00,'270','400','0','',NULL,NULL,0,0,0,'8637551676366314',0,0,0,0.00,'2023-02-14 12:21:25','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(376,'GORDON\'S & TONIC','3','21','6161101606714','',0.00,'168','250','0','',NULL,NULL,1,0,0,'8959591677964413',0,0,0,0.00,'2023-03-05 00:20:37','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(377,'GORDON\'S PINK &TONIC','3','21','6161101606721','',0.00,'168','250','0','',NULL,NULL,0,0,0,'6686631677964838',0,0,0,0.00,'2023-03-05 00:23:01','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(378,'MR DOWELL\'S 750ML','1','21','6161101604932','',0.00,'640','1200','0','',NULL,NULL,0,0,0,'121680892708',0,0,0,0.00,'2023-04-07 21:38:39','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(379,'MR DOWELL\'S 250ML ','1','21','6161101604925','',0.00,'216','400','0','',NULL,NULL,0,0,0,'6035921680892719',0,0,0,0.00,'2023-04-07 21:42:52','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(380,'ORIJIN 750ML ','11','21','6161101603614','',0.00,'520','950','0','',NULL,NULL,0,0,0,'6162801680892973',0,0,0,0.00,'2023-04-07 21:49:33','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(381,'ORIJIN 250ML','11','21','6161101603607','',0.00,'192','350','0','',NULL,NULL,0,0,0,'4010081680893374',0,0,0,0.00,'2023-04-07 21:51:37','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(382,'KENYA CANE CITRUS FUSION 750ML','4','21','6161101604857','',0.00,'624','1100','0','',NULL,NULL,0,0,0,'6686631680893497',0,0,0,0.00,'2023-04-07 21:55:49','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(383,'KENYA CANE CITRUS 250ML','11','21','6161101604840','',0.00,'400','236','0','',NULL,NULL,0,0,0,'3688051680893749',0,0,0,0.00,'2023-04-07 22:00:48','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(384,'KENYA CANE COCONUT 750ML','11','21','6161101603942','',0.00,'624','1100','0','',NULL,NULL,0,0,0,'4460201680894049',0,0,0,0.00,'2023-04-07 22:07:29','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(385,'KENYA CANE COCONUT 250ML','11','21','6161101603959','',0.00,'236','400','0','',NULL,NULL,0,0,0,'169871680894449',0,0,0,0.00,'2023-04-07 22:10:12','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(386,'KANE EXTRA 750ML','11','21','6161101604871','',0.00,'520','950','0','',NULL,NULL,0,0,0,'480421680894613',0,0,0,0.00,'2023-04-07 22:17:48','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(387,'KANE EXTRA 250ML','11','21','6161101602075','',0.00,'184','350','0','',NULL,NULL,0,0,0,'5087351680895069',0,0,0,0.00,'2023-04-07 22:23:17','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(388,'KENYA CANE PINEAPPLE 250ML','11','21','6161101604987','',0.00,'236','400','0','',NULL,NULL,0,0,0,'9071361680935341',0,0,0,0.00,'2023-04-08 09:31:29','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(389,'SAINT CELINE 750ML','12','26','6001812011950','',0.00,'1075','1600','0','',NULL,NULL,0,0,0,'6686631680974096',0,0,0,0.00,'2023-04-08 20:19:26','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(390,'FRONTERA SAUV BLANC','12','26','7804320556000','',0.00,'970','1400','0','',NULL,NULL,0,0,0,'297951680974367',0,0,0,0.00,'2023-04-08 20:21:54','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(391,'KENYA KING 750ML','11','26','6161101560702','',0.00,'645','1000','0','',NULL,NULL,0,0,0,'5449261680974514',0,0,0,0.00,'2023-04-08 20:24:23','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(392,'FROTERA CABERNET SAUV 750ML','12','26','7804320559001','',0.00,'970','1500','0','',NULL,NULL,0,0,0,'9874931680974664',0,0,0,0.00,'2023-04-08 20:27:24','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(393,'FRONTERA SWEET RED 750ML','12','26','7804320626994','',0.00,'950','1500','0','',NULL,NULL,0,0,0,'4460201680974844',0,0,0,0.00,'2023-04-08 20:29:29','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(394,'CAMINO TEQUILA 750ML','6','26','7501012916127','',0.00,'2450','3500','0','',NULL,NULL,0,0,0,'499751680974970',0,0,0,0.00,'2023-04-08 20:31:30','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(395,'OLMECA SILVER TEQUILA 700ML','6','26','080432115251','',0.00,'2175','3200','0','',NULL,NULL,0,0,0,'7951801680975091',0,0,0,0.00,'2023-04-08 20:35:52','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(396,'OLMECA GOLD TEQUILA 700ML','6','26','080432115305','',0.00,'2300','34OO','0','',NULL,NULL,0,0,0,'8172331680975352',0,0,0,0.00,'2023-04-08 20:40:22','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(397,'SUPREME VODKA 750ML','4','26','6161100421868','',0.00,'580','850','0','',NULL,NULL,0,0,0,'4423651680977225',0,0,0,0.00,'2023-04-08 21:10:08','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(398,'RESERVE 7 375ML','1','26','8906125990016','',0.00,'380','600','0','',NULL,NULL,0,0,0,'4460201680977408',0,0,0,0.00,'2023-04-08 21:12:06','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(399,'XTRA ORDINARY 750ML','6','26','6161101561327','',0.00,'665','1000','0','',NULL,NULL,0,0,0,'7951801680977649',0,0,0,0.00,'2023-04-08 21:16:30','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(400,'IMPERIAL BLUE 750ML','1','26','745110424901','',0.00,'835','1300','0','',NULL,NULL,0,0,0,'6484831680977791',0,0,0,0.00,'2023-04-08 21:19:31','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(401,'HUNTERS DRY CRISP','3','26','6001108055187','',0.00,'180','250','0','',NULL,NULL,0,0,0,'647481680977971',0,0,0,0.00,'2023-04-08 21:23:42','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(402,'HUNTERS GOLD SMOOTH','3','26','6001108055231','',0.00,'180','250','0','',NULL,NULL,0,0,0,'7793811680978223',0,0,0,0.00,'2023-04-08 21:25:32','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(403,'NAMAQUA SWEET WHITE 750ML','12','26','6004442004033','',0.00,'1050','1600','0','',NULL,NULL,0,0,0,'5522361680978332',0,0,0,0.00,'2023-04-08 21:28:21','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(404,'MOHANS RESERVE 750ML','12','26','6009676519216','',0.00,'585','1000','0','',NULL,NULL,0,0,0,'6714431680978502',0,0,0,0.00,'2023-04-08 21:30:37','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(405,'KENYA KING 250ML','11','26','6161101561037','',0.00,'210','350','0','',NULL,NULL,0,0,0,'6162801680978638',0,0,0,0.00,'2023-04-08 21:33:24','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(406,'HENNESSY750ML','1','26','3245990250203','',0.00,'4350','6000','0','',NULL,NULL,0,0,0,'7133431680978804',0,0,0,0.00,'2023-04-08 21:36:15','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(407,'CLUBMAN MINTPUNCH','6','26','6001496566050','',0.00,'655','1000','0','',NULL,NULL,0,0,0,'6410821680978975',0,0,0,0.00,'2023-04-08 21:41:21','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(408,'BEST VODKA 750ML','4','26','6161100421677','',0.00,'640','900','0','',NULL,NULL,0,0,0,'7133431680981523',0,0,0,0.00,'2023-04-08 22:22:06','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(409,'JAMESON 1L','1','26','5011007003227','',0.00,'2500','3500','0','',NULL,NULL,0,0,0,'5449261680982380',0,0,0,0.00,'2023-04-08 22:35:20','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',NULL),(410,'VICEROY 10YRS 750ML','6','26','6001108097965','',0.00,'3250','4500','0','',NULL,NULL,0,0,0,'2350081680982900',0,0,0,0.00,'2023-04-08 22:43:18','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(411,'JW BLACK LABEL 375ML','1','21','5000267024608','',0.00,'1406','2000','0','',NULL,NULL,0,0,0,'4925431681400865',0,0,0,0.00,'2023-04-13 18:50:21','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','2',NULL),(412,'SANDARA PASSIONATE ROSE ','12','27','8410310610707','',0.00,'1100','1700','0','',NULL,NULL,0,0,0,'5402131681764201',0,0,0,0.00,'2023-04-17 23:50:50','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(413,'SANDARA PREMIUM SPARKLING SANGRIA ','12','27','8410310612312','',0.00,'1100','1700','0','',NULL,NULL,0,0,0,'9530851681764709',0,0,0,0.00,'2023-04-17 23:55:03','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(414,'ROSSO NOBILE AL CIOCCOLATA 750ML ','12','27','3263280124362','',0.00,'1350','1900','0','',NULL,NULL,0,0,0,'9484931681765110',0,0,0,0.00,'2023-04-18 00:04:14','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(415,'SANDARA WINE MOJITO 750ML','12','27','8410310614316','',0.00,'1100','1700','0','',NULL,NULL,0,0,0,'3043081681768789',0,0,0,0.00,'2023-04-18 01:01:37','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(416,'SANDARA PASSIONATE WHITE 750ML ','12','27','8410310610684','',0.00,'1100','1700','0','',NULL,NULL,0,0,0,'1606931681768898',0,0,0,0.00,'2023-04-18 01:03:24','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(417,'DONJULIO TEQUILA BLANC','6','21','674545000841','',0.00,'5760','8000','0','',NULL,NULL,0,0,0,'121681916856',0,0,0,0.00,'2023-04-19 18:08:03','12','1','','0000-00-00','mainitem','na','DONJULIO BLANCO TEQUILA','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(418,'GRANT\'S TRIPLE WOOD 750ML ','1','26','5010327000046','',0.00,'1600','2300','0','0',NULL,NULL,0,0,0,'9874931682042340',0,0,0,0.00,'2023-04-21 05:03:53','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(419,'ROSSO NOBILE MAZIPANV','12','27','4058387004193','',0.00,'1350','1900','0','',NULL,NULL,0,0,0,'6583921682059072',0,0,0,0.00,'2023-04-21 09:42:09','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL),(420,'BLACK LABEL 250ML ','1','21','5000267184210','',0.00,'1000','1500','0','',NULL,NULL,0,0,0,'4467451682344124',0,0,0,0.00,'2023-04-24 16:52:44','12','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','1',NULL); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productsgrouping` -- DROP TABLE IF EXISTS `productsgrouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productsgrouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productsgrouping` -- LOCK TABLES `productsgrouping` WRITE; /*!40000 ALTER TABLE `productsgrouping` DISABLE KEYS */; /*!40000 ALTER TABLE `productsgrouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projects` -- DROP TABLE IF EXISTS `projects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projects` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `category` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projects` -- LOCK TABLES `projects` WRITE; /*!40000 ALTER TABLE `projects` DISABLE KEYS */; /*!40000 ALTER TABLE `projects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudget` -- DROP TABLE IF EXISTS `projectsbudget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudget` -- LOCK TABLES `projectsbudget` WRITE; /*!40000 ALTER TABLE `projectsbudget` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudgettasks` -- DROP TABLE IF EXISTS `projectsbudgettasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudgettasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudgettasks` -- LOCK TABLES `projectsbudgettasks` WRITE; /*!40000 ALTER TABLE `projectsbudgettasks` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudgettasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectstask` -- DROP TABLE IF EXISTS `projectstask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectstask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `taskid` text NOT NULL, `category` int(20) DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectstask` -- LOCK TABLES `projectstask` WRITE; /*!40000 ALTER TABLE `projectstask` DISABLE KEYS */; /*!40000 ALTER TABLE `projectstask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proposal` -- DROP TABLE IF EXISTS `proposal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `proposal` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `version` varchar(50) NOT NULL, `package` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proposal` -- LOCK TABLES `proposal` WRITE; /*!40000 ALTER TABLE `proposal` DISABLE KEYS */; /*!40000 ALTER TABLE `proposal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `province` -- DROP TABLE IF EXISTS `province`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `province` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `province` -- LOCK TABLES `province` WRITE; /*!40000 ALTER TABLE `province` DISABLE KEYS */; INSERT INTO `province` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `province` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorder` -- DROP TABLE IF EXISTS `purchaseorder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorder` ( `id` int(11) NOT NULL AUTO_INCREMENT, `supplier` varchar(30) NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` datetime NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` datetime NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` datetime NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'p.o', `amount` decimal(10,2) NOT NULL, `companyid` varchar(30) NOT NULL, `balance` decimal(10,2) NOT NULL, `fromdate` datetime NOT NULL, `paiddate` datetime NOT NULL, `updateddate` date NOT NULL, `updatedid` varchar(30) NOT NULL, `pin` varchar(30) DEFAULT NULL, `vattype` varchar(10) NOT NULL, `vat` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL DEFAULT 16.00, `vatrate` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, `transactionstatus` varchar(20) NOT NULL DEFAULT 'open', `remarks` text NOT NULL, `entrydate` date NOT NULL, `branchid` int(11) NOT NULL, `controller` int(11) NOT NULL, `approvalstatus` varchar(30) NOT NULL DEFAULT 'new', `branchto` varchar(30) NOT NULL DEFAULT '', `qty` varchar(20) DEFAULT NULL, `EXEMPTED` decimal(10,0) NOT NULL, `ZERORATED` decimal(10,0) DEFAULT NULL, `agent` int(11) DEFAULT NULL, `paymentmethodes` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorder` -- LOCK TABLES `purchaseorder` WRITE; /*!40000 ALTER TABLE `purchaseorder` DISABLE KEYS */; /*!40000 ALTER TABLE `purchaseorder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorderlist` -- DROP TABLE IF EXISTS `purchaseorderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `unit` varchar(10) NOT NULL, `totalweight` varchar(10) NOT NULL, `serial` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorderlist` -- LOCK TABLES `purchaseorderlist` WRITE; /*!40000 ALTER TABLE `purchaseorderlist` DISABLE KEYS */; /*!40000 ALTER TABLE `purchaseorderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quotation` -- DROP TABLE IF EXISTS `quotation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `quotation` ( `id` int(30) NOT NULL AUTO_INCREMENT, `supplier` text NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `weight` varchar(10) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `displayvat` varchar(50) DEFAULT NULL, `approvedby` int(11) DEFAULT NULL, `updatedid` int(11) DEFAULT NULL, `updateddate` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quotation` -- LOCK TABLES `quotation` WRITE; /*!40000 ALTER TABLE `quotation` DISABLE KEYS */; /*!40000 ALTER TABLE `quotation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reasons` -- DROP TABLE IF EXISTS `reasons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `reasons` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reasons` -- LOCK TABLES `reasons` WRITE; /*!40000 ALTER TABLE `reasons` DISABLE KEYS */; /*!40000 ALTER TABLE `reasons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `receipt` -- DROP TABLE IF EXISTS `receipt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `receipt` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `transactioncode` varchar(100) DEFAULT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `overpayment` varchar(40) NOT NULL, `balance` decimal(10,2) NOT NULL DEFAULT 0.00, `companyid` varchar(100) NOT NULL, `paidby` varchar(50) NOT NULL, `exactime` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `paid` decimal(10,2) NOT NULL, `branchid` int(2) NOT NULL DEFAULT 1, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `receipt` -- LOCK TABLES `receipt` WRITE; /*!40000 ALTER TABLE `receipt` DISABLE KEYS */; /*!40000 ALTER TABLE `receipt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recharge` -- DROP TABLE IF EXISTS `recharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `recharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) NOT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recharge` -- LOCK TABLES `recharge` WRITE; /*!40000 ALTER TABLE `recharge` DISABLE KEYS */; /*!40000 ALTER TABLE `recharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `regions` -- DROP TABLE IF EXISTS `regions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `regions` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `regions` -- LOCK TABLES `regions` WRITE; /*!40000 ALTER TABLE `regions` DISABLE KEYS */; INSERT INTO `regions` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `regions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `renewals` -- DROP TABLE IF EXISTS `renewals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `renewals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `renewals` -- LOCK TABLES `renewals` WRITE; /*!40000 ALTER TABLE `renewals` DISABLE KEYS */; /*!40000 ALTER TABLE `renewals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rentalpaymentmethodes` -- DROP TABLE IF EXISTS `rentalpaymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rentalpaymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rentalpaymentmethodes` -- LOCK TABLES `rentalpaymentmethodes` WRITE; /*!40000 ALTER TABLE `rentalpaymentmethodes` DISABLE KEYS */; INSERT INTO `rentalpaymentmethodes` VALUES (1,'RENT','','active','2021-09-17 06:53:31','1','1','4161','',1,NULL,1),(2,'DEPOSIT','DEPOSIT','active','2021-09-17 06:53:51','1','1','4162','',1,NULL,2),(3,'WATER/POWER DEPOSIT','','active','2021-09-17 06:56:08','1','1','4163','',1,NULL,3),(4,'PENALTY','','active','2021-09-17 06:56:20','1','1','4164','',1,NULL,4),(5,'WATER','','active','2021-09-17 06:56:41','1','1','4165','',1,NULL,5),(6,'PARTIAL PAYMENT','','active','2021-09-17 06:57:00','1','1','4166','',1,NULL,6),(7,'GARBAGE','','active','2021-09-17 06:57:23','1','1','4167','',1,NULL,7),(8,'DAMAGES','','active','2021-09-17 06:57:35','1','1','4168','',1,NULL,8),(9,'AGREEMENT FORM','','active','2021-09-17 06:58:32','1','1','4169','',1,NULL,9),(10,'POWER','','active','2021-09-17 06:59:00','1','1','4171','',1,NULL,10),(11,'SEWAGE','SEWAGE','active','2021-09-17 06:59:30','1','1','4172','',1,NULL,11),(12,'BED ONLY','','active','2021-09-17 06:59:55','1','1','4173','',1,NULL,12),(13,'BED AND BREAKFAST','','active','2021-09-17 07:00:38','1','1','4174','',1,NULL,13),(14,'POWER','eee','active','2023-04-14 17:13:29','1','1','4167','',1,NULL,10); /*!40000 ALTER TABLE `rentalpaymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report` -- DROP TABLE IF EXISTS `report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `report` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `type` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `school` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `contact` varchar(60) NOT NULL, `place` varchar(60) NOT NULL, `occurancedate` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `img_id` varchar(60) NOT NULL, `updatedtime` varchar(40) NOT NULL, `status` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report` -- LOCK TABLES `report` WRITE; /*!40000 ALTER TABLE `report` DISABLE KEYS */; /*!40000 ALTER TABLE `report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisition` -- DROP TABLE IF EXISTS `requisition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisition` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `taskid` varchar(30) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `subtaskid` varchar(50) DEFAULT NULL, `invoice` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisition` -- LOCK TABLES `requisition` WRITE; /*!40000 ALTER TABLE `requisition` DISABLE KEYS */; /*!40000 ALTER TABLE `requisition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisitionitems` -- DROP TABLE IF EXISTS `requisitionitems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisitionitems` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `usedamount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `subtaskid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `createdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(10) NOT NULL, `expamount` varchar(10) NOT NULL, `uom` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisitionitems` -- LOCK TABLES `requisitionitems` WRITE; /*!40000 ALTER TABLE `requisitionitems` DISABLE KEYS */; /*!40000 ALTER TABLE `requisitionitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissions` -- DROP TABLE IF EXISTS `rolepermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissions` -- LOCK TABLES `rolepermissions` WRITE; /*!40000 ALTER TABLE `rolepermissions` DISABLE KEYS */; INSERT INTO `rolepermissions` VALUES ('accomodation',1),('accounting',1),('accounting',5),('accountingreports',1),('accountingreports',5),('assets',1),('bankdeposits',1),('bankdeposits',5),('banktransfer',1),('banktransfer',5),('branch',1),('callcenter',1),('cashiersales',1),('cashiersales',2),('cashiersales',4),('cashiersales',8),('complain',1),('config',1),('damagedproducts',1),('deals',1),('displayreport',1),('documents',1),('ecommerce',1),('events',1),('grouping',1),('humanresource',1),('income',1),('incomeexpenses',1),('incomeexpenses',5),('incomingstock',1),('incomingstore',1),('journalentry',1),('labourrecords',1),('lowproducts',1),('lowstocklist',1),('members',1),('password',1),('password',2),('password',4),('password',8),('payroll',1),('peoplecategory',1),('productlist',1),('products',1),('productscategory',1),('profile',1),('profile',8),('projectsmanagement',1),('purchases',1),('recorddelivery',1),('reports',1),('sales',1),('sales',2),('sales',4),('sales',8),('sendsms',1),('task',1),('taskscategory',1),('users',1),('viewreturnsales',1),('viewreturnsales',4),('wholesale',1); /*!40000 ALTER TABLE `rolepermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissionsactions` -- DROP TABLE IF EXISTS `rolepermissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=530 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissionsactions` -- LOCK TABLES `rolepermissionsactions` WRITE; /*!40000 ALTER TABLE `rolepermissionsactions` DISABLE KEYS */; INSERT INTO `rolepermissionsactions` VALUES (1,'sales','4','add'),(2,'sales','4','suspend'),(3,'sales','4','printreceipt'),(4,'sales','4','update'),(5,'sales','4','cash'),(6,'sales','4','delete'),(7,'sales','4','moresales'),(8,'sales','4','sale'),(9,'sales','4','Logout'),(10,'sales','4','mpesabalance'),(11,'sales','4','discount'),(12,'sales','4','reprint'),(13,'sales','4','select'),(14,'sales','4','printbill'),(15,'sales','4','productdiscount'),(16,'sales','4','mpesa'),(17,'sales','4','order'),(18,'sales','4','closebill'),(19,'sales','4','viewbuyingprice'),(20,'sales','4','editsellingprice'),(21,'sales','4','updatepaymentmode'),(22,'sales','4','card'),(23,'sales','4','clearpayments'),(24,'sales','4','cheque'),(25,'sales','4','creditnote'),(26,'sales','4','voucher'),(27,'sales','4','salesbeyondbprice'),(28,'sales','4','points'),(29,'sales','4','credit'),(30,'sales','4','selectroom'),(31,'sales','4','dontprint'),(32,'sales','4','accountlimit'),(33,'sales','4','backdatesales'),(34,'sales','4','recordcoins'),(35,'sales','4','changetaxstatus'),(36,'sales','4','leaseitems'),(37,'sales','4','giveloyalityponts'),(38,'sales','4','dontshowstock'),(39,'sales','4','splitbill'),(40,'sales','4','changeuomonsales'),(41,'sales','4','selecttable'),(42,'sales','4','printdelivery'),(43,'sales','4','sendsms'),(44,'sales','4','selectcurrency'),(45,'sales','4','salesperson'),(46,'sales','4','usekeyboard'),(47,'sales','4','receiptno'),(48,'sales','4','negativesales'),(49,'cashiersales','4','entermpesacode'),(50,'cashiersales','4','editmpesa'),(51,'cashiersales','4','all'),(52,'cashiersales','4','delete'),(53,'cashiersales','4','cashiersales'),(54,'cashiersales','4','editmpesadate'),(55,'cashiersales','4','dontshowtotal'),(56,'cashiersales','4','adddailycollection'),(57,'cashiersales','4','viewtill'),(58,'cashiersales','4','viewdailycollections'),(59,'cashiersales','4','deletedailycollections'),(60,'cashiersales','4','updatedailycollections'),(61,'cashiersales','4','reversempesa'),(62,'cashiersales','4','clearallsales'),(63,'cashiersales','4','viewallcollections'),(64,'cashiersales','4','viewallcounters'),(65,'cashiersales','4','mpesapendingreport'),(66,'cashiersales','4','mpesaverifiedreport'),(67,'cashiersales','4','viewcommission'),(68,'cashiersales','4','viewmpesamessages'),(69,'cashiersales','4','dailysalesonly'),(70,'viewreturnsales','4','add'),(71,'viewreturnsales','4','update'),(72,'viewreturnsales','4','delete'),(73,'viewreturnsales','4','return'),(74,'viewreturnsales','4','clear'),(75,'viewreturnsales','4','moresales'),(76,'password','4','change'),(77,'sales','8','add'),(78,'sales','8','suspend'),(79,'sales','8','update'),(80,'sales','8','cash'),(81,'sales','8','moresales'),(82,'sales','8','sale'),(83,'sales','8','Logout'),(84,'sales','8','displaycustomers'),(85,'sales','8','select'),(86,'sales','8','printbill'),(87,'sales','8','productdiscount'),(88,'sales','8','mpesa'),(89,'sales','8','order'),(90,'sales','8','closebill'),(91,'sales','8','viewbuyingprice'),(92,'sales','8','editsellingprice'),(93,'sales','8','updatepaymentmode'),(94,'sales','8','card'),(95,'sales','8','clearpayments'),(96,'sales','8','cheque'),(97,'sales','8','creditnote'),(98,'sales','8','voucher'),(99,'sales','8','salesbeyondbprice'),(100,'sales','8','points'),(101,'sales','8','credit'),(102,'sales','8','selectroom'),(103,'sales','8','dontprint'),(104,'sales','8','backdatesales'),(105,'sales','8','recordcoins'),(106,'sales','8','changetaxstatus'),(107,'sales','8','giveloyalityponts'),(108,'sales','8','dontshowstock'),(109,'sales','8','splitbill'),(110,'sales','8','changeuomonsales'),(111,'sales','8','selecttable'),(112,'sales','8','printdelivery'),(113,'sales','8','sendsms'),(114,'sales','8','selectcurrency'),(115,'sales','8','salesperson'),(116,'sales','8','usekeyboard'),(117,'sales','8','receiptno'),(118,'cashiersales','8','entermpesacode'),(119,'cashiersales','8','editmpesa'),(120,'cashiersales','8','all'),(121,'cashiersales','8','cashiersales'),(122,'cashiersales','8','editmpesadate'),(123,'cashiersales','8','dontshowtotal'),(124,'cashiersales','8','viewtill'),(125,'cashiersales','8','viewdailycollections'),(126,'cashiersales','8','updatedailycollections'),(127,'cashiersales','8','viewallcounters'),(128,'cashiersales','8','viewcommission'),(129,'cashiersales','8','viewmpesamessages'),(130,'cashiersales','8','dailysalesonly'),(131,'password','8','change'),(132,'profile','8','update'),(133,'sales','1','add'),(134,'sales','1','suspend'),(135,'sales','1','selectmessage'),(136,'sales','1','printreceipt'),(137,'sales','1','update'),(138,'sales','1','cash'),(139,'sales','1','delete'),(140,'sales','1','moresales'),(141,'sales','1','sale'),(142,'sales','1','Logout'),(143,'sales','1','mpesabalance'),(144,'sales','1','displaycustomers'),(145,'sales','1','discount'),(146,'sales','1','reprint'),(147,'sales','1','select'),(148,'sales','1','printbill'),(149,'sales','1','productdiscount'),(150,'sales','1','mpesa'),(151,'sales','1','order'),(152,'sales','1','closebill'),(153,'sales','1','viewbuyingprice'),(154,'sales','1','editsellingprice'),(155,'sales','1','updatepaymentmode'),(156,'sales','1','card'),(157,'sales','1','clearpayments'),(158,'sales','1','cheque'),(159,'sales','1','creditnote'),(160,'sales','1','voucher'),(161,'sales','1','salesbeyondbprice'),(162,'sales','1','points'),(163,'sales','1','credit'),(164,'sales','1','selectroom'),(165,'sales','1','dontprint'),(166,'sales','1','accountlimit'),(167,'sales','1','backdatesales'),(168,'sales','1','recordcoins'),(169,'sales','1','changetaxstatus'),(170,'sales','1','leaseitems'),(171,'sales','1','giveloyalityponts'),(172,'sales','1','dontshowstock'),(173,'sales','1','splitbill'),(174,'sales','1','changeuomonsales'),(175,'sales','1','selecttable'),(176,'sales','1','printdelivery'),(177,'sales','1','sendsms'),(178,'sales','1','selectcurrency'),(179,'sales','1','salesperson'),(180,'sales','1','usekeyboard'),(181,'sales','1','receiptno'),(182,'sales','1','negativesales'),(183,'wholesale','1','sale'),(184,'wholesale','1','add'),(185,'wholesale','1','delete'),(186,'wholesale','1','update'),(187,'cashiersales','1','entermpesacode'),(188,'cashiersales','1','editmpesa'),(189,'cashiersales','1','all'),(190,'cashiersales','1','delete'),(191,'cashiersales','1','cashiersales'),(192,'cashiersales','1','editmpesadate'),(193,'cashiersales','1','dontshowtotal'),(194,'cashiersales','1','adddailycollection'),(195,'cashiersales','1','viewtill'),(196,'cashiersales','1','viewdailycollections'),(197,'cashiersales','1','deletedailycollections'),(198,'cashiersales','1','updatedailycollections'),(199,'cashiersales','1','reversempesa'),(200,'cashiersales','1','clearallsales'),(201,'cashiersales','1','viewallcollections'),(202,'cashiersales','1','viewallcounters'),(203,'cashiersales','1','mpesapendingreport'),(204,'cashiersales','1','mpesaverifiedreport'),(205,'cashiersales','1','viewcommission'),(206,'cashiersales','1','viewmpesamessages'),(207,'cashiersales','1','dailysalesonly'),(208,'recorddelivery','1','add'),(209,'recorddelivery','1','view'),(210,'recorddelivery','1','update'),(211,'recorddelivery','1','delete'),(212,'recorddelivery','1','changestatus'),(213,'recorddelivery','1','report'),(214,'recorddelivery','1','Dispatched'),(215,'recorddelivery','1','FailedDelivery'),(216,'recorddelivery','1','ReturnedandReceived'),(217,'recorddelivery','1','Delivered'),(218,'recorddelivery','1','Claimraised'),(219,'recorddelivery','1','ClaimOK'),(220,'recorddelivery','1','ClaimDamaged'),(221,'purchases','1','add'),(222,'purchases','1','update'),(223,'purchases','1','delete'),(224,'purchases','1','updatebuyingprice'),(225,'purchases','1','updatesellingprice'),(226,'purchases','1','updateclosedinvoice'),(227,'purchases','1','viewquotation'),(228,'purchases','1','viewserials'),(229,'purchases','1','viewdirectpurchases'),(230,'purchases','1','viewpurchase'),(231,'purchases','1','salesorder'),(232,'purchases','1','budget'),(233,'purchases','1','showdefaultserials'),(234,'purchases','1','viewallcounters'),(235,'purchases','1','approve'),(236,'purchases','1','addbatchno'),(237,'purchases','1','addexpirydate'),(238,'viewreturnsales','1','add'),(239,'viewreturnsales','1','update'),(240,'viewreturnsales','1','delete'),(241,'viewreturnsales','1','return'),(242,'viewreturnsales','1','clear'),(243,'viewreturnsales','1','moresales'),(244,'income','1','View'),(245,'income','1','add'),(246,'income','1','wiewinvoices'),(247,'income','1','detailedvatinvoice'),(248,'incomeexpenses','1','add'),(249,'incomeexpenses','1','closeexpense'),(250,'incomeexpenses','1','update'),(251,'incomeexpenses','1','updateclosedexpenses'),(252,'incomeexpenses','1','wiewinvoices'),(253,'incomeexpenses','1','viewbills'),(254,'incomeexpenses','1','viewexpense'),(255,'incomeexpenses','1','viewdebtors'),(256,'incomeexpenses','1','viewcreditors'),(257,'incomeexpenses','1','postrentalexpenses'),(258,'accomodation','1','viewrooms'),(259,'accomodation','1','addhouse'),(260,'accomodation','1','dailysales'),(261,'accomodation','1','viewhouse'),(262,'accomodation','1','voucher'),(263,'accomodation','1','mpesa'),(264,'accomodation','1','points'),(265,'accomodation','1','credit'),(266,'accomodation','1','card'),(267,'accomodation','1','cash'),(268,'accomodation','1','cheque'),(269,'accomodation','1','checkinroom'),(270,'accomodation','1','checkoutroom'),(271,'accomodation','1','addroom'),(272,'accomodation','1','cancel'),(273,'accomodation','1','checkin'),(274,'accomodation','1','addcharges'),(275,'accomodation','1','givediscount'),(276,'accomodation','1','cleanrooms'),(277,'accomodation','1','updatecharges'),(278,'accomodation','1','updateroom'),(279,'accomodation','1','postexpense'),(280,'accomodation','1','updatehouse'),(281,'accomodation','1','Post Bank Deposits'),(282,'accomodation','1','managehotel'),(283,'accomodation','1','assignrooms'),(284,'accomodation','1','managerental'),(285,'accomodation','1','changepayment'),(286,'accomodation','1','housekeeping'),(287,'accomodation','1','customerregister'),(288,'accomodation','1','dailypayments'),(289,'accomodation','1','advancebooking'),(290,'accomodation','1','checkoutcustomerwithbalance'),(291,'accomodation','1','managecustomer'),(292,'accomodation','1','viewreports'),(293,'accomodation','1','accomodationmanager'),(294,'accomodation','1','accommodationcleaner'),(295,'accomodation','1','accommodationreceiptionist'),(296,'accomodation','1','config'),(297,'accomodation','1','viewroomcleaned'),(298,'accomodation','1','clearsales'),(299,'accomodation','1','dailycollections'),(300,'branch','1','add'),(301,'branch','1','view'),(302,'branch','1','update'),(303,'branch','1','delete'),(304,'members','1','add'),(305,'members','1','update'),(306,'members','1','deletepeople'),(307,'members','1','opencloseshift'),(308,'users','1','add'),(309,'users','1','update'),(310,'users','1','delete'),(311,'users','1','deleteallroles'),(312,'productscategory','1','add'),(313,'productscategory','1','update'),(314,'productscategory','1','delete'),(315,'productlist','1','bulk'),(316,'productlist','1','updatestock'),(317,'productlist','1','move'),(318,'productlist','1','more'),(319,'productlist','1','transfer'),(320,'productlist','1','addstock'),(321,'productlist','1','delete'),(322,'productlist','1','view'),(323,'productlist','1','update'),(324,'productlist','1','add'),(325,'productlist','1','openclosestock'),(326,'productlist','1','stocktaking'),(327,'productlist','1','editstocktaken'),(328,'productlist','1','editopenclosestock'),(329,'productlist','1','changeserialstatus'),(330,'productlist','1','viewserials'),(331,'productlist','1','viewproductsfromallbranches'),(332,'productlist','1','bulkpriceupdate'),(333,'productlist','1','viewbprice'),(334,'products','1','add'),(335,'products','1','update'),(336,'products','1','delete'),(337,'products','1','addstock'),(338,'products','1','more'),(339,'products','1','bulk'),(340,'products','1','deleteorder'),(341,'products','1','dispatch'),(342,'products','1','removestock'),(343,'products','1','price'),(344,'products','1','removeallstock'),(345,'products','1','bulkpriceupdate'),(346,'products','1','viewbprice'),(347,'incomingstock','1','add'),(348,'incomingstock','1','update'),(349,'incomingstock','1','view'),(350,'incomingstock','1','delete'),(351,'incomingstore','1','add'),(352,'incomingstore','1','delete'),(353,'incomingstore','1','view'),(354,'lowstocklist','1','add'),(355,'lowstocklist','1','more'),(356,'lowstocklist','1','view'),(357,'lowproducts','1','add'),(358,'lowproducts','1','update'),(359,'damagedproducts','1','add'),(360,'damagedproducts','1','update'),(361,'damagedproducts','1','delete'),(362,'projectsmanagement','1','view'),(363,'projectsmanagement','1','add'),(364,'projectsmanagement','1','update'),(365,'projectsmanagement','1','delete'),(366,'assets','1','add'),(367,'assets','1','update'),(368,'assets','1','delete'),(369,'accounting','1','deletebank'),(370,'accounting','1','deleteglaccount'),(371,'accounting','1','view'),(372,'bankdeposits','1','add'),(373,'bankdeposits','1','update'),(374,'bankdeposits','1','delete'),(375,'banktransfer','1','add'),(376,'journalentry','1','add'),(377,'accountingreports','1','view'),(378,'peoplecategory','1','add'),(379,'peoplecategory','1','update'),(380,'peoplecategory','1','delete'),(381,'labourrecords','1','add'),(382,'payroll','1','add'),(383,'reports','1','view'),(384,'reports','1','download'),(385,'reports','1','delete'),(386,'reports','1','update'),(387,'reports','1','viewall'),(388,'displayreport','1','view'),(389,'grouping','1','add'),(390,'grouping','1','update'),(391,'grouping','1','delete'),(392,'sendsms','1','add'),(393,'sendsms','1','update'),(394,'sendsms','1','delete'),(395,'sendsms','1','transfersms'),(396,'documents','1','add'),(397,'documents','1','update'),(398,'documents','1','delete'),(399,'documents','1','viewalldocuments'),(400,'humanresource','1','add'),(401,'humanresource','1','approve'),(402,'humanresource','1','update'),(403,'humanresource','1','delete'),(404,'humanresource','1','view'),(405,'humanresource','1','allocate'),(406,'humanresource','1','viewallpayroll'),(407,'humanresource','1','leavesetup'),(408,'humanresource','1','allleaves '),(409,'humanresource','1','bioattendance'),(410,'taskscategory','1','add'),(411,'taskscategory','1','update'),(412,'taskscategory','1','delete'),(413,'task','1','add'),(414,'task','1','update'),(415,'task','1','viewall'),(416,'task','1','delete'),(417,'task','1','postspecifictask'),(418,'task','1','postgeneraltask'),(419,'task','1','viewothersspecifictask'),(420,'task','1','viewothersgeneraltask'),(421,'task','1','assigntask'),(422,'task','1','posttaskforothers'),(423,'callcenter','1','add'),(424,'callcenter','1','upadate'),(425,'callcenter','1','view'),(426,'callcenter','1','download'),(427,'callcenter','1','delete'),(428,'deals','1','add'),(429,'deals','1','update'),(430,'deals','1','delete'),(431,'deals','1','viewall'),(432,'complain','1','add'),(433,'complain','1','view'),(434,'complain','1','update'),(435,'complain','1','allcompalin'),(436,'complain','1','delete'),(437,'events','1','add'),(438,'events','1','update'),(439,'events','1','delete'),(440,'password','1','change'),(441,'profile','1','update'),(442,'ecommerce','1','add'),(443,'ecommerce','1','update'),(444,'ecommerce','1','delete'),(445,'ecommerce','1','vieworders'),(446,'ecommerce','1','setup'),(447,'ecommerce','1','approveorders'),(448,'config','1','delete'),(449,'config','1','add'),(450,'config','1','update'),(483,'sales','2','add'),(484,'sales','2','suspend'),(485,'sales','2','printreceipt'),(486,'sales','2','update'),(487,'sales','2','cash'),(488,'sales','2','moresales'),(489,'sales','2','sale'),(490,'sales','2','mpesa'),(491,'sales','2','updatepaymentmode'),(492,'sales','2','card'),(493,'sales','2','clearpayments'),(494,'sales','2','cheque'),(495,'sales','2','dontprint'),(496,'cashiersales','2','entermpesacode'),(497,'cashiersales','2','editmpesa'),(498,'cashiersales','2','cashiersales'),(499,'cashiersales','2','editmpesadate'),(500,'cashiersales','2','dontshowtotal'),(501,'cashiersales','2','adddailycollection'),(502,'cashiersales','2','viewtill'),(503,'cashiersales','2','viewdailycollections'),(504,'cashiersales','2','updatedailycollections'),(505,'cashiersales','2','viewallcounters'),(506,'cashiersales','2','mpesapendingreport'),(507,'cashiersales','2','mpesaverifiedreport'),(508,'cashiersales','2','viewcommission'),(509,'cashiersales','2','viewmpesamessages'),(510,'cashiersales','2','dailysalesonly'),(511,'password','2','change'),(512,'incomeexpenses','5','add'),(513,'incomeexpenses','5','closeexpense'),(514,'incomeexpenses','5','update'),(515,'incomeexpenses','5','updateclosedexpenses'),(516,'incomeexpenses','5','wiewinvoices'),(517,'incomeexpenses','5','viewbills'),(518,'incomeexpenses','5','viewexpense'),(519,'incomeexpenses','5','viewdebtors'),(520,'incomeexpenses','5','viewcreditors'),(521,'incomeexpenses','5','postrentalexpenses'),(522,'accounting','5','deletebank'),(523,'accounting','5','deleteglaccount'),(524,'accounting','5','view'),(525,'bankdeposits','5','add'),(526,'bankdeposits','5','update'),(527,'bankdeposits','5','delete'),(528,'banktransfer','5','add'),(529,'accountingreports','5','view'); /*!40000 ALTER TABLE `rolepermissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` int(20) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'pms','xxxx','2023-03-27 09:50:23','active','1','','1',''); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcharges` -- DROP TABLE IF EXISTS `roomcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `chargeid` varchar(30) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roomid` (`roomid`,`plotno`,`chargeid`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcharges` -- LOCK TABLES `roomcharges` WRITE; /*!40000 ALTER TABLE `roomcharges` DISABLE KEYS */; INSERT INTO `roomcharges` VALUES (1,'3','1','1000','active','2023-04-28 08:21:17','','1','','1','12 '),(2,'2','1','1000','active','2023-04-28 08:21:17','','1','','1','12 '),(5,'2','1','2500','active','2023-04-28 08:21:31','','1','','1','13 '),(7,'8','1','8000','active','2023-05-11 11:11:28','2023-05-16 10:56:21am','1','','1','18'),(8,'7','1','0','active','2023-05-11 11:11:28','','1','','1','18 '),(9,'6','1','500','active','2023-05-11 11:11:28','2023-05-17 10:03:59pm','1','','1','18'),(10,'5','1','800','active','2023-05-11 11:11:28','2023-05-17 10:02:53pm','1','','1','18'),(11,'4','1','5000','active','2023-05-11 11:11:28','2023-06-08 06:04:01am','1','','1','18'),(12,'3','1','6000','active','2023-05-11 11:11:28','2023-05-17 10:03:18pm','1','','1','18'),(14,'1','1','2000','active','2023-05-11 11:11:28','2023-05-15 03:00:52pm','1','','1','13'),(15,'8','1','600','active','2023-05-11 11:12:02','2023-05-16 10:56:16am','1','','1','17'),(16,'7','1','00','active','2023-05-11 11:12:02','','1','','1','17 '),(17,'6','1','700','active','2023-05-11 11:12:02','2023-05-17 10:03:51pm','1','','1','17'),(18,'5','1','900','active','2023-05-11 11:12:02','2023-05-17 10:02:46pm','1','','1','17'),(19,'4','1','400','active','2023-05-11 11:12:02','2023-06-08 06:03:52am','1','','1','17'),(20,'3','1','900','active','2023-05-11 11:12:02','2023-05-17 10:03:11pm','1','','1','17'),(22,'1','1','5000','active','2023-05-11 11:12:02','2023-05-15 03:00:45pm','1','','1','12'),(23,'10','1','7000','active','2023-05-12 02:26:05pm','2023-05-17 09:49:14pm','1','','1','12'),(25,'10','1','800','active','2023-05-17 09:49:05pm','','1','','1','13 '),(26,'11','1','2000','active','2023-05-18 10:24:24pm','','1','','1','12 '),(27,'11','1','5000','active','2023-05-18 10:24:29pm','','1','','1','13 '),(28,'12','1','5000','active','2023-05-18 10:24:56pm','','1','','1','12 '),(29,'12','1','10000','active','2023-05-18 10:25:00pm','','1','','1','13 '); /*!40000 ALTER TABLE `roomcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcollection` -- DROP TABLE IF EXISTS `roomcollection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcollection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcollection` -- LOCK TABLES `roomcollection` WRITE; /*!40000 ALTER TABLE `roomcollection` DISABLE KEYS */; INSERT INTO `roomcollection` VALUES (1,'2023-06-06 06:28:31','11686022101','1000','eeee','5000','1','1',1010,'2023-06-06 06:28:44','payment','',5,1),(2,'2023-06-06 06:32:00','11686022293','1000','rr','4000','1','1',1030,'2023-06-06 06:32:14','payment','',1,1),(3,'2023-06-06 06:32:15','11686022293','4000','','0','1','1',1040,'2023-06-06 06:32:49','payment','dddd',1,1),(4,'2023-06-08 05:36:06','11686022101','5000','','0','1','1',1011,'2023-06-08 05:36:17','payment','ddd',5,1),(5,'2023-06-08 05:36:38','11685349841','900','dd','0','1','1',1035,'2023-06-08 05:36:46','payment','',3,1); /*!40000 ALTER TABLE `roomcollection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomsales` -- DROP TABLE IF EXISTS `roomsales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomsales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plotno` int(11) NOT NULL, `houseno` varchar(20) NOT NULL, `customerid` int(20) DEFAULT NULL, `dateposted` varchar(30) NOT NULL, `total` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(10) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'New', `description` text NOT NULL, `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `branch` int(11) NOT NULL, `invoice` varchar(50) NOT NULL, `transactioncode` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomsales` -- LOCK TABLES `roomsales` WRITE; /*!40000 ALTER TABLE `roomsales` DISABLE KEYS */; /*!40000 ALTER TABLE `roomsales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salary` -- DROP TABLE IF EXISTS `salary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salary` ( `id` int(20) NOT NULL AUTO_INCREMENT, `userid` int(20) NOT NULL, `companyid` int(15) NOT NULL, `salary` decimal(10,2) NOT NULL, `pay` decimal(10,2) NOT NULL, `deductions` decimal(10,2) NOT NULL, `bonus` decimal(10,2) NOT NULL, `bankname` varchar(20) NOT NULL, `bankaccount` varchar(30) NOT NULL, `method` varchar(20) NOT NULL, `payment` varchar(20) NOT NULL, `netsalry` decimal(10,2) NOT NULL, `gross` decimal(10,2) NOT NULL, `memberid` int(11) NOT NULL, `salaryyear` varchar(20) NOT NULL, `paymentmode` varchar(30) NOT NULL, `slarymonth` varchar(20) NOT NULL, `number` varchar(20) NOT NULL, `createdate` varchar(30) NOT NULL, `relief` decimal(10,2) NOT NULL, `salaryid` varchar(100) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `loanbalance` decimal(10,2) NOT NULL, `nhif` int(20) DEFAULT NULL, `nssf` varchar(20) DEFAULT NULL, `paye` varchar(20) DEFAULT NULL, `advance` varchar(20) DEFAULT NULL, `otherdeductions` varchar(20) DEFAULT NULL, `currency` varchar(20) DEFAULT NULL, `transactiontypecode` varchar(20) DEFAULT NULL, `chargetype` varchar(20) DEFAULT NULL, `paymenttype` varchar(20) NOT NULL, `nhifrelief` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salary` -- LOCK TABLES `salary` WRITE; /*!40000 ALTER TABLE `salary` DISABLE KEYS */; /*!40000 ALTER TABLE `salary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salarycharges` -- DROP TABLE IF EXISTS `salarycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salarycharges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` int(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salarycharges` -- LOCK TABLES `salarycharges` WRITE; /*!40000 ALTER TABLE `salarycharges` DISABLE KEYS */; INSERT INTO `salarycharges` VALUES (6,2,'House Allowance','2019-03-28 12:47:59','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(7,3,'Overtime','2019-03-28 12:48:27','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(8,4,'Travel Allowance','2019-03-28 12:48:59','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(9,5,'Bonus','2019-03-28 12:49:21','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(10,6,'Allowance','2019-03-28 12:50:16','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(11,7,'Appreciation','2019-03-28 12:50:45','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(12,8,'PAYE','2019-03-28 12:51:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(13,9,'NSSF','2019-03-28 12:51:38','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(14,10,'NHIF','2019-03-28 12:52:09','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(15,11,'Advances','2019-03-28 13:00:47','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(16,12,'Loan payment','2019-03-28 13:03:14','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(18,14,'destruction','2019-03-28 13:04:59','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(19,15,'Loan','2019-06-11 13:31:04','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(20,26,'staff Uniforms','2023-05-15 08:38:23','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(21,16,'Helb / Sacco Loan ','2019-12-17 04:55:20','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(22,25,'LOST/DAMAGED ITEM','2023-05-15 08:38:05','Active','1','','1','Deduction','Variable','Fixed',1.00,900.00,''),(23,18,'sales cut ','2020-12-15 19:06:21','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(24,19,'UNPAID LEAVE DAYS','2021-04-05 10:49:16','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(25,20,'DEDUCTION','2021-04-05 10:49:55','Active','1','','1','Deduction','Fixed','Variable',1.00,0.00,''),(26,21,'Insurance cover ','2022-02-04 10:16:25','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(27,22,'PERFORMANCE PAY CUT','2023-01-23 12:04:28','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(28,23,'SALES COMMISSION','2023-03-02 09:44:12','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(29,24,'staff uniform shirts','2023-04-03 16:29:31','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'1'); /*!40000 ALTER TABLE `salarycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales` -- DROP TABLE IF EXISTS `sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cashier` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `due_date` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `balance` varchar(20) NOT NULL DEFAULT '0', `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `cash` varchar(50) NOT NULL, `total` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `salestype` varchar(50) NOT NULL, `maindiscount` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `card` varchar(30) NOT NULL, `voucher` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `mpesa` varchar(50) NOT NULL, `cheque` varchar(50) NOT NULL, `ordersales` varchar(20) DEFAULT 'printed', `description` text NOT NULL, `mytable` varchar(30) NOT NULL, `maincategory` varchar(30) DEFAULT NULL, `creditnote` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL DEFAULT 'No', `updatedby` varchar(10) NOT NULL, `updatedat` varchar(50) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `baddebt` varchar(30) NOT NULL, `tax1` varchar(30) NOT NULL, `tax2` varchar(30) NOT NULL, `cardnumber` varchar(50) DEFAULT NULL, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `salesperson` int(11) DEFAULT NULL, `receiptno` varchar(50) DEFAULT NULL, `change` varchar(20) DEFAULT NULL, `currency` varchar(50) DEFAULT NULL, `othercurrency` varchar(20) DEFAULT NULL, `othercurrencyamount` decimal(10,2) DEFAULT NULL, `tocurrencyamount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6319 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales` -- LOCK TABLES `sales` WRITE; /*!40000 ALTER TABLE `sales` DISABLE KEYS */; INSERT INTO `sales` VALUES (1,'','Cash','','2022-07-01 17:33:39','','0','16','2022-07-01 17:33:39','','11400','11400','1','retail','0','11400','1','0','0','0','0','0','0','printed',' ','','1','0','161656685955','No','','','','','','','','',0.00,0.00,0,'',NULL,'Ksh ',NULL,NULL,0.00),(2,'','Cash','','2022-07-01 18:18:28','','0','16','2022-07-01 18:18:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','161656688456','No','','','','','','','','',0.00,0.00,0,'',NULL,'Ksh ',NULL,NULL,0.00),(3,'','Cash','','2022-07-01 19:45:41','','0','12','2022-07-01 19:45:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121656693922','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4,'','Cash','','2022-07-02 15:09:43','','0','16','2022-07-02 15:09:43','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','161656763707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5,'','Cash','','2022-07-02 15:15:45','','0','16','2022-07-02 15:15:45','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','161656764026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6,'','Cash','','2022-07-02 20:08:04','','0','16','2022-07-02 20:08:04','','8200','8200','1','retail','0','8200','1','0','0','0','0','0','0','printed',' ','','1','0','161656775792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(7,'','Cash','','2022-07-02 20:14:34','','0','16','2022-07-02 20:14:34','','7000','7000','1','retail','0','7000','1','0','0','0','0','0','0','printed',' ','','1','0','161656782055','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(8,'','Cash','','2022-07-02 22:47:59','','0','16','2022-07-02 22:47:59','','2640','2640','1','retail','0','2640','1','0','0','0','0','0','0','printed',' ','','1','0','161656786931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(9,'','Cash','','2022-07-02 22:51:26','','0','16','2022-07-02 22:51:26','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','161656791320','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(10,'','Cash','','2022-07-02 23:10:17','','0','16','2022-07-02 23:10:17','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','161656792234','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(11,'','Cash','','2022-07-02 23:16:27','','0','16','2022-07-02 23:16:27','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','161656792725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(12,'','Cash','','2022-07-02 23:47:51','','0','16','2022-07-02 23:47:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','161656792995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(13,'','Cash','','2022-07-02 23:50:57','','0','16','2022-07-02 23:50:57','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','161656794902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(14,'','Cash','','2022-07-03 00:07:11','','340','16','2022-07-03 00:07:11','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','161656795104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(15,'','Cash','','2022-07-03 00:20:38','','0','16','2022-07-03 00:20:38','','8050','8050','1','retail','0','8050','1','0','0','0','0','0','0','printed',' ','','1','0','161656796213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(16,'','Cash','','2022-07-03 00:44:58','','0','16','2022-07-03 00:44:58','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','161656797926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(17,'','Cash','','2022-07-03 01:06:15','','0','16','2022-07-03 01:06:15','','9340','9340','1','retail','0','9340','1','0','0','0','0','0','0','printed',' ','','1','0','161656798392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(18,'','Cash','','2022-07-03 01:07:05','','0','16','2022-07-03 01:07:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','161656799583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(19,'','Cash','','2022-07-03 01:57:16','','0','16','2022-07-03 01:57:16','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','161656799663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(20,'','Cash','','2022-07-03 02:15:21','','0','16','2022-07-03 02:15:21','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','161656803662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(21,'','Cash','','2022-07-03 14:40:11','','0','12','2022-07-03 14:40:11','','860','860','1','retail','0','860','1','0','0','0','0','0','0','printed',' ','','1','0','121656847960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(22,'','Cash','','2022-07-03 15:41:37','','0','12','2022-07-03 15:41:37','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121656852074','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(23,'','Cash','','2022-07-03 17:06:06','','0','12','2022-07-03 17:06:06','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121656854684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(24,'','Cash','','2022-07-03 19:10:52','','0','12','2022-07-03 19:10:52','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121656861624','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(25,'','Cash','','2022-07-03 19:12:55','','0','12','2022-07-03 19:12:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121656864695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(26,'','Cash','','2022-07-03 21:03:18','','0','12','2022-07-03 21:03:18','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121656871310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(27,'','Cash','','2022-07-03 21:04:43','','0','12','2022-07-03 21:04:43','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121656871455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(28,'','Cash','','2022-07-03 21:14:09','','0','12','2022-07-03 21:14:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121656871551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(29,'','Cash','','2022-07-03 21:20:02','','0','12','2022-07-03 21:20:02','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121656872061','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(30,'','Cash','','2022-07-03 21:58:13','','0','12','2022-07-03 21:58:13','','1810','1810','1','retail','0','1810','1','0','0','0','0','0','0','printed',' ','','1','0','121656873851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(31,'','Cash','','2022-07-03 23:25:06','','0','12','2022-07-03 23:25:06','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121656874712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(32,'','Cash','','2022-07-03 23:25:39','','0','12','2022-07-03 23:25:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121656879930','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(33,'','Cash','','2022-07-04 17:12:58','','0','12','2022-07-04 17:12:58','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121656943954','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(34,'','Cash','','2022-07-04 19:17:35','','0','12','2022-07-04 19:17:35','','4470','4470','1','retail','0','4470','1','0','0','0','0','0','0','printed',' ','','1','0','121656950636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(35,'','Mpesa','','2022-07-04 19:44:07','','0','12','2022-07-04 19:44:07','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','1','0','121656951479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(36,'','Cash','','2022-07-04 21:30:54','','0','12','2022-07-04 21:30:54','','18030','18030','1','retail','0','18030','1','0','0','0','0','0','0','printed',' ','','1','0','121656959016','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(37,'','Cash','','2022-07-04 21:51:06','','0','12','2022-07-04 21:51:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121656959547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(38,'','Cash','','2022-07-04 22:07:21','','0','12','2022-07-04 22:07:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121656960679','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(39,'','Cash','','2022-07-04 22:50:52','','0','12','2022-07-04 22:50:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121656961654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(40,'','Cash','','2022-07-04 23:48:49','','0','12','2022-07-04 23:48:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121656964256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(41,'','Cash','','2022-07-05 01:33:17','','0','12','2022-07-05 01:33:17','','2650','2650','1','retail','0','2650','1','0','0','0','0','0','0','printed',' ','','1','0','121656967735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(42,'','Cash','','2022-07-05 01:35:01','','0','12','2022-07-05 01:35:01','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121656974011','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(43,'','Cash','','2022-07-05 01:36:22','','0','12','2022-07-05 01:36:22','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121656974114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(44,'','Cash','','2022-07-05 01:56:10','','0','12','2022-07-05 01:56:10','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121656975350','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(45,'','Cash','','2022-07-05 02:07:50','','0','12','2022-07-05 02:07:50','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121656975374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(46,'','Cash','','2022-07-05 15:38:39','','0','12','2022-07-05 15:38:39','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121657022898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(47,'','Cash','','2022-07-05 17:04:21','','0','12','2022-07-05 17:04:21','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121657024751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(48,'','Cash','','2022-07-05 19:02:23','','0','12','2022-07-05 19:02:23','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121657029866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(49,'','Cash','','2022-07-05 20:46:09','','0','12','2022-07-05 20:46:09','','2310','2310','1','retail','0','2310','1','0','0','0','0','0','0','printed',' ','','1','0','121657037086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(50,'','Cash','','2022-07-05 20:52:44','','0','12','2022-07-05 20:52:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657043403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(51,'','Cash','','2022-07-05 20:55:33','','0','12','2022-07-05 20:55:33','','3090','3090','1','retail','0','3090','1','0','0','0','0','0','0','printed',' ','','1','0','121657043569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(52,'','Cash','','2022-07-05 20:56:19','','0','12','2022-07-05 20:56:19','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121657043741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(53,'','Cash','','2022-07-05 21:00:44','','0','12','2022-07-05 21:00:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657043784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(54,'','Cash','','2022-07-05 22:19:48','','0','12','2022-07-05 22:19:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657044047','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(55,'','Cash','','2022-07-05 23:13:36','','0','12','2022-07-05 23:13:36','','1710','1710','1','retail','0','1710','1','0','0','0','0','0','0','printed',' ','','1','0','121657051904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(56,'','Cash','','2022-07-05 23:33:41','','0','12','2022-07-05 23:33:41','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121657052376','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(57,'','Cash','','2022-07-05 23:40:22','','0','12','2022-07-05 23:40:22','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121657053353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(58,'','Cash','','2022-07-06 00:03:57','','0','12','2022-07-06 00:03:57','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121657053706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(59,'','Cash','','2022-07-06 00:38:22','','0','12','2022-07-06 00:38:22','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121657056718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(60,'','Cash','','2022-07-06 18:52:09','','0','12','2022-07-06 18:52:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657122715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(61,'','Cash','','2022-07-06 19:39:25','','0','12','2022-07-06 19:39:25','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121657122734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(62,'','Cash','','2022-07-06 20:24:00','','0','12','2022-07-06 20:24:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657125627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(63,'','Cash','','2022-07-06 20:41:40','','0','12','2022-07-06 20:41:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657128271','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(64,'','Cash','','2022-07-06 21:19:26','','0','12','2022-07-06 21:19:26','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121657129546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(65,'','Cash','','2022-07-06 21:49:20','','0','12','2022-07-06 21:49:20','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121657131845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(66,'','Cash','','2022-07-06 22:20:22','','0','12','2022-07-06 22:20:22','','970','970','1','retail','0','970','1','0','0','0','0','0','0','printed',' ','','1','0','121657133446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(67,'','Cash','','2022-07-06 22:23:48','','0','12','2022-07-06 22:23:48','','1620','1620','1','retail','0','1620','1','0','0','0','0','0','0','printed',' ','','1','0','121657135326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(68,'','Cash','','2022-07-06 23:15:41','','0','12','2022-07-06 23:15:41','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121657135446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(69,'','Cash','','2022-07-06 23:40:02','','0','12','2022-07-06 23:40:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657138549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(70,'','Cash','','2022-07-06 23:42:57','','0','12','2022-07-06 23:42:57','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121657140026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(71,'','Cash','','2022-07-06 23:53:55','','0','12','2022-07-06 23:53:55','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121657140186','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(72,'','Cash','','2022-07-06 23:59:07','','0','12','2022-07-06 23:59:07','','4800','4800','1','retail','0','4800','1','0','0','0','0','0','0','printed',' ','','1','0','121657140905','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(73,'','Cash','','2022-07-07 00:32:42','','0','12','2022-07-07 00:32:42','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121657141407','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(74,'','Cash','','2022-07-07 16:10:57','','0','16','2022-07-07 16:10:57','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','161657199453','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(75,'','Cash','','2022-07-07 21:07:04','','0','12','2022-07-07 21:07:04','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121657217199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(76,'','Cash','','2022-07-07 22:04:39','','0','12','2022-07-07 22:04:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657218432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(77,'','Cash','','2022-07-07 22:06:05','','0','12','2022-07-07 22:06:05','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121657220718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(78,'','Cash','','2022-07-07 23:03:45','','0','12','2022-07-07 23:03:45','','1370','1370','1','retail','0','1370','1','0','0','0','0','0','0','printed',' ','','1','0','121657224084','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(79,'','Cash','','2022-07-07 23:06:24','','0','12','2022-07-07 23:06:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657224239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(80,'','Cash','','2022-07-07 23:39:26','','0','12','2022-07-07 23:39:26','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121657226356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(81,'','Cash','','2022-07-08 00:41:19','','0','12','2022-07-08 00:41:19','','1380','1380','1','retail','0','1380','1','0','0','0','0','0','0','printed',' ','','1','0','121657226378','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(82,'','Cash','','2022-07-08 00:51:20','','0','12','2022-07-08 00:51:20','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121657230665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(83,'','Cash','','2022-07-08 00:51:45','','0','12','2022-07-08 00:51:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657230688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(84,'','Cash','','2022-07-08 23:01:59','','0','12','2022-07-08 23:01:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657305716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(85,'','Cash','','2022-07-08 23:29:39','','0','12','2022-07-08 23:29:39','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121657310550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(86,'','Cash','','2022-07-08 23:32:16','','0','12','2022-07-08 23:32:16','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121657312257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(87,'','Cash','','2022-07-09 00:14:32','','0','12','2022-07-09 00:14:32','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121657314845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(88,'','Cash','','2022-07-09 00:22:16','','0','12','2022-07-09 00:22:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657314956','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(89,'','Cash','','2022-07-09 00:24:38','','0','12','2022-07-09 00:24:38','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121657315353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(90,'','Cash','','2022-07-09 00:57:47','','0','12','2022-07-09 00:57:47','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121657316483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(91,'','Cash','','2022-07-09 17:23:45','','0','12','2022-07-09 17:23:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657369632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(92,'','Cash','','2022-07-09 17:35:04','','0','12','2022-07-09 17:35:04','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657376628','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(93,'','Cash','','2022-07-09 21:05:25','','0','12','2022-07-09 21:05:25','','4980','4980','1','retail','0','4980','1','0','0','0','0','0','0','printed',' ','','1','0','121657383910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(94,'','Cash','','2022-07-09 22:00:02','','0','12','2022-07-09 22:00:02','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121657390032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(95,'','Cash','','2022-07-09 22:33:22','','0','12','2022-07-09 22:33:22','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121657393206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(96,'','Cash','','2022-07-09 23:08:09','','0','12','2022-07-09 23:08:09','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121657397261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(97,'','Cash','','2022-07-10 00:00:49','','0','12','2022-07-10 00:00:49','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121657399711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(98,'','Cash','','2022-07-10 02:07:47','','0','12','2022-07-10 02:07:47','','130','130','1','retail','0','130','1','0','0','0','0','0','0','printed',' ','','1','0','121657408045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(99,'','Cash','','2022-07-10 17:12:55','','0','12','2022-07-10 17:12:55','','19500','19500','1','retail','0','19500','1','0','0','0','0','0','0','printed',' ','','1','0','121657459520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(100,'','Cash','','2022-07-10 17:38:19','','0','12','2022-07-10 17:38:19','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121657462428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(101,'','Cash','','2022-07-10 19:21:10','','0','12','2022-07-10 19:21:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657470051','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(102,'','Cash','','2022-07-10 19:59:43','','0','12','2022-07-10 19:59:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657470075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(103,'','Cash','','2022-07-10 20:06:36','','0','12','2022-07-10 20:06:36','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121657472453','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(104,'','Cash','','2022-07-10 20:11:22','','0','12','2022-07-10 20:11:22','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121657472860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(105,'','Cash','','2022-07-10 20:14:46','','0','12','2022-07-10 20:14:46','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121657473129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(106,'','Cash','','2022-07-10 20:21:25','','0','12','2022-07-10 20:21:25','','4570','4570','1','retail','0','4570','1','0','0','0','0','0','0','printed',' ','','1','0','121657473327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(107,'','Cash','','2022-07-10 21:48:08','','0','12','2022-07-10 21:48:08','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121657474366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(108,'','Cash','','2022-07-11 00:37:07','','0','12','2022-07-11 00:37:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657489015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(109,'','Cash','','2022-07-11 16:06:32','','0','12','2022-07-11 16:06:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657543036','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(110,'','Cash','','2022-07-11 16:30:59','','0','12','2022-07-11 16:30:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121657544908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(111,'','Cash','','2022-07-11 17:36:23','','0','12','2022-07-11 17:36:23','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121657546300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(112,'','Cash','','2022-07-11 18:06:01','','0','12','2022-07-11 18:06:01','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657550217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(113,'','Cash','','2022-07-11 18:33:31','','0','12','2022-07-11 18:33:31','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121657552090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(114,'','Cash','','2022-07-11 19:42:41','','0','12','2022-07-11 19:42:41','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121657554031','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(115,'','Cash','','2022-07-11 21:26:53','','0','12','2022-07-11 21:26:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657557866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(116,'','Cash','','2022-07-11 21:43:44','','0','12','2022-07-11 21:43:44','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657564449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(117,'','Cash','','2022-07-11 22:12:24','','0','12','2022-07-11 22:12:24','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121657565104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(118,'','Cash','','2022-07-11 22:37:56','','0','12','2022-07-11 22:37:56','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121657568253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(119,'','Cash','','2022-07-11 23:33:51','','0','12','2022-07-11 23:33:51','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121657570346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(120,'','Cash','','2022-07-11 23:58:45','','0','12','2022-07-11 23:58:45','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121657571859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(121,'','Cash','','2022-07-12 00:44:16','','0','12','2022-07-12 00:44:16','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121657573213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(122,'','Cash','','2022-07-12 13:49:34','','0','12','2022-07-12 13:49:34','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121657622964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(123,'','Cash','','2022-07-12 14:54:54','','0','12','2022-07-12 14:54:54','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657623193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(124,'','Cash','','2022-07-12 16:57:53','','0','12','2022-07-12 16:57:53','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657634268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(125,'','Cash','','2022-07-12 21:13:42','','0','12','2022-07-12 21:13:42','','1220','1220','1','retail','0','1220','1','0','0','0','0','0','0','printed',' ','','1','0','121657649505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(126,'','Cash','','2022-07-12 21:22:26','','0','12','2022-07-12 21:22:26','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121657649850','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(127,'','Cash','','2022-07-12 22:00:32','','0','12','2022-07-12 22:00:32','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657650455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(128,'','Cash','','2022-07-12 22:42:06','','0','12','2022-07-12 22:42:06','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121657653849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(129,'','Cash','','2022-07-12 22:48:22','','0','12','2022-07-12 22:48:22','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121657655030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(130,'','Cash','','2022-07-12 23:04:42','','0','12','2022-07-12 23:04:42','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121657656218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(131,'','Cash','','2022-07-12 23:47:49','','0','12','2022-07-12 23:47:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657656373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(132,'','Cash','','2022-07-13 00:07:08','','0','12','2022-07-13 00:07:08','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','','1','0','121657658981','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(133,'','Cash','','2022-07-13 00:13:44','','0','12','2022-07-13 00:13:44','','2520','2520','1','retail','0','2520','1','0','0','0','0','0','0','printed',' ','','1','0','121657660043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(134,'','Cash','','2022-07-13 13:42:55','','0','12','2022-07-13 13:42:55','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657708281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(135,'','Cash','','2022-07-13 17:11:19','','0','12','2022-07-13 17:11:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657720960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(136,'','Cash','','2022-07-13 18:21:23','','0','12','2022-07-13 18:21:23','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121657725667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(137,'','Cash','','2022-07-13 18:46:03','','0','12','2022-07-13 18:46:04','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657727144','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(138,'','Cash','','2022-07-13 19:00:38','','0','12','2022-07-13 19:00:38','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121657727296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(139,'','Cash','','2022-07-13 19:14:48','','0','12','2022-07-13 19:14:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657728873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(140,'','Cash','','2022-07-13 19:58:45','','0','12','2022-07-13 19:58:45','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121657728902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(141,'','Cash','','2022-07-13 20:13:42','','0','12','2022-07-13 20:13:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657731765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(142,'','Cash','','2022-07-13 20:34:32','','0','12','2022-07-13 20:34:32','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657732515','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(143,'','Cash','','2022-07-13 21:21:42','','0','12','2022-07-13 21:21:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121657733707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(144,'','Cash','','2022-07-13 21:43:08','','0','12','2022-07-13 21:43:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657736571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(145,'','Cash','','2022-07-13 22:11:02','','0','12','2022-07-13 22:11:02','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121657737826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(146,'','Cash','','2022-07-13 22:26:32','','0','12','2022-07-13 22:26:32','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121657739526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(147,'','Cash','','2022-07-13 22:29:05','','0','12','2022-07-13 22:29:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121657740461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(148,'','Cash','','2022-07-13 23:14:54','','0','12','2022-07-13 23:14:54','','1470','1470','1','retail','0','1470','1','0','0','0','0','0','0','printed',' ','','1','0','121657740587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(149,'','Cash','','2022-07-13 23:40:45','','0','12','2022-07-13 23:40:45','','3990','3990','1','retail','0','3990','1','0','0','0','0','0','0','printed',' ','','1','0','121657744232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(150,'','Cash','','2022-07-14 00:55:55','','0','12','2022-07-14 00:55:55','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121657744898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(151,'','Cash','','2022-07-14 13:41:58','','0','12','2022-07-14 13:41:58','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657795312','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(152,'','Cash','','2022-07-14 18:36:29','','0','12','2022-07-14 18:36:29','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121657812924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(153,'','Cash','','2022-07-14 18:56:34','','0','12','2022-07-14 18:56:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657813033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(154,'','Cash','','2022-07-14 19:03:53','','0','12','2022-07-14 19:03:53','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657814236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(155,'','Cash','','2022-07-14 19:34:41','','0','12','2022-07-14 19:34:41','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121657814690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(156,'','Cash','','2022-07-14 20:40:11','','0','12','2022-07-14 20:40:11','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121657820380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(157,'','Cash','','2022-07-14 22:16:34','','0','12','2022-07-14 22:16:34','','1330','1330','1','retail','0','1330','1','0','0','0','0','0','0','printed',' ','','1','0','121657822768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(158,'','Cash','','2022-07-14 23:09:11','','0','12','2022-07-14 23:09:11','','5550','5550','1','retail','0','5550','1','0','0','0','0','0','0','printed',' ','','1','0','121657826221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(159,'','Cash','','2022-07-14 23:25:34','','0','12','2022-07-14 23:25:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121657829430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(160,'','Cash','','2022-07-15 15:15:09','','0','12','2022-07-15 15:15:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657887302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(161,'','Cash','','2022-07-15 18:15:09','','0','12','2022-07-15 18:15:09','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121657898064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(162,'','Cash','','2022-07-15 18:27:11','','0','12','2022-07-15 18:27:11','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121657898145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(163,'','Cash','','2022-07-15 19:50:40','','0','12','2022-07-15 19:50:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657903808','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(164,'','Cash','','2022-07-15 20:55:30','','0','12','2022-07-15 20:55:30','','1660','1660','1','retail','0','1660','1','0','0','0','0','0','0','printed',' ','','1','0','121657903850','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(165,'','Cash','','2022-07-15 22:41:57','','0','12','2022-07-15 22:41:57','','2060','2060','1','retail','0','2060','1','0','0','0','0','0','0','printed',' ','','1','0','121657907975','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(166,'','Cash','','2022-07-15 23:20:37','','0','12','2022-07-15 23:20:37','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657914519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(167,'','Cash','','2022-07-15 23:48:50','','0','12','2022-07-15 23:48:51','','11200','11200','1','retail','0','11200','1','0','0','0','0','0','0','printed',' ','','1','0','121657916622','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(168,'','Cash','','2022-07-16 00:22:20','','0','12','2022-07-16 00:22:20','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121657918430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(169,'','Cash','','2022-07-16 00:24:34','','0','12','2022-07-16 00:24:34','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121657920250','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(170,'','Cash','','2022-07-16 00:28:53','','0','12','2022-07-16 00:28:53','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121657920440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(171,'','Cash','','2022-07-16 00:35:22','','0','12','2022-07-16 00:35:22','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657920622','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(172,'','Cash','','2022-07-16 14:56:05','','0','12','2022-07-16 14:56:05','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121657972543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(173,'','Cash','','2022-07-16 16:22:53','','0','12','2022-07-16 16:22:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121657972591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(174,'','Cash','','2022-07-16 16:54:08','','0','12','2022-07-16 16:54:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121657978423','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(175,'','Cash','','2022-07-16 17:26:36','','0','12','2022-07-16 17:26:36','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121657979696','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(176,'','Cash','','2022-07-16 18:22:52','','0','12','2022-07-16 18:22:52','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121657982062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(177,'','Cash','','2022-07-16 20:08:31','','0','12','2022-07-16 20:08:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121657985547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(178,'','Cash','','2022-07-16 21:22:18','','0','12','2022-07-16 21:22:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121657991328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(179,'','Cash','','2022-07-16 22:16:13','','0','12','2022-07-16 22:16:13','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121657996149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(180,'','Cash','','2022-07-16 22:37:55','','0','12','2022-07-16 22:37:55','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121658000198','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(181,'','Cash','','2022-07-16 22:43:16','','0','12','2022-07-16 22:43:16','','2040','2040','1','retail','0','2040','1','0','0','0','0','0','0','printed',' ','','1','0','121658000360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(182,'','Cash','','2022-07-16 22:48:41','','0','12','2022-07-16 22:48:41','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121658000628','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(183,'','Cash','','2022-07-16 22:50:42','','0','12','2022-07-16 22:50:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658000941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(184,'','Cash','','2022-07-17 01:04:30','','0','12','2022-07-17 01:04:30','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121658008374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(185,'','Cash','','2022-07-17 17:47:16','','0','12','2022-07-17 17:47:16','','1010','1010','1','retail','0','1010','1','0','0','0','0','0','0','printed',' ','','1','0','121658069037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(186,'','Cash','','2022-07-17 21:46:48','','0','12','2022-07-17 21:46:48','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658083603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(187,'','Cash','','2022-07-17 22:37:41','','0','12','2022-07-17 22:37:41','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121658085327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(188,'','Cash','','2022-07-17 22:39:26','','0','12','2022-07-17 22:39:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658086664','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(189,'','Cash','','2022-07-17 22:46:09','','0','12','2022-07-17 22:46:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121658086845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(190,'','Cash','','2022-07-18 13:56:21','','0','12','2022-07-18 13:56:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121658141778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(191,'','Cash','','2022-07-18 14:06:29','','0','12','2022-07-18 14:06:29','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121658142104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(192,'','Cash','','2022-07-18 17:21:29','','0','12','2022-07-18 17:21:29','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658153998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(193,'','Cash','','2022-07-18 19:21:57','','0','12','2022-07-18 19:21:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658158352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(194,'','Cash','','2022-07-18 19:33:25','','0','12','2022-07-18 19:33:25','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121658161368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(195,'','Cash','','2022-07-18 20:17:02','','0','12','2022-07-18 20:17:02','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121658164460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(196,'','Cash','','2022-07-18 22:51:03','','0','12','2022-07-18 22:51:03','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121658173709','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(197,'','Cash','','2022-07-19 11:34:11','','0','12','2022-07-19 11:34:11','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121658219636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(198,'','Cash','','2022-07-19 16:35:20','','0','12','2022-07-19 16:35:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658237699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(199,'','Cash','','2022-07-19 19:55:04','','0','12','2022-07-19 19:55:04','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121658249698','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(200,'','Cash','','2022-07-19 19:57:34','','0','12','2022-07-19 19:57:34','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121658249846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(201,'','Cash','','2022-07-19 20:38:44','','0','12','2022-07-19 20:38:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658249926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(202,'','Cash','','2022-07-19 21:50:58','','0','12','2022-07-19 21:50:58','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658256593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(203,'','Cash','','2022-07-19 22:19:40','','0','12','2022-07-19 22:19:40','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121658256702','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(204,'','Cash','','2022-07-19 22:50:25','','0','12','2022-07-19 22:50:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658258409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(205,'','Cash','','2022-07-19 23:41:28','','0','12','2022-07-19 23:41:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658260259','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(206,'','Cash','','2022-07-20 17:49:59','','0','12','2022-07-20 17:49:59','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658328591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(207,'','Cash','','2022-07-20 20:24:57','','0','12','2022-07-20 20:24:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121658336980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(208,'','Cash','','2022-07-20 21:41:24','','0','12','2022-07-20 21:41:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658338059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(209,'','Cash','','2022-07-20 21:58:26','','0','12','2022-07-20 21:58:26','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121658342543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(210,'','Cash','','2022-07-20 22:00:26','','0','12','2022-07-20 22:00:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658343577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(211,'','Cash','','2022-07-20 22:01:53','','0','12','2022-07-20 22:01:53','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121658343638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(212,'','Cash','','2022-07-20 22:17:00','','0','12','2022-07-20 22:17:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121658343772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(213,'','Cash','','2022-07-20 22:33:28','','0','12','2022-07-20 22:33:28','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121658344684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(214,'','Cash','','2022-07-20 22:56:43','','0','12','2022-07-20 22:56:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658345649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(215,'','Cash','','2022-07-20 23:16:12','','0','12','2022-07-20 23:16:12','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121658347190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(216,'','Cash','','2022-07-20 23:22:54','','0','12','2022-07-20 23:22:54','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121658348412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(217,'','Cash','','2022-07-21 14:35:38','','0','12','2022-07-21 14:35:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658403330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(218,'','Cash','','2022-07-21 15:07:43','','0','12','2022-07-21 15:07:43','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121658403383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(219,'','Cash','','2022-07-21 18:50:44','','0','12','2022-07-21 17:36:12','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121658414168','Cleared','12','2022-07-21 18:50:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(220,'','Cash','','2022-07-21 19:34:09','','0','12','2022-07-21 19:14:07','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121658419694','Cleared','12','2022-07-21 19:34:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(221,'','Cash','','2022-07-21 20:42:55','','0','12','2022-07-21 20:42:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658421402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(222,'','Cash','','2022-07-22 12:04:44','','0','12','2022-07-22 12:04:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658480654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(223,'','Cash','','2022-07-22 15:05:40','','0','12','2022-07-22 15:05:40','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658488527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(224,'','Cash','','2022-07-22 16:36:22','','0','12','2022-07-22 16:36:22','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121658494707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(225,'','Cash','','2022-07-22 17:27:36','','0','12','2022-07-22 17:27:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121658497047','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(226,'','Cash','','2022-07-22 19:06:56','','0','12','2022-07-22 19:06:56','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121658500098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(227,'','Cash','','2022-07-22 19:11:23','','0','12','2022-07-22 19:11:23','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658506256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(228,'','Cash','','2022-07-22 20:12:29','','0','12','2022-07-22 20:12:29','','17000','17000','1','retail','0','17000','1','0','0','0','0','0','0','printed',' ','','1','0','121658509884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(229,'','Cash','','2022-07-22 20:14:58','','0','12','2022-07-22 20:14:58','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121658510027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(230,'','Cash','','2022-07-22 21:15:21','','0','12','2022-07-22 21:15:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658510103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(231,'','Cash','','2022-07-22 23:14:25','','0','12','2022-07-22 22:01:35','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121658513781','Cleared','12','2022-07-22 23:14:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(232,'','Cash','','2022-07-22 23:20:15','','0','12','2022-07-22 23:20:15','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121658521197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(233,'','Cash','','2022-07-22 23:26:41','','0','12','2022-07-22 23:26:41','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121658521569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(234,'','Cash','','2022-07-22 23:41:26','','0','12','2022-07-22 23:41:26','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121658521771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(235,'','Cash','','2022-07-22 23:53:02','','0','12','2022-07-22 23:53:02','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121658522527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(236,'','Cash','','2022-07-22 23:54:47','','0','12','2022-07-22 23:54:47','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121658523248','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(237,'','Cash','','2022-07-23 12:41:00','','0','12','2022-07-23 12:41:00','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121658569256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(238,'','Cash','','2022-07-23 12:59:28','','0','12','2022-07-23 12:59:28','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121658569323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(239,'','Cash','','2022-07-23 13:18:41','','0','12','2022-07-23 13:18:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658570400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(240,'','Cash','','2022-07-23 16:00:05','','0','12','2022-07-23 16:00:05','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121658581196','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(241,'','Cash','','2022-07-23 16:04:39','','0','12','2022-07-23 16:04:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658581282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(242,'','Cash','','2022-07-23 16:33:52','','0','12','2022-07-23 16:33:52','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121658581565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(243,'','Cash','','2022-07-23 18:40:50','','0','12','2022-07-23 17:07:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658585267','Cleared','12','2022-07-23 18:40:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(244,'','Cash','','2022-07-23 18:02:47','','0','12','2022-07-23 18:02:47','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121658585359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(245,'','Cash','','2022-07-23 19:41:30','','0','12','2022-07-23 19:41:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658591115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(246,'','Cash','','2022-07-23 19:49:42','','0','12','2022-07-23 19:49:42','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658594603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(247,'','Cash','','2022-07-23 19:59:42','','0','12','2022-07-23 19:59:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658595094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(248,'','Cash','','2022-07-23 20:15:25','','0','12','2022-07-23 20:15:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658595702','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(249,'','Cash','','2022-07-23 21:14:49','','0','12','2022-07-23 21:14:49','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121658600004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(250,'','Cash','','2022-07-23 21:50:06','','0','12','2022-07-23 21:50:06','','4130','4130','1','retail','0','4130','1','0','0','0','0','0','0','printed',' ','','1','0','121658601989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(251,'','Cash','','2022-07-23 22:00:46','','0','12','2022-07-23 22:00:46','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121658602339','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(252,'','Cash','','2022-07-23 22:02:33','','0','12','2022-07-23 22:02:33','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121658602925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(253,'','Cash','','2022-07-23 22:06:47','','0','12','2022-07-23 22:06:47','','3840','3840','1','retail','0','3840','1','0','0','0','0','0','0','printed',' ','','1','0','121658602967','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(254,'','Cash','','2022-07-23 22:16:42','','0','12','2022-07-23 22:16:42','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121658603787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(255,'','Cash','','2022-07-23 22:51:11','','0','12','2022-07-23 22:51:11','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121658603891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(256,'','Cash','','2022-07-24 00:17:57','','0','12','2022-07-24 00:17:57','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121658610976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(257,'','Cash','','2022-07-24 14:12:40','','0','12','2022-07-24 14:12:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658661148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(258,'','Cash','','2022-07-24 16:25:29','','0','12','2022-07-24 16:25:29','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121658667313','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(259,'','Cash','','2022-07-24 16:46:51','','0','12','2022-07-24 16:46:51','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121658669136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(260,'','Cash','','2022-07-24 17:26:02','','0','12','2022-07-24 17:26:02','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121658670424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(261,'','Cash','','2022-07-24 17:55:56','','0','12','2022-07-24 17:55:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658672889','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(262,'','Cash','','2022-07-24 18:30:32','','0','12','2022-07-24 18:30:32','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121658674620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(263,'','Cash','','2022-07-24 20:23:12','','0','12','2022-07-24 20:23:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658683381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(264,'','Cash','','2022-07-24 21:08:07','','0','12','2022-07-24 21:08:07','','2140','2140','1','retail','0','2140','1','0','0','0','0','0','0','printed',' ','','1','0','121658683499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(265,'','Cash','','2022-07-24 21:12:31','','0','12','2022-07-24 21:12:31','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121658686091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(266,'','Cash','','2022-07-24 21:18:56','','0','12','2022-07-24 21:18:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121658686354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(267,'','Cash','','2022-07-24 22:13:17','','0','12','2022-07-24 22:13:17','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121658686748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(268,'','Cash','','2022-07-24 22:23:31','','0','12','2022-07-24 22:23:31','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121658690118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(269,'','Cash','','2022-07-24 22:27:55','','0','12','2022-07-24 22:27:55','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121658690680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(270,'','Cash','','2022-07-24 22:30:45','','0','12','2022-07-24 22:30:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658690879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(271,'','Cash','','2022-07-24 22:46:35','','0','12','2022-07-24 22:46:35','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','','1','0','121658691068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(272,'','Cash','','2022-07-24 23:04:48','','0','12','2022-07-24 23:04:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658692081','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(273,'','Cash','','2022-07-24 23:16:54','','0','12','2022-07-24 23:16:55','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121658693218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(274,'','Cash','','2022-07-24 23:30:18','','0','12','2022-07-24 23:30:18','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121658693826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(275,'','Cash','','2022-07-25 11:22:03','','0','12','2022-07-25 11:22:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658736882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(276,'','Cash','','2022-07-25 16:09:23','','0','12','2022-07-25 16:09:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658754544','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(277,'','Cash','','2022-07-25 18:26:14','','0','12','2022-07-25 17:32:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658756022','Cleared','12','2022-07-25 18:26:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(278,'','Cash','','2022-07-25 20:21:21','','0','12','2022-07-25 20:21:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658769148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(279,'','Cash','','2022-07-25 21:26:06','','0','12','2022-07-25 21:26:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658769763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(280,'','Cash','','2022-07-25 22:10:52','','0','12','2022-07-25 22:10:52','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121658774045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(281,'','Cash','','2022-07-25 22:15:21','','0','12','2022-07-25 22:15:21','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121658776353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(282,'','Cash','','2022-07-26 11:32:02','','0','12','2022-07-26 11:32:02','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121658824316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(283,'','Cash','','2022-07-26 15:48:06','','0','12','2022-07-26 15:48:06','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121658836957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(284,'','Cash','','2022-07-26 19:21:26','','0','12','2022-07-26 17:37:40','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121658846227','Cleared','12','2022-07-26 19:21:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(285,'','Cash','','2022-07-26 19:24:41','','0','12','2022-07-26 19:24:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658852538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(286,'','Cash','','2022-07-26 21:13:22','','0','12','2022-07-26 21:13:22','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121658852685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(287,'','Cash','','2022-07-26 21:15:17','','0','12','2022-07-26 21:15:17','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121658859237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(288,'','Cash','','2022-07-26 21:20:26','','0','12','2022-07-26 21:20:26','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658859621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(289,'','Cash','','2022-07-26 21:43:31','','0','12','2022-07-26 21:21:59','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121658859699','Cleared','12','2022-07-26 21:43:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(290,'','Cash','','2022-07-26 22:47:36','','0','12','2022-07-26 22:47:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121658861252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(291,'','Cash','','2022-07-26 23:23:19','','0','12','2022-07-26 23:23:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121658864875','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(292,'','Cash','','2022-07-26 23:48:17','','0','12','2022-07-26 23:48:17','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121658867139','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(293,'','Cash','','2022-07-26 23:56:54','','0','12','2022-07-26 23:56:54','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658868546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(294,'','Cash','','2022-07-27 13:03:01','','0','12','2022-07-27 13:03:01','','5350','5350','1','retail','0','5350','1','0','0','0','0','0','0','printed',' ','','1','0','121658916118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(295,'','Cash','','2022-07-27 14:12:13','','0','12','2022-07-27 14:12:13','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121658916321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(296,'','Cash','','2022-07-27 14:16:50','','0','12','2022-07-27 14:16:50','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121658920529','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(297,'','Cash','','2022-07-27 19:17:32','','0','12','2022-07-27 19:17:32','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121658938569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(298,'','Cash','','2022-07-27 19:19:26','','0','12','2022-07-27 19:19:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121658938761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(299,'','Cash','','2022-07-27 19:25:15','','0','12','2022-07-27 19:25:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121658938541','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(300,'','Cash','','2022-07-27 20:22:18','','0','12','2022-07-27 20:22:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121658939123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(301,'','Cash','','2022-07-27 23:21:17','','0','12','2022-07-27 23:21:17','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121658948230','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(302,'','Cash','','2022-07-28 00:05:46','','0','12','2022-07-28 00:05:46','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121658953377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(303,'','Cash','','2022-07-28 12:21:12','','0','12','2022-07-28 12:21:12','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121658996523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(304,'','Cash','','2022-07-28 14:47:12','','0','12','2022-07-28 14:47:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659008817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(305,'','Cash','','2022-07-28 15:08:27','','0','12','2022-07-28 15:08:27','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121659010081','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(306,'','Cash','','2022-07-28 17:01:41','','0','12','2022-07-28 17:01:41','','6100','6100','1','retail','0','6100','1','0','0','0','0','0','0','printed',' ','','1','0','121659016829','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(307,'','Cash','','2022-07-28 18:08:38','','0','12','2022-07-28 18:08:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659017996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(308,'','Cash','','2022-07-28 18:18:06','','0','12','2022-07-28 18:18:06','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121659021079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(309,'','Cash','','2022-07-28 18:22:15','','0','12','2022-07-28 18:22:15','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121659021577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(310,'','Cash','','2022-07-28 18:53:28','','0','12','2022-07-28 18:53:28','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121659021857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(311,'','Cash','','2022-07-28 19:23:17','','0','12','2022-07-28 19:23:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659023983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(312,'','Cash','','2022-07-28 19:52:26','','0','12','2022-07-28 19:52:26','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121659027134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(313,'','Cash','','2022-07-28 21:08:20','','0','12','2022-07-28 21:08:20','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121659027229','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(314,'','Cash','','2022-07-28 21:41:08','','0','12','2022-07-28 21:41:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659031765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(315,'','Cash','','2022-07-28 21:56:29','','0','12','2022-07-28 21:56:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659033782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(316,'','Cash','','2022-07-28 23:02:00','','0','12','2022-07-28 23:02:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659038437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(317,'','Cash','','2022-07-28 23:09:27','','0','12','2022-07-28 23:09:27','','7640','7640','1','retail','0','7640','1','0','0','0','0','0','0','printed',' ','','1','0','121659038613','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(318,'','Cash','','2022-07-28 23:36:55','','0','12','2022-07-28 23:36:55','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121659040516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(319,'','Cash','','2022-07-29 13:32:36','','0','12','2022-07-29 13:32:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659090718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(320,'','Cash','','2022-07-29 14:41:28','','0','12','2022-07-29 14:41:28','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121659094444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(321,'','Cash','','2022-07-29 16:07:09','','0','12','2022-07-29 16:07:09','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659099668','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(322,'','Cash','','2022-07-29 17:15:43','','0','12','2022-07-29 17:15:43','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121659103298','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(323,'','Cash','','2022-07-29 18:02:05','','0','12','2022-07-29 18:02:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659104369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(324,'','Cash','','2022-07-29 18:15:48','','0','12','2022-07-29 18:15:48','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659107670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(325,'','Cash','','2022-07-29 20:49:41','','0','12','2022-07-29 20:49:41','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121659116369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(326,'','Cash','','2022-07-29 20:57:53','','0','12','2022-07-29 20:57:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659117064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(327,'','Cash','','2022-07-29 21:29:41','','0','12','2022-07-29 21:29:41','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121659117728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(328,'','Cash','','2022-07-29 21:57:46','','0','12','2022-07-29 21:57:46','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659119628','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(329,'','Cash','','2022-07-29 22:06:14','','0','12','2022-07-29 22:06:14','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121659121138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(330,'','Cash','','2022-07-29 22:10:48','','0','12','2022-07-29 22:10:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659121835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(331,'','Cash','','2022-07-29 22:59:36','','0','12','2022-07-29 22:59:36','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121659124567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(332,'','Cash','','2022-07-29 23:37:13','','0','12','2022-07-29 23:37:13','','2780','2780','1','retail','0','2780','1','0','0','0','0','0','0','printed',' ','','1','0','121659124882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(333,'','Cash','','2022-07-30 00:15:18','','0','12','2022-07-30 00:15:18','','1010','1010','1','retail','0','1010','1','0','0','0','0','0','0','printed',' ','','1','0','121659127104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(334,'','Cash','','2022-07-30 00:54:20','','0','12','2022-07-30 00:54:20','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121659129563','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(335,'','Cash','','2022-07-30 01:14:09','','0','12','2022-07-30 01:14:09','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659131791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(336,'','Cash','','2022-07-30 01:31:55','','0','12','2022-07-30 01:21:58','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121659132912','Cleared','12','2022-07-30 01:31:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(337,'','Cash','','2022-07-30 15:52:08','','0','12','2022-07-30 15:52:08','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121659179709','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(338,'','Cash','','2022-07-30 15:59:10','','0','12','2022-07-30 15:59:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659185802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(339,'','Cash','','2022-07-30 16:09:10','','0','12','2022-07-30 16:09:10','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121659186318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(340,'','Cash','','2022-07-30 16:19:43','','0','12','2022-07-30 16:19:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659186650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(341,'','Cash','','2022-07-30 17:23:12','','0','12','2022-07-30 17:23:12','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121659187267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(342,'','Cash','','2022-07-30 18:27:30','','0','12','2022-07-30 18:27:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659191147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(343,'','Cash','','2022-07-30 19:28:02','','0','12','2022-07-30 19:28:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659198447','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(344,'','Cash','','2022-07-30 20:02:39','','0','12','2022-07-30 20:02:39','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121659200388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(345,'','Cash','','2022-07-30 21:04:02','','0','12','2022-07-30 21:04:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659200653','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(346,'','Cash','','2022-07-30 22:21:30','','0','12','2022-07-30 22:21:30','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121659208883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(347,'','Cash','','2022-07-30 22:24:48','','0','12','2022-07-30 22:24:48','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121659209051','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(348,'','Cash','','2022-07-30 22:29:17','','0','12','2022-07-30 22:29:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659209252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(349,'','Cash','','2022-07-30 22:39:14','','0','12','2022-07-30 22:39:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659209916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(350,'','Cash','','2022-07-30 22:50:31','','0','12','2022-07-30 22:50:31','','4360','4360','1','retail','0','4360','1','0','0','0','0','0','0','printed',' ','','1','0','121659209961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(351,'','Cash','','2022-07-30 23:36:34','','0','12','2022-07-30 23:36:34','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121659210690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(352,'','Cash','','2022-07-30 23:39:10','','0','12','2022-07-30 23:39:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659213437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(353,'','Cash','','2022-07-31 00:03:05','','0','12','2022-07-31 00:03:05','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121659214860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(354,'','Cash','','2022-07-31 00:18:24','','0','12','2022-07-31 00:18:24','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659215117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(355,'','Cash','','2022-07-31 00:49:49','','0','12','2022-07-31 00:49:49','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659215919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(356,'','Cash','','2022-07-31 00:57:36','','0','12','2022-07-31 00:57:36','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121659217896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(357,'','Cash','','2022-07-31 01:07:19','','0','12','2022-07-31 01:07:19','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121659218317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(358,'','Cash','','2022-07-31 13:53:33','','0','12','2022-07-31 13:53:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659258869','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(359,'','Cash','','2022-07-31 13:55:31','','0','12','2022-07-31 13:55:31','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659264884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(360,'','Cash','','2022-07-31 18:22:49','','0','12','2022-07-31 18:22:49','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121659278222','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(361,'','Cash','','2022-07-31 19:08:55','','0','12','2022-07-31 19:08:55','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121659280975','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(362,'','Cash','','2022-07-31 19:38:37','','0','12','2022-07-31 19:38:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659283837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(363,'','Cash','','2022-07-31 20:27:54','','0','12','2022-07-31 20:27:54','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121659285643','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(364,'','Cash','','2022-07-31 21:15:05','','0','12','2022-07-31 21:15:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659288582','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(365,'','Cash','','2022-07-31 21:40:20','','0','12','2022-07-31 21:40:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659291380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(366,'','Cash','','2022-07-31 22:52:51','','0','12','2022-07-31 22:52:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659292859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(367,'','Cash','','2022-07-31 23:13:16','','0','12','2022-07-31 23:13:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659298390','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(368,'','Cash','','2022-08-01 13:00:16','','0','12','2022-08-01 13:00:16','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659345633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(369,'','Cash','','2022-08-01 16:39:28','','0','12','2022-08-01 16:39:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659361161','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(370,'','Cash','','2022-08-01 18:36:29','','0','12','2022-08-01 18:36:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659361291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(371,'','Cash','','2022-08-01 20:11:05','','0','12','2022-08-01 20:11:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659373701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(372,'','Cash','','2022-08-01 22:02:27','','0','12','2022-08-01 22:02:27','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659380533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(373,'','Cash','','2022-08-01 22:06:50','','0','12','2022-08-01 22:06:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659380550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(374,'','Cash','','2022-08-01 22:07:40','','0','12','2022-08-01 22:07:40','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121659380846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(375,'','Cash','','2022-08-01 22:14:42','','0','12','2022-08-01 22:14:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659380911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(376,'','Cash','','2022-08-01 22:24:25','','0','12','2022-08-01 22:24:25','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659381684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(377,'','Cash','','2022-08-01 22:48:20','','0','12','2022-08-01 22:48:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659381873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(378,'','Cash','','2022-08-01 22:49:19','','0','12','2022-08-01 22:49:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659383316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(379,'','Cash','','2022-08-01 23:31:44','','0','12','2022-08-01 23:31:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659383467','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(380,'','Cash','','2022-08-01 23:43:11','','0','12','2022-08-01 23:43:11','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121659385970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(381,'','Cash','','2022-08-02 00:02:39','','0','12','2022-08-02 00:02:39','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659386693','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(382,'','Cash','','2022-08-02 18:37:23','','0','12','2022-08-02 18:37:23','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659451926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(383,'','Cash','','2022-08-02 19:06:19','','0','12','2022-08-02 19:06:19','','6250','6250','1','retail','0','6250','1','0','0','0','0','0','0','printed',' ','','1','0','121659456352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(384,'','Cash','','2022-08-02 19:50:53','','0','12','2022-08-02 19:50:53','','14800','14800','1','retail','0','14800','1','0','0','0','0','0','0','printed',' ','','1','0','121659456476','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(385,'','Cash','','2022-08-02 19:53:59','','0','12','2022-08-02 19:53:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659459159','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(386,'','Cash','','2022-08-02 20:42:03','','0','12','2022-08-02 20:42:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659459323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(387,'','Cash','','2022-08-02 21:38:04','','0','12','2022-08-02 21:38:04','','5140','5140','1','retail','0','5140','1','0','0','0','0','0','0','printed',' ','','1','0','121659462252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(388,'','Cash','','2022-08-02 21:50:54','','0','12','2022-08-02 21:50:54','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659465708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(389,'','Cash','','2022-08-02 21:53:47','','0','12','2022-08-02 21:53:47','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659466307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(390,'','Cash','','2022-08-02 22:20:40','','0','12','2022-08-02 22:20:40','','3020','3020','1','retail','0','3020','1','0','0','0','0','0','0','printed',' ','','1','0','121659466433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(391,'','Cash','','2022-08-02 22:24:23','','0','12','2022-08-02 22:24:23','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121659468143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(392,'','Cash','','2022-08-02 22:27:00','','0','12','2022-08-02 22:27:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121659468363','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(393,'','Cash','','2022-08-02 22:34:05','','0','12','2022-08-02 22:34:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659468718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(394,'','Cash','','2022-08-02 23:02:19','','0','12','2022-08-02 23:02:19','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121659468859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(395,'','Cash','','2022-08-02 23:06:09','','0','12','2022-08-02 23:06:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659470554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(396,'','Cash','','2022-08-02 23:16:39','','0','12','2022-08-02 23:16:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659471395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(397,'','Cash','','2022-08-02 23:18:46','','0','12','2022-08-02 23:18:46','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121659471519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(398,'','Cash','','2022-08-02 23:28:14','','0','12','2022-08-02 23:28:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659471561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(399,'','Cash','','2022-08-02 23:41:41','','0','12','2022-08-02 23:41:41','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121659472227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(400,'','Cash','','2022-08-02 23:42:26','','0','12','2022-08-02 23:42:26','','4900','4900','1','retail','0','4900','1','0','0','0','0','0','0','printed',' ','','1','0','121659472904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(401,'','Cash','','2022-08-03 00:04:05','','0','12','2022-08-03 00:04:05','','2260','2260','1','retail','0','2260','1','0','0','0','0','0','0','printed',' ','','1','0','121659474216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(402,'','Cash','','2022-08-03 00:05:10','','0','12','2022-08-03 00:05:10','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121659474296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(403,'','Cash','','2022-08-03 00:08:24','','0','12','2022-08-03 00:08:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659474330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(404,'','Cash','','2022-08-03 00:09:00','','0','12','2022-08-03 00:09:00','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659474516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(405,'','Cash','','2022-08-03 19:51:24','','0','12','2022-08-03 19:51:24','','1790','1790','1','retail','0','1790','1','0','0','0','0','0','0','printed',' ','','1','0','121659539843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(406,'','Cash','','2022-08-03 19:54:22','','0','12','2022-08-03 19:54:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659545530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(407,'','Cash','','2022-08-03 20:18:13','','0','12','2022-08-03 20:18:13','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121659545691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(408,'','Cash','','2022-08-03 21:00:15','','0','12','2022-08-03 21:00:15','','3350','3350','1','retail','0','3350','1','0','0','0','0','0','0','printed',' ','','1','0','121659547103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(409,'','Cash','','2022-08-03 21:41:54','','0','12','2022-08-03 21:41:54','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121659549811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(410,'','Cash','','2022-08-03 22:08:11','','0','12','2022-08-03 22:08:11','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121659553680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(411,'','Cash','','2022-08-03 22:17:49','','0','12','2022-08-03 22:17:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659553981','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(412,'','Cash','','2022-08-03 22:53:52','','0','12','2022-08-03 22:53:52','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121659554458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(413,'','Cash','','2022-08-04 00:15:24','','0','12','2022-08-04 00:15:24','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121659557689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(414,'','Cash','','2022-08-04 21:19:38','','0','12','2022-08-04 21:19:38','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121659636933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(415,'','Cash','','2022-08-04 21:20:12','','0','12','2022-08-04 21:20:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659637192','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(416,'','Cash','','2022-08-04 21:22:15','','0','12','2022-08-04 21:22:15','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121659637216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(417,'','Cash','','2022-08-04 21:46:14','','0','12','2022-08-04 21:46:14','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121659637348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(418,'','Cash','','2022-08-04 22:10:22','','0','12','2022-08-04 22:10:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659638778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(419,'','Cash','','2022-08-04 22:11:25','','0','12','2022-08-04 22:11:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659640261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(420,'','Cash','','2022-08-04 22:13:07','','0','12','2022-08-04 22:13:07','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121659640309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(421,'','Cash','','2022-08-04 23:08:22','','0','12','2022-08-04 23:08:22','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121659640583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(422,'','Cash','','2022-08-04 23:14:45','','0','12','2022-08-04 23:14:45','','2240','2240','1','retail','0','2240','1','0','0','0','0','0','0','printed',' ','','1','0','121659643736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(423,'','Cash','','2022-08-04 23:35:00','','0','12','2022-08-04 23:35:00','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121659645260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(424,'','Cash','','2022-08-04 23:36:42','','0','12','2022-08-04 23:36:42','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121659645384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(425,'','Cash','','2022-08-04 23:51:21','','0','12','2022-08-04 23:51:21','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121659645968','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(426,'','Cash','','2022-08-05 00:20:07','','0','12','2022-08-05 00:20:07','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121659647327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(427,'','Cash','','2022-08-05 00:48:30','','0','12','2022-08-05 00:48:30','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121659648050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(428,'','Cash','','2022-08-05 00:58:17','','0','12','2022-08-05 00:58:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659650288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(429,'','Cash','','2022-08-05 00:59:41','','0','12','2022-08-05 00:59:41','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659650323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(430,'','Cash','','2022-08-05 01:03:30','','0','12','2022-08-05 01:03:30','','170','170','1','retail','0','170','1','0','0','0','0','0','0','printed',' ','','1','0','121659650384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(431,'','Cash','','2022-08-05 01:20:59','','0','12','2022-08-05 01:20:59','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121659650746','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(432,'','Cash','','2022-08-05 18:41:10','','0','12','2022-08-05 18:41:10','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121659644710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(433,'','Cash','','2022-08-05 18:42:30','','0','12','2022-08-05 18:42:30','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659714082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(434,'','Cash','','2022-08-05 19:22:42','','0','12','2022-08-05 19:22:42','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659714195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(435,'','Cash','','2022-08-05 21:09:16','','0','12','2022-08-05 21:09:16','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121659716569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(436,'','Cash','','2022-08-05 21:29:01','','0','12','2022-08-05 21:29:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659722969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(437,'','Cash','','2022-08-05 22:22:04','','0','12','2022-08-05 22:22:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659724197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(438,'','Cash','','2022-08-05 23:13:04','','0','12','2022-08-05 23:13:05','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121659730284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(439,'','Cash','','2022-08-05 23:46:36','','0','12','2022-08-05 23:46:36','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121659730398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(440,'','Cash','','2022-08-06 00:07:56','','0','12','2022-08-06 00:07:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659732509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(441,'','Cash','','2022-08-06 01:00:42','','0','12','2022-08-06 01:00:42','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121659733755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(442,'','Cash','','2022-08-06 02:20:04','','0','12','2022-08-06 02:20:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659736917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(443,'','Cash','','2022-08-06 03:10:12','','0','12','2022-08-06 03:10:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659744570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(444,'','Cash','','2022-08-06 03:18:40','','0','12','2022-08-06 03:18:40','','6580','6580','1','retail','0','6580','1','0','0','0','0','0','0','printed',' ','','1','0','121659744736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(445,'','Cash','','2022-08-06 03:32:26','','0','12','2022-08-06 03:32:26','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121659745177','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(446,'','Cash','','2022-08-06 03:36:31','','0','12','2022-08-06 03:36:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121659746059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(447,'','Cash','','2022-08-06 03:37:04','','0','12','2022-08-06 03:37:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659746194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(448,'','Cash','','2022-08-06 03:39:28','','0','12','2022-08-06 03:39:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659746356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(449,'','Cash','','2022-08-06 14:32:12','','0','12','2022-08-06 14:32:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121659780409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(450,'','Cash','','2022-08-06 14:53:50','','0','12','2022-08-06 14:53:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659785689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(451,'','Cash','','2022-08-06 15:17:15','','0','12','2022-08-06 15:17:15','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121659786921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(452,'','Cash','','2022-08-06 19:46:53','','0','12','2022-08-06 19:46:53','','5980','5980','1','retail','0','5980','1','0','0','0','0','0','0','printed',' ','','1','0','121659803114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(453,'','Cash','','2022-08-06 20:38:30','','0','12','2022-08-06 20:38:30','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121659804495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(454,'','Cash','','2022-08-06 21:12:53','','0','12','2022-08-06 21:12:53','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121659808054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(455,'','Cash','','2022-08-06 21:19:56','','0','12','2022-08-06 21:19:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659809592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(456,'','Cash','','2022-08-06 22:28:59','','0','12','2022-08-06 22:28:59','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121659810002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(457,'','Cash','','2022-08-06 22:58:04','','0','12','2022-08-06 22:58:04','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121659815789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(458,'','Cash','','2022-08-06 23:08:56','','0','12','2022-08-06 23:08:56','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121659815892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(459,'','Cash','','2022-08-06 23:26:10','','0','12','2022-08-06 23:26:10','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659816551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(460,'','Cash','','2022-08-06 23:30:33','','0','12','2022-08-06 23:30:33','','2060','2060','1','retail','0','2060','1','0','0','0','0','0','0','printed',' ','','1','0','121659817580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(461,'','Cash','','2022-08-07 00:02:30','','0','12','2022-08-07 00:02:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659817902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(462,'','Cash','','2022-08-07 00:27:06','','0','12','2022-08-07 00:27:06','','9320','9320','1','retail','0','9320','1','0','0','0','0','0','0','printed',' ','','1','0','121659819836','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(463,'','Cash','','2022-08-07 00:31:01','','0','12','2022-08-07 00:31:01','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121659821239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(464,'','Cash','','2022-08-07 00:33:16','','0','12','2022-08-07 00:33:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659821479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(465,'','Cash','','2022-08-07 00:59:29','','0','12','2022-08-07 00:59:29','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121659822203','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(466,'','Cash','','2022-08-07 01:54:58','','0','12','2022-08-07 01:54:58','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121659823176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(467,'','Cash','','2022-08-07 14:48:10','','0','12','2022-08-07 14:48:10','','3770','3770','1','retail','0','3770','1','0','0','0','0','0','0','printed',' ','','1','0','121659872346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(468,'','Cash','','2022-08-07 17:53:01','','0','12','2022-08-07 17:53:01','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121659877426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(469,'','Cash','','2022-08-07 18:30:56','','0','12','2022-08-07 18:30:56','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121659885659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(470,'','Cash','','2022-08-07 18:59:06','','0','12','2022-08-07 18:59:06','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121659886339','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(471,'','Cash','','2022-08-07 19:57:38','','0','12','2022-08-07 19:57:38','','5000','5000','1','retail','0','5000','1','0','0','0','0','0','0','printed',' ','','1','0','121659891446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(472,'','Cash','','2022-08-07 20:18:55','','0','12','2022-08-07 20:18:55','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121659891902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(473,'','Cash','','2022-08-07 20:26:44','','0','12','2022-08-07 20:26:44','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121659892907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(474,'','Cash','','2022-08-07 21:04:26','','0','12','2022-08-07 21:04:26','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121659894656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(475,'','Cash','','2022-08-07 21:12:14','','0','12','2022-08-07 21:12:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659895610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(476,'','Cash','','2022-08-07 21:43:36','','0','12','2022-08-07 21:43:36','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121659896451','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(477,'','Cash','','2022-08-07 21:51:53','','0','12','2022-08-07 21:51:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659897951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(478,'','Cash','','2022-08-07 22:10:52','','0','12','2022-08-07 22:10:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659899437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(479,'','Cash','','2022-08-07 23:20:57','','0','12','2022-08-07 23:20:57','','1530','1530','1','retail','0','1530','1','0','0','0','0','0','0','printed',' ','','1','0','121659901071','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(480,'','Cash','','2022-08-07 23:22:21','','0','12','2022-08-07 23:22:21','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659903722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(481,'','Cash','','2022-08-07 23:51:48','','0','12','2022-08-07 23:51:48','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121659903745','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(482,'','Cash','','2022-08-08 00:00:22','','0','12','2022-08-08 00:00:22','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121659905514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(483,'','Cash','','2022-08-08 00:15:57','','0','12','2022-08-08 00:15:57','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121659906845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(484,'','Cash','','2022-08-08 00:18:41','','0','12','2022-08-08 00:18:41','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121659907089','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(485,'','Cash','','2022-08-08 17:01:53','','0','12','2022-08-08 17:01:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121659966731','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(486,'','Cash','','2022-08-08 17:04:53','','0','12','2022-08-08 17:04:53','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121659967318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(487,'','Cash','','2022-08-08 17:27:36','','0','12','2022-08-08 17:27:36','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121659968043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(488,'','Cash','','2022-08-08 18:42:11','','0','12','2022-08-08 18:42:11','','6720','6720','1','retail','0','6720','1','0','0','0','0','0','0','printed',' ','','1','0','121659969337','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(489,'','Cash','','2022-08-08 18:46:39','','0','12','2022-08-08 18:46:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121659973386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(490,'','Cash','','2022-08-08 19:20:51','','0','12','2022-08-08 19:20:51','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121659973668','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(491,'','Cash','','2022-08-08 21:21:59','','0','12','2022-08-08 21:21:59','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121659982916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(492,'','Cash','','2022-08-08 21:51:08','','0','12','2022-08-08 21:51:08','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121659982929','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(493,'','Cash','','2022-08-10 13:32:14','','0','12','2022-08-10 13:32:14','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121660127505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(494,'','Cash','','2022-08-10 18:36:59','','0','12','2022-08-10 18:36:59','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121660138057','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(495,'','Cash','','2022-08-10 19:09:43','','0','12','2022-08-10 19:09:43','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660145894','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(496,'','Cash','','2022-08-10 21:11:32','','0','12','2022-08-10 21:11:32','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121660154976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(497,'','Cash','','2022-08-10 21:22:26','','0','12','2022-08-10 21:22:26','','2420','2420','1','retail','0','2420','1','0','0','0','0','0','0','printed',' ','','1','0','121660155102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(498,'','Cash','','2022-08-10 21:22:47','','0','12','2022-08-10 21:22:47','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121660155755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(499,'','Cash','','2022-08-10 21:23:58','','0','12','2022-08-10 21:23:58','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121660155818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(500,'','Cash','','2022-08-10 21:58:08','','0','12','2022-08-10 21:58:08','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660155848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(501,'','Cash','','2022-08-10 22:05:31','','0','12','2022-08-10 22:05:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660158006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(502,'','Cash','','2022-08-10 22:48:30','','0','12','2022-08-10 22:48:30','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121660158360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(503,'','Cash','','2022-08-10 23:01:04','','0','12','2022-08-10 23:01:04','','4870','4870','1','retail','0','4870','1','0','0','0','0','0','0','printed',' ','','1','0','121660161027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(504,'','Cash','','2022-08-10 23:08:05','','0','12','2022-08-10 23:08:05','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121660162069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(505,'','Cash','','2022-08-11 17:53:58','','0','12','2022-08-11 17:53:58','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121660229587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(506,'','Cash','','2022-08-11 18:11:08','','0','12','2022-08-11 18:11:08','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121660229734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(507,'','Cash','','2022-08-11 19:11:32','','0','12','2022-08-11 19:11:32','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660230774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(508,'','Cash','','2022-08-11 19:12:39','','0','12','2022-08-11 19:12:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121660234333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(509,'','Cash','','2022-08-11 20:25:21','','0','12','2022-08-11 20:25:21','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121660234416','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(510,'','Cash','','2022-08-11 22:27:35','','0','12','2022-08-11 22:27:35','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121660246010','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(511,'','Cash','','2022-08-11 22:28:06','','0','12','2022-08-11 22:28:06','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121660246061','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(512,'','Cash','','2022-08-11 22:33:33','','0','12','2022-08-11 22:33:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121660246091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(513,'','Cash','','2022-08-11 22:39:41','','0','12','2022-08-11 22:39:41','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121660246495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(514,'','Cash','','2022-08-11 22:48:15','','0','12','2022-08-11 22:48:15','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660246833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(515,'','Cash','','2022-08-11 23:09:34','','0','12','2022-08-11 23:09:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660247378','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(516,'','Cash','','2022-08-11 23:33:59','','0','12','2022-08-11 23:33:59','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121660248703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(517,'','Cash','','2022-08-12 00:00:50','','0','12','2022-08-12 00:00:50','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121660250105','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(518,'','Cash','','2022-08-12 00:06:31','','0','12','2022-08-12 00:06:31','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121660251957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(519,'','Cash','','2022-08-12 13:02:15','','0','12','2022-08-12 13:02:15','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121660298525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(520,'','Cash','','2022-08-12 18:22:11','','0','12','2022-08-12 17:41:27','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121660315150','Cleared','12','2022-08-12 18:22:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(521,'','Cash','','2022-08-12 18:30:38','','0','12','2022-08-12 18:30:38','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121660318125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(522,'','Cash','','2022-08-12 19:48:43','','0','12','2022-08-12 19:48:43','','2320','2320','1','retail','0','2320','1','0','0','0','0','0','0','printed',' ','','1','0','121660318245','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(523,'','Cash','','2022-08-12 21:42:12','','0','12','2022-08-12 21:42:12','','1640','1640','1','retail','0','1640','1','0','0','0','0','0','0','printed',' ','','1','0','121660322932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(524,'','Cash','','2022-08-12 22:39:39','','0','12','2022-08-12 22:39:39','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121660329768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(525,'','Cash','','2022-08-12 23:10:29','','0','12','2022-08-12 23:10:29','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121660334900','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(526,'','Cash','','2022-08-12 23:14:18','','0','12','2022-08-12 23:14:18','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121660335247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(527,'','Cash','','2022-08-12 23:36:04','','0','12','2022-08-12 23:36:04','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121660335263','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(528,'','Cash','','2022-08-12 23:46:47','','0','12','2022-08-12 23:46:47','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121660337105','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(529,'','Cash','','2022-08-12 23:48:21','','0','12','2022-08-12 23:48:21','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121660337241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(530,'','Cash','','2022-08-13 13:41:48','','0','12','2022-08-13 13:41:48','','2370','2370','1','retail','0','2370','1','0','0','0','0','0','0','printed',' ','','1','0','121660387223','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(531,'','Cash','','2022-08-13 19:08:16','','0','12','2022-08-13 19:08:16','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121660406774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(532,'','Cash','','2022-08-13 19:31:57','','0','12','2022-08-13 19:31:57','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121660408314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(533,'','Cash','','2022-08-13 19:34:24','','0','12','2022-08-13 19:34:24','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121660408454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(534,'','Cash','','2022-08-13 19:43:11','','0','12','2022-08-13 19:43:11','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','','1','0','121660408973','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(535,'','Cash','','2022-08-13 20:48:20','','0','12','2022-08-13 20:48:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121660411462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(536,'','Cash','','2022-08-13 21:26:47','','0','12','2022-08-13 21:26:47','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121660412957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(537,'','Cash','','2022-08-13 21:42:03','','0','12','2022-08-13 21:42:03','','4700','4700','1','retail','0','4700','1','0','0','0','0','0','0','printed',' ','','1','0','121660415299','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(538,'','Cash','','2022-08-13 21:55:09','','0','12','2022-08-13 21:55:09','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121660416486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(539,'','Cash','','2022-08-13 21:58:28','','0','12','2022-08-13 21:58:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121660416975','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(540,'','Cash','','2022-08-13 22:16:39','','0','12','2022-08-13 22:16:39','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121660417111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(541,'','Cash','','2022-08-13 23:00:39','','0','12','2022-08-13 23:00:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121660418230','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(542,'','Cash','','2022-08-13 23:39:47','','0','12','2022-08-13 23:39:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660420891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(543,'','Cash','','2022-08-13 23:52:18','','0','12','2022-08-13 23:52:18','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121660423190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(544,'','Cash','','2022-08-13 23:56:26','','0','12','2022-08-13 23:56:26','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121660423966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(545,'','Cash','','2022-08-14 00:06:21','','0','12','2022-08-14 00:06:21','','1790','1790','1','retail','0','1790','1','0','0','0','0','0','0','printed',' ','','1','0','121660424217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(546,'','Cash','','2022-08-14 00:06:42','','0','12','2022-08-14 00:06:42','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121660424785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(547,'','Cash','','2022-08-14 00:13:54','','0','12','2022-08-14 00:13:54','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121660424851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(548,'','Cash','','2022-08-14 14:59:07','','0','12','2022-08-14 14:59:07','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660478316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(549,'','Cash','','2022-08-14 17:59:45','','0','12','2022-08-14 17:59:45','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121660489180','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(550,'','Cash','','2022-08-14 18:52:28','','0','12','2022-08-14 18:52:28','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121660492326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(551,'','Cash','','2022-08-14 19:24:45','','0','12','2022-08-14 19:24:45','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121660493921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(552,'','Cash','','2022-08-14 20:02:59','','0','12','2022-08-14 20:02:59','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121660494534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(553,'','Cash','','2022-08-14 20:32:48','','0','12','2022-08-14 20:32:48','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121660496800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(554,'','Cash','','2022-08-14 20:48:02','','0','12','2022-08-14 20:48:02','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121660498373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(555,'','Cash','','2022-08-14 20:56:35','','0','12','2022-08-14 20:56:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121660499398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(556,'','Cash','','2022-08-14 20:59:46','','0','12','2022-08-14 20:59:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660499876','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(557,'','Cash','','2022-08-14 21:47:17','','0','12','2022-08-14 21:47:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660499989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(558,'','Cash','','2022-08-14 22:06:30','','0','12','2022-08-14 22:06:30','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121660503043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(559,'','Cash','','2022-08-14 23:23:19','','0','12','2022-08-14 23:23:19','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121660503995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(560,'','Cash','','2022-08-14 23:50:43','','0','12','2022-08-14 23:50:43','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121660508782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(561,'','Cash','','2022-08-16 17:23:48','','0','12','2022-08-16 17:23:48','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121660659824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(562,'','Cash','','2022-08-16 17:58:50','','0','12','2022-08-16 17:58:50','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121660660009','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(563,'','Cash','','2022-08-16 18:38:47','','0','12','2022-08-16 18:38:47','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121660662110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(564,'','Cash','','2022-08-16 20:16:57','','0','12','2022-08-16 20:16:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660664695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(565,'','Cash','','2022-08-16 20:57:25','','0','12','2022-08-16 20:57:25','','2870','2870','1','retail','0','2870','1','0','0','0','0','0','0','printed',' ','','1','0','121660670221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(566,'','Cash','','2022-08-16 21:21:28','','0','12','2022-08-16 21:21:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121660672688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(567,'','Cash','','2022-08-16 23:13:14','','0','12','2022-08-16 23:13:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660674192','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(568,'','Cash','','2022-08-16 23:23:52','','0','12','2022-08-16 23:23:52','','2660','2660','1','retail','0','2660','1','0','0','0','0','0','0','printed',' ','','1','0','121660681051','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(569,'','Cash','','2022-08-16 23:30:57','','0','12','2022-08-16 23:30:57','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121660681637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(570,'','Cash','','2022-08-16 23:40:46','','0','12','2022-08-16 23:40:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121660681900','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(571,'','Cash','','2022-08-16 23:43:17','','0','12','2022-08-16 23:43:17','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121660682551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(572,'','Cash','','2022-08-16 23:44:37','','0','12','2022-08-16 23:44:37','','5100','5100','1','retail','0','5100','1','0','0','0','0','0','0','printed',' ','','1','0','121660682604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(573,'','Cash','','2022-08-16 23:49:13','','0','12','2022-08-16 23:49:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660682938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(574,'','Cash','','2022-08-17 14:44:36','','0','12','2022-08-17 14:44:36','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121660736399','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(575,'','Cash','','2022-08-17 15:00:47','','0','12','2022-08-17 14:46:04','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121660736690','Cleared','12','2022-08-17 15:00:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(576,'','Cash','','2022-08-17 18:56:44','','0','12','2022-08-17 18:56:44','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121660751791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(577,'','Cash','','2022-08-17 22:15:20','','0','12','2022-08-17 22:15:20','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121660763715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(578,'','Cash','','2022-08-17 22:27:14','','0','12','2022-08-17 22:21:28','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121660763862','Cleared','12','2022-08-17 22:27:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(579,'','Cash','','2022-08-17 22:57:55','','0','12','2022-08-17 22:57:55','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121660766270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(580,'','Cash','','2022-08-17 23:14:25','','0','12','2022-08-17 23:14:25','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121660766412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(581,'','Cash','','2022-08-17 23:20:39','','0','12','2022-08-17 23:20:39','','3520','3520','1','retail','0','3520','1','0','0','0','0','0','0','printed',' ','','1','0','121660767440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(582,'','Cash','','2022-08-17 23:21:21','','0','12','2022-08-17 23:21:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121660767647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(583,'','Cash','','2022-08-18 15:17:47','','0','12','2022-08-18 15:17:47','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121660825050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(584,'','Cash','','2022-08-18 18:36:18','','0','12','2022-08-18 18:36:18','','6840','6840','1','retail','0','6840','1','0','0','0','0','0','0','printed',' ','','1','0','121660832293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(585,'','Cash','','2022-08-18 19:16:36','','0','12','2022-08-18 19:16:36','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121660839374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(586,'','Cash','','2022-08-18 19:17:24','','0','12','2022-08-18 19:17:24','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121660839432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(587,'','Cash','','2022-08-18 20:36:46','','0','12','2022-08-18 20:36:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660839680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(588,'','Cash','','2022-08-18 21:16:22','','0','12','2022-08-18 21:16:22','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121660844210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(589,'','Cash','','2022-08-18 21:52:56','','0','12','2022-08-18 21:52:56','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121660846629','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(590,'','Cash','','2022-08-18 22:00:50','','0','12','2022-08-18 22:00:50','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121660848805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(591,'','Cash','','2022-08-18 22:25:37','','0','12','2022-08-18 22:25:37','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121660849265','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(592,'','Cash','','2022-08-18 22:59:16','','0','12','2022-08-18 22:59:16','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121660850831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(593,'','Cash','','2022-08-19 16:21:22','','0','12','2022-08-19 16:21:22','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121660909937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(594,'','Cash','','2022-08-19 19:39:17','','0','12','2022-08-19 19:39:17','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121660927153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(595,'','Cash','','2022-08-19 20:18:37','','0','12','2022-08-19 20:18:37','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121660927202','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(596,'','Cash','','2022-08-19 21:12:50','','0','12','2022-08-19 21:12:50','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121660929627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(597,'','Cash','','2022-08-19 21:22:26','','0','12','2022-08-19 21:22:26','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121660933117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(598,'','Cash','','2022-08-19 21:38:40','','0','12','2022-08-19 21:38:40','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121660934182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(599,'','Cash','','2022-08-19 23:27:01','','0','12','2022-08-19 23:27:01','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121660940256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(600,'','Cash','','2022-08-19 23:32:33','','0','12','2022-08-19 23:32:33','','9700','9700','1','retail','0','9700','1','0','0','0','0','0','0','printed',' ','','1','0','121660941040','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(601,'','Cash','','2022-08-19 23:41:24','','0','12','2022-08-19 23:41:24','','2140','2140','1','retail','0','2140','1','0','0','0','0','0','0','printed',' ','','1','0','121660941230','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(602,'','Cash','','2022-08-19 23:47:38','','0','12','2022-08-19 23:47:38','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121660941881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(603,'','Cash','','2022-08-19 23:49:49','','0','12','2022-08-19 23:49:49','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121660942091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(604,'','Cash','','2022-08-19 23:54:22','','0','12','2022-08-19 23:54:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660942349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(605,'','Cash','','2022-08-20 00:14:43','','0','12','2022-08-20 00:14:43','','6990','6990','1','retail','0','6990','1','0','0','0','0','0','0','printed',' ','','1','0','121660942468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(606,'','Cash','','2022-08-20 00:21:04','','0','12','2022-08-20 00:21:04','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121660943996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(607,'','Cash','','2022-08-20 00:21:42','','0','12','2022-08-20 00:21:42','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121660944068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(608,'','Cash','','2022-08-20 01:14:08','','0','12','2022-08-20 01:14:08','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121660944108','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(609,'','Cash','','2022-08-20 01:58:04','','0','12','2022-08-20 01:58:04','','170','170','1','retail','0','170','1','0','0','0','0','0','0','printed',' ','','1','0','121660947284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(610,'','Cash','','2022-08-20 02:04:03','','0','12','2022-08-20 02:04:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121660950234','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(611,'','Cash','','2022-08-20 02:40:53','','0','12','2022-08-20 02:40:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121660950262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(612,'','Cash','','2022-08-20 14:10:56','','0','12','2022-08-20 14:10:56','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121660993769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(613,'','Cash','','2022-08-20 20:00:46','','0','12','2022-08-20 20:00:46','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121661009478','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(614,'','Cash','','2022-08-20 20:17:18','','0','12','2022-08-20 20:17:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661015181','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(615,'','Cash','','2022-08-20 23:01:28','','0','12','2022-08-20 23:01:28','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121661025432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(616,'','Cash','','2022-08-20 23:26:38','','0','12','2022-08-20 23:26:38','','2310','2310','1','retail','0','2310','1','0','0','0','0','0','0','printed',' ','','1','0','121661026147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(617,'','Cash','','2022-08-20 23:43:14','','0','12','2022-08-20 23:43:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661027579','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(618,'','Cash','','2022-08-20 23:46:42','','0','12','2022-08-20 23:46:42','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121661028341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(619,'','Cash','','2022-08-21 00:00:45','','0','12','2022-08-21 00:00:45','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121661029222','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(620,'','Cash','','2022-08-21 00:26:40','','0','12','2022-08-21 00:26:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661029580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(621,'','Cash','','2022-08-21 00:42:57','','0','12','2022-08-21 00:42:57','','4810','4810','1','retail','0','4810','1','0','0','0','0','0','0','printed',' ','','1','0','121661031135','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(622,'','Cash','','2022-08-21 01:15:27','','0','12','2022-08-21 01:15:27','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121661033376','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(623,'','Cash','','2022-08-21 01:23:36','','0','12','2022-08-21 01:23:36','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661033786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(624,'','Cash','','2022-08-21 01:31:24','','0','12','2022-08-21 01:31:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661034668','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(625,'','Cash','','2022-08-21 02:05:05','','0','12','2022-08-21 02:05:05','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121661035785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(626,'','Cash','','2022-08-21 02:16:39','','0','12','2022-08-21 02:16:39','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121661037384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(627,'','Cash','','2022-08-21 15:22:57','','0','12','2022-08-21 15:22:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121661081596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(628,'','Cash','','2022-08-21 16:18:13','','0','12','2022-08-21 16:18:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661086321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(629,'','Cash','','2022-08-21 18:33:51','','0','12','2022-08-21 18:33:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661095830','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(630,'','Cash','','2022-08-21 19:25:09','','0','12','2022-08-21 19:25:09','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121661096034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(631,'','Cash','','2022-08-21 19:52:32','','0','12','2022-08-21 19:52:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661099293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(632,'','Cash','','2022-08-21 20:59:43','','0','12','2022-08-21 20:59:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661100859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(633,'','Cash','','2022-08-21 21:19:30','','0','12','2022-08-21 21:19:30','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661104866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(634,'','Cash','','2022-08-21 21:36:53','','0','12','2022-08-21 21:36:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661106240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(635,'','Cash','','2022-08-21 23:12:47','','0','12','2022-08-21 23:12:47','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121661107115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(636,'','Cash','','2022-08-22 12:57:09','','0','12','2022-08-22 12:57:09','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661159996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(637,'','Cash','','2022-08-22 15:24:55','','0','12','2022-08-22 15:24:55','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661171093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(638,'','Cash','','2022-08-22 16:39:36','','0','12','2022-08-22 16:39:36','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661171246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(639,'','Cash','','2022-08-22 17:10:17','','0','12','2022-08-22 17:10:17','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121661175686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(640,'','Cash','','2022-08-22 19:51:00','','0','12','2022-08-22 19:51:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661185771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(641,'','Cash','','2022-08-22 20:01:13','','0','12','2022-08-22 20:01:13','','4270','4270','1','retail','0','4270','1','0','0','0','0','0','0','printed',' ','','1','0','121661187240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(642,'','Cash','','2022-08-22 20:18:15','','0','12','2022-08-22 20:18:15','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661187757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(643,'','Cash','','2022-08-22 20:28:25','','0','12','2022-08-22 20:28:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661188806','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(644,'','Cash','','2022-08-22 20:40:35','','0','12','2022-08-22 20:40:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661189314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(645,'','Cash','','2022-08-22 20:46:16','','0','12','2022-08-22 20:46:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661190044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(646,'','Cash','','2022-08-22 20:48:14','','0','12','2022-08-22 20:48:14','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661190479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(647,'','Cash','','2022-08-22 20:49:05','','0','12','2022-08-22 20:49:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661190509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(648,'','Cash','','2022-08-22 21:34:44','','0','12','2022-08-22 21:34:44','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121661190549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(649,'','Cash','','2022-08-22 21:41:47','','0','12','2022-08-22 21:41:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661193311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(650,'','Cash','','2022-08-23 00:24:04','','0','12','2022-08-23 00:24:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661203425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(651,'','Cash','','2022-08-23 16:10:38','','0','12','2022-08-23 16:10:38','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121661259299','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(652,'','Cash','','2022-08-23 17:55:44','','0','12','2022-08-23 17:55:44','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121661260260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(653,'','Cash','','2022-08-23 21:53:56','','0','12','2022-08-23 21:53:56','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121661280831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(654,'','Cash','','2022-08-23 22:03:02','','0','12','2022-08-23 22:03:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661280892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(655,'','Cash','','2022-08-23 22:09:47','','0','12','2022-08-23 22:09:47','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121661281388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(656,'','Cash','','2022-08-23 22:45:29','','0','12','2022-08-23 22:45:29','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121661281802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(657,'','Cash','','2022-08-23 23:52:49','','0','12','2022-08-23 23:52:49','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121661287945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(658,'','Cash','','2022-08-24 14:37:52','','0','12','2022-08-24 14:37:52','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121661334819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(659,'','Cash','','2022-08-24 17:20:32','','0','12','2022-08-24 17:20:32','','2130','2130','1','retail','0','2130','1','0','0','0','0','0','0','printed',' ','','1','0','121661350711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(660,'','Cash','','2022-08-24 17:34:56','','0','12','2022-08-24 17:34:56','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121661351171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(661,'','Cash','','2022-08-24 19:01:51','','0','12','2022-08-24 19:01:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661351761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(662,'','Cash','','2022-08-24 20:23:53','','0','12','2022-08-24 20:23:53','','4140','4140','1','retail','0','4140','1','0','0','0','0','0','0','printed',' ','','1','0','121661356919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(663,'','Cash','','2022-08-24 21:07:32','','0','12','2022-08-24 21:07:32','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121661363587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(664,'','Cash','','2022-08-24 21:18:43','','0','12','2022-08-24 21:18:43','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121661365030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(665,'','Cash','','2022-08-24 21:52:50','','0','12','2022-08-24 21:52:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661365130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(666,'','Cash','','2022-08-24 21:55:48','','0','12','2022-08-24 21:55:48','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121661367195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(667,'','Cash','','2022-08-24 22:16:21','','0','12','2022-08-24 22:16:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661367353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(668,'','Cash','','2022-08-24 23:23:45','','0','12','2022-08-24 23:23:45','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121661368591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(669,'','Cash','','2022-08-24 23:32:31','','0','12','2022-08-24 23:32:31','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121661372713','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(670,'','Cash','','2022-08-24 23:34:27','','0','12','2022-08-24 23:34:27','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121661373165','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(671,'','Cash','','2022-08-24 23:35:09','','0','12','2022-08-24 23:35:09','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661373295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(672,'','Cash','','2022-08-24 23:37:58','','0','12','2022-08-24 23:37:58','','1060','1060','1','retail','0','1060','1','0','0','0','0','0','0','printed',' ','','1','0','121661373348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(673,'','Cash','','2022-08-25 13:36:47','','0','12','2022-08-25 13:36:47','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121661423707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(674,'','Cash','','2022-08-25 13:40:35','','0','12','2022-08-25 13:40:35','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661424012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(675,'','Cash','','2022-08-25 13:57:03','','0','12','2022-08-25 13:57:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661424039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(676,'','Cash','','2022-08-25 13:59:08','','0','12','2022-08-25 13:59:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661425030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(677,'','Cash','','2022-08-25 17:59:51','','0','12','2022-08-25 17:59:51','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121661434976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(678,'','Cash','','2022-08-25 18:04:06','','0','12','2022-08-25 18:04:06','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661439652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(679,'','Cash','','2022-08-25 21:07:18','','0','12','2022-08-25 21:07:18','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121661450831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(680,'','Cash','','2022-08-25 21:24:41','','0','12','2022-08-25 21:24:41','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121661450865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(681,'','Cash','','2022-08-25 22:54:57','','0','12','2022-08-25 22:54:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121661451965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(682,'','Cash','','2022-08-25 23:00:25','','0','12','2022-08-25 23:00:25','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121661457309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(683,'','Cash','','2022-08-25 23:02:25','','0','12','2022-08-25 23:02:25','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121661457726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(684,'','Cash','','2022-08-26 14:16:07','','0','12','2022-08-26 14:16:07','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121661510403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(685,'','Cash','','2022-08-26 14:21:34','','0','12','2022-08-26 14:21:34','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661512576','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(686,'','Cash','','2022-08-26 17:08:37','','0','12','2022-08-26 17:08:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661522898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(687,'','Cash','','2022-08-26 17:15:59','','0','12','2022-08-26 17:15:59','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121661523286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(688,'','Cash','','2022-08-26 18:30:45','','0','12','2022-08-26 18:30:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661527842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(689,'','Cash','','2022-08-26 19:42:10','','0','12','2022-08-26 19:42:10','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121661527918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(690,'','Cash','','2022-08-26 23:33:45','','0','12','2022-08-26 23:33:45','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661546018','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(691,'','Cash','','2022-08-26 23:45:48','','0','12','2022-08-26 23:45:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661546090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(692,'','Cash','','2022-08-26 23:46:38','','0','12','2022-08-26 23:46:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661546782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(693,'','Cash','','2022-08-27 01:27:02','','0','12','2022-08-27 01:27:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661548766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(694,'','Cash','','2022-08-27 01:55:46','','0','12','2022-08-27 01:55:46','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121661554269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(695,'','Cash','','2022-08-27 14:37:46','','0','12','2022-08-27 14:37:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661600248','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(696,'','Cash','','2022-08-27 18:57:42','','0','12','2022-08-27 18:57:42','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121661615859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(697,'','Cash','','2022-08-27 20:59:24','','0','12','2022-08-27 20:59:24','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661623156','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(698,'','Cash','','2022-08-27 22:50:05','','0','12','2022-08-27 22:50:05','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121661623204','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(699,'','Cash','','2022-08-27 22:53:23','','0','12','2022-08-27 22:53:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661629926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(700,'','Cash','','2022-08-27 23:04:56','','0','12','2022-08-27 23:04:56','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121661630008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(701,'','Cash','','2022-08-27 23:30:00','','0','12','2022-08-27 23:30:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661630780','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(702,'','Cash','','2022-08-28 00:07:00','','0','12','2022-08-28 00:07:00','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661634268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(703,'','Cash','','2022-08-28 00:57:31','','0','12','2022-08-28 00:57:31','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121661637447','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(704,'','Cash','','2022-08-28 01:04:10','','0','12','2022-08-28 01:04:10','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661637795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(705,'','Cash','','2022-08-28 01:26:37','','0','12','2022-08-28 01:26:37','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661637914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(706,'','Cash','','2022-08-28 02:17:58','','0','12','2022-08-28 02:17:58','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121661639206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(707,'','Cash','','2022-08-28 02:46:13','','0','12','2022-08-28 02:46:13','','2510','2510','1','retail','0','2510','1','0','0','0','0','0','0','printed',' ','','1','0','121661642323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(708,'','Cash','','2022-08-28 13:37:28','','0','12','2022-08-28 13:37:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661681871','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(709,'','Cash','','2022-08-28 17:09:44','','0','12','2022-08-28 17:09:44','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121661695761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(710,'','Cash','','2022-08-28 19:21:30','','0','12','2022-08-28 19:21:30','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661703675','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(711,'','Cash','','2022-08-28 19:49:45','','0','12','2022-08-28 19:49:45','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121661705101','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(712,'','Cash','','2022-08-28 20:32:35','','0','12','2022-08-28 20:32:35','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121661705432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(713,'','Cash','','2022-08-28 21:14:39','','0','12','2022-08-28 21:14:39','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121661707959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(714,'','Cash','','2022-08-28 21:36:13','','0','12','2022-08-28 21:36:13','','2170','2170','1','retail','0','2170','1','0','0','0','0','0','0','printed',' ','','1','0','121661710574','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(715,'','Cash','','2022-08-28 21:58:56','','0','12','2022-08-28 21:58:56','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661712840','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(716,'','Cash','','2022-08-28 22:44:36','','0','12','2022-08-28 22:44:36','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661715865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(717,'','Cash','','2022-08-28 22:50:08','','0','12','2022-08-28 22:50:08','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661716167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(718,'','Cash','','2022-08-28 23:09:30','','0','12','2022-08-28 23:09:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661716212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(719,'','Cash','','2022-08-29 00:34:21','','0','12','2022-08-29 00:08:24','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121661717380','Cleared','12','2022-08-29 00:34:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(720,'','Cash','','2022-08-29 00:25:07','','0','12','2022-08-29 00:25:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661720984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(721,'','Cash','','2022-08-29 00:28:16','','0','12','2022-08-29 00:28:16','','4200','4200','1','retail','0','4200','1','0','0','0','0','0','0','printed',' ','','1','0','121661721967','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(722,'','Cash','','2022-08-29 00:47:14','','0','12','2022-08-29 00:47:14','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661722488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(723,'','Cash','','2022-08-29 00:49:28','','0','12','2022-08-29 00:49:28','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121661723275','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(724,'','Cash','','2022-08-29 01:04:46','','0','12','2022-08-29 01:04:46','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121661723383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(725,'','Cash','','2022-08-29 01:15:46','','0','12','2022-08-29 01:15:46','','2040','2040','1','retail','0','2040','1','0','0','0','0','0','0','printed',' ','','1','0','121661724444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(726,'','Cash','','2022-08-29 02:43:43','','0','12','2022-08-29 02:43:43','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121661725075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(727,'','Cash','','2022-08-29 02:47:21','','0','12','2022-08-29 02:47:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121661730291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(728,'','Cash','','2022-08-29 03:25:08','','0','12','2022-08-29 03:25:08','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121661732587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(729,'','Cash','','2022-08-29 17:24:40','','0','12','2022-08-29 17:24:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661781764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(730,'','Cash','','2022-08-29 21:01:02','','0','12','2022-08-29 21:01:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661796048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(731,'','Cash','','2022-08-29 21:14:18','','0','12','2022-08-29 21:14:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661796071','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(732,'','Cash','','2022-08-29 21:31:51','','0','12','2022-08-29 21:31:51','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121661796867','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(733,'','Cash','','2022-08-29 21:40:13','','0','12','2022-08-29 21:40:13','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121661798277','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(734,'','Cash','','2022-08-29 21:49:44','','0','12','2022-08-29 21:49:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661798481','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(735,'','Cash','','2022-08-29 21:57:06','','0','12','2022-08-29 21:57:06','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121661798998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(736,'','Cash','','2022-08-29 22:25:34','','0','12','2022-08-29 22:25:34','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121661799499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(737,'','Cash','','2022-08-29 22:42:55','','0','12','2022-08-29 22:42:55','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121661801144','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(738,'','Cash','','2022-08-29 23:21:12','','0','12','2022-08-29 23:21:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661802252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(739,'','Cash','','2022-08-29 23:21:58','','0','12','2022-08-29 23:21:58','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121661804476','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(740,'','Cash','','2022-08-29 23:31:54','','0','12','2022-08-29 23:31:54','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121661804618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(741,'','Cash','','2022-08-29 23:34:08','','0','12','2022-08-29 23:34:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121661805125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(742,'','Cash','','2022-08-29 23:41:21','','0','12','2022-08-29 23:41:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661805253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(743,'','Cash','','2022-08-30 00:02:00','','0','12','2022-08-30 00:02:00','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121661805686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(744,'','Cash','','2022-08-30 01:16:50','','0','12','2022-08-30 00:06:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661807019','Cleared','12','2022-08-30 01:16:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(745,'','Cash','','2022-08-30 01:12:17','','0','12','2022-08-30 01:12:17','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121661807185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(746,'','Cash','','2022-08-30 01:18:07','','0','12','2022-08-30 01:18:07','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121661811416','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(747,'','Cash','','2022-08-30 17:46:22','','0','12','2022-08-30 17:46:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661870765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(748,'','Cash','','2022-08-30 18:46:34','','0','12','2022-08-30 18:46:34','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121661870789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(749,'','Cash','','2022-08-30 20:22:22','','0','12','2022-08-30 20:22:22','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121661879890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(750,'','Cash','','2022-08-30 21:37:36','','0','12','2022-08-30 21:37:36','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121661880288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(751,'','Cash','','2022-08-30 21:49:51','','0','12','2022-08-30 21:49:51','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121661884795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(752,'','Cash','','2022-08-30 22:50:42','','0','12','2022-08-30 22:50:42','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121661889032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(753,'','Cash','','2022-08-30 22:58:57','','0','12','2022-08-30 22:58:57','','3540','3540','1','retail','0','3540','1','0','0','0','0','0','0','printed',' ','','1','0','121661889047','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(754,'','Cash','','2022-08-30 22:59:59','','0','12','2022-08-30 22:59:59','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121661889576','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(755,'','Cash','','2022-08-30 23:18:53','','0','12','2022-08-30 23:18:53','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121661889714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(756,'','Cash','','2022-08-31 00:22:14','','0','12','2022-08-31 00:22:14','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121661890800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(757,'','Cash','','2022-08-31 00:46:05','','0','12','2022-08-31 00:46:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121661894548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(758,'','Cash','','2022-08-31 01:23:52','','0','12','2022-08-31 01:23:52','','1040','1040','1','retail','0','1040','1','0','0','0','0','0','0','printed',' ','','1','0','121661895976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(759,'','Cash','','2022-08-31 13:33:08','','0','12','2022-08-31 13:33:08','','1130','1130','1','retail','0','1130','1','0','0','0','0','0','0','printed',' ','','1','0','121661941972','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(760,'','Cash','','2022-08-31 17:30:30','','0','12','2022-08-31 17:30:30','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121661956214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(761,'','Cash','','2022-08-31 21:18:21','','0','12','2022-08-31 21:18:21','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121661965509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(762,'','Cash','','2022-08-31 21:18:42','','0','12','2022-08-31 21:18:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121661969907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(763,'','Cash','','2022-08-31 21:25:19','','0','12','2022-08-31 21:25:19','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121661969927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(764,'','Cash','','2022-08-31 21:30:12','','0','12','2022-08-31 21:30:12','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661970526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(765,'','Cash','','2022-08-31 21:44:02','','0','12','2022-08-31 21:44:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121661970715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(766,'','Cash','','2022-08-31 21:53:25','','0','12','2022-08-31 21:53:25','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121661971524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(767,'','Cash','','2022-08-31 22:49:42','','0','12','2022-08-31 22:49:42','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121661972009','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(768,'','Cash','','2022-08-31 22:55:05','','0','12','2022-08-31 22:55:05','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121661975435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(769,'','Cash','','2022-08-31 23:10:58','','0','12','2022-08-31 23:10:58','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121661975767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(770,'','Cash','','2022-08-31 23:28:19','','0','12','2022-08-31 23:28:19','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121661976697','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(771,'','Cash','','2022-08-31 23:32:25','','0','12','2022-08-31 23:32:25','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121661977835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(772,'','Cash','','2022-08-31 23:36:57','','0','12','2022-08-31 23:36:57','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121661978054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(773,'','Cash','','2022-09-01 00:08:21','','0','12','2022-09-01 00:08:21','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121661978324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(774,'','Cash','','2022-09-01 12:00:43','','0','12','2022-09-01 12:00:43','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121662022644','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(775,'','Cash','','2022-09-01 12:26:26','','0','12','2022-09-01 12:26:26','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121662024381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(776,'','Cash','','2022-09-01 13:44:24','','0','12','2022-09-01 13:44:24','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121662024667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(777,'','Cash','','2022-09-01 13:57:54','','0','12','2022-09-01 13:57:54','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121662029069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(778,'','Cash','','2022-09-01 15:38:07','','0','12','2022-09-01 15:38:07','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121662035854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(779,'','Cash','','2022-09-01 15:51:59','','0','12','2022-09-01 15:51:59','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662035939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(780,'','Cash','','2022-09-01 19:32:42','','0','12','2022-09-01 19:32:42','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121662049952','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(781,'','Cash','','2022-09-01 19:40:11','','0','12','2022-09-01 19:40:11','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662050058','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(782,'','Cash','','2022-09-01 22:40:37','','0','12','2022-09-01 22:40:37','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121662061222','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(783,'','Cash','','2022-09-01 22:50:09','','0','12','2022-09-01 22:50:09','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121662061315','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(784,'','Cash','','2022-09-01 22:54:22','','0','12','2022-09-01 22:54:22','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662061813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(785,'','Cash','','2022-09-02 00:09:01','','0','12','2022-09-02 00:09:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662062079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(786,'','Cash','','2022-09-02 00:16:13','','0','12','2022-09-02 00:16:13','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121662066642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(787,'','Cash','','2022-09-02 01:44:32','','0','12','2022-09-02 01:44:32','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121662072250','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(788,'','Cash','','2022-09-02 01:47:22','','0','12','2022-09-02 01:47:22','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121662072275','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(789,'','Cash','','2022-09-02 01:48:37','','0','12','2022-09-02 01:48:37','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121662072513','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(790,'','Cash','','2022-09-02 02:01:46','','0','12','2022-09-02 02:01:46','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121662072524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(791,'','Cash','','2022-09-02 02:16:31','','0','12','2022-09-02 02:16:31','','1660','1660','1','retail','0','1660','1','0','0','0','0','0','0','printed',' ','','1','0','121662073599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(792,'','Cash','','2022-09-02 03:12:32','','0','12','2022-09-02 03:12:32','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662077539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(793,'','Cash','','2022-09-03 16:43:02','','0','12','2022-09-03 16:43:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662212570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(794,'','Cash','','2022-09-03 17:03:41','','0','12','2022-09-03 17:03:41','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662213813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(795,'','Cash','','2022-09-03 19:09:19','','0','12','2022-09-03 19:09:19','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121662221352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(796,'','Cash','','2022-09-03 20:42:21','','0','12','2022-09-03 20:42:21','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662226938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(797,'','Cash','','2022-09-03 21:35:59','','0','12','2022-09-03 21:35:59','','5100','5100','1','retail','0','5100','1','0','0','0','0','0','0','printed',' ','','1','0','121662229946','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(798,'','Cash','','2022-09-03 22:06:55','','0','12','2022-09-03 22:06:55','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662231261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(799,'','Cash','','2022-09-03 22:18:53','','0','12','2022-09-03 22:18:53','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121662232020','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(800,'','Cash','','2022-09-03 22:35:16','','0','12','2022-09-03 22:35:16','','9100','9100','1','retail','0','9100','1','0','0','0','0','0','0','printed',' ','','1','0','121662232782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(801,'','Cash','','2022-09-03 22:47:28','','0','12','2022-09-03 22:47:28','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121662234417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(802,'','Cash','','2022-09-03 23:18:08','','0','12','2022-09-03 23:18:08','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121662234474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(803,'','Cash','','2022-09-03 23:20:20','','0','12','2022-09-03 23:20:20','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121662236291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(804,'','Cash','','2022-09-03 23:30:22','','0','12','2022-09-03 23:30:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662236423','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(805,'','Cash','','2022-09-03 23:45:46','','0','12','2022-09-03 23:45:46','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662237188','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(806,'','Cash','','2022-09-04 00:16:07','','0','12','2022-09-04 00:16:07','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121662239354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(807,'','Cash','','2022-09-04 00:44:20','','0','12','2022-09-04 00:44:20','','3010','3010','1','retail','0','3010','1','0','0','0','0','0','0','printed',' ','','1','0','121662239799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(808,'','Cash','','2022-09-04 01:10:34','','0','12','2022-09-04 01:10:34','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121662242068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(809,'','Cash','','2022-09-04 01:14:31','','0','12','2022-09-04 01:14:31','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121662243098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(810,'','Cash','','2022-09-04 01:32:09','','0','12','2022-09-04 01:32:09','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121662243429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(811,'','Cash','','2022-09-04 01:37:23','','0','12','2022-09-04 01:37:23','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662244381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(812,'','Cash','','2022-09-04 02:00:34','','0','12','2022-09-04 02:00:34','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121662244718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(813,'','Cash','','2022-09-04 02:11:30','','0','12','2022-09-04 02:11:30','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121662246591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(814,'','Cash','','2022-09-04 02:12:12','','0','12','2022-09-04 02:12:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662246694','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(815,'','Cash','','2022-09-04 13:46:03','','0','12','2022-09-04 13:46:03','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121662288340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(816,'','Cash','','2022-09-04 13:59:22','','0','12','2022-09-04 13:59:22','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121662288976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(817,'','Cash','','2022-09-04 14:00:10','','0','12','2022-09-04 14:00:10','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121662289166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(818,'','Cash','','2022-09-04 14:02:26','','0','12','2022-09-04 14:02:26','','7000','7000','1','retail','0','7000','1','0','0','0','0','0','0','printed',' ','','1','0','121662289214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(819,'','Cash','','2022-09-04 14:04:18','','0','12','2022-09-04 14:04:18','','8000','8000','1','retail','0','8000','1','0','0','0','0','0','0','printed',' ','','1','0','121662289351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(820,'','Cash','','2022-09-04 14:14:42','','0','12','2022-09-04 14:14:42','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121662289462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(821,'','Cash','','2022-09-04 14:16:51','','0','12','2022-09-04 14:16:51','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121662290086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(822,'','Cash','','2022-09-04 17:12:29','','0','12','2022-09-04 17:12:29','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121662300717','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(823,'','Cash','','2022-09-04 21:57:14','','0','12','2022-09-04 21:57:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662313086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(824,'','Cash','','2022-09-05 00:32:31','','0','12','2022-09-05 00:32:31','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121662326249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(825,'','Cash','','2022-09-05 00:36:14','','0','12','2022-09-05 00:36:14','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121662327167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(826,'','Cash','','2022-09-05 01:04:54','','0','12','2022-09-05 01:04:54','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121662327460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(827,'','Cash','','2022-09-05 01:47:33','','0','12','2022-09-05 01:47:33','','5750','5750','1','retail','0','5750','1','0','0','0','0','0','0','printed',' ','','1','0','121662329099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(828,'','Cash','','2022-09-05 17:23:53','','0','12','2022-09-05 17:23:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662387236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(829,'','Cash','','2022-09-05 20:40:24','','0','12','2022-09-05 18:52:09','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121662387991','Cleared','12','2022-09-05 20:40:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(830,'','Cash','','2022-09-05 20:49:32','','0','12','2022-09-05 20:49:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662399704','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(831,'','Cash','','2022-09-06 00:02:26','','0','12','2022-09-05 21:24:54','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121662400176','Cleared','12','2022-09-06 00:02:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(832,'','Cash','','2022-09-05 21:29:49','','0','12','2022-09-05 21:29:49','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121662402505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(833,'','Cash','','2022-09-06 01:11:38','','0','12','2022-09-06 01:11:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662411751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(834,'','Cash','','2022-09-06 16:26:10','','0','12','2022-09-06 16:26:10','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662470763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(835,'','Cash','','2022-09-06 19:58:43','','0','12','2022-09-06 19:58:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662482715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(836,'','Cash','','2022-09-06 20:54:11','','0','12','2022-09-06 20:54:11','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121662483599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(837,'','Cash','','2022-09-06 21:17:59','','0','12','2022-09-06 21:18:00','','2570','2570','1','retail','0','2570','1','0','0','0','0','0','0','printed',' ','','1','0','121662486858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(838,'','Cash','','2022-09-06 21:23:11','','0','12','2022-09-06 21:23:11','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662488562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(839,'','Cash','','2022-09-06 21:27:29','','0','12','2022-09-06 21:27:29','','9310','9310','1','retail','0','9310','1','0','0','0','0','0','0','printed',' ','','1','0','121662488762','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(840,'','Cash','','2022-09-06 21:49:01','','0','12','2022-09-06 21:49:01','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121662490133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(841,'','Cash','','2022-09-06 22:06:42','','0','12','2022-09-06 22:06:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662490309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(842,'','Cash','','2022-09-06 22:25:27','','0','12','2022-09-06 22:25:27','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662491330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(843,'','Cash','','2022-09-06 22:33:29','','0','12','2022-09-06 22:33:29','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121662492485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(844,'','Cash','','2022-09-06 22:38:47','','0','12','2022-09-06 22:38:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662492815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(845,'','Cash','','2022-09-06 22:50:28','','0','12','2022-09-06 22:50:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662493690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(846,'','Cash','','2022-09-06 23:36:06','','0','12','2022-09-06 23:36:06','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121662493921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(847,'','Cash','','2022-09-07 00:52:24','','0','12','2022-09-07 00:52:24','','5230','5230','1','retail','0','5230','1','0','0','0','0','0','0','printed',' ','','1','0','121662498193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(848,'','Cash','','2022-09-07 01:10:47','','0','12','2022-09-07 01:10:47','','2010','2010','1','retail','0','2010','1','0','0','0','0','0','0','printed',' ','','1','0','121662501159','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(849,'','Cash','','2022-09-07 16:26:56','','0','12','2022-09-07 16:26:56','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121662557206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(850,'','Cash','','2022-09-07 20:01:38','','0','12','2022-09-07 20:01:38','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121662570087','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(851,'','Cash','','2022-09-07 20:03:05','','0','12','2022-09-07 20:03:05','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121662570102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(852,'','Cash','','2022-09-07 20:20:24','','0','12','2022-09-07 20:20:24','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121662571122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(853,'','Cash','','2022-09-07 21:14:39','','0','12','2022-09-07 21:14:39','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121662571242','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(854,'','Cash','','2022-09-07 21:30:11','','0','12','2022-09-07 21:30:11','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662574484','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(855,'','Cash','','2022-09-07 21:48:26','','0','12','2022-09-07 21:48:26','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121662575516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(856,'','Cash','','2022-09-07 22:09:27','','0','12','2022-09-07 22:09:27','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662576703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(857,'','Cash','','2022-09-07 22:46:12','','0','12','2022-09-07 22:46:12','','12080','12080','1','retail','0','12080','1','0','0','0','0','0','0','printed',' ','','1','0','121662577786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(858,'','Cash','','2022-09-07 22:48:34','','0','12','2022-09-07 22:48:34','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121662579982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(859,'','Cash','','2022-09-07 22:56:47','','0','12','2022-09-07 22:56:47','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121662580385','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(860,'','Cash','','2022-09-07 23:05:46','','0','12','2022-09-07 23:05:46','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662580612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(861,'','Cash','','2022-09-07 23:14:33','','0','12','2022-09-07 23:14:33','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121662581634','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(862,'','Cash','','2022-09-07 23:53:47','','0','12','2022-09-07 23:53:47','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121662581677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(863,'','Cash','','2022-09-08 00:04:19','','0','12','2022-09-08 00:04:19','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','','1','0','121662584302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(864,'','Cash','','2022-09-08 00:49:11','','0','12','2022-09-08 00:49:11','','3760','3760','1','retail','0','3760','1','0','0','0','0','0','0','printed',' ','','1','0','121662584665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(865,'','Cash','','2022-09-08 01:01:07','','0','12','2022-09-08 01:01:07','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121662587926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(866,'','Cash','','2022-09-08 01:28:11','','0','12','2022-09-08 01:28:11','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121662588075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(867,'','Cash','','2022-09-08 02:10:34','','0','12','2022-09-08 02:10:34','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121662592224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(868,'','Cash','','2022-09-08 02:16:09','','0','12','2022-09-08 02:16:09','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121662592296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(869,'','Cash','','2022-09-08 17:03:13','','0','12','2022-09-08 17:03:13','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121662645757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(870,'','Cash','','2022-09-08 19:12:33','','0','12','2022-09-08 19:12:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662653542','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(871,'','Cash','','2022-09-08 20:15:13','','0','12','2022-09-08 20:15:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662653557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(872,'','Cash','','2022-09-08 20:17:48','','0','12','2022-09-08 20:17:48','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121662657374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(873,'','Cash','','2022-09-08 20:32:28','','0','12','2022-09-08 20:32:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662657472','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(874,'','Cash','','2022-09-08 20:34:24','','0','12','2022-09-08 20:34:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662658359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(875,'','Cash','','2022-09-08 21:13:33','','0','12','2022-09-08 21:13:33','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121662658468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(876,'','Cash','','2022-09-08 21:22:50','','0','12','2022-09-08 21:22:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662660931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(877,'','Cash','','2022-09-08 21:24:02','','0','12','2022-09-08 21:24:02','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121662661374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(878,'','Cash','','2022-09-08 22:32:05','','0','12','2022-09-08 22:32:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662661449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(879,'','Cash','','2022-09-08 23:07:01','','0','12','2022-09-08 22:35:59','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662665575','Cleared','12','2022-09-08 23:07:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(880,'','Cash','','2022-09-08 23:50:02','','0','12','2022-09-08 23:50:02','','3700','3700','1','retail','0','3700','1','0','0','0','0','0','0','printed',' ','','1','0','121662667645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(881,'','Cash','','2022-09-09 00:13:15','','0','12','2022-09-09 00:13:16','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121662670323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(882,'','Cash','','2022-09-09 01:33:10','','0','12','2022-09-09 01:33:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662672611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(883,'','Cash','','2022-09-09 15:13:36','','0','12','2022-09-09 15:13:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662725599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(884,'','Cash','','2022-09-09 16:27:36','','0','12','2022-09-09 16:27:36','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121662727620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(885,'','Cash','','2022-09-09 16:42:41','','0','12','2022-09-09 16:42:41','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121662730225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(886,'','Cash','','2022-09-09 17:03:37','','0','12','2022-09-09 17:03:37','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121662732207','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(887,'','Cash','','2022-09-09 17:05:51','','0','12','2022-09-09 17:05:51','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121662732268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(888,'','Cash','','2022-09-09 17:24:45','','0','12','2022-09-09 17:24:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662732397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(889,'','Cash','','2022-09-09 18:35:41','','0','12','2022-09-09 18:35:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662733540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(890,'','Cash','','2022-09-09 20:17:06','','0','12','2022-09-09 20:17:06','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662737766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(891,'','Cash','','2022-09-09 20:28:20','','0','12','2022-09-09 20:28:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662743913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(892,'','Cash','','2022-09-09 20:52:36','','0','12','2022-09-09 20:52:36','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121662744509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(893,'','Cash','','2022-09-09 22:07:45','','0','12','2022-09-09 22:07:45','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662745960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(894,'','Cash','','2022-09-09 22:11:27','','0','12','2022-09-09 22:11:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662750469','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(895,'','Cash','','2022-09-09 22:51:45','','0','12','2022-09-09 22:51:45','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121662750691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(896,'','Cash','','2022-09-09 23:04:30','','0','12','2022-09-09 23:04:30','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662753813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(897,'','Cash','','2022-09-09 23:05:42','','0','12','2022-09-09 23:05:42','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121662753925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(898,'','Cash','','2022-09-09 23:46:53','','0','12','2022-09-09 23:46:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662753994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(899,'','Cash','','2022-09-10 00:30:23','','0','12','2022-09-10 00:30:23','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121662756418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(900,'','Cash','','2022-09-10 00:39:11','','0','12','2022-09-10 00:39:11','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121662759075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(901,'','Cash','','2022-09-10 00:43:36','','0','12','2022-09-10 00:43:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662759555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(902,'','Cash','','2022-09-10 01:04:19','','0','12','2022-09-10 01:04:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662760098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(903,'','Cash','','2022-09-10 01:32:14','','0','12','2022-09-10 01:32:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662761460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(904,'','Cash','','2022-09-10 02:16:30','','0','12','2022-09-10 02:16:30','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121662765275','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(905,'','Cash','','2022-09-10 02:25:16','','0','12','2022-09-10 02:25:16','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121662765907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(906,'','Cash','','2022-09-10 02:29:53','','0','12','2022-09-10 02:29:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662765919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(907,'','Cash','','2022-09-10 02:35:26','','0','12','2022-09-10 02:35:26','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121662766200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(908,'','Cash','','2022-09-10 02:59:31','','0','12','2022-09-10 02:59:31','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121662766672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(909,'','Cash','','2022-09-10 04:01:46','','0','12','2022-09-10 04:01:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662768524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(910,'','Cash','','2022-09-10 18:26:37','','0','12','2022-09-10 18:26:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662821338','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(911,'','Cash','','2022-09-10 19:52:05','','0','12','2022-09-10 19:52:05','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121662824864','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(912,'','Cash','','2022-09-10 20:28:40','','0','12','2022-09-10 20:28:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121662829129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(913,'','Cash','','2022-09-10 21:10:21','','0','12','2022-09-10 21:10:21','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121662831134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(914,'','Cash','','2022-09-10 21:38:15','','0','12','2022-09-10 21:38:15','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121662835090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(915,'','Cash','','2022-09-10 21:41:49','','0','12','2022-09-10 21:41:49','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121662835299','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(916,'','Cash','','2022-09-10 22:28:39','','0','12','2022-09-10 22:28:39','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662835344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(917,'','Cash','','2022-09-10 22:32:55','','0','12','2022-09-10 22:32:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662838122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(918,'','Cash','','2022-09-10 22:34:46','','0','12','2022-09-10 22:34:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662838417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(919,'','Cash','','2022-09-10 22:50:00','','0','12','2022-09-10 22:50:00','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121662838505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(920,'','Cash','','2022-09-11 00:07:25','','0','12','2022-09-11 00:07:25','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121662839409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(921,'','Cash','','2022-09-11 00:14:51','','0','12','2022-09-11 00:14:51','','1330','1330','1','retail','0','1330','1','0','0','0','0','0','0','printed',' ','','1','0','121662844071','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(922,'','Cash','','2022-09-11 00:32:23','','0','12','2022-09-11 00:32:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662844729','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(923,'','Cash','','2022-09-11 00:57:47','','0','12','2022-09-11 00:57:47','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121662845546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(924,'','Cash','','2022-09-11 01:00:10','','0','12','2022-09-11 01:00:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662847166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(925,'','Cash','','2022-09-11 01:02:32','','0','12','2022-09-11 01:02:32','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121662847215','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(926,'','Cash','','2022-09-11 01:03:53','','0','12','2022-09-11 01:03:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662847372','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(927,'','Cash','','2022-09-11 02:19:48','','0','12','2022-09-11 02:19:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662847437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(928,'','Cash','','2022-09-11 02:53:40','','0','12','2022-09-11 02:53:40','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662851992','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(929,'','Cash','','2022-09-11 03:23:42','','0','12','2022-09-11 03:23:42','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121662854029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(930,'','Cash','','2022-09-11 03:26:00','','0','12','2022-09-11 03:26:00','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121662855826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(931,'','Cash','','2022-09-11 03:29:21','','0','12','2022-09-11 03:29:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662855963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(932,'','Cash','','2022-09-11 03:53:31','','0','12','2022-09-11 03:53:31','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121662857432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(933,'','Cash','','2022-09-11 03:55:04','','0','12','2022-09-11 03:55:04','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121662857621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(934,'','Cash','','2022-09-11 17:42:24','','0','12','2022-09-11 17:42:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662907330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(935,'','Cash','','2022-09-11 17:48:22','','0','12','2022-09-11 17:48:22','','5080','5080','1','retail','0','5080','1','0','0','0','0','0','0','printed',' ','','1','0','121662907421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(936,'','Cash','','2022-09-11 17:49:45','','0','12','2022-09-11 17:49:45','','1380','1380','1','retail','0','1380','1','0','0','0','0','0','0','printed',' ','','1','0','121662907770','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(937,'','Cash','','2022-09-11 18:52:20','','0','12','2022-09-11 18:52:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662907789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(938,'','Cash','','2022-09-11 19:17:51','','0','12','2022-09-11 19:17:51','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121662911686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(939,'','Cash','','2022-09-11 20:09:46','','0','12','2022-09-11 20:09:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662914033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(940,'','Cash','','2022-09-11 21:05:02','','0','12','2022-09-11 21:05:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662919113','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(941,'','Cash','','2022-09-11 21:50:48','','0','12','2022-09-11 21:50:48','','1340','1340','1','retail','0','1340','1','0','0','0','0','0','0','printed',' ','','1','0','121662919824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(942,'','Cash','','2022-09-11 22:41:43','','0','12','2022-09-11 22:41:43','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121662922259','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(943,'','Cash','','2022-09-11 23:41:04','','0','12','2022-09-11 23:41:04','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121662925449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(944,'','Cash','','2022-09-11 23:44:51','','0','12','2022-09-11 23:44:51','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121662928902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(945,'','Cash','','2022-09-12 00:24:51','','0','12','2022-09-12 00:24:51','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121662929096','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(946,'','Cash','','2022-09-12 00:36:54','','0','12','2022-09-12 00:36:54','','3610','3610','1','retail','0','3610','1','0','0','0','0','0','0','printed',' ','','1','0','121662931520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(947,'','Cash','','2022-09-12 02:03:16','','0','12','2022-09-12 02:03:16','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121662937368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(948,'','Cash','','2022-09-12 02:16:59','','0','12','2022-09-12 02:16:59','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121662937530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(949,'','Cash','','2022-09-12 03:40:14','','0','12','2022-09-12 03:40:14','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121662938254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(950,'','Cash','','2022-09-12 03:58:30','','0','12','2022-09-12 03:58:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121662943311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(951,'','Cash','','2022-09-12 04:30:32','','0','12','2022-09-12 04:30:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121662944747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(952,'','Cash','','2022-09-12 18:53:25','','0','12','2022-09-12 18:53:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662997983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(953,'','Cash','','2022-09-12 18:55:52','','0','12','2022-09-12 18:55:52','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121662998082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(954,'','Cash','','2022-09-12 19:18:06','','0','12','2022-09-12 19:18:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121662998156','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(955,'','Cash','','2022-09-12 20:12:19','','0','12','2022-09-12 20:12:19','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121662999564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(956,'','Cash','','2022-09-12 20:24:48','','0','12','2022-09-12 20:24:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121663002800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(957,'','Cash','','2022-09-12 20:53:12','','0','12','2022-09-12 20:53:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663003492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(958,'','Cash','','2022-09-12 21:11:52','','0','12','2022-09-12 21:11:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121663005196','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(959,'','Cash','','2022-09-12 21:39:14','','0','12','2022-09-12 21:39:14','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663007940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(960,'','Cash','','2022-09-12 21:42:10','','0','12','2022-09-12 21:42:10','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121663007982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(961,'','Cash','','2022-09-12 21:52:41','','0','12','2022-09-12 21:52:41','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121663008134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(962,'','Cash','','2022-09-12 22:40:35','','0','12','2022-09-12 22:40:35','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121663008776','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(963,'','Cash','','2022-09-12 22:45:39','','0','12','2022-09-12 22:45:39','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121663011918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(964,'','Cash','','2022-09-12 23:33:52','','0','12','2022-09-12 23:33:52','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121663014303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(965,'','Cash','','2022-09-12 23:34:53','','0','12','2022-09-12 23:34:53','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663014872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(966,'','Cash','','2022-09-12 23:40:36','','0','12','2022-09-12 23:40:36','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121663015020','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(967,'','Cash','','2022-09-12 23:49:09','','0','12','2022-09-12 23:49:09','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663015240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(968,'','Cash','','2022-09-13 00:33:51','','0','12','2022-09-13 00:33:51','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663016366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(969,'','Cash','','2022-09-13 00:36:03','','0','12','2022-09-13 00:36:03','','1720','1720','1','retail','0','1720','1','0','0','0','0','0','0','printed',' ','','1','0','121663018492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(970,'','Cash','','2022-09-13 00:38:25','','0','12','2022-09-13 00:38:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121663018618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(971,'','Cash','','2022-09-13 00:46:18','','0','12','2022-09-13 00:46:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663018713','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(972,'','Cash','','2022-09-13 01:27:56','','0','12','2022-09-13 01:27:56','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663019249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(973,'','Cash','','2022-09-13 02:07:54','','0','12','2022-09-13 02:07:54','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663021683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(974,'','Cash','','2022-09-13 02:10:18','','0','12','2022-09-13 02:10:18','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663024181','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(975,'','Cash','','2022-09-13 02:58:32','','0','12','2022-09-13 02:58:32','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663027097','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(976,'','Cash','','2022-09-13 17:47:55','','0','12','2022-09-13 17:47:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121663080464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(977,'','Cash','','2022-09-13 18:00:47','','0','12','2022-09-13 18:00:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663080482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(978,'','Cash','','2022-09-13 18:13:22','','0','12','2022-09-13 18:13:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663081458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(979,'','Cash','','2022-09-13 19:14:24','','0','12','2022-09-13 19:14:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663082005','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(980,'','Cash','','2022-09-13 20:12:51','','0','12','2022-09-13 20:12:51','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663085669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(981,'','Cash','','2022-09-13 20:40:51','','0','12','2022-09-13 20:40:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663089197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(982,'','Cash','','2022-09-13 21:58:30','','0','12','2022-09-13 21:58:30','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121663093960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(983,'','Cash','','2022-09-13 22:03:23','','0','12','2022-09-13 22:03:23','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121663095795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(984,'','Cash','','2022-09-13 22:25:14','','0','12','2022-09-13 22:25:14','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121663095873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(985,'','Cash','','2022-09-13 22:57:33','','0','12','2022-09-13 22:57:33','','3290','3290','1','retail','0','3290','1','0','0','0','0','0','0','printed',' ','','1','0','121663097187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(986,'','Cash','','2022-09-13 23:11:30','','0','12','2022-09-13 23:11:30','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121663099807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(987,'','Cash','','2022-09-14 00:21:38','','0','12','2022-09-14 00:21:38','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121663103193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(988,'','Cash','','2022-09-14 00:42:09','','0','12','2022-09-14 00:42:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663104111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(989,'','Cash','','2022-09-14 16:06:59','','0','12','2022-09-14 14:11:14','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121663151791','Cleared','12','2022-09-14 16:06:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(990,'','Cash','','2022-09-14 16:34:58','','0','12','2022-09-14 16:34:58','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663160924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(991,'','Cash','','2022-09-14 16:53:40','','0','12','2022-09-14 16:53:40','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121663162590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(992,'','Cash','','2022-09-14 19:01:06','','0','12','2022-09-14 19:01:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663171257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(993,'','Cash','','2022-09-14 19:04:04','','0','12','2022-09-14 19:04:04','','3700','3700','1','retail','0','3700','1','0','0','0','0','0','0','printed',' ','','1','0','121663171330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(994,'','Cash','','2022-09-14 20:51:06','','0','12','2022-09-14 20:51:06','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121663171699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(995,'','Cash','','2022-09-14 21:04:21','','0','12','2022-09-14 21:04:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663177925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(996,'','Cash','','2022-09-14 21:04:33','','0','12','2022-09-14 21:04:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663178665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(997,'','Cash','','2022-09-14 21:49:58','','0','12','2022-09-14 21:49:58','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121663178678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(998,'','Cash','','2022-09-14 21:50:18','','0','12','2022-09-14 21:50:18','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663181402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(999,'','Cash','','2022-09-14 21:58:33','','0','12','2022-09-14 21:58:33','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663181422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1000,'','Cash','','2022-09-14 22:04:40','','0','12','2022-09-14 22:04:40','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121663181952','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1001,'','Cash','','2022-09-14 22:22:51','','0','12','2022-09-14 22:22:51','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663182417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1002,'','Cash','','2022-09-14 22:30:40','','0','12','2022-09-14 22:30:40','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121663183444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1003,'','Cash','','2022-09-15 00:28:00','','0','12','2022-09-15 00:28:00','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121663184273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1004,'','Cash','','2022-09-15 00:41:31','','0','12','2022-09-15 00:41:31','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663190933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1005,'','Cash','','2022-09-15 16:51:57','','0','12','2022-09-15 16:51:57','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121663249912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1006,'','Cash','','2022-09-15 19:34:02','','0','12','2022-09-15 19:34:02','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121663256792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1007,'','Cash','','2022-09-15 20:01:23','','0','12','2022-09-15 20:01:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663259651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1008,'','Cash','','2022-09-15 20:05:07','','0','12','2022-09-15 20:05:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663261288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1009,'','Cash','','2022-09-15 20:44:35','','0','12','2022-09-15 20:44:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663261618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1010,'','Cash','','2022-09-15 21:15:06','','0','12','2022-09-15 21:15:06','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663263878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1011,'','Cash','','2022-09-15 21:49:44','','0','12','2022-09-15 21:49:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121663266542','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1012,'','Cash','','2022-09-15 21:54:29','','0','12','2022-09-15 21:54:29','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121663267832','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1013,'','Cash','','2022-09-15 22:27:46','','0','12','2022-09-15 22:27:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663268079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1014,'','Cash','','2022-09-15 22:59:38','','0','12','2022-09-15 22:59:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663270079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1015,'','Cash','','2022-09-15 23:14:28','','0','12','2022-09-15 23:14:28','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663272197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1016,'','Cash','','2022-09-15 23:17:54','','0','12','2022-09-15 23:17:54','','1190','1190','1','retail','0','1190','1','0','0','0','0','0','0','printed',' ','','1','0','121663272954','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1017,'','Cash','','2022-09-15 23:33:39','','0','12','2022-09-15 23:33:39','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121663273971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1018,'','Cash','','2022-09-15 23:53:42','','0','12','2022-09-15 23:53:42','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663274040','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1019,'','Cash','','2022-09-15 23:57:31','','0','12','2022-09-15 23:57:31','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121663275225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1020,'','Cash','','2022-09-16 00:05:42','','0','12','2022-09-16 00:05:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663275486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1021,'','Cash','','2022-09-16 00:34:24','','0','12','2022-09-16 00:34:24','','1420','1420','1','retail','0','1420','1','0','0','0','0','0','0','printed',' ','','1','0','121663275986','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1022,'','Cash','','2022-09-16 00:43:45','','0','12','2022-09-16 00:43:45','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121663277775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1023,'','Cash','','2022-09-16 01:04:25','','0','12','2022-09-16 01:04:25','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663278299','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1024,'','Cash','','2022-09-16 11:26:29','','0','12','2022-09-16 11:26:29','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663316773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1025,'','Cash','','2022-09-16 13:28:28','','0','12','2022-09-16 13:28:28','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121663324099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1026,'','Cash','','2022-09-16 16:43:25','','0','12','2022-09-16 16:43:25','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121663329132','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1027,'','Cash','','2022-09-16 16:50:19','','0','12','2022-09-16 16:50:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663336206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1028,'','Cash','','2022-09-16 19:10:48','','0','12','2022-09-16 19:10:48','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663338618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1029,'','Cash','','2022-09-16 20:48:13','','0','12','2022-09-16 20:48:13','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121663350316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1030,'','Cash','','2022-09-16 20:58:23','','0','12','2022-09-16 20:58:23','','2570','2570','1','retail','0','2570','1','0','0','0','0','0','0','printed',' ','','1','0','121663350528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1031,'','Cash','','2022-09-16 21:04:15','','0','12','2022-09-16 21:04:15','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121663351107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1032,'','Cash','','2022-09-16 21:08:35','','0','12','2022-09-16 21:08:35','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663351480','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1033,'','Cash','','2022-09-16 21:49:22','','0','12','2022-09-16 21:49:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663354150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1034,'','Cash','','2022-09-16 21:50:08','','0','12','2022-09-16 21:50:08','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121663354166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1035,'','Cash','','2022-09-16 21:56:43','','0','12','2022-09-16 21:56:43','','1060','1060','1','retail','0','1060','1','0','0','0','0','0','0','printed',' ','','1','0','121663354215','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1036,'','Cash','','2022-09-16 22:02:26','','0','12','2022-09-16 22:02:26','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121663354612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1037,'','Cash','','2022-09-16 22:09:42','','0','12','2022-09-16 22:09:42','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121663354951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1038,'','Cash','','2022-09-16 22:49:05','','0','12','2022-09-16 22:49:05','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121663355400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1039,'','Cash','','2022-09-16 23:18:53','','0','12','2022-09-16 23:18:53','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121663357750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1040,'','Cash','','2022-09-17 00:14:45','','0','12','2022-09-17 00:14:45','','5580','5580','1','retail','0','5580','1','0','0','0','0','0','0','printed',' ','','1','0','121663359550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1041,'','Cash','','2022-09-17 00:18:09','','0','12','2022-09-17 00:18:09','','1260','1260','1','retail','0','1260','1','0','0','0','0','0','0','printed',' ','','1','0','121663363032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1042,'','Cash','','2022-09-17 00:27:50','','0','12','2022-09-17 00:27:50','','1240','1240','1','retail','0','1240','1','0','0','0','0','0','0','printed',' ','','1','0','121663363224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1043,'','Cash','','2022-09-17 00:33:32','','0','12','2022-09-17 00:33:32','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121663363680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1044,'','Cash','','2022-09-17 00:34:38','','0','12','2022-09-17 00:34:38','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121663364019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1045,'','Cash','','2022-09-17 00:40:12','','0','12','2022-09-17 00:40:12','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121663364282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1046,'','Cash','','2022-09-17 00:42:47','','0','12','2022-09-17 00:42:47','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663364483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1047,'','Cash','','2022-09-17 00:44:21','','0','12','2022-09-17 00:44:21','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663364572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1048,'','Cash','','2022-09-17 01:20:22','','0','12','2022-09-17 01:20:22','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121663366783','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1049,'','Cash','','2022-09-17 01:22:51','','0','12','2022-09-17 01:22:51','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121663366947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1050,'','Cash','','2022-09-17 01:28:46','','0','12','2022-09-17 01:28:46','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121663367105','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1051,'','Cash','','2022-09-17 01:37:22','','0','12','2022-09-17 01:37:22','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121663367432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1052,'','Cash','','2022-09-17 01:57:42','','0','12','2022-09-17 01:57:42','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663367900','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1053,'','Cash','','2022-09-17 03:12:08','','0','12','2022-09-17 03:12:08','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663369392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1054,'','Cash','','2022-09-17 13:11:54','','0','12','2022-09-17 13:11:54','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121663409506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1055,'','Cash','','2022-09-17 13:38:44','','0','12','2022-09-17 13:38:44','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121663409711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1056,'','Cash','','2022-09-17 13:57:04','','0','12','2022-09-17 13:57:04','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121663411172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1057,'','Cash','','2022-09-17 14:03:28','','0','12','2022-09-17 14:03:28','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121663412241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1058,'','Cash','','2022-09-17 14:37:01','','0','12','2022-09-17 14:37:01','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663412613','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1059,'','Cash','','2022-09-17 15:08:35','','0','12','2022-09-17 15:08:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663414625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1060,'','Cash','','2022-09-17 16:59:57','','0','12','2022-09-17 16:59:57','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121663416518','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1061,'','Cash','','2022-09-17 17:11:51','','0','12','2022-09-17 17:11:51','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663423280','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1062,'','Cash','','2022-09-17 17:50:32','','0','12','2022-09-17 17:50:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663423915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1063,'','Cash','','2022-09-17 18:09:34','','0','12','2022-09-17 18:09:34','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121663426272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1064,'','Cash','','2022-09-17 18:22:07','','0','12','2022-09-17 18:22:07','','12750','12750','1','retail','0','12750','1','0','0','0','0','0','0','printed',' ','','1','0','121663427566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1065,'','Cash','','2022-09-17 18:53:51','','0','12','2022-09-17 18:53:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663428178','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1066,'','Cash','','2022-09-17 20:58:51','','0','12','2022-09-17 20:58:51','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121663437475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1067,'','Cash','','2022-09-17 21:30:59','','0','12','2022-09-17 21:30:59','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121663438063','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1068,'','Cash','','2022-09-17 22:16:56','','0','12','2022-09-17 22:16:56','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121663439466','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1069,'','Cash','','2022-09-17 22:21:27','','0','12','2022-09-17 22:21:27','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121663442484','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1070,'','Cash','','2022-09-17 23:21:18','','0','12','2022-09-17 23:21:18','','8500','8500','1','retail','0','8500','1','0','0','0','0','0','0','printed',' ','','1','0','121663442826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1071,'','Cash','','2022-09-17 23:55:36','','0','12','2022-09-17 23:55:36','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663446104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1072,'','Cash','','2022-09-18 00:11:52','','0','12','2022-09-18 00:11:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663448337','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1073,'','Cash','','2022-09-18 00:14:33','','0','12','2022-09-18 00:14:33','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663449122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1074,'','Cash','','2022-09-18 00:25:47','','0','12','2022-09-18 00:25:47','','510','510','1','retail','0','510','1','0','0','0','0','0','0','printed',' ','','1','0','121663449279','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1075,'','Cash','','2022-09-18 00:38:20','','0','12','2022-09-18 00:38:20','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121663449952','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1076,'','Cash','','2022-09-18 00:43:05','','0','12','2022-09-18 00:43:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663450967','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1077,'','Cash','','2022-09-18 01:38:05','','0','12','2022-09-18 01:38:05','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121663451119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1078,'','Cash','','2022-09-18 02:05:17','','0','12','2022-09-18 02:05:17','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121663454402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1079,'','Cash','','2022-09-18 02:13:40','','0','12','2022-09-18 02:13:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663455924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1080,'','Cash','','2022-09-18 02:33:12','','0','12','2022-09-18 02:33:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663456424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1081,'','Cash','','2022-09-18 02:49:11','','0','12','2022-09-18 02:49:11','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121663457596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1082,'','Cash','','2022-09-18 02:49:34','','0','12','2022-09-18 02:49:34','','6300','6300','1','retail','0','6300','1','0','0','0','0','0','0','printed',' ','','1','0','121663458556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1083,'','Cash','','2022-09-18 02:49:54','','0','12','2022-09-18 02:49:54','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663458578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1084,'','Cash','','2022-09-18 02:51:01','','0','12','2022-09-18 02:51:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663458597','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1085,'','Cash','','2022-09-18 03:49:57','','0','12','2022-09-18 03:49:57','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663458665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1086,'','Cash','','2022-09-18 03:54:48','','0','12','2022-09-18 03:54:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663462479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1087,'','Cash','','2022-09-18 16:01:32','','0','12','2022-09-18 16:01:32','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121663506045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1088,'','Cash','','2022-09-18 16:11:17','','0','12','2022-09-18 16:06:02','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121663506252','Cleared','12','2022-09-18 16:11:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1089,'','Cash','','2022-09-18 18:29:11','','0','12','2022-09-18 18:29:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663514899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1090,'','Cash','','2022-09-18 21:36:43','','0','12','2022-09-18 21:36:43','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121663526011','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1091,'','Cash','','2022-09-18 21:38:24','','0','12','2022-09-18 21:38:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663526282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1092,'','Cash','','2022-09-18 21:40:03','','0','12','2022-09-18 21:40:03','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663526367','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1093,'','Cash','','2022-09-18 21:41:45','','0','12','2022-09-18 21:41:45','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663526442','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1094,'','Cash','','2022-09-18 22:59:56','','0','12','2022-09-18 22:59:56','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663526509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1095,'','Cash','','2022-09-18 23:05:13','','0','12','2022-09-18 23:05:13','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663531200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1096,'','Cash','','2022-09-18 23:46:54','','0','12','2022-09-18 23:46:54','','1340','1340','1','retail','0','1340','1','0','0','0','0','0','0','printed',' ','','1','0','121663531561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1097,'','Cash','','2022-09-19 00:06:56','','0','12','2022-09-19 00:06:56','','2090','2090','1','retail','0','2090','1','0','0','0','0','0','0','printed',' ','','1','0','121663534253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1098,'','Cash','','2022-09-19 00:11:44','','0','12','2022-09-19 00:11:44','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663535316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1099,'','Cash','','2022-09-19 00:18:10','','0','12','2022-09-19 00:18:10','','1690','1690','1','retail','0','1690','1','0','0','0','0','0','0','printed',' ','','1','0','121663535508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1100,'','Cash','','2022-09-19 00:26:42','','0','12','2022-09-19 00:26:42','','130','130','1','retail','0','130','1','0','0','0','0','0','0','printed',' ','','1','0','121663536048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1101,'','Cash','','2022-09-19 00:32:02','','0','12','2022-09-19 00:32:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663536451','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1102,'','Cash','','2022-09-19 01:17:51','','0','12','2022-09-19 01:17:51','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121663536760','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1103,'','Cash','','2022-09-19 02:39:23','','0','12','2022-09-19 02:39:23','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121663539508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1104,'','Cash','','2022-09-19 03:49:51','','0','12','2022-09-19 03:49:51','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121663544368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1105,'','Cash','','2022-09-19 18:58:45','','0','12','2022-09-19 18:58:45','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121663603116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1106,'','Cash','','2022-09-19 19:05:37','','0','12','2022-09-19 19:05:37','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121663603482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1107,'','Cash','','2022-09-19 19:34:47','','0','12','2022-09-19 19:34:47','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663603569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1108,'','Cash','','2022-09-19 19:54:38','','0','12','2022-09-19 19:54:38','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663605349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1109,'','Cash','','2022-09-19 19:54:54','','0','12','2022-09-19 19:54:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663606482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1110,'','Cash','','2022-09-19 20:05:23','','0','12','2022-09-19 20:05:23','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121663606498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1111,'','Cash','','2022-09-19 21:22:14','','0','12','2022-09-19 21:22:14','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121663607840','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1112,'','Cash','','2022-09-19 21:25:19','','0','12','2022-09-19 21:25:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663611849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1113,'','Cash','','2022-09-19 21:37:42','','0','12','2022-09-19 21:37:42','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121663611922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1114,'','Cash','','2022-09-19 21:49:00','','0','12','2022-09-19 21:49:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663612666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1115,'','Cash','','2022-09-19 22:39:45','','0','12','2022-09-19 22:39:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663613344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1116,'','Cash','','2022-09-20 00:14:40','','0','12','2022-09-20 00:14:40','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121663616413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1117,'','Cash','','2022-09-20 00:16:22','','0','12','2022-09-20 00:16:22','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121663622168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1118,'','Cash','','2022-09-20 01:20:34','','0','12','2022-09-20 01:20:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663622321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1119,'','Cash','','2022-09-20 01:23:59','','0','12','2022-09-20 01:23:59','','4600','4600','1','retail','0','4600','1','0','0','0','0','0','0','printed',' ','','1','0','121663626052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1120,'','Cash','','2022-09-20 01:28:40','','0','12','2022-09-20 01:28:40','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663626366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1121,'','Cash','','2022-09-20 16:16:06','','0','12','2022-09-20 16:16:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663679747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1122,'','Cash','','2022-09-20 18:32:35','','0','12','2022-09-20 18:32:35','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121663687946','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1123,'','Cash','','2022-09-20 18:54:24','','0','12','2022-09-20 18:54:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663689244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1124,'','Cash','','2022-09-20 18:57:05','','0','12','2022-09-20 18:57:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663689268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1125,'','Cash','','2022-09-20 20:57:51','','0','12','2022-09-20 20:57:51','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121663689436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1126,'','Cash','','2022-09-20 20:58:15','','0','12','2022-09-20 20:58:15','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663696678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1127,'','Cash','','2022-09-20 21:31:55','','0','12','2022-09-20 21:31:55','','1260','1260','1','retail','0','1260','1','0','0','0','0','0','0','printed',' ','','1','0','121663696698','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1128,'','Cash','','2022-09-20 22:03:58','','0','12','2022-09-20 22:03:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663698812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1129,'','Cash','','2022-09-20 22:34:24','','0','12','2022-09-20 22:34:24','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121663700641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1130,'','Cash','','2022-09-20 22:55:37','','0','12','2022-09-20 22:55:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663702508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1131,'','Cash','','2022-09-20 23:34:49','','0','12','2022-09-20 23:34:49','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121663703739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1132,'','Cash','','2022-09-21 00:17:43','','0','12','2022-09-21 00:17:43','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663706093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1133,'','Cash','','2022-09-21 00:49:20','','0','12','2022-09-21 00:49:20','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663708849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1134,'','Cash','','2022-09-21 17:21:40','','0','12','2022-09-21 17:21:40','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121663769965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1135,'','Cash','','2022-09-21 17:26:57','','0','12','2022-09-21 17:26:57','','540','540','1','retail','0','1540','1','0','0','0','0','0','0','printed',' ','','1','0','121663770257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1136,'','Cash','','2022-09-21 17:38:51','','0','12','2022-09-21 17:38:51','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121663770896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1137,'','Cash','','2022-09-21 17:59:16','','0','12','2022-09-21 17:59:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663771234','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1138,'','Cash','','2022-09-21 18:36:52','','0','12','2022-09-21 18:36:52','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663772403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1139,'','Cash','','2022-09-21 18:49:34','','0','12','2022-09-21 18:49:34','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121663774663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1140,'','Cash','','2022-09-21 19:40:10','','0','12','2022-09-21 19:40:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663777213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1141,'','Cash','','2022-09-21 20:27:54','','0','12','2022-09-21 20:27:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663778414','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1142,'','Cash','','2022-09-21 20:46:16','','0','12','2022-09-21 20:46:16','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663781281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1143,'','Cash','','2022-09-21 21:11:25','','0','12','2022-09-21 21:11:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663782380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1144,'','Cash','','2022-09-21 22:05:47','','0','12','2022-09-21 21:24:15','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663784645','Cleared','12','2022-09-21 22:05:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1145,'','Cash','','2022-09-21 22:51:20','','0','12','2022-09-21 22:51:20','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663789866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1146,'','Cash','','2022-09-21 23:43:03','','0','12','2022-09-21 23:43:03','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121663789885','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1147,'','Cash','','2022-09-21 23:45:18','','0','12','2022-09-21 23:45:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663793023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1148,'','Cash','','2022-09-21 23:53:27','','0','12','2022-09-21 23:53:27','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121663793573','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1149,'','Cash','','2022-09-22 00:02:17','','0','12','2022-09-22 00:02:17','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121663793610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1150,'','Cash','','2022-09-22 00:21:13','','0','12','2022-09-22 00:21:13','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663794158','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1151,'','Cash','','2022-09-22 00:37:33','','0','12','2022-09-22 00:37:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663796238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1152,'','Cash','','2022-09-22 01:23:28','','0','12','2022-09-22 01:23:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663796814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1153,'','Cash','','2022-09-22 01:25:53','','0','12','2022-09-22 01:25:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663799049','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1154,'','Cash','','2022-09-22 01:49:20','','0','12','2022-09-22 01:49:20','','1610','1610','1','retail','0','1610','1','0','0','0','0','0','0','printed',' ','','1','0','121663799157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1155,'','Cash','','2022-09-22 01:50:22','','0','12','2022-09-22 01:50:22','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121663800564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1156,'','Cash','','2022-09-22 03:44:34','','0','12','2022-09-22 03:44:34','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121663800626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1157,'','Cash','','2022-09-22 14:35:16','','0','12','2022-09-22 14:35:16','','1670','1670','1','retail','0','1670','1','0','0','0','0','0','0','printed',' ','','1','0','121663846094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1158,'','Cash','','2022-09-22 14:44:48','','0','12','2022-09-22 14:44:48','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121663846593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1159,'','Cash','','2022-09-22 16:21:58','','0','12','2022-09-22 16:21:58','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121663847093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1160,'','Cash','','2022-09-22 16:25:07','','0','12','2022-09-22 16:25:07','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121663852922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1161,'','Cash','','2022-09-22 18:13:41','','0','12','2022-09-22 18:13:41','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121663855890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1162,'','Cash','','2022-09-22 18:19:54','','0','12','2022-09-22 18:19:54','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121663859787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1163,'','Cash','','2022-09-22 18:53:14','','0','12','2022-09-22 18:53:14','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121663859998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1164,'','Cash','','2022-09-22 19:23:34','','0','12','2022-09-22 19:23:34','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663862006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1165,'','Cash','','2022-09-22 20:54:01','','0','12','2022-09-22 20:54:01','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663863822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1166,'','Cash','','2022-09-22 21:17:52','','0','12','2022-09-22 21:17:52','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663869329','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1167,'','Cash','','2022-09-22 21:22:31','','0','12','2022-09-22 21:22:31','','4880','4880','1','retail','0','4880','1','0','0','0','0','0','0','printed',' ','','1','0','121663870695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1168,'','Cash','','2022-09-22 22:09:58','','0','12','2022-09-22 22:09:58','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121663871115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1169,'','Cash','','2022-09-22 22:25:02','','0','12','2022-09-22 22:25:02','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121663873833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1170,'','Cash','','2022-09-22 22:42:55','','0','12','2022-09-22 22:42:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663874829','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1171,'','Cash','','2022-09-22 23:11:06','','0','12','2022-09-22 23:11:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663875859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1172,'','Cash','','2022-09-22 23:12:25','','0','12','2022-09-22 23:12:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663877469','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1173,'','Cash','','2022-09-22 23:33:49','','0','12','2022-09-22 23:33:49','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121663877552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1174,'','Cash','','2022-09-22 23:36:51','','0','12','2022-09-22 23:36:51','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121663878954','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1175,'','Cash','','2022-09-23 00:06:19','','0','12','2022-09-23 00:06:19','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121663879103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1176,'','Cash','','2022-09-23 00:17:05','','0','12','2022-09-23 00:17:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121663880887','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1177,'','Cash','','2022-09-23 00:21:59','','0','12','2022-09-23 00:21:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663881446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1178,'','Cash','','2022-09-23 00:51:09','','0','12','2022-09-23 00:51:09','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663881732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1179,'','Cash','','2022-09-23 01:06:37','','0','12','2022-09-23 01:06:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663883482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1180,'','Cash','','2022-09-23 01:51:50','','0','12','2022-09-23 01:51:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663884488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1181,'','Cash','','2022-09-23 01:55:05','','0','12','2022-09-23 01:55:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663887114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1182,'','Cash','','2022-09-23 01:57:44','','0','12','2022-09-23 01:57:44','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121663887403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1183,'','Cash','','2022-09-23 03:57:44','','0','12','2022-09-23 03:11:45','','1840','1840','1','retail','0','1840','1','0','0','0','0','0','0','printed',' ','','1','0','121663887566','Cleared','12','2022-09-23 03:57:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1184,'','Cash','','2022-09-23 03:59:32','','0','12','2022-09-23 03:59:32','','2180','2180','1','retail','0','2180','1','0','0','0','0','0','0','printed',' ','','1','0','121663894697','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1185,'','Cash','','2022-09-23 18:02:59','','0','12','2022-09-23 18:02:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663945355','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1186,'','Cash','','2022-09-23 18:18:27','','0','12','2022-09-23 18:18:27','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121663946297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1187,'','Cash','','2022-09-23 18:42:19','','0','12','2022-09-23 18:42:19','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121663946324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1188,'','Cash','','2022-09-23 18:54:13','','0','12','2022-09-23 18:54:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121663947744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1189,'','Cash','','2022-09-23 19:25:33','','0','12','2022-09-23 19:25:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121663948461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1190,'','Cash','','2022-09-23 20:10:39','','0','12','2022-09-23 20:10:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663950339','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1191,'','Cash','','2022-09-23 20:14:06','','0','12','2022-09-23 20:14:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663953143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1192,'','Cash','','2022-09-23 20:29:55','','0','12','2022-09-23 20:29:55','','16170','16170','1','retail','0','16170','1','0','0','0','0','0','0','printed',' ','','1','0','121663953253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1193,'','Cash','','2022-09-23 20:33:25','','0','12','2022-09-23 20:33:25','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121663954389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1194,'','Cash','','2022-09-23 21:50:28','','0','12','2022-09-23 21:50:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663959016','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1195,'','Cash','','2022-09-23 22:19:20','','0','12','2022-09-23 21:56:02','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121663959032','Cleared','12','2022-09-23 22:19:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1196,'','Cash','','2022-09-23 22:23:19','','0','12','2022-09-23 22:23:19','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121663960764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1197,'','Cash','','2022-09-23 22:41:37','','0','12','2022-09-23 22:41:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663961186','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1198,'','Cash','','2022-09-23 23:05:05','','0','12','2022-09-23 23:05:05','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121663962224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1199,'','Cash','','2022-09-23 23:07:36','','0','12','2022-09-23 23:07:36','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121663963646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1200,'','Cash','','2022-09-23 23:45:03','','0','12','2022-09-23 23:45:03','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121663963854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1201,'','Cash','','2022-09-23 23:53:18','','0','12','2022-09-23 23:53:18','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121663966073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1202,'','Cash','','2022-09-24 00:01:16','','0','12','2022-09-24 00:01:16','','4400','4400','1','retail','0','4400','1','0','0','0','0','0','0','printed',' ','','1','0','121663966421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1203,'','Cash','','2022-09-24 00:02:06','','0','12','2022-09-24 00:02:06','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663966904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1204,'','Cash','','2022-09-24 00:17:29','','0','12','2022-09-24 00:17:29','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121663967737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1205,'','Cash','','2022-09-24 01:07:32','','0','12','2022-09-24 01:07:32','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121663970808','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1206,'','Cash','','2022-09-24 01:09:31','','0','12','2022-09-24 01:09:31','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663970943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1207,'','Cash','','2022-09-24 01:12:15','','0','12','2022-09-24 01:12:15','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121663970977','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1208,'','Cash','','2022-09-24 01:58:37','','0','12','2022-09-24 01:58:37','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121663971324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1209,'','Cash','','2022-09-24 02:15:10','','0','12','2022-09-24 02:15:10','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121663974854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1210,'','Cash','','2022-09-24 02:28:17','','0','12','2022-09-24 02:28:17','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121663975637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1211,'','Cash','','2022-09-24 02:59:05','','0','12','2022-09-24 02:59:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663975700','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1212,'','Cash','','2022-09-24 03:00:01','','0','12','2022-09-24 03:00:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121663977552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1213,'','Cash','','2022-09-24 03:14:50','','0','12','2022-09-24 03:14:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121663977605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1214,'','Cash','','2022-09-24 04:09:22','','0','12','2022-09-24 04:09:22','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663978646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1215,'','Cash','','2022-09-24 04:12:27','','0','12','2022-09-24 04:12:27','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121663981767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1216,'','Cash','','2022-09-24 04:18:04','','0','12','2022-09-24 04:18:04','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663982171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1217,'','Cash','','2022-09-24 04:47:16','','0','12','2022-09-24 04:47:16','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121663982287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1218,'','Cash','','2022-09-24 05:18:58','','0','12','2022-09-24 05:18:58','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121663984446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1219,'','Cash','','2022-09-24 19:09:46','','0','12','2022-09-24 19:09:46','','130','130','1','retail','0','130','1','0','0','0','0','0','0','printed',' ','','1','0','121664034442','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1220,'','Cash','','2022-09-24 19:12:44','','0','12','2022-09-24 19:12:44','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121664035791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1221,'','Cash','','2022-09-24 20:27:09','','0','12','2022-09-24 20:27:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121664035976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1222,'','Cash','','2022-09-24 20:41:49','','0','12','2022-09-24 20:41:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664040592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1223,'','Cash','','2022-09-24 21:31:55','','0','12','2022-09-24 21:31:55','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664041389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1224,'','Cash','','2022-09-24 21:59:56','','0','12','2022-09-24 21:59:56','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121664044319','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1225,'','Cash','','2022-09-24 22:15:07','','0','12','2022-09-24 22:15:07','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121664046410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1226,'','Cash','','2022-09-24 22:25:55','','0','12','2022-09-24 22:25:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664046913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1227,'','Cash','','2022-09-24 22:40:22','','0','12','2022-09-24 22:40:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664047559','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1228,'','Cash','','2022-09-24 22:51:25','','0','12','2022-09-24 22:51:25','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121664048950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1229,'','Cash','','2022-09-24 23:03:52','','0','12','2022-09-24 23:03:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664049250','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1230,'','Cash','','2022-09-24 23:09:08','','0','12','2022-09-24 23:09:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664049835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1231,'','Cash','','2022-09-24 23:12:55','','0','12','2022-09-24 23:12:55','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664050360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1232,'','Cash','','2022-09-24 23:28:41','','0','12','2022-09-24 23:28:41','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121664050379','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1233,'','Cash','','2022-09-24 23:38:09','','0','12','2022-09-24 23:38:09','','780','780','1','retail','0','780','1','0','0','0','0','0','0','printed',' ','','1','0','121664051357','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1234,'','Cash','','2022-09-24 23:51:27','','0','12','2022-09-24 23:51:27','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664051901','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1235,'','Cash','','2022-09-24 23:53:28','','0','12','2022-09-24 23:53:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664052755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1236,'','Cash','','2022-09-25 00:31:24','','0','12','2022-09-25 00:31:24','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121664053681','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1237,'','Cash','','2022-09-25 00:36:44','','0','12','2022-09-25 00:36:44','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664055353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1238,'','Cash','','2022-09-25 00:52:31','','0','12','2022-09-25 00:52:31','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121664055447','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1239,'','Cash','','2022-09-25 01:07:39','','0','12','2022-09-25 01:07:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664056871','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1240,'','Cash','','2022-09-25 01:17:28','','0','12','2022-09-25 01:17:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664057707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1241,'','Cash','','2022-09-25 01:30:11','','0','12','2022-09-25 01:30:11','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664057855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1242,'','Cash','','2022-09-25 02:10:02','','0','12','2022-09-25 02:10:02','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121664060988','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1243,'','Cash','','2022-09-25 02:11:32','','0','12','2022-09-25 02:11:32','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121664061006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1244,'','Cash','','2022-09-25 02:13:36','','0','12','2022-09-25 02:13:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664061197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1245,'','Cash','','2022-09-25 02:23:41','','0','12','2022-09-25 02:23:41','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121664061774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1246,'','Cash','','2022-09-25 02:24:22','','0','12','2022-09-25 02:24:22','','90','90','1','retail','0','90','1','0','0','0','0','0','0','printed',' ','','1','0','121664061853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1247,'','Cash','','2022-09-25 02:38:53','','0','12','2022-09-25 02:38:53','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121664061867','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1248,'','Cash','','2022-09-25 03:47:33','','0','12','2022-09-25 03:39:56','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121664062737','Cleared','12','2022-09-25 03:47:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1249,'','Cash','','2022-09-25 04:08:49','','0','12','2022-09-25 04:08:49','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121664066898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1250,'','Cash','','2022-09-25 06:14:11','','0','12','2022-09-25 06:14:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664075619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1251,'','Cash','','2022-09-25 18:17:02','','0','12','2022-09-25 18:17:02','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121664118996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1252,'','Cash','','2022-09-25 19:41:26','','0','12','2022-09-25 19:41:26','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664119026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1253,'','Cash','','2022-09-25 20:16:17','','0','12','2022-09-25 20:16:17','','1210','1210','1','retail','0','1210','1','0','0','0','0','0','0','printed',' ','','1','0','121664124103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1254,'','Cash','','2022-09-25 20:43:56','','0','12','2022-09-25 20:43:56','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121664127748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1255,'','Cash','','2022-09-25 22:39:20','','0','12','2022-09-25 22:39:20','','1060','1060','1','retail','0','1060','1','0','0','0','0','0','0','printed',' ','','1','0','121664128932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1256,'','Cash','','2022-09-26 00:17:26','','0','12','2022-09-26 00:17:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664138536','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1257,'','Cash','','2022-09-26 00:30:29','','0','12','2022-09-26 00:30:29','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121664141188','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1258,'','Cash','','2022-09-26 02:17:23','','0','12','2022-09-26 02:17:23','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121664141582','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1259,'','Cash','','2022-09-26 03:20:55','','0','12','2022-09-26 03:20:55','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121664148135','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1260,'','Cash','','2022-09-26 17:01:57','','0','12','2022-09-26 17:01:57','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664200869','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1261,'','Cash','','2022-09-26 19:29:05','','0','12','2022-09-26 19:29:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664209735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1262,'','Cash','','2022-09-26 19:58:50','','0','12','2022-09-26 19:58:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664209750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1263,'','Cash','','2022-09-26 20:33:25','','0','12','2022-09-26 20:33:25','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121664211617','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1264,'','Cash','','2022-09-26 21:13:58','','0','12','2022-09-26 21:13:58','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664213990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1265,'','Cash','','2022-09-26 21:34:39','','0','12','2022-09-26 21:34:39','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664216063','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1266,'','Cash','','2022-09-26 22:12:56','','0','12','2022-09-26 22:12:56','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121664218491','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1267,'','Cash','','2022-09-26 22:32:31','','0','12','2022-09-26 22:32:31','','1790','1790','1','retail','0','1790','1','0','0','0','0','0','0','printed',' ','','1','0','121664219684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1268,'','Cash','','2022-09-26 22:57:12','','0','12','2022-09-26 22:57:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664220755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1269,'','Cash','','2022-09-26 23:14:00','','0','12','2022-09-26 23:14:00','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121664222236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1270,'','Cash','','2022-09-27 00:30:55','','0','12','2022-09-27 00:30:55','','2970','2970','1','retail','0','2970','1','0','0','0','0','0','0','printed',' ','','1','0','121664227839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1271,'','Cash','','2022-09-27 00:47:24','','0','12','2022-09-27 00:47:24','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121664228830','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1272,'','Cash','','2022-09-27 13:54:07','','0','12','2022-09-27 13:54:07','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121664276026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1273,'','Cash','','2022-09-27 17:19:19','','0','12','2022-09-27 17:19:19','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664288348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1274,'','Cash','','2022-09-27 19:15:17','','0','12','2022-09-27 19:15:17','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121664289499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1275,'','Cash','','2022-09-27 19:33:45','','0','12','2022-09-27 19:33:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664295417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1276,'','Cash','','2022-09-27 19:48:53','','0','12','2022-09-27 19:48:53','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121664296431','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1277,'','Cash','','2022-09-27 20:26:49','','0','12','2022-09-27 20:26:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664297365','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1278,'','Cash','','2022-09-27 20:37:13','','0','12','2022-09-27 20:37:13','','12530','12530','1','retail','0','12530','1','0','0','0','0','0','0','printed',' ','','1','0','121664299613','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1279,'','Cash','','2022-09-27 20:38:05','','0','12','2022-09-27 20:38:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664300254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1280,'','Cash','','2022-09-27 21:02:24','','0','12','2022-09-27 21:02:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664300289','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1281,'','Cash','','2022-09-27 21:28:32','','0','12','2022-09-27 21:28:32','','4580','4580','1','retail','0','4580','1','0','0','0','0','0','0','printed',' ','','1','0','121664301752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1282,'','Cash','','2022-09-27 21:38:43','','0','12','2022-09-27 21:38:43','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121664303316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1283,'','Cash','','2022-09-27 21:48:44','','0','12','2022-09-27 21:48:44','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121664303998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1284,'','Cash','','2022-09-27 21:56:15','','0','12','2022-09-27 21:56:15','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664304527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1285,'','Cash','','2022-09-27 22:04:25','','0','12','2022-09-27 22:04:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664305030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1286,'','Cash','','2022-09-27 22:05:06','','0','12','2022-09-27 22:05:06','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664305496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1287,'','Cash','','2022-09-27 22:44:26','','0','12','2022-09-27 22:44:26','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121664305790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1288,'','Cash','','2022-09-27 22:46:30','','0','12','2022-09-27 22:46:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664307931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1289,'','Cash','','2022-09-27 22:51:33','','0','12','2022-09-27 22:51:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664307998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1290,'','Cash','','2022-09-28 00:01:04','','0','12','2022-09-28 00:01:04','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121664308325','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1291,'','Cash','','2022-09-28 00:13:53','','0','12','2022-09-28 00:13:53','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121664312551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1292,'','Cash','','2022-09-28 00:36:39','','0','12','2022-09-28 00:36:39','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664314483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1293,'','Cash','','2022-09-28 00:53:27','','0','12','2022-09-28 00:53:27','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121664314603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1294,'','Cash','','2022-09-28 01:25:54','','0','12','2022-09-28 01:25:54','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121664315947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1295,'','Cash','','2022-09-28 01:48:28','','0','12','2022-09-28 01:48:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664317581','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1296,'','Cash','','2022-09-28 02:36:46','','0','12','2022-09-28 02:36:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664321106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1297,'','Cash','','2022-09-28 03:08:55','','0','12','2022-09-28 03:08:55','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664321810','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1298,'','Cash','','2022-09-28 03:10:37','','0','12','2022-09-28 03:10:37','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121664323802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1299,'','Cash','','2022-09-28 03:18:59','','0','12','2022-09-28 03:18:59','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664324297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1300,'','Cash','','2022-09-28 03:21:12','','0','12','2022-09-28 03:21:12','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664324452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1301,'','Cash','','2022-09-28 03:22:15','','0','12','2022-09-28 03:22:15','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664324476','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1302,'','Cash','','2022-09-28 03:22:57','','0','12','2022-09-28 03:22:57','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664324565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1303,'','Cash','','2022-09-28 03:35:52','','0','12','2022-09-28 03:35:52','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664325324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1304,'','Cash','','2022-09-28 03:37:21','','0','12','2022-09-28 03:37:21','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121664325355','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1305,'','Cash','','2022-09-28 03:44:12','','0','12','2022-09-28 03:44:12','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121664325811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1306,'','Cash','','2022-09-28 03:45:51','','0','12','2022-09-28 03:45:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664325938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1307,'','Cash','','2022-09-28 03:47:26','','0','12','2022-09-28 03:47:26','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121664326008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1308,'','Cash','','2022-09-28 03:51:04','','0','12','2022-09-28 03:51:04','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121664326253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1309,'','Cash','','2022-09-28 03:52:28','','0','12','2022-09-28 03:52:28','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121664326334','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1310,'','Cash','','2022-09-28 03:56:33','','0','12','2022-09-28 03:56:33','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121664326565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1311,'','Cash','','2022-09-28 04:01:03','','0','12','2022-09-28 04:01:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664326856','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1312,'','Cash','','2022-09-28 04:27:24','','0','12','2022-09-28 04:27:24','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664326866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1313,'','Cash','','2022-09-28 18:50:11','','0','12','2022-09-28 18:50:11','','3870','3870','1','retail','0','3870','1','0','0','0','0','0','0','printed',' ','','1','0','121664375094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1314,'','Cash','','2022-09-28 18:50:30','','0','12','2022-09-28 18:50:30','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664380216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1315,'','Cash','','2022-09-28 19:22:25','','0','12','2022-09-28 19:22:25','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664380238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1316,'','Cash','','2022-09-28 19:32:42','','0','12','2022-09-28 19:32:42','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121664382150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1317,'','Cash','','2022-09-28 19:44:21','','0','12','2022-09-28 19:44:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664383015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1318,'','Cash','','2022-09-28 19:56:00','','0','12','2022-09-28 19:56:00','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121664384103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1319,'','Cash','','2022-09-28 20:04:47','','0','12','2022-09-28 20:04:47','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664384326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1320,'','Cash','','2022-09-28 21:19:00','','0','12','2022-09-28 21:19:00','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664384797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1321,'','Cash','','2022-09-28 21:29:31','','0','12','2022-09-28 21:29:31','','1290','1290','1','retail','0','1290','1','0','0','0','0','0','0','printed',' ','','1','0','121664389147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1322,'','Cash','','2022-09-28 21:38:59','','0','12','2022-09-28 21:38:59','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121664390084','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1323,'','Cash','','2022-09-28 21:46:28','','0','12','2022-09-28 21:46:28','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664390525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1324,'','Cash','','2022-09-28 22:30:13','','0','12','2022-09-28 22:30:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664391168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1325,'','Cash','','2022-09-28 22:52:05','','0','12','2022-09-28 22:52:05','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121664394703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1326,'','Cash','','2022-09-28 23:46:54','','0','12','2022-09-28 23:46:54','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121664395112','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1327,'','Cash','','2022-09-28 23:55:15','','0','12','2022-09-28 23:55:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664398073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1328,'','Cash','','2022-09-29 00:07:09','','0','12','2022-09-29 00:07:09','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121664398819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1329,'','Cash','','2022-09-29 00:07:42','','0','12','2022-09-29 00:07:42','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121664399233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1330,'','Cash','','2022-09-29 00:51:29','','0','12','2022-09-29 00:51:29','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664399306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1331,'','Cash','','2022-09-29 01:10:56','','0','12','2022-09-29 01:10:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664402025','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1332,'','Cash','','2022-09-29 01:11:27','','0','12','2022-09-29 01:11:27','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664403061','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1333,'','Cash','','2022-09-29 01:29:38','','0','12','2022-09-29 01:29:38','','1840','1840','1','retail','0','1840','1','0','0','0','0','0','0','printed',' ','','1','0','121664403091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1334,'','Cash','','2022-09-29 01:39:02','','0','12','2022-09-29 01:39:02','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121664404353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1335,'','Cash','','2022-09-29 01:41:24','','0','12','2022-09-29 01:41:24','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664404766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1336,'','Cash','','2022-09-29 01:44:32','','0','12','2022-09-29 01:44:32','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664404982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1337,'','Cash','','2022-09-29 01:55:16','','0','12','2022-09-29 01:50:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664405134','Cleared','12','2022-09-29 01:55:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1338,'','Cash','','2022-09-29 02:23:10','','0','12','2022-09-29 02:23:10','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121664407368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1339,'','Cash','','2022-09-29 02:25:39','','0','12','2022-09-29 02:25:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664407397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1340,'','Cash','','2022-09-29 13:34:49','','0','12','2022-09-29 13:34:49','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664447656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1341,'','Cash','','2022-09-29 13:46:22','','0','12','2022-09-29 13:46:22','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664447692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1342,'','Cash','','2022-09-29 17:08:06','','0','12','2022-09-29 17:08:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664459759','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1343,'','Cash','','2022-09-29 19:33:34','','0','12','2022-09-29 19:33:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664460866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1344,'','Cash','','2022-09-29 19:57:19','','0','12','2022-09-29 19:57:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664469269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1345,'','Cash','','2022-09-29 20:20:50','','0','12','2022-09-29 20:20:50','','2880','2880','1','retail','0','2880','1','0','0','0','0','0','0','printed',' ','','1','0','121664470652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1346,'','Cash','','2022-09-29 20:36:22','','0','12','2022-09-29 20:36:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664472059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1347,'','Cash','','2022-09-29 20:51:24','','0','12','2022-09-29 20:51:24','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121664473428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1348,'','Cash','','2022-09-29 21:13:16','','0','12','2022-09-29 21:13:16','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121664473888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1349,'','Cash','','2022-09-29 21:28:07','','0','12','2022-09-29 21:28:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664475319','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1350,'','Cash','','2022-09-29 22:30:20','','0','12','2022-09-29 22:30:20','','1130','1130','1','retail','0','1130','1','0','0','0','0','0','0','printed',' ','','1','0','121664479769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1351,'','Cash','','2022-09-29 22:56:19','','0','12','2022-09-29 22:56:19','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121664481368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1352,'','Cash','','2022-09-30 00:08:26','','0','12','2022-09-30 00:08:26','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664483597','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1353,'','Cash','','2022-09-30 00:31:44','','0','12','2022-09-30 00:31:44','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121664485866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1354,'','Cash','','2022-09-30 14:48:00','','0','12','2022-09-30 14:48:00','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121664538254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1355,'','Cash','','2022-09-30 15:01:09','','0','12','2022-09-30 15:01:09','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121664538519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1356,'','Cash','','2022-09-30 16:25:56','','0','12','2022-09-30 16:25:56','','1630','1630','1','retail','0','1630','1','0','0','0','0','0','0','printed',' ','','1','0','121664539273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1357,'','Cash','','2022-09-30 16:32:26','','0','12','2022-09-30 16:32:26','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121664544511','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1358,'','Cash','','2022-09-30 17:14:01','','0','12','2022-09-30 17:14:01','','1170','1170','1','retail','0','1170','1','0','0','0','0','0','0','printed',' ','','1','0','121664544996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1359,'','Cash','','2022-09-30 18:01:16','','0','12','2022-09-30 18:01:16','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121664549064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1360,'','Cash','','2022-09-30 20:20:03','','0','12','2022-09-30 20:20:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664558392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1361,'','Cash','','2022-09-30 20:56:31','','0','12','2022-09-30 20:56:31','','190','190','1','retail','0','190','1','0','0','0','0','0','0','printed',' ','','1','0','121664558418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1362,'','Cash','','2022-09-30 22:13:07','','0','12','2022-09-30 22:13:07','','2960','2960','1','retail','0','2960','1','0','0','0','0','0','0','printed',' ','','1','0','121664560660','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1363,'','Cash','','2022-09-30 22:20:29','','0','12','2022-09-30 22:20:29','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121664565326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1364,'','Cash','','2022-09-30 22:28:56','','0','12','2022-09-30 22:28:56','','2460','2460','1','retail','0','2460','1','0','0','0','0','0','0','printed',' ','','1','0','121664565697','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1365,'','Cash','','2022-09-30 22:31:44','','0','12','2022-09-30 22:31:44','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664566271','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1366,'','Cash','','2022-09-30 22:56:28','','0','12','2022-09-30 22:56:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664566339','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1367,'','Cash','','2022-09-30 23:03:08','','0','12','2022-09-30 23:03:08','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121664567793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1368,'','Cash','','2022-09-30 23:11:56','','0','12','2022-09-30 23:11:56','','2820','2820','1','retail','0','2820','1','0','0','0','0','0','0','printed',' ','','1','0','121664568228','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1369,'','Cash','','2022-09-30 23:42:32','','0','12','2022-09-30 23:42:32','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121664568980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1370,'','Cash','','2022-09-30 23:49:54','','0','12','2022-09-30 23:49:54','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121664570586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1371,'','Cash','','2022-09-30 23:50:41','','0','12','2022-09-30 23:50:41','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121664571039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1372,'','Cash','','2022-10-01 00:01:31','','0','12','2022-10-01 00:01:31','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121664571308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1373,'','Cash','','2022-10-01 00:04:05','','0','12','2022-10-01 00:04:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121664571696','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1374,'','Cash','','2022-10-01 00:34:13','','0','12','2022-10-01 00:34:13','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664571850','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1375,'','Cash','','2022-10-01 00:53:09','','0','12','2022-10-01 00:53:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664574785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1376,'','Cash','','2022-10-01 01:13:57','','0','12','2022-10-01 01:13:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664574896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1377,'','Cash','','2022-10-01 01:57:59','','0','12','2022-10-01 01:57:59','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121664576069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1378,'','Cash','','2022-10-01 02:08:58','','0','12','2022-10-01 02:08:58','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121664578766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1379,'','Cash','','2022-10-01 02:12:12','','0','12','2022-10-01 02:12:12','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121664579503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1380,'','Cash','','2022-10-01 03:01:45','','0','12','2022-10-01 03:01:45','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121664579671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1381,'','Cash','','2022-10-01 18:02:00','','0','12','2022-10-01 18:02:00','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664631548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1382,'','Cash','','2022-10-01 18:03:10','','0','12','2022-10-01 18:03:10','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664636524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1383,'','Cash','','2022-10-01 18:41:52','','0','12','2022-10-01 18:41:52','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664636605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1384,'','Cash','','2022-10-01 19:04:36','','0','12','2022-10-01 19:04:36','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121664639781','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1385,'','Cash','','2022-10-01 19:13:37','','0','12','2022-10-01 19:13:37','','2970','2970','1','retail','0','2970','1','0','0','0','0','0','0','printed',' ','','1','0','121664640396','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1386,'','Cash','','2022-10-01 20:02:16','','0','12','2022-10-01 20:02:16','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121664643578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1387,'','Cash','','2022-10-01 20:16:39','','0','12','2022-10-01 20:16:39','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121664643742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1388,'','Cash','','2022-10-01 20:34:27','','0','12','2022-10-01 20:34:27','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664644707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1389,'','Cash','','2022-10-01 20:39:09','','0','12','2022-10-01 20:39:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664645672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1390,'','Cash','','2022-10-01 20:49:09','','0','12','2022-10-01 20:49:09','','1390','1390','1','retail','0','1390','1','0','0','0','0','0','0','printed',' ','','1','0','121664645953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1391,'','Cash','','2022-10-01 22:11:29','','0','12','2022-10-01 22:11:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121664646561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1392,'','Cash','','2022-10-01 22:12:49','','0','12','2022-10-01 22:12:49','','190','190','1','retail','0','190','1','0','0','0','0','0','0','printed',' ','','1','0','121664651493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1393,'','Cash','','2022-10-01 22:13:28','','0','12','2022-10-01 22:13:28','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121664651596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1394,'','Cash','','2022-10-01 22:35:40','','0','12','2022-10-01 22:35:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664651612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1395,'','Cash','','2022-10-01 22:45:26','','0','12','2022-10-01 22:45:26','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121664652976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1396,'','Cash','','2022-10-01 22:46:54','','0','12','2022-10-01 22:46:54','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121664653562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1397,'','Cash','','2022-10-01 22:51:34','','0','12','2022-10-01 22:51:34','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121664653721','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1398,'','Cash','','2022-10-01 22:54:38','','0','12','2022-10-01 22:54:38','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121664653898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1399,'','Cash','','2022-10-01 23:24:03','','0','12','2022-10-01 23:24:03','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121664654217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1400,'','Cash','','2022-10-01 23:29:49','','0','12','2022-10-01 23:29:49','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121664655847','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1401,'','Cash','','2022-10-01 23:36:30','','0','12','2022-10-01 23:36:30','','1070','1070','1','retail','0','1070','1','0','0','0','0','0','0','printed',' ','','1','0','121664656340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1402,'','Cash','','2022-10-01 23:37:39','','0','12','2022-10-01 23:37:39','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121664656610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1403,'','Cash','','2022-10-02 00:03:54','','0','12','2022-10-02 00:03:54','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121664656879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1404,'','Cash','','2022-10-02 00:05:06','','0','12','2022-10-02 00:05:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664658285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1405,'','Cash','','2022-10-02 00:05:22','','0','12','2022-10-02 00:05:22','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121664658310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1406,'','Cash','','2022-10-02 00:11:20','','0','12','2022-10-02 00:11:20','','7050','7050','1','retail','0','7050','1','0','0','0','0','0','0','printed',' ','','1','0','121664658342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1407,'','Cash','','2022-10-02 00:14:26','','0','12','2022-10-02 00:14:26','','1920','1920','1','retail','0','1920','1','0','0','0','0','0','0','printed',' ','','1','0','121664658814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1408,'','Cash','','2022-10-02 00:24:17','','0','12','2022-10-02 00:24:17','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121664658938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1409,'','Cash','','2022-10-02 00:26:06','','0','12','2022-10-02 00:26:06','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664659502','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1410,'','Cash','','2022-10-02 00:38:52','','0','12','2022-10-02 00:38:52','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121664659571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1411,'','Cash','','2022-10-02 00:41:09','','0','12','2022-10-02 00:41:09','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664660354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1412,'','Cash','','2022-10-02 01:23:54','','0','12','2022-10-02 01:23:54','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664661067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1413,'','Cash','','2022-10-02 01:47:32','','0','12','2022-10-02 01:47:32','','3950','3950','1','retail','0','3950','1','0','0','0','0','0','0','printed',' ','','1','0','121664663078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1414,'','Cash','','2022-10-02 01:48:44','','0','12','2022-10-02 01:48:44','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664664514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1415,'','Cash','','2022-10-02 01:53:29','','0','12','2022-10-02 01:53:29','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121664664537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1416,'','Cash','','2022-10-02 01:57:01','','0','12','2022-10-02 01:57:01','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121664664813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1417,'','Cash','','2022-10-02 02:03:40','','0','12','2022-10-02 02:03:40','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121664665026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1418,'','Cash','','2022-10-02 02:23:13','','0','12','2022-10-02 02:23:13','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121664665425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1419,'','Cash','','2022-10-02 02:28:37','','0','12','2022-10-02 02:28:37','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121664666598','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1420,'','Cash','','2022-10-02 03:00:33','','0','12','2022-10-02 03:00:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664666945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1421,'','Cash','','2022-10-02 03:28:13','','0','12','2022-10-02 03:28:13','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664668848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1422,'','Cash','','2022-10-02 03:30:35','','0','12','2022-10-02 03:30:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664670498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1423,'','Cash','','2022-10-02 04:25:33','','0','12','2022-10-02 04:25:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664671752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1424,'','Cash','','2022-10-02 04:27:00','','0','12','2022-10-02 04:27:00','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121664673937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1425,'','Cash','','2022-10-02 04:55:59','','0','12','2022-10-02 04:55:59','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121664674024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1426,'','Cash','','2022-10-02 05:05:03','','0','12','2022-10-02 05:05:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664676174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1427,'','Cash','','2022-10-02 05:39:52','','0','12','2022-10-02 05:39:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664676306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1428,'','Cash','','2022-10-02 15:20:34','','0','12','2022-10-02 15:20:34','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664713224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1429,'','Cash','','2022-10-02 16:50:36','','0','12','2022-10-02 16:50:36','','1880','1880','1','retail','0','1880','1','0','0','0','0','0','0','printed',' ','','1','0','121664718591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1430,'','Cash','','2022-10-02 16:59:51','','0','12','2022-10-02 16:59:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664718955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1431,'','Cash','','2022-10-02 17:50:31','','0','12','2022-10-02 17:50:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664719195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1432,'','Cash','','2022-10-02 18:24:00','','0','12','2022-10-02 18:24:00','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121664722303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1433,'','Cash','','2022-10-02 19:11:20','','0','12','2022-10-02 19:11:20','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121664724263','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1434,'','Cash','','2022-10-02 19:16:03','','0','12','2022-10-02 19:16:03','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664727130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1435,'','Cash','','2022-10-02 20:21:51','','0','12','2022-10-02 20:21:51','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121664728765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1436,'','Cash','','2022-10-02 20:40:41','','0','12','2022-10-02 20:40:41','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121664731314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1437,'','Cash','','2022-10-02 20:57:24','','0','12','2022-10-02 20:57:24','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121664732571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1438,'','Cash','','2022-10-02 22:06:30','','0','12','2022-10-02 22:06:30','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121664737581','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1439,'','Cash','','2022-10-02 22:09:19','','0','12','2022-10-02 22:09:19','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121664737690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1440,'','Cash','','2022-10-02 22:20:22','','0','12','2022-10-02 22:20:22','','4550','4550','1','retail','0','4550','1','0','0','0','0','0','0','printed',' ','','1','0','121664738068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1441,'','Cash','','2022-10-02 22:26:16','','0','12','2022-10-02 22:26:16','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121664738567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1442,'','Cash','','2022-10-02 22:40:55','','0','12','2022-10-02 22:40:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664738781','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1443,'','Cash','','2022-10-02 23:18:11','','0','12','2022-10-02 23:18:11','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121664739688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1444,'','Cash','','2022-10-02 23:20:37','','0','12','2022-10-02 23:20:37','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121664741895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1445,'','Cash','','2022-10-02 23:37:27','','0','12','2022-10-02 23:37:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664742354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1446,'','Cash','','2022-10-02 23:48:01','','0','12','2022-10-02 23:48:01','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664743050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1447,'','Cash','','2022-10-03 00:11:13','','0','12','2022-10-03 00:11:13','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121664743686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1448,'','Cash','','2022-10-03 00:12:33','','0','12','2022-10-03 00:12:33','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121664745109','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1449,'','Cash','','2022-10-03 00:13:50','','0','12','2022-10-03 00:13:50','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121664745159','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1450,'','Cash','','2022-10-03 00:18:42','','0','12','2022-10-03 00:18:42','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121664745446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1451,'','Cash','','2022-10-03 00:30:38','','0','12','2022-10-03 00:30:38','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121664745528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1452,'','Cash','','2022-10-03 00:59:56','','0','12','2022-10-03 00:59:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664746306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1453,'','Cash','','2022-10-03 02:03:03','','0','12','2022-10-03 02:03:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664748000','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1454,'','Cash','','2022-10-03 02:07:38','','0','12','2022-10-03 02:07:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664751787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1455,'','Cash','','2022-10-03 02:29:30','','0','12','2022-10-03 02:29:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664752272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1456,'','Cash','','2022-10-03 02:33:50','','0','12','2022-10-03 02:33:50','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121664753470','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1457,'','Cash','','2022-10-03 11:45:00','','0','12','2022-10-03 11:45:00','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121664786679','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1458,'','Cash','','2022-10-03 15:58:05','','0','12','2022-10-03 15:58:05','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664799962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1459,'','Cash','','2022-10-03 17:22:28','','0','12','2022-10-03 17:22:28','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121664801934','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1460,'','Cash','','2022-10-03 18:17:49','','0','12','2022-10-03 18:17:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664807059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1461,'','Cash','','2022-10-03 18:35:52','','0','12','2022-10-03 18:35:52','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121664810273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1462,'','Cash','','2022-10-03 18:57:16','','0','12','2022-10-03 18:57:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121664811387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1463,'','Cash','','2022-10-03 19:06:56','','0','12','2022-10-03 19:06:56','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121664812845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1464,'','Cash','','2022-10-03 19:57:04','','0','12','2022-10-03 19:57:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664814362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1465,'','Cash','','2022-10-03 21:05:24','','0','12','2022-10-03 21:05:24','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664816284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1466,'','Cash','','2022-10-03 21:34:54','','0','12','2022-10-03 21:34:54','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664820328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1467,'','Cash','','2022-10-03 21:39:45','','0','12','2022-10-03 21:39:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664822099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1468,'','Cash','','2022-10-03 22:04:21','','0','12','2022-10-03 22:04:21','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121664822474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1469,'','Cash','','2022-10-03 22:10:29','','0','12','2022-10-03 22:10:29','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121664824032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1470,'','Cash','','2022-10-03 22:23:17','','0','12','2022-10-03 22:23:17','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121664824267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1471,'','Cash','','2022-10-03 22:49:19','','0','12','2022-10-03 22:49:19','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121664826490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1472,'','Cash','','2022-10-03 23:02:31','','0','12','2022-10-03 23:02:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664827116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1473,'','Cash','','2022-10-03 23:10:23','','0','12','2022-10-03 23:10:23','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664827356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1474,'','Cash','','2022-10-03 23:15:14','','0','12','2022-10-03 23:15:14','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121664828090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1475,'','Cash','','2022-10-04 00:43:07','','0','12','2022-10-04 00:43:07','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121664830209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1476,'','Cash','','2022-10-04 01:08:23','','0','12','2022-10-04 01:08:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664833860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1477,'','Cash','','2022-10-04 01:13:03','','0','12','2022-10-04 01:13:03','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121664834907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1478,'','Cash','','2022-10-04 02:04:48','','0','12','2022-10-04 02:04:48','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664838218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1479,'','Cash','','2022-10-04 02:53:33','','0','12','2022-10-04 02:53:33','','3230','3230','1','retail','0','3230','1','0','0','0','0','0','0','printed',' ','','1','0','121664838295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1480,'','Cash','','2022-10-04 03:13:28','','0','12','2022-10-04 03:13:28','','790','790','1','retail','0','790','1','0','0','0','0','0','0','printed',' ','','1','0','121664841218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1481,'','Cash','','2022-10-04 03:52:45','','0','12','2022-10-04 03:52:45','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121664842524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1482,'','Cash','','2022-10-04 14:02:33','','0','12','2022-10-04 14:02:33','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121664881341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1483,'','Cash','','2022-10-04 16:50:38','','0','12','2022-10-04 16:50:38','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664891428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1484,'','Cash','','2022-10-04 18:50:30','','0','12','2022-10-04 18:50:30','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121664891443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1485,'','Cash','','2022-10-04 19:34:45','','0','12','2022-10-04 19:34:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664898709','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1486,'','Cash','','2022-10-04 19:38:45','','0','12','2022-10-04 19:38:45','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664901307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1487,'','Cash','','2022-10-04 21:20:05','','0','12','2022-10-04 21:20:05','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121664901528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1488,'','Cash','','2022-10-04 21:23:46','','0','12','2022-10-04 21:23:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664907633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1489,'','Cash','','2022-10-04 21:39:55','','0','12','2022-10-04 21:39:55','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121664907859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1490,'','Cash','','2022-10-04 21:42:16','','0','12','2022-10-04 21:42:16','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121664908855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1491,'','Cash','','2022-10-04 22:16:53','','0','12','2022-10-04 22:16:53','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121664908951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1492,'','Cash','','2022-10-04 22:42:19','','0','12','2022-10-04 22:42:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664911066','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1493,'','Cash','','2022-10-04 23:29:18','','0','12','2022-10-04 23:29:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121664912589','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1494,'','Cash','','2022-10-04 23:52:19','','0','12','2022-10-04 23:52:19','','1520','1520','1','retail','0','1520','1','0','0','0','0','0','0','printed',' ','','1','0','121664915391','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1495,'','Cash','','2022-10-05 00:40:56','','0','12','2022-10-05 00:40:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664916833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1496,'','Cash','','2022-10-05 01:08:30','','0','12','2022-10-05 01:08:30','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121664921298','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1497,'','Cash','','2022-10-05 01:23:30','','0','12','2022-10-05 01:23:30','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121664921314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1498,'','Cash','','2022-10-05 01:43:36','','0','12','2022-10-05 01:43:36','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121664922285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1499,'','Cash','','2022-10-05 01:52:20','','0','12','2022-10-05 01:52:20','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121664923419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1500,'','Cash','','2022-10-05 02:04:06','','0','12','2022-10-05 02:04:06','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121664924623','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1501,'','Cash','','2022-10-05 02:04:46','','0','12','2022-10-05 02:04:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121664924670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1502,'','Cash','','2022-10-05 02:24:34','','0','12','2022-10-05 02:24:34','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664924690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1503,'','Cash','','2022-10-05 03:56:24','','0','12','2022-10-05 03:56:24','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121664925908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1504,'','Cash','','2022-10-05 04:02:33','','0','12','2022-10-05 04:02:33','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664931698','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1505,'','Cash','','2022-10-05 04:16:13','','0','12','2022-10-05 04:16:13','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121664931757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1506,'','Cash','','2022-10-05 14:19:17','','0','12','2022-10-05 14:19:17','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664968736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1507,'','Cash','','2022-10-05 14:25:29','','0','12','2022-10-05 14:25:29','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121664969065','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1508,'','Cash','','2022-10-05 16:23:38','','0','12','2022-10-05 16:23:38','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121664969226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1509,'','Cash','','2022-10-05 16:29:26','','0','12','2022-10-05 16:29:26','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121664976552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1510,'','Cash','','2022-10-05 16:51:51','','0','12','2022-10-05 16:51:51','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121664976570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1511,'','Cash','','2022-10-05 16:53:09','','0','12','2022-10-05 16:53:09','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121664977959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1512,'','Cash','','2022-10-05 19:18:39','','0','12','2022-10-05 19:18:39','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121664986687','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1513,'','Cash','','2022-10-05 21:42:00','','0','12','2022-10-05 21:42:00','','1440','1440','1','retail','0','1440','1','0','0','0','0','0','0','printed',' ','','1','0','121664989159','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1514,'','Cash','','2022-10-05 21:46:31','','0','12','2022-10-05 21:46:31','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121664995570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1515,'','Cash','','2022-10-05 22:02:28','','0','12','2022-10-05 22:02:28','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121664995669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1516,'','Cash','','2022-10-05 23:49:25','','0','12','2022-10-05 23:49:25','','3450','3450','1','retail','0','3450','1','0','0','0','0','0','0','printed',' ','','1','0','121664997504','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1517,'','Cash','','2022-10-06 00:10:17','','0','12','2022-10-06 00:10:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665003037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1518,'','Cash','','2022-10-06 00:18:33','','0','12','2022-10-06 00:18:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665004352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1519,'','Cash','','2022-10-06 00:23:07','','0','12','2022-10-06 00:23:07','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665004843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1520,'','Cash','','2022-10-06 00:31:02','','0','12','2022-10-06 00:31:02','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121665005038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1521,'','Cash','','2022-10-06 00:37:34','','0','12','2022-10-06 00:37:34','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121665005738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1522,'','Cash','','2022-10-06 01:33:02','','0','12','2022-10-06 01:33:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665005953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1523,'','Cash','','2022-10-06 01:43:05','','0','12','2022-10-06 01:43:05','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121665009219','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1524,'','Cash','','2022-10-06 01:43:27','','0','12','2022-10-06 01:43:27','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121665009799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1525,'','Cash','','2022-10-06 02:29:34','','0','12','2022-10-06 02:29:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665009832','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1526,'','Cash','','2022-10-06 02:54:12','','0','12','2022-10-06 02:54:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665012596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1527,'','Cash','','2022-10-06 03:10:49','','0','12','2022-10-06 03:10:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665014056','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1528,'','Cash','','2022-10-06 10:42:10','','0','12','2022-10-06 10:42:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665042110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1529,'','Cash','','2022-10-06 13:59:38','','0','12','2022-10-06 13:59:38','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121665053950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1530,'','Cash','','2022-10-06 14:27:50','','0','12','2022-10-06 14:27:50','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121665055019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1531,'','Cash','','2022-10-06 15:24:27','','0','12','2022-10-06 15:24:27','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121665055674','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1532,'','Cash','','2022-10-06 17:45:33','','0','12','2022-10-06 17:45:33','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665066851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1533,'','Cash','','2022-10-06 18:51:55','','0','12','2022-10-06 18:51:55','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121665067541','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1534,'','Cash','','2022-10-06 18:55:53','','0','12','2022-10-06 18:55:53','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665071604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1535,'','Cash','','2022-10-06 18:57:56','','0','12','2022-10-06 18:57:56','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665071758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1536,'','Cash','','2022-10-06 19:00:46','','0','12','2022-10-06 19:00:46','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665071881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1537,'','Cash','','2022-10-06 20:03:12','','0','12','2022-10-06 20:03:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665072050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1538,'','Cash','','2022-10-06 20:50:11','','0','12','2022-10-06 20:50:11','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121665075892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1539,'','Cash','','2022-10-06 21:07:48','','0','12','2022-10-06 21:07:48','','6340','6340','1','retail','0','6340','1','0','0','0','0','0','0','printed',' ','','1','0','121665078666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1540,'','Cash','','2022-10-06 22:10:09','','0','12','2022-10-06 22:10:09','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121665079735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1541,'','Cash','','2022-10-06 22:55:06','','0','12','2022-10-06 22:55:06','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121665085174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1542,'','Cash','','2022-10-06 23:46:22','','0','12','2022-10-06 23:46:22','','8000','8000','1','retail','0','8000','1','0','0','0','0','0','0','printed',' ','','1','0','121665089148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1543,'','Cash','','2022-10-07 00:10:41','','0','12','2022-10-07 00:10:41','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121665089308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1544,'','Cash','','2022-10-07 00:14:47','','0','12','2022-10-07 00:14:47','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121665090734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1545,'','Cash','','2022-10-07 00:17:01','','0','12','2022-10-07 00:17:01','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665090924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1546,'','Cash','','2022-10-07 00:30:37','','0','12','2022-10-07 00:30:37','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121665091077','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1547,'','Cash','','2022-10-07 00:38:04','','0','12','2022-10-07 00:38:04','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665092108','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1548,'','Cash','','2022-10-07 00:45:45','','0','12','2022-10-07 00:45:45','','4260','4260','1','retail','0','4260','1','0','0','0','0','0','0','printed',' ','','1','0','121665092324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1549,'','Cash','','2022-10-07 00:57:10','','0','12','2022-10-07 00:57:10','','2410','2410','1','retail','0','2410','1','0','0','0','0','0','0','printed',' ','','1','0','121665093079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1550,'','Cash','','2022-10-07 01:36:25','','0','12','2022-10-07 01:36:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665093978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1551,'','Cash','','2022-10-07 02:00:09','','0','12','2022-10-07 02:00:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665095827','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1552,'','Cash','','2022-10-07 03:33:55','','0','12','2022-10-07 03:33:55','','3110','3110','1','retail','0','3110','1','0','0','0','0','0','0','printed',' ','','1','0','121665097213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1553,'','Cash','','2022-10-07 15:49:15','','0','12','2022-10-07 15:49:15','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121665146947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1554,'','Cash','','2022-10-07 17:08:52','','0','12','2022-10-07 17:08:52','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121665151721','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1555,'','Cash','','2022-10-07 17:11:53','','0','12','2022-10-07 17:11:53','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121665151861','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1556,'','Cash','','2022-10-07 18:39:57','','0','12','2022-10-07 18:39:57','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121665151916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1557,'','Cash','','2022-10-07 19:07:56','','0','12','2022-10-07 19:07:56','','7940','7940','1','retail','0','7940','1','0','0','0','0','0','0','printed',' ','','1','0','121665157389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1558,'','Cash','','2022-10-07 19:10:42','','0','12','2022-10-07 19:10:42','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121665159034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1559,'','Cash','','2022-10-07 19:45:26','','0','12','2022-10-07 19:45:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665159264','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1560,'','Cash','','2022-10-07 20:20:35','','0','12','2022-10-07 20:20:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665161130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1561,'','Cash','','2022-10-07 22:01:14','','0','12','2022-10-07 22:01:14','','9440','9440','1','retail','0','9440','1','0','0','0','0','0','0','printed',' ','','1','0','121665163448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1562,'','Cash','','2022-10-07 22:56:19','','0','12','2022-10-07 22:56:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665169407','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1563,'','Cash','','2022-10-07 22:59:58','','0','12','2022-10-07 22:59:58','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121665172670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1564,'','Cash','','2022-10-07 23:07:38','','0','12','2022-10-07 23:07:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665172851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1565,'','Cash','','2022-10-07 23:15:52','','0','12','2022-10-07 23:15:52','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121665173407','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1566,'','Cash','','2022-10-07 23:17:22','','0','12','2022-10-07 23:17:22','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665173826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1567,'','Cash','','2022-10-07 23:57:13','','0','12','2022-10-07 23:57:13','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121665173881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1568,'','Cash','','2022-10-08 00:21:39','','0','12','2022-10-08 00:21:39','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121665176271','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1569,'','Cash','','2022-10-08 00:33:37','','0','12','2022-10-08 00:33:37','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665177802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1570,'','Cash','','2022-10-08 01:17:19','','0','12','2022-10-08 01:17:19','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665178421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1571,'','Cash','','2022-10-08 01:22:24','','0','12','2022-10-08 01:22:24','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121665181228','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1572,'','Cash','','2022-10-08 01:24:03','','0','12','2022-10-08 01:24:03','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121665181434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1573,'','Cash','','2022-10-08 01:34:36','','0','12','2022-10-08 01:34:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665181447','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1574,'','Cash','','2022-10-08 01:41:55','','0','12','2022-10-08 01:41:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665182211','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1575,'','Cash','','2022-10-08 01:44:09','','0','12','2022-10-08 01:44:09','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121665182605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1576,'','Cash','','2022-10-08 01:54:31','','0','12','2022-10-08 01:54:31','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665182655','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1577,'','Cash','','2022-10-08 02:08:14','','0','12','2022-10-08 02:08:14','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665183284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1578,'','Cash','','2022-10-08 02:29:21','','0','12','2022-10-08 02:29:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665184174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1579,'','Cash','','2022-10-08 02:40:14','','0','12','2022-10-08 02:40:14','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121665185364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1580,'','Cash','','2022-10-08 02:44:38','','0','12','2022-10-08 02:44:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665186227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1581,'','Cash','','2022-10-08 03:09:36','','0','12','2022-10-08 03:09:36','','2710','2710','1','retail','0','2710','1','0','0','0','0','0','0','printed',' ','','1','0','121665187725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1582,'','Cash','','2022-10-08 03:11:14','','0','12','2022-10-08 03:11:14','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121665187800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1583,'','Cash','','2022-10-08 03:21:13','','0','12','2022-10-08 03:21:13','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665188446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1584,'','Cash','','2022-10-08 03:23:12','','0','12','2022-10-08 03:23:12','','4250','4250','1','retail','0','4250','1','0','0','0','0','0','0','printed',' ','','1','0','121665188555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1585,'','Cash','','2022-10-08 03:34:43','','0','12','2022-10-08 03:34:43','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665188791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1586,'','Cash','','2022-10-08 03:37:04','','0','12','2022-10-08 03:37:04','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665189398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1587,'','Cash','','2022-10-08 03:54:08','','0','12','2022-10-08 03:54:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665189567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1588,'','Cash','','2022-10-08 03:57:15','','0','12','2022-10-08 03:57:15','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121665190627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1589,'','Cash','','2022-10-08 04:20:07','','0','12','2022-10-08 04:20:07','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121665190639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1590,'','Cash','','2022-10-08 04:23:21','','0','12','2022-10-08 04:23:21','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121665192184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1591,'','Cash','','2022-10-08 04:51:29','','0','12','2022-10-08 04:51:29','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121665192205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1592,'','Cash','','2022-10-08 15:40:19','','0','12','2022-10-08 15:40:19','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665232812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1593,'','Cash','','2022-10-08 18:12:39','','0','12','2022-10-08 18:12:39','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665239333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1594,'','Cash','','2022-10-08 19:00:10','','0','12','2022-10-08 19:00:10','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665241963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1595,'','Cash','','2022-10-08 19:00:45','','0','12','2022-10-08 19:00:45','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665244813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1596,'','Cash','','2022-10-08 19:48:31','','0','12','2022-10-08 19:48:31','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665244852','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1597,'','Cash','','2022-10-08 20:18:00','','0','12','2022-10-08 20:18:00','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665249468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1598,'','Cash','','2022-10-08 21:00:26','','0','12','2022-10-08 21:00:26','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665251955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1599,'','Cash','','2022-10-08 22:00:00','','0','12','2022-10-08 22:00:00','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121665252032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1600,'','Cash','','2022-10-08 22:32:30','','0','12','2022-10-08 22:32:30','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665255604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1601,'','Cash','','2022-10-08 22:43:15','','0','12','2022-10-08 22:43:15','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665257586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1602,'','Cash','','2022-10-08 23:01:11','','0','12','2022-10-08 23:01:11','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665258444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1603,'','Cash','','2022-10-08 23:02:02','','0','12','2022-10-08 23:02:02','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121665259320','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1604,'','Cash','','2022-10-08 23:05:33','','0','12','2022-10-08 23:05:33','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121665259371','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1605,'','Cash','','2022-10-08 23:13:14','','0','12','2022-10-08 23:13:14','','1510','1510','1','retail','0','1510','1','0','0','0','0','0','0','printed',' ','','1','0','121665259649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1606,'','Cash','','2022-10-08 23:15:15','','0','12','2022-10-08 23:15:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665260098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1607,'','Cash','','2022-10-08 23:26:27','','0','12','2022-10-08 23:26:27','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665260119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1608,'','Cash','','2022-10-08 23:31:06','','0','12','2022-10-08 23:31:06','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665260874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1609,'','Cash','','2022-10-08 23:40:47','','0','12','2022-10-08 23:40:47','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665261636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1610,'','Cash','','2022-10-08 23:51:01','','0','12','2022-10-08 23:51:01','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665261653','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1611,'','Cash','','2022-10-09 00:06:40','','0','12','2022-10-09 00:06:40','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121665262443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1612,'','Cash','','2022-10-09 00:20:30','','0','12','2022-10-09 00:20:30','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121665263265','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1613,'','Cash','','2022-10-09 00:26:31','','0','12','2022-10-09 00:26:31','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121665264069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1614,'','Cash','','2022-10-09 00:42:04','','0','12','2022-10-09 00:42:04','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121665264525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1615,'','Cash','','2022-10-09 01:13:29','','0','12','2022-10-09 01:13:29','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121665267172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1616,'','Cash','','2022-10-09 01:18:40','','0','12','2022-10-09 01:18:40','','2170','2170','1','retail','0','2170','1','0','0','0','0','0','0','printed',' ','','1','0','121665267486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1617,'','Cash','','2022-10-09 01:21:57','','0','12','2022-10-09 01:21:57','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121665267675','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1618,'','Cash','','2022-10-09 01:50:21','','0','12','2022-10-09 01:50:21','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665267750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1619,'','Cash','','2022-10-09 01:55:14','','0','12','2022-10-09 01:55:14','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665269554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1620,'','Cash','','2022-10-09 02:02:29','','0','12','2022-10-09 02:02:29','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665269813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1621,'','Cash','','2022-10-09 02:07:39','','0','12','2022-10-09 02:07:39','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121665270196','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1622,'','Cash','','2022-10-09 02:10:06','','0','12','2022-10-09 02:10:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665270562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1623,'','Cash','','2022-10-09 17:29:25','','0','12','2022-10-09 16:42:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665322818','Cleared','12','2022-10-09 17:29:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1624,'','Cash','','2022-10-09 19:12:10','','0','12','2022-10-09 19:12:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665325815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1625,'','Cash','','2022-10-09 20:04:32','','0','12','2022-10-09 20:04:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665331996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1626,'','Cash','','2022-10-09 20:47:30','','0','12','2022-10-09 20:47:30','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665335113','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1627,'','Cash','','2022-10-09 21:05:15','','0','12','2022-10-09 21:05:15','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121665337656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1628,'','Cash','','2022-10-09 21:05:57','','0','12','2022-10-09 21:05:57','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121665338719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1629,'','Cash','','2022-10-09 21:10:15','','0','12','2022-10-09 21:10:15','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665338761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1630,'','Cash','','2022-10-09 21:25:51','','0','12','2022-10-09 21:25:51','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121665339119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1631,'','Cash','','2022-10-09 21:40:10','','0','12','2022-10-09 21:40:10','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121665339961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1632,'','Cash','','2022-10-09 22:40:58','','0','12','2022-10-09 22:40:58','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665340899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1633,'','Cash','','2022-10-09 23:32:10','','0','12','2022-10-09 23:32:10','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121665344463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1634,'','Cash','','2022-10-09 23:42:18','','0','12','2022-10-09 23:42:18','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121665347966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1635,'','Cash','','2022-10-10 00:04:08','','0','12','2022-10-10 00:04:08','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665348353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1636,'','Cash','','2022-10-10 00:18:56','','0','12','2022-10-10 00:18:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665349452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1637,'','Cash','','2022-10-10 00:35:50','','0','12','2022-10-10 00:35:50','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121665351317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1638,'','Cash','','2022-10-10 00:48:49','','0','12','2022-10-10 00:48:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665351379','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1639,'','Cash','','2022-10-10 01:03:52','','0','12','2022-10-10 01:03:52','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665352203','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1640,'','Cash','','2022-10-10 01:14:36','','0','12','2022-10-10 01:14:36','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121665353087','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1641,'','Cash','','2022-10-10 01:52:58','','0','12','2022-10-10 01:52:58','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121665353680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1642,'','Cash','','2022-10-10 02:23:10','','0','12','2022-10-10 02:23:10','','2660','2660','1','retail','0','2660','1','0','0','0','0','0','0','printed',' ','','1','0','121665355984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1643,'','Cash','','2022-10-10 02:39:00','','0','12','2022-10-10 02:39:00','','170','170','1','retail','0','170','1','0','0','0','0','0','0','printed',' ','','1','0','121665357971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1644,'','Cash','','2022-10-10 02:47:26','','0','12','2022-10-10 02:47:26','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665358743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1645,'','Cash','','2022-10-10 04:35:22','','0','12','2022-10-10 04:35:22','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121665361814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1646,'','Cash','','2022-10-10 15:16:25','','0','12','2022-10-10 15:16:25','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121665404107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1647,'','Cash','','2022-10-10 16:36:58','','0','12','2022-10-10 16:36:58','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665404190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1648,'','Cash','','2022-10-10 18:38:25','','0','12','2022-10-10 18:38:25','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121665416241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1649,'','Cash','','2022-10-10 19:05:33','','0','12','2022-10-10 19:05:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665416409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1650,'','Cash','','2022-10-10 19:31:57','','0','12','2022-10-10 19:31:57','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121665417937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1651,'','Cash','','2022-10-10 19:54:27','','0','12','2022-10-10 19:54:27','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665419522','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1652,'','Cash','','2022-10-10 20:33:11','','0','12','2022-10-10 20:33:11','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665420959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1653,'','Cash','','2022-10-10 20:46:30','','0','12','2022-10-10 20:46:30','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121665423239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1654,'','Cash','','2022-10-10 21:00:41','','0','12','2022-10-10 21:00:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665424114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1655,'','Cash','','2022-10-10 22:26:19','','0','12','2022-10-10 22:26:19','','1260','1260','1','retail','0','1260','1','0','0','0','0','0','0','printed',' ','','1','0','121665429706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1656,'','Cash','','2022-10-10 22:53:53','','0','12','2022-10-10 22:53:53','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665430026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1657,'','Cash','','2022-10-10 22:58:39','','0','12','2022-10-10 22:58:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665431750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1658,'','Cash','','2022-10-10 22:59:33','','0','12','2022-10-10 22:59:33','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121665431923','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1659,'','Cash','','2022-10-10 22:59:44','','0','12','2022-10-10 22:59:44','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121665431977','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1660,'','Cash','','2022-10-10 23:28:25','','0','12','2022-10-10 23:28:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665431988','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1661,'','Cash','','2022-10-10 23:46:41','','0','12','2022-10-10 23:46:41','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665434316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1662,'','Cash','','2022-10-11 00:19:14','','0','12','2022-10-11 00:19:14','','2880','2880','1','retail','0','2880','1','0','0','0','0','0','0','printed',' ','','1','0','121665434897','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1663,'','Cash','','2022-10-11 00:55:41','','0','12','2022-10-11 00:55:41','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121665436908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1664,'','Cash','','2022-10-11 01:02:57','','0','12','2022-10-11 01:02:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665438945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1665,'','Cash','','2022-10-11 01:08:04','','0','12','2022-10-11 01:08:04','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665439492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1666,'','Cash','','2022-10-11 01:44:04','','0','12','2022-10-11 01:44:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665439687','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1667,'','Cash','','2022-10-11 02:30:24','','0','12','2022-10-11 02:30:24','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665444614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1668,'','Cash','','2022-10-11 14:10:32','','0','12','2022-10-11 14:10:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665481989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1669,'','Cash','','2022-10-11 14:44:15','','0','12','2022-10-11 14:44:15','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121665486638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1670,'','Cash','','2022-10-11 17:13:36','','0','12','2022-10-11 17:13:36','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665497593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1671,'','Cash','','2022-10-11 18:00:13','','0','12','2022-10-11 18:00:13','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665497891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1672,'','Cash','','2022-10-11 19:03:22','','0','12','2022-10-11 19:03:22','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121665504004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1673,'','Cash','','2022-10-11 20:14:03','','0','12','2022-10-11 20:14:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665504278','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1674,'','Cash','','2022-10-11 21:18:56','','0','12','2022-10-11 21:18:56','','2310','2310','1','retail','0','2310','1','0','0','0','0','0','0','printed',' ','','1','0','121665508452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1675,'','Cash','','2022-10-11 21:31:22','','0','12','2022-10-11 21:31:22','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665512349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1676,'','Cash','','2022-10-11 22:13:19','','0','12','2022-10-11 22:13:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665513126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1677,'','Cash','','2022-10-11 22:14:41','','0','12','2022-10-11 22:14:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665515612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1678,'','Cash','','2022-10-11 22:24:05','','0','12','2022-10-11 22:24:05','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665515770','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1679,'','Cash','','2022-10-11 22:30:01','','0','12','2022-10-11 22:30:01','','3950','3950','1','retail','0','3950','1','0','0','0','0','0','0','printed',' ','','1','0','121665516251','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1680,'','Cash','','2022-10-11 22:32:28','','0','12','2022-10-11 22:32:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665516725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1681,'','Cash','','2022-10-11 23:44:27','','0','12','2022-10-11 23:39:02','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121665516755','Cleared','12','2022-10-11 23:44:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1682,'','Cash','','2022-10-11 23:47:32','','0','12','2022-10-11 23:47:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665521218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1683,'','Cash','','2022-10-12 00:58:01','','0','12','2022-10-12 00:58:01','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121665521256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1684,'','Cash','','2022-10-12 01:35:31','','0','12','2022-10-12 01:35:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665525485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1685,'','Cash','','2022-10-12 01:45:08','','0','12','2022-10-12 01:45:08','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121665527794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1686,'','Cash','','2022-10-12 03:27:05','','0','12','2022-10-12 03:27:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665528389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1687,'','Cash','','2022-10-12 15:44:49','','0','12','2022-10-12 15:44:49','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121665576100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1688,'','Cash','','2022-10-12 15:54:15','','0','12','2022-10-12 15:54:15','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665578771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1689,'','Cash','','2022-10-12 15:55:13','','0','12','2022-10-12 15:55:13','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121665579309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1690,'','Cash','','2022-10-12 15:56:24','','0','12','2022-10-12 15:56:24','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121665579357','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1691,'','Cash','','2022-10-12 17:03:39','','0','12','2022-10-12 17:03:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665579655','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1692,'','Cash','','2022-10-12 19:59:12','','0','12','2022-10-12 19:59:12','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121665592238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1693,'','Cash','','2022-10-12 21:33:47','','0','12','2022-10-12 21:33:47','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665594803','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1694,'','Cash','','2022-10-12 22:07:45','','0','12','2022-10-12 22:07:45','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121665599631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1695,'','Cash','','2022-10-12 22:08:51','','0','12','2022-10-12 22:08:51','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121665601707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1696,'','Cash','','2022-10-12 22:11:17','','0','12','2022-10-12 22:11:17','','3210','3210','1','retail','0','3210','1','0','0','0','0','0','0','printed',' ','','1','0','121665601821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1697,'','Cash','','2022-10-12 22:20:24','','0','12','2022-10-12 22:20:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665602174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1698,'','Cash','','2022-10-12 22:50:35','','0','12','2022-10-12 22:50:35','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121665602478','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1699,'','Cash','','2022-10-12 23:11:12','','0','12','2022-10-12 23:11:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665604239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1700,'','Cash','','2022-10-12 23:11:57','','0','12','2022-10-12 23:11:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665605514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1701,'','Cash','','2022-10-12 23:31:57','','0','12','2022-10-12 23:31:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665605647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1702,'','Cash','','2022-10-12 23:49:34','','0','12','2022-10-12 23:49:34','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121665606724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1703,'','Cash','','2022-10-12 23:53:44','','0','12','2022-10-12 23:53:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665607906','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1704,'','Cash','','2022-10-12 23:56:08','','0','12','2022-10-12 23:56:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665608034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1705,'','Cash','','2022-10-13 00:30:40','','0','12','2022-10-13 00:30:40','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665610129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1706,'','Cash','','2022-10-13 01:23:49','','0','12','2022-10-13 01:23:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665610244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1707,'','Cash','','2022-10-13 01:24:31','','0','12','2022-10-13 01:24:31','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121665613433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1708,'','Cash','','2022-10-13 02:00:55','','0','12','2022-10-13 02:00:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665613477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1709,'','Cash','','2022-10-13 02:49:56','','0','12','2022-10-13 02:49:56','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665615777','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1710,'','Cash','','2022-10-13 18:37:30','','0','12','2022-10-13 18:37:30','','6900','6900','1','retail','0','6900','1','0','0','0','0','0','0','printed',' ','','1','0','121665675310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1711,'','Cash','','2022-10-13 18:46:24','','0','12','2022-10-13 18:46:24','','4190','4190','1','retail','0','4190','1','0','0','0','0','0','0','printed',' ','','1','0','121665675961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1712,'','Cash','','2022-10-13 21:15:53','','0','12','2022-10-13 21:15:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665676404','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1713,'','Cash','','2022-10-13 21:48:09','','0','12','2022-10-13 21:48:09','','5210','5210','1','retail','0','5210','1','0','0','0','0','0','0','printed',' ','','1','0','121665686786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1714,'','Cash','','2022-10-13 22:11:22','','0','12','2022-10-13 22:11:22','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121665686895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1715,'','Cash','','2022-10-13 22:30:03','','0','12','2022-10-13 22:30:03','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121665689353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1716,'','Cash','','2022-10-13 23:09:25','','0','12','2022-10-13 23:09:25','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121665690529','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1717,'','Cash','','2022-10-13 23:23:39','','0','12','2022-10-13 23:23:39','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665691994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1718,'','Cash','','2022-10-13 23:37:50','','0','12','2022-10-13 23:37:50','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121665692973','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1719,'','Cash','','2022-10-14 00:45:51','','0','12','2022-10-14 00:45:51','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121665694005','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1720,'','Cash','','2022-10-14 01:18:26','','0','12','2022-10-14 01:18:26','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121665697558','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1721,'','Cash','','2022-10-14 01:52:14','','0','12','2022-10-14 01:52:14','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121665699679','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1722,'','Cash','','2022-10-14 17:56:20','','0','12','2022-10-14 17:56:20','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665759360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1723,'','Cash','','2022-10-14 19:04:56','','0','12','2022-10-14 19:04:56','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665763487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1724,'','Cash','','2022-10-14 21:51:37','','0','12','2022-10-14 21:51:37','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665773479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1725,'','Cash','','2022-10-14 21:55:49','','0','12','2022-10-14 21:55:49','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665773615','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1726,'','Cash','','2022-10-14 21:59:33','','0','12','2022-10-14 21:59:33','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665773884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1727,'','Cash','','2022-10-14 22:01:56','','0','12','2022-10-14 22:01:56','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665773976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1728,'','Cash','','2022-10-14 22:12:47','','0','12','2022-10-14 22:12:47','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665774249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1729,'','Cash','','2022-10-14 22:31:08','','0','12','2022-10-14 22:31:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665774771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1730,'','Cash','','2022-10-14 23:08:12','','0','12','2022-10-14 23:08:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665775903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1731,'','Cash','','2022-10-14 23:15:15','','0','12','2022-10-14 23:15:15','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121665778099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1732,'','Cash','','2022-10-14 23:19:26','','0','12','2022-10-14 23:19:26','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121665778737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1733,'','Cash','','2022-10-14 23:24:48','','0','12','2022-10-14 23:24:48','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121665778770','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1734,'','Cash','','2022-10-14 23:28:12','','0','12','2022-10-14 23:28:12','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665779091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1735,'','Cash','','2022-10-14 23:29:23','','0','12','2022-10-14 23:29:23','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665779295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1736,'','Cash','','2022-10-14 23:48:29','','0','12','2022-10-14 23:48:29','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121665780172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1737,'','Cash','','2022-10-14 23:54:51','','0','12','2022-10-14 23:54:51','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121665780515','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1738,'','Cash','','2022-10-15 00:28:22','','0','12','2022-10-15 00:28:22','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121665780895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1739,'','Cash','','2022-10-15 00:32:06','','0','12','2022-10-15 00:32:06','','780','780','1','retail','0','780','1','0','0','0','0','0','0','printed',' ','','1','0','121665782908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1740,'','Cash','','2022-10-15 00:43:12','','0','12','2022-10-15 00:43:12','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665783526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1741,'','Cash','','2022-10-15 01:05:12','','0','12','2022-10-15 01:05:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665783795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1742,'','Cash','','2022-10-15 01:13:22','','0','12','2022-10-15 01:13:22','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121665785116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1743,'','Cash','','2022-10-15 01:17:39','','0','12','2022-10-15 01:17:39','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121665785607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1744,'','Cash','','2022-10-15 01:36:42','','0','12','2022-10-15 01:36:42','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665786993','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1745,'','Cash','','2022-10-15 02:06:54','','0','12','2022-10-15 02:06:54','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665788711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1746,'','Cash','','2022-10-15 02:52:26','','0','12','2022-10-15 02:52:26','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121665791481','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1747,'','Cash','','2022-10-15 03:25:40','','0','12','2022-10-15 03:25:40','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665791874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1748,'','Cash','','2022-10-15 03:49:01','','0','12','2022-10-15 03:49:01','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121665793545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1749,'','Cash','','2022-10-15 04:42:15','','0','12','2022-10-15 04:42:15','','170','170','1','retail','0','170','1','0','0','0','0','0','0','printed',' ','','1','0','121665795163','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1750,'','Cash','','2022-10-15 16:09:13','','0','12','2022-10-15 16:09:13','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665838309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1751,'','Cash','','2022-10-15 17:05:07','','0','12','2022-10-15 17:05:07','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121665840435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1752,'','Cash','','2022-10-15 18:04:48','','0','12','2022-10-15 18:04:48','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121665846206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1753,'','Cash','','2022-10-15 18:53:56','','0','12','2022-10-15 18:53:56','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121665846506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1754,'','Cash','','2022-10-15 19:27:16','','0','12','2022-10-15 19:27:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665849329','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1755,'','Cash','','2022-10-15 20:28:27','','0','12','2022-10-15 20:28:27','','760','760','1','retail','0','760','1','0','0','0','0','0','0','printed',' ','','1','0','121665852917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1756,'','Cash','','2022-10-15 20:54:55','','0','12','2022-10-15 20:54:55','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121665854922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1757,'','Cash','','2022-10-15 20:55:16','','0','12','2022-10-15 20:55:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665856499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1758,'','Cash','','2022-10-15 20:57:29','','0','12','2022-10-15 20:57:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665856631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1759,'','Cash','','2022-10-15 21:02:09','','0','12','2022-10-15 21:02:09','','1510','1510','1','retail','0','1510','1','0','0','0','0','0','0','printed',' ','','1','0','121665856666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1760,'','Cash','','2022-10-15 21:22:05','','0','12','2022-10-15 21:22:05','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121665856944','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1761,'','Cash','','2022-10-15 21:25:01','','0','12','2022-10-15 21:25:01','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121665858217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1762,'','Cash','','2022-10-15 21:44:12','','0','12','2022-10-15 21:44:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121665859445','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1763,'','Cash','','2022-10-15 21:45:09','','0','12','2022-10-15 21:45:09','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121665859459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1764,'','Cash','','2022-10-15 22:32:01','','0','12','2022-10-15 22:32:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665862208','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1765,'','Cash','','2022-10-15 22:33:51','','0','12','2022-10-15 22:33:51','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665862422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1766,'','Cash','','2022-10-15 23:16:29','','0','12','2022-10-15 23:16:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665862488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1767,'','Cash','','2022-10-15 23:49:26','','0','12','2022-10-15 23:49:26','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121665865028','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1768,'','Cash','','2022-10-15 23:51:44','','0','12','2022-10-15 23:51:44','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121665866996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1769,'','Cash','','2022-10-15 23:55:04','','0','12','2022-10-15 23:55:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665867163','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1770,'','Cash','','2022-10-16 00:20:37','','0','12','2022-10-16 00:20:37','','3170','3170','1','retail','0','3170','1','0','0','0','0','0','0','printed',' ','','1','0','121665867308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1771,'','Cash','','2022-10-16 00:21:18','','0','12','2022-10-16 00:21:18','','1870','1870','1','retail','0','1870','1','0','0','0','0','0','0','printed',' ','','1','0','121665868846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1772,'','Cash','','2022-10-16 00:25:05','','0','12','2022-10-16 00:25:05','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121665869069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1773,'','Cash','','2022-10-16 00:28:01','','0','12','2022-10-16 00:28:01','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121665869270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1774,'','Cash','','2022-10-16 00:28:17','','0','12','2022-10-16 00:28:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665869286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1775,'','Cash','','2022-10-16 00:33:08','','0','12','2022-10-16 00:33:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665869464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1776,'','Cash','','2022-10-16 00:45:22','','0','12','2022-10-16 00:45:22','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121665869627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1777,'','Cash','','2022-10-16 00:47:38','','0','12','2022-10-16 00:47:39','','15400','15400','1','retail','0','15400','1','0','0','0','0','0','0','printed',' ','','1','0','121665870326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1778,'','Cash','','2022-10-16 01:09:58','','0','12','2022-10-16 01:09:58','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121665870558','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1779,'','Cash','','2022-10-16 01:20:05','','0','12','2022-10-16 01:20:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665871883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1780,'','Cash','','2022-10-16 01:22:41','','0','12','2022-10-16 01:22:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665872409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1781,'','Cash','','2022-10-16 02:09:44','','0','12','2022-10-16 02:09:44','','3070','3070','1','retail','0','3070','1','0','0','0','0','0','0','printed',' ','','1','0','121665872564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1782,'','Cash','','2022-10-16 03:40:00','','0','12','2022-10-16 03:40:00','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121665875548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1783,'','Cash','','2022-10-16 03:48:23','','0','12','2022-10-16 03:48:23','','2510','2510','1','retail','0','2510','1','0','0','0','0','0','0','printed',' ','','1','0','121665880807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1784,'','Cash','','2022-10-16 04:01:04','','0','12','2022-10-16 04:01:04','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121665881323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1785,'','Cash','','2022-10-16 04:58:16','','0','12','2022-10-16 04:58:16','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121665883805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1786,'','Cash','','2022-10-16 15:30:07','','0','12','2022-10-16 15:30:07','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121665923385','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1787,'','Cash','','2022-10-16 16:24:30','','0','12','2022-10-16 16:24:30','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121665923411','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1788,'','Cash','','2022-10-16 16:25:08','','0','12','2022-10-16 16:25:08','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121665926690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1789,'','Cash','','2022-10-16 17:32:34','','0','12','2022-10-16 17:32:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665930335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1790,'','Cash','','2022-10-16 17:36:58','','0','12','2022-10-16 17:36:58','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665930765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1791,'','Cash','','2022-10-16 18:36:44','','0','12','2022-10-16 18:36:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665931104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1792,'','Cash','','2022-10-16 20:25:25','','0','12','2022-10-16 20:25:25','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665934682','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1793,'','Cash','','2022-10-16 20:58:39','','0','12','2022-10-16 20:58:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121665941129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1794,'','Cash','','2022-10-16 21:58:09','','0','12','2022-10-16 21:58:09','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121665943125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1795,'','Cash','','2022-10-16 22:04:22','','0','12','2022-10-16 22:04:22','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121665946731','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1796,'','Cash','','2022-10-16 22:06:42','','0','12','2022-10-16 22:06:42','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121665947110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1797,'','Cash','','2022-10-16 22:54:17','','0','12','2022-10-16 22:54:17','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121665947211','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1798,'','Cash','','2022-10-16 23:05:55','','0','12','2022-10-16 23:05:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665950149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1799,'','Cash','','2022-10-16 23:19:41','','0','12','2022-10-16 23:19:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665950987','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1800,'','Cash','','2022-10-16 23:23:31','','0','12','2022-10-16 23:23:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665951807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1801,'','Cash','','2022-10-16 23:28:56','','0','12','2022-10-16 23:28:56','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665951853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1802,'','Cash','','2022-10-16 23:43:54','','0','12','2022-10-16 23:43:54','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665952507','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1803,'','Cash','','2022-10-16 23:51:40','','0','12','2022-10-16 23:51:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121665953038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1804,'','Cash','','2022-10-17 00:14:01','','0','12','2022-10-17 00:14:01','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121665953562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1805,'','Cash','','2022-10-17 00:25:22','','0','12','2022-10-17 00:25:22','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121665955149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1806,'','Cash','','2022-10-17 00:43:21','','0','12','2022-10-17 00:43:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121665955566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1807,'','Cash','','2022-10-17 00:46:00','','0','12','2022-10-17 00:46:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121665956605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1808,'','Cash','','2022-10-17 00:54:53','','0','12','2022-10-17 00:54:53','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121665956803','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1809,'','Cash','','2022-10-17 01:22:30','','0','12','2022-10-17 01:22:30','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121665957493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1810,'','Cash','','2022-10-17 03:10:20','','0','12','2022-10-17 03:10:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121665958953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1811,'','Cash','','2022-10-17 15:31:37','','0','12','2022-10-17 15:31:37','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121666009626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1812,'','Cash','','2022-10-17 19:13:00','','0','12','2022-10-17 19:13:00','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121666023175','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1813,'','Cash','','2022-10-17 19:43:54','','0','12','2022-10-17 19:43:54','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666023184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1814,'','Cash','','2022-10-17 20:00:40','','0','12','2022-10-17 20:00:40','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666025038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1815,'','Cash','','2022-10-17 20:09:26','','0','12','2022-10-17 20:09:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666026043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1816,'','Cash','','2022-10-17 20:34:28','','0','12','2022-10-17 20:34:28','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121666026569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1817,'','Cash','','2022-10-17 20:53:19','','0','12','2022-10-17 20:53:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666028076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1818,'','Cash','','2022-10-17 21:04:21','','0','12','2022-10-17 21:04:21','','910','910','1','retail','0','910','1','0','0','0','0','0','0','printed',' ','','1','0','121666029226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1819,'','Cash','','2022-10-17 21:21:48','','0','12','2022-10-17 21:21:48','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666029922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1820,'','Cash','','2022-10-17 21:26:28','','0','12','2022-10-17 21:26:28','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666030916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1821,'','Cash','','2022-10-17 21:37:52','','0','12','2022-10-17 21:37:52','','5600','5600','1','retail','0','5600','1','0','0','0','0','0','0','printed',' ','','1','0','121666031212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1822,'','Cash','','2022-10-17 21:38:47','','0','12','2022-10-17 21:38:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666031907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1823,'','Cash','','2022-10-17 21:48:09','','0','12','2022-10-17 21:48:09','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121666032008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1824,'','Cash','','2022-10-17 21:49:10','','0','12','2022-10-17 21:49:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666032526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1825,'','Cash','','2022-10-17 21:55:09','','0','12','2022-10-17 21:55:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666032556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1826,'','Cash','','2022-10-17 21:56:57','','0','12','2022-10-17 21:56:57','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666033007','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1827,'','Cash','','2022-10-17 22:40:00','','0','12','2022-10-17 22:40:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666033021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1828,'','Cash','','2022-10-17 23:02:33','','0','12','2022-10-17 23:02:33','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121666035604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1829,'','Cash','','2022-10-17 23:38:37','','0','12','2022-10-17 23:38:37','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666036960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1830,'','Cash','','2022-10-17 23:57:36','','0','12','2022-10-17 23:57:36','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121666039122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1831,'','Cash','','2022-10-18 02:27:31','','0','12','2022-10-18 02:27:31','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666043012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1832,'','Cash','','2022-10-18 02:28:48','','0','12','2022-10-18 02:28:48','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666049256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1833,'','Cash','','2022-10-18 03:02:32','','0','12','2022-10-18 03:02:32','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121666049415','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1834,'','Cash','','2022-10-18 15:42:27','','0','12','2022-10-18 15:42:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666096938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1835,'','Cash','','2022-10-18 15:43:30','','0','12','2022-10-18 15:43:30','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121666096983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1836,'','Cash','','2022-10-18 18:49:32','','0','12','2022-10-18 18:49:32','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666100522','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1837,'','Cash','','2022-10-18 20:18:08','','0','12','2022-10-18 20:18:08','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666108228','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1838,'','Cash','','2022-10-18 21:07:53','','0','12','2022-10-18 21:07:53','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666113556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1839,'','Cash','','2022-10-18 21:12:32','','0','12','2022-10-18 21:12:32','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121666116620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1840,'','Cash','','2022-10-18 21:25:37','','0','12','2022-10-18 21:25:37','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121666116758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1841,'','Cash','','2022-10-18 21:39:24','','0','12','2022-10-18 21:39:24','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666117543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1842,'','Cash','','2022-10-18 21:52:27','','0','12','2022-10-18 21:52:27','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121666118551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1843,'','Cash','','2022-10-18 22:04:17','','0','12','2022-10-18 22:04:17','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121666119814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1844,'','Cash','','2022-10-18 22:32:54','','0','12','2022-10-18 22:32:54','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121666119971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1845,'','Cash','','2022-10-18 22:37:28','','0','12','2022-10-18 22:37:28','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121666121835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1846,'','Cash','','2022-10-18 22:37:42','','0','12','2022-10-18 22:37:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666121853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1847,'','Cash','','2022-10-18 22:51:47','','0','12','2022-10-18 22:51:47','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666121929','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1848,'','Cash','','2022-10-18 22:58:32','','0','12','2022-10-18 22:58:32','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121666122852','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1849,'','Cash','','2022-10-18 23:25:19','','0','12','2022-10-18 23:25:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666124705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1850,'','Cash','','2022-10-18 23:37:52','','0','12','2022-10-18 23:37:52','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121666124726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1851,'','Cash','','2022-10-19 00:02:12','','0','12','2022-10-19 00:02:12','','2570','2570','1','retail','0','2570','1','0','0','0','0','0','0','printed',' ','','1','0','121666126221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1852,'','Cash','','2022-10-19 00:11:04','','0','12','2022-10-19 00:11:04','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666127460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1853,'','Cash','','2022-10-19 01:14:44','','0','12','2022-10-19 01:14:44','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121666127516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1854,'','Cash','','2022-10-19 02:00:33','','0','12','2022-10-19 02:00:33','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121666131355','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1855,'','Cash','','2022-10-19 02:31:31','','0','12','2022-10-19 02:31:31','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121666134038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1856,'','Cash','','2022-10-19 14:41:40','','0','12','2022-10-19 14:41:40','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121666179536','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1857,'','Cash','','2022-10-19 15:24:17','','0','12','2022-10-19 15:24:17','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121666179713','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1858,'','Cash','','2022-10-19 15:44:59','','0','12','2022-10-19 15:44:59','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121666182364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1859,'','Cash','','2022-10-19 17:16:56','','0','12','2022-10-19 17:16:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666183991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1860,'','Cash','','2022-10-19 20:16:09','','0','12','2022-10-19 20:16:09','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121666194033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1861,'','Cash','','2022-10-19 21:13:43','','0','12','2022-10-19 21:13:43','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121666199933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1862,'','Cash','','2022-10-19 21:24:53','','0','12','2022-10-19 21:24:53','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666203869','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1863,'','Cash','','2022-10-19 21:37:13','','0','12','2022-10-19 21:37:13','','8500','8500','1','retail','0','8500','1','0','0','0','0','0','0','printed',' ','','1','0','121666204618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1864,'','Cash','','2022-10-19 21:52:40','','0','12','2022-10-19 21:52:40','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121666205493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1865,'','Cash','','2022-10-19 21:55:33','','0','12','2022-10-19 21:55:33','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666205565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1866,'','Cash','','2022-10-19 21:59:10','','0','12','2022-10-19 21:59:10','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121666205941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1867,'','Cash','','2022-10-19 22:03:07','','0','12','2022-10-19 22:03:07','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121666205954','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1868,'','Cash','','2022-10-19 22:37:42','','0','12','2022-10-19 22:37:42','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121666207803','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1869,'','Cash','','2022-10-19 22:43:55','','0','12','2022-10-19 22:43:55','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121666208613','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1870,'','Cash','','2022-10-19 22:46:51','','0','12','2022-10-19 22:46:52','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121666208640','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1871,'','Cash','','2022-10-19 22:50:11','','0','12','2022-10-19 22:50:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666208999','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1872,'','Cash','','2022-10-19 22:59:49','','0','12','2022-10-19 22:59:49','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666209568','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1873,'','Cash','','2022-10-19 23:00:57','','0','12','2022-10-19 23:00:57','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666209636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1874,'','Cash','','2022-10-19 23:01:12','','0','12','2022-10-19 23:01:12','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121666209664','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1875,'','Cash','','2022-10-19 23:02:22','','0','12','2022-10-19 23:02:22','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121666209712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1876,'','Cash','','2022-10-19 23:09:55','','0','12','2022-10-19 23:09:55','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666209749','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1877,'','Cash','','2022-10-19 23:21:14','','0','12','2022-10-19 23:21:14','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666210858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1878,'','Cash','','2022-10-19 23:26:30','','0','12','2022-10-19 23:26:30','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121666211176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1879,'','Cash','','2022-10-19 23:29:36','','0','12','2022-10-19 23:29:36','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121666211340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1880,'','Cash','','2022-10-20 00:06:41','','0','12','2022-10-20 00:06:41','','970','970','1','retail','0','970','1','0','0','0','0','0','0','printed',' ','','1','0','121666212377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1881,'','Cash','','2022-10-20 00:19:15','','0','12','2022-10-20 00:19:15','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121666213648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1882,'','Cash','','2022-10-20 00:27:32','','0','12','2022-10-20 00:27:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666214415','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1883,'','Cash','','2022-10-20 00:36:09','','0','12','2022-10-20 00:36:09','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121666215354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1884,'','Cash','','2022-10-20 00:49:13','','0','12','2022-10-20 00:49:13','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121666215373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1885,'','Cash','','2022-10-20 00:53:05','','0','12','2022-10-20 00:53:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666216179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1886,'','Cash','','2022-10-20 00:57:59','','0','12','2022-10-20 00:57:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666216639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1887,'','Cash','','2022-10-20 03:21:59','','0','12','2022-10-20 03:21:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666225306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1888,'','Cash','','2022-10-20 15:18:15','','0','12','2022-10-20 15:18:15','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121666268283','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1889,'','Cash','','2022-10-20 15:20:01','','0','12','2022-10-20 15:20:01','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666268373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1890,'','Cash','','2022-10-20 15:31:39','','0','12','2022-10-20 15:31:39','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666268414','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1891,'','Cash','','2022-10-20 15:32:24','','0','12','2022-10-20 15:32:24','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666269107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1892,'','Cash','','2022-10-20 16:14:25','','0','12','2022-10-20 16:14:25','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121666269148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1893,'','Cash','','2022-10-20 16:15:59','','0','12','2022-10-20 16:15:59','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121666271682','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1894,'','Cash','','2022-10-20 16:18:07','','0','12','2022-10-20 16:18:07','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666271840','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1895,'','Cash','','2022-10-20 16:30:28','','0','12','2022-10-20 16:30:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666272018','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1896,'','Cash','','2022-10-20 17:01:36','','0','12','2022-10-20 17:01:36','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666272633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1897,'','Cash','','2022-10-20 17:33:43','','0','12','2022-10-20 17:33:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666274504','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1898,'','Cash','','2022-10-20 18:04:32','','0','12','2022-10-20 18:04:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666276527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1899,'','Cash','','2022-10-20 18:45:24','','0','12','2022-10-20 18:45:24','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666278739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1900,'','Cash','','2022-10-20 19:50:40','','0','12','2022-10-20 19:50:40','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666280784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1901,'','Cash','','2022-10-20 20:55:52','','0','12','2022-10-20 20:55:52','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121666284644','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1902,'','Cash','','2022-10-20 22:03:40','','0','12','2022-10-20 22:03:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666288649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1903,'','Cash','','2022-10-20 22:04:59','','0','12','2022-10-20 22:04:59','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121666292649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1904,'','Cash','','2022-10-20 22:12:18','','0','12','2022-10-20 22:12:18','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121666292750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1905,'','Cash','','2022-10-20 22:15:47','','0','12','2022-10-20 22:15:47','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121666293218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1906,'','Cash','','2022-10-20 22:42:40','','0','12','2022-10-20 22:42:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666294931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1907,'','Cash','','2022-10-20 22:43:32','','0','12','2022-10-20 22:43:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666294963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1908,'','Cash','','2022-10-20 22:46:00','','0','12','2022-10-20 22:46:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666295149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1909,'','Cash','','2022-10-20 23:02:22','','0','12','2022-10-20 23:02:22','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121666295164','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1910,'','Cash','','2022-10-21 00:05:15','','0','12','2022-10-21 00:05:15','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121666296334','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1911,'','Cash','','2022-10-21 00:42:25','','0','12','2022-10-21 00:42:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666300050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1912,'','Cash','','2022-10-21 00:45:45','','0','12','2022-10-21 00:45:45','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121666302149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1913,'','Cash','','2022-10-21 00:50:09','','0','12','2022-10-21 00:50:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666302380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1914,'','Cash','','2022-10-21 00:56:21','','0','12','2022-10-21 00:56:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666302614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1915,'','Cash','','2022-10-21 01:00:16','','0','12','2022-10-21 01:00:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666303045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1916,'','Cash','','2022-10-21 01:07:06','','0','12','2022-10-21 01:07:06','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666303314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1917,'','Cash','','2022-10-21 01:13:09','','0','12','2022-10-21 01:13:09','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121666303662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1918,'','Cash','','2022-10-21 01:37:36','','0','12','2022-10-21 01:37:36','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666303993','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1919,'','Cash','','2022-10-21 03:24:13','','0','12','2022-10-21 03:24:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666305552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1920,'','Cash','','2022-10-21 03:51:11','','0','12','2022-10-21 03:51:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666311861','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1921,'','Cash','','2022-10-21 15:26:18','','0','12','2022-10-21 15:26:18','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121666355088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1922,'','Cash','','2022-10-21 16:23:47','','0','12','2022-10-21 16:23:47','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121666357192','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1923,'','Cash','','2022-10-21 16:34:54','','0','12','2022-10-21 16:34:54','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121666358705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1924,'','Cash','','2022-10-21 17:10:33','','0','12','2022-10-21 17:10:33','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121666359327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1925,'','Cash','','2022-10-21 17:12:04','','0','12','2022-10-21 17:12:04','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121666361520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1926,'','Cash','','2022-10-21 17:45:42','','0','12','2022-10-21 17:45:42','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121666361646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1927,'','Cash','','2022-10-21 17:53:25','','0','12','2022-10-21 17:53:25','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666363590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1928,'','Cash','','2022-10-21 19:41:20','','0','12','2022-10-21 19:41:20','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121666364488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1929,'','Cash','','2022-10-21 21:22:37','','0','12','2022-10-21 21:22:37','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666370485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1930,'','Cash','','2022-10-21 21:24:31','','0','12','2022-10-21 21:24:31','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121666376563','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1931,'','Cash','','2022-10-21 21:29:56','','0','12','2022-10-21 21:29:56','','1540','1540','1','retail','0','1540','1','0','0','0','0','0','0','printed',' ','','1','0','121666376796','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1932,'','Cash','','2022-10-21 21:33:16','','0','12','2022-10-21 21:33:16','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121666377035','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1933,'','Cash','','2022-10-21 21:39:25','','0','12','2022-10-21 21:39:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666377463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1934,'','Cash','','2022-10-21 21:44:55','','0','12','2022-10-21 21:44:55','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666377575','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1935,'','Cash','','2022-10-21 21:49:48','','0','12','2022-10-21 21:49:48','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121666377899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1936,'','Cash','','2022-10-21 22:14:57','','0','12','2022-10-21 22:14:57','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121666378468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1937,'','Cash','','2022-10-21 22:23:19','','0','12','2022-10-21 22:23:19','','1580','1580','1','retail','0','1580','1','0','0','0','0','0','0','printed',' ','','1','0','121666379829','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1938,'','Cash','','2022-10-21 22:36:24','','0','12','2022-10-21 22:36:24','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121666380226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1939,'','Cash','','2022-10-21 22:48:00','','0','12','2022-10-21 22:48:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666381537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1940,'','Cash','','2022-10-21 22:48:52','','0','12','2022-10-21 22:48:52','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666381684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1941,'','Cash','','2022-10-21 22:52:48','','0','12','2022-10-21 22:52:48','','2670','2670','1','retail','0','2670','1','0','0','0','0','0','0','printed',' ','','1','0','121666381854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1942,'','Cash','','2022-10-21 23:08:09','','0','12','2022-10-21 23:08:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666382874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1943,'','Cash','','2022-10-21 23:14:11','','0','12','2022-10-21 23:14:11','','6600','6600','1','retail','0','6600','1','0','0','0','0','0','0','printed',' ','','1','0','121666383162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1944,'','Cash','','2022-10-21 23:16:07','','0','12','2022-10-21 23:16:07','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121666383317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1945,'','Cash','','2022-10-21 23:22:01','','0','12','2022-10-21 23:22:01','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666383652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1946,'','Cash','','2022-10-21 23:35:45','','0','12','2022-10-21 23:35:45','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666384455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1947,'','Cash','','2022-10-21 23:58:10','','0','12','2022-10-21 23:58:10','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121666384915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1948,'','Cash','','2022-10-22 00:25:34','','0','12','2022-10-22 00:25:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666385994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1949,'','Cash','','2022-10-22 00:43:54','','0','12','2022-10-22 00:43:54','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121666388625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1950,'','Cash','','2022-10-22 01:01:32','','0','12','2022-10-22 01:01:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666389663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1951,'','Cash','','2022-10-22 01:05:11','','0','12','2022-10-22 01:05:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666389888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1952,'','Cash','','2022-10-22 01:27:09','','0','12','2022-10-22 01:27:09','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666389915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1953,'','Cash','','2022-10-22 01:50:54','','0','12','2022-10-22 01:50:54','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121666391803','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1954,'','Cash','','2022-10-22 02:08:09','','0','12','2022-10-22 02:08:09','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121666392724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1955,'','Cash','','2022-10-22 02:26:51','','0','12','2022-10-22 02:26:51','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666393764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1956,'','Cash','','2022-10-22 02:47:52','','0','12','2022-10-22 02:47:52','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121666395978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1957,'','Cash','','2022-10-22 15:47:43','','0','12','2022-10-22 15:47:43','','1930','1930','1','retail','0','1930','1','0','0','0','0','0','0','printed',' ','','1','0','121666442804','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1958,'','Cash','','2022-10-22 17:15:57','','0','12','2022-10-22 17:15:57','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121666444789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1959,'','Cash','','2022-10-22 17:18:08','','0','12','2022-10-22 17:18:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666448268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1960,'','Cash','','2022-10-22 18:35:24','','0','12','2022-10-22 18:35:24','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666452909','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1961,'','Cash','','2022-10-22 18:55:12','','0','12','2022-10-22 18:55:12','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121666452969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1962,'','Cash','','2022-10-22 20:14:32','','0','12','2022-10-22 20:14:32','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666454157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1963,'','Cash','','2022-10-22 20:47:55','','0','12','2022-10-22 20:47:55','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666458878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1964,'','Cash','','2022-10-22 21:45:39','','0','12','2022-10-22 21:45:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666462416','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1965,'','Cash','','2022-10-22 21:54:41','','0','12','2022-10-22 21:54:41','','9900','9900','1','retail','0','9900','1','0','0','0','0','0','0','printed',' ','','1','0','121666464344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1966,'','Cash','','2022-10-22 22:00:00','','0','12','2022-10-22 22:00:00','','610','610','1','retail','0','610','1','0','0','0','0','0','0','printed',' ','','1','0','121666464935','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1967,'','Cash','','2022-10-22 22:34:18','','0','12','2022-10-22 22:34:18','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121666467142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1968,'','Cash','','2022-10-22 22:51:49','','0','12','2022-10-22 22:51:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666467405','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1969,'','Cash','','2022-10-22 23:00:46','','0','12','2022-10-22 23:00:46','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666468348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1970,'','Cash','','2022-10-22 23:06:41','','0','12','2022-10-22 23:06:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666468905','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1971,'','Cash','','2022-10-22 23:31:32','','0','12','2022-10-22 23:31:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666469290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1972,'','Cash','','2022-10-23 00:03:05','','0','12','2022-10-23 00:03:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666470758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1973,'','Cash','','2022-10-23 00:13:23','','0','12','2022-10-23 00:13:23','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121666472620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1974,'','Cash','','2022-10-23 00:25:32','','0','12','2022-10-23 00:25:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666473233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1975,'','Cash','','2022-10-23 00:53:20','','0','12','2022-10-23 00:53:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666473937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1976,'','Cash','','2022-10-23 00:58:07','','0','12','2022-10-23 00:58:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666475876','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1977,'','Cash','','2022-10-23 01:03:33','','0','12','2022-10-23 01:03:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666476199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1978,'','Cash','','2022-10-23 01:22:28','','0','12','2022-10-23 01:22:28','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666476219','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1979,'','Cash','','2022-10-23 01:49:58','','0','12','2022-10-23 01:49:58','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121666477433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1980,'','Cash','','2022-10-23 01:53:29','','0','12','2022-10-23 01:53:29','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121666479002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1981,'','Cash','','2022-10-23 02:31:06','','0','12','2022-10-23 02:31:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666479217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1982,'','Cash','','2022-10-23 02:38:13','','0','12','2022-10-23 02:38:13','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666481477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1983,'','Cash','','2022-10-23 02:46:17','','0','12','2022-10-23 02:46:17','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121666482345','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1984,'','Cash','','2022-10-23 03:33:56','','0','12','2022-10-23 03:33:56','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121666482391','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1985,'','Cash','','2022-10-23 03:55:48','','0','12','2022-10-23 03:55:48','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121666485307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1986,'','Cash','','2022-10-23 04:04:56','','0','12','2022-10-23 04:04:56','','2490','2490','1','retail','0','2490','1','0','0','0','0','0','0','printed',' ','','1','0','121666486636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1987,'','Cash','','2022-10-23 18:45:56','','0','12','2022-10-23 18:45:56','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666539939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1988,'','Cash','','2022-10-23 19:16:13','','0','12','2022-10-23 19:16:13','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121666539962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1989,'','Cash','','2022-10-23 20:11:28','','0','12','2022-10-23 20:11:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666542006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1990,'','Cash','','2022-10-23 20:42:32','','0','12','2022-10-23 20:42:32','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666545092','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1991,'','Cash','','2022-10-23 20:43:22','','0','12','2022-10-23 20:43:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666546963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1992,'','Cash','','2022-10-23 20:50:03','','0','12','2022-10-23 20:50:03','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666547006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1993,'','Cash','','2022-10-23 21:02:24','','0','12','2022-10-23 21:02:24','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121666547454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1994,'','Cash','','2022-10-23 21:05:51','','0','12','2022-10-23 21:05:51','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666548156','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1995,'','Cash','','2022-10-23 21:53:37','','0','12','2022-10-23 21:53:37','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121666548362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1996,'','Cash','','2022-10-23 21:56:22','','0','12','2022-10-23 21:56:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666551286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1997,'','Cash','','2022-10-23 22:13:26','','0','12','2022-10-23 22:13:26','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121666551424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1998,'','Cash','','2022-10-23 22:21:23','','0','12','2022-10-23 22:21:23','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121666552475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1999,'','Cash','','2022-10-23 22:22:09','','0','12','2022-10-23 22:22:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666552925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2000,'','Cash','','2022-10-23 22:30:59','','0','12','2022-10-23 22:30:59','','7350','7350','1','retail','0','7350','1','0','0','0','0','0','0','printed',' ','','1','0','121666553437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2001,'','Cash','','2022-10-23 22:41:42','','0','12','2022-10-23 22:41:42','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121666553654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2002,'','Cash','','2022-10-23 22:48:27','','0','12','2022-10-23 22:48:27','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121666554148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2003,'','Cash','','2022-10-23 22:52:43','','0','12','2022-10-23 22:52:43','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666554534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2004,'','Cash','','2022-10-23 23:19:53','','0','12','2022-10-23 23:19:53','','1110','1110','1','retail','0','1110','1','0','0','0','0','0','0','printed',' ','','1','0','121666554767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2005,'','Cash','','2022-10-23 23:57:49','','0','12','2022-10-23 23:57:49','','1860','1860','1','retail','0','1860','1','0','0','0','0','0','0','printed',' ','','1','0','121666557638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2006,'','Cash','','2022-10-24 00:16:58','','0','12','2022-10-24 00:16:58','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121666558734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2007,'','Cash','','2022-10-24 00:23:40','','0','12','2022-10-24 00:23:40','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666559822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2008,'','Cash','','2022-10-24 00:41:24','','0','12','2022-10-24 00:41:24','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121666560353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2009,'','Cash','','2022-10-24 01:45:23','','0','12','2022-10-24 01:45:23','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121666561315','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2010,'','Cash','','2022-10-24 01:57:50','','0','12','2022-10-24 01:57:50','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666565190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2011,'','Cash','','2022-10-24 01:58:53','','0','12','2022-10-24 01:58:53','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121666565908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2012,'','Cash','','2022-10-24 02:23:06','','0','12','2022-10-24 02:23:06','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666565937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2013,'','Cash','','2022-10-24 02:57:09','','0','12','2022-10-24 02:57:09','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666569269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2014,'','Cash','','2022-10-24 03:05:24','','0','12','2022-10-24 03:05:24','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666569573','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2015,'','Cash','','2022-10-24 19:14:44','','0','12','2022-10-24 19:14:44','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666628078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2016,'','Cash','','2022-10-24 19:23:49','','0','12','2022-10-24 19:23:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666628620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2017,'','Cash','','2022-10-24 21:39:20','','0','12','2022-10-24 21:39:20','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121666636735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2018,'','Cash','','2022-10-24 22:38:35','','0','12','2022-10-24 22:38:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666636770','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2019,'','Cash','','2022-10-24 23:32:01','','0','12','2022-10-24 23:32:01','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666640349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2020,'','Cash','','2022-10-25 00:13:36','','0','12','2022-10-25 00:13:36','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121666643525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2021,'','Cash','','2022-10-25 00:56:35','','0','12','2022-10-25 00:56:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666646114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2022,'','Cash','','2022-10-25 01:13:12','','0','12','2022-10-25 01:13:12','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121666648600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2023,'','Cash','','2022-10-25 01:21:52','','0','12','2022-10-25 01:21:52','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121666650024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2024,'','Cash','','2022-10-25 01:25:08','','0','12','2022-10-25 01:25:08','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121666650215','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2025,'','Cash','','2022-10-25 02:43:50','','0','12','2022-10-25 02:43:50','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666650311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2026,'','Cash','','2022-10-25 14:44:28','','0','12','2022-10-25 14:44:28','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121666698208','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2027,'','Cash','','2022-10-25 16:13:52','','0','12','2022-10-25 16:13:52','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121666698275','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2028,'','Cash','','2022-10-25 16:29:36','','0','12','2022-10-25 16:29:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666703833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2029,'','Cash','','2022-10-25 19:38:22','','0','12','2022-10-25 19:38:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666715891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2030,'','Cash','','2022-10-25 20:10:10','','0','12','2022-10-25 20:10:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666715915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2031,'','Cash','','2022-10-25 21:19:26','','0','12','2022-10-25 21:19:26','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121666721062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2032,'','Cash','','2022-10-25 21:21:26','','0','12','2022-10-25 21:21:26','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121666722078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2033,'','Cash','','2022-10-25 22:20:33','','0','12','2022-10-25 22:20:33','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121666722091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2034,'','Cash','','2022-10-25 22:29:50','','0','12','2022-10-25 22:29:50','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121666725782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2035,'','Cash','','2022-10-25 22:37:29','','0','12','2022-10-25 22:37:29','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666726294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2036,'','Cash','','2022-10-25 22:51:13','','0','12','2022-10-25 22:51:13','','2160','2160','1','retail','0','2160','1','0','0','0','0','0','0','printed',' ','','1','0','121666726652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2037,'','Cash','','2022-10-25 23:21:31','','0','12','2022-10-25 23:21:31','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121666727629','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2038,'','Cash','','2022-10-25 23:38:00','','0','12','2022-10-25 23:38:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666729294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2039,'','Cash','','2022-10-25 23:38:44','','0','12','2022-10-25 23:38:44','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','','1','0','121666730284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2040,'','Cash','','2022-10-26 00:17:55','','0','12','2022-10-26 00:17:55','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121666730328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2041,'','Cash','','2022-10-26 01:05:45','','0','12','2022-10-26 01:05:45','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121666732712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2042,'','Cash','','2022-10-26 01:10:00','','0','12','2022-10-26 01:10:00','','2880','2880','1','retail','0','2880','1','0','0','0','0','0','0','printed',' ','','1','0','121666735549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2043,'','Cash','','2022-10-26 02:18:37','','0','12','2022-10-26 02:18:37','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121666739044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2044,'','Cash','','2022-10-26 02:34:45','','0','12','2022-10-26 02:34:45','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121666739921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2045,'','Cash','','2022-10-26 02:35:53','','0','12','2022-10-26 02:35:53','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121666740932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2046,'','Cash','','2022-10-26 02:52:56','','0','12','2022-10-26 02:52:56','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121666740958','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2047,'','Cash','','2022-10-26 13:31:14','','0','12','2022-10-26 13:31:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121666780260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2048,'','Cash','','2022-10-26 15:37:10','','0','12','2022-10-26 15:37:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666787819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2049,'','Cash','','2022-10-26 15:37:26','','0','12','2022-10-26 15:37:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666787834','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2050,'','Cash','','2022-10-26 16:08:16','','0','12','2022-10-26 16:08:16','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121666787855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2051,'','Cash','','2022-10-26 16:20:35','','0','12','2022-10-26 16:20:35','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121666789712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2052,'','Cash','','2022-10-26 18:17:10','','0','12','2022-10-26 18:17:10','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121666797409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2053,'','Cash','','2022-10-26 19:00:32','','0','12','2022-10-26 19:00:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666797588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2054,'','Cash','','2022-10-26 20:45:22','','0','12','2022-10-26 20:45:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666800037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2055,'','Cash','','2022-10-26 20:54:04','','0','12','2022-10-26 20:54:04','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121666806331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2056,'','Cash','','2022-10-26 21:19:37','','0','12','2022-10-26 21:19:37','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121666806848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2057,'','Cash','','2022-10-26 21:36:42','','0','12','2022-10-26 21:36:42','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121666808414','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2058,'','Cash','','2022-10-26 21:42:10','','0','12','2022-10-26 21:42:10','','17550','17550','1','retail','0','17550','1','0','0','0','0','0','0','printed',' ','','1','0','121666809495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2059,'','Cash','','2022-10-26 22:32:08','','0','12','2022-10-26 22:32:08','','1990','1990','1','retail','0','1990','1','0','0','0','0','0','0','printed',' ','','1','0','121666809799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2060,'','Cash','','2022-10-27 00:03:57','','0','12','2022-10-27 00:03:57','','8930','8930','1','retail','0','8930','1','0','0','0','0','0','0','printed',' ','','1','0','121666814054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2061,'','Cash','','2022-10-27 00:08:05','','0','12','2022-10-27 00:08:05','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121666818261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2062,'','Cash','','2022-10-27 00:12:35','','0','12','2022-10-27 00:12:35','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121666818498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2063,'','Cash','','2022-10-27 00:40:51','','0','12','2022-10-27 00:40:51','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121666820432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2064,'','Cash','','2022-10-27 00:42:50','','0','12','2022-10-27 00:42:50','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121666820456','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2065,'','Cash','','2022-10-27 00:45:20','','0','12','2022-10-27 00:45:20','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121666820623','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2066,'','Cash','','2022-10-27 01:01:21','','0','12','2022-10-27 01:01:21','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121666820723','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2067,'','Cash','','2022-10-27 01:07:07','','0','12','2022-10-27 01:07:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666821736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2068,'','Cash','','2022-10-27 01:09:00','','0','12','2022-10-27 01:09:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666822131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2069,'','Cash','','2022-10-27 01:13:46','','0','12','2022-10-27 01:13:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666822144','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2070,'','Cash','','2022-10-27 01:45:28','','0','12','2022-10-27 01:45:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666823737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2071,'','Cash','','2022-10-27 01:45:45','','0','12','2022-10-27 01:45:45','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121666824337','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2072,'','Cash','','2022-10-27 01:52:53','','0','12','2022-10-27 01:52:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666824764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2073,'','Cash','','2022-10-27 02:16:12','','0','12','2022-10-27 02:16:12','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666824778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2074,'','Cash','','2022-10-27 03:14:07','','0','12','2022-10-27 03:14:07','','310','310','1','retail','0','310','1','0','0','0','0','0','0','printed',' ','','1','0','121666826195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2075,'','Cash','','2022-10-27 15:14:28','','0','12','2022-10-27 15:14:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121666872838','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2076,'','Cash','','2022-10-27 17:04:21','','0','12','2022-10-27 17:04:21','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121666874690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2077,'','Cash','','2022-10-27 17:06:53','','0','12','2022-10-27 17:06:53','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121666879494','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2078,'','Cash','','2022-10-27 17:38:58','','0','12','2022-10-27 17:38:58','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121666879617','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2079,'','Cash','','2022-10-27 18:27:21','','0','12','2022-10-27 18:27:21','','1540','1540','1','retail','0','1540','1','0','0','0','0','0','0','printed',' ','','1','0','121666884425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2080,'','Cash','','2022-10-27 18:43:52','','0','12','2022-10-27 18:43:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666885418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2081,'','Cash','','2022-10-27 20:49:09','','0','12','2022-10-27 20:49:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666886757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2082,'','Cash','','2022-10-27 21:26:03','','0','12','2022-10-27 21:26:03','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121666893027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2083,'','Cash','','2022-10-27 22:51:52','','0','12','2022-10-27 22:51:52','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121666895170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2084,'','Cash','','2022-10-27 23:54:01','','0','12','2022-10-27 23:54:01','','1380','1380','1','retail','0','1380','1','0','0','0','0','0','0','printed',' ','','1','0','121666900429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2085,'','Cash','','2022-10-28 16:44:56','','0','12','2022-10-28 16:44:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121666964674','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2086,'','Cash','','2022-10-28 18:28:03','','0','12','2022-10-28 18:28:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666964716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2087,'','Cash','','2022-10-28 18:55:32','','0','12','2022-10-28 18:55:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121666971363','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2088,'','Cash','','2022-10-28 19:54:49','','0','12','2022-10-28 19:54:49','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121666975985','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2089,'','Cash','','2022-10-28 19:56:36','','0','12','2022-10-28 19:56:36','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121666976096','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2090,'','Cash','','2022-10-28 21:02:28','','0','12','2022-10-28 21:02:28','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121666980090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2091,'','Cash','','2022-10-28 21:06:53','','0','12','2022-10-28 21:06:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121666980153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2092,'','Cash','','2022-10-28 22:16:17','','0','12','2022-10-28 22:16:17','','9500','9500','1','retail','0','9500','1','0','0','0','0','0','0','printed',' ','','1','0','121666980417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2093,'','Cash','','2022-10-28 23:20:05','','0','12','2022-10-28 23:20:05','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121666984692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2094,'','Cash','','2022-10-28 23:24:40','','0','12','2022-10-28 23:24:40','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121666988413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2095,'','Cash','','2022-10-28 23:44:49','','0','12','2022-10-28 23:44:49','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121666988734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2096,'','Cash','','2022-10-28 23:48:04','','0','12','2022-10-28 23:48:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666989895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2097,'','Cash','','2022-10-28 23:52:05','','0','12','2022-10-28 23:52:05','','9750','9750','1','retail','0','9750','1','0','0','0','0','0','0','printed',' ','','1','0','121666990136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2098,'','Cash','','2022-10-29 00:11:23','','0','12','2022-10-29 00:11:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121666990873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2099,'','Cash','','2022-10-29 01:02:50','','0','12','2022-10-29 01:02:50','','2940','2940','1','retail','0','2940','1','0','0','0','0','0','0','printed',' ','','1','0','121666994365','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2100,'','Cash','','2022-10-29 01:07:27','','0','12','2022-10-29 01:07:27','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121666994814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2101,'','Cash','','2022-10-29 01:08:02','','0','12','2022-10-29 01:08:02','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121666994859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2102,'','Cash','','2022-10-29 01:13:22','','0','12','2022-10-29 01:13:22','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121666995194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2103,'','Cash','','2022-10-29 01:36:01','','0','12','2022-10-29 01:36:01','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121666995206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2104,'','Cash','','2022-10-29 02:03:58','','0','12','2022-10-29 02:03:58','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121666996609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2105,'','Cash','','2022-10-29 17:59:21','','0','12','2022-10-29 17:59:21','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121667052257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2106,'','Cash','','2022-10-29 18:17:55','','0','12','2022-10-29 18:17:55','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121667055566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2107,'','Cash','','2022-10-29 18:44:26','','0','12','2022-10-29 18:44:26','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121667056787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2108,'','Cash','','2022-10-29 18:59:20','','0','12','2022-10-29 18:59:20','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121667058292','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2109,'','Cash','','2022-10-29 19:39:00','','0','12','2022-10-29 19:39:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667059290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2110,'','Cash','','2022-10-29 20:11:58','','0','12','2022-10-29 20:11:58','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121667061543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2111,'','Cash','','2022-10-29 20:15:23','','0','12','2022-10-29 20:15:23','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121667063533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2112,'','Cash','','2022-10-29 20:22:16','','0','12','2022-10-29 20:22:16','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121667063727','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2113,'','Cash','','2022-10-29 20:28:11','','0','12','2022-10-29 20:28:11','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121667064169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2114,'','Cash','','2022-10-29 20:40:53','','0','12','2022-10-29 20:40:53','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121667064501','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2115,'','Cash','','2022-10-29 21:00:43','','0','12','2022-10-29 21:00:43','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121667066436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2116,'','Cash','','2022-10-29 21:48:27','','0','12','2022-10-29 21:48:27','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667066717','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2117,'','Cash','','2022-10-29 22:57:55','','0','12','2022-10-29 22:57:55','','2330','2330','1','retail','0','2330','1','0','0','0','0','0','0','printed',' ','','1','0','121667069773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2118,'','Cash','','2022-10-29 23:02:15','','0','12','2022-10-29 23:02:15','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667073478','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2119,'','Cash','','2022-10-29 23:02:58','','0','12','2022-10-29 23:02:58','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121667073739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2120,'','Cash','','2022-10-29 23:05:28','','0','12','2022-10-29 23:05:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667073919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2121,'','Cash','','2022-10-29 23:19:27','','0','12','2022-10-29 23:19:27','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121667074719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2122,'','Cash','','2022-10-29 23:21:42','','0','12','2022-10-29 23:21:42','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121667074787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2123,'','Cash','','2022-10-29 23:22:07','','0','12','2022-10-29 23:22:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121667074914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2124,'','Cash','','2022-10-29 23:22:37','','0','12','2022-10-29 23:22:37','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121667074930','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2125,'','Cash','','2022-10-29 23:23:26','','0','12','2022-10-29 23:23:26','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121667074960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2126,'','Cash','','2022-10-29 23:30:49','','0','12','2022-10-29 23:30:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667075050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2127,'','Cash','','2022-10-29 23:32:47','','0','12','2022-10-29 23:32:47','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121667075467','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2128,'','Cash','','2022-10-29 23:35:28','','0','12','2022-10-29 23:35:28','','3650','3650','1','retail','0','3650','1','0','0','0','0','0','0','printed',' ','','1','0','121667075614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2129,'','Cash','','2022-10-30 00:24:21','','0','12','2022-10-30 00:24:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667075807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2130,'','Cash','','2022-10-30 00:42:19','','0','12','2022-10-30 00:42:19','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121667078813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2131,'','Cash','','2022-10-30 00:53:27','','0','12','2022-10-30 00:53:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667079879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2132,'','Cash','','2022-10-30 01:08:28','','0','12','2022-10-30 01:08:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667080577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2133,'','Cash','','2022-10-30 01:27:46','','0','12','2022-10-30 01:27:46','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667082455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2134,'','Cash','','2022-10-30 01:30:02','','0','12','2022-10-30 01:30:02','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667082474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2135,'','Cash','','2022-10-30 01:31:59','','0','12','2022-10-30 01:31:59','','1130','1130','1','retail','0','1130','1','0','0','0','0','0','0','printed',' ','','1','0','121667082617','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2136,'','Cash','','2022-10-30 01:48:15','','0','12','2022-10-30 01:48:15','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667083657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2137,'','Cash','','2022-10-30 01:52:40','','0','12','2022-10-30 01:52:40','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121667083782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2138,'','Cash','','2022-10-30 01:57:48','','0','12','2022-10-30 01:57:48','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121667084259','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2139,'','Cash','','2022-10-30 02:15:40','','0','12','2022-10-30 02:15:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667084272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2140,'','Cash','','2022-10-30 02:43:31','','0','12','2022-10-30 02:43:31','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121667085352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2141,'','Cash','','2022-10-30 02:43:55','','0','12','2022-10-30 02:43:55','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667087017','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2142,'','Cash','','2022-10-30 02:46:10','','0','12','2022-10-30 02:46:10','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121667087124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2143,'','Cash','','2022-10-30 03:22:46','','0','12','2022-10-30 03:22:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667087316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2144,'','Cash','','2022-10-30 03:58:05','','0','12','2022-10-30 03:58:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667089382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2145,'','Cash','','2022-10-30 04:05:33','','0','12','2022-10-30 04:05:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667091489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2146,'','Cash','','2022-10-30 04:35:42','','0','12','2022-10-30 04:35:42','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121667092053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2147,'','Cash','','2022-10-30 05:26:01','','0','12','2022-10-30 05:26:01','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121667093863','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2148,'','Cash','','2022-10-30 18:11:24','','0','12','2022-10-30 18:11:24','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121667142676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2149,'','Cash','','2022-10-30 18:21:47','','0','12','2022-10-30 18:21:47','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667142688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2150,'','Cash','','2022-10-30 19:27:34','','0','12','2022-10-30 19:27:34','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121667143310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2151,'','Cash','','2022-10-30 20:19:09','','0','12','2022-10-30 20:19:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667147258','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2152,'','Cash','','2022-10-30 20:30:37','','0','12','2022-10-30 20:30:37','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667150512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2153,'','Cash','','2022-10-30 20:49:34','','0','12','2022-10-30 20:49:34','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121667151126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2154,'','Cash','','2022-10-30 21:16:24','','0','12','2022-10-30 21:16:24','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121667153757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2155,'','Cash','','2022-10-30 21:51:27','','0','12','2022-10-30 21:51:27','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121667153788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2156,'','Cash','','2022-10-30 21:54:51','','0','12','2022-10-30 21:54:51','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667155916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2157,'','Cash','','2022-10-30 22:08:11','','0','12','2022-10-30 22:08:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667156134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2158,'','Cash','','2022-10-30 22:12:14','','0','12','2022-10-30 22:12:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667156896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2159,'','Cash','','2022-10-30 22:20:31','','0','12','2022-10-30 22:20:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667157555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2160,'','Cash','','2022-10-30 22:21:55','','0','12','2022-10-30 22:21:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667157684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2161,'','Cash','','2022-10-30 22:38:01','','0','12','2022-10-30 22:38:01','','2160','2160','1','retail','0','2160','1','0','0','0','0','0','0','printed',' ','','1','0','121667157719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2162,'','Cash','','2022-10-30 22:46:04','','0','12','2022-10-30 22:46:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667158685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2163,'','Cash','','2022-10-30 23:20:00','','0','12','2022-10-30 23:20:00','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667159168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2164,'','Cash','','2022-10-30 23:33:20','','0','12','2022-10-30 23:33:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667161237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2165,'','Cash','','2022-10-31 00:12:19','','0','12','2022-10-30 23:59:31','','1880','1880','1','retail','0','1880','1','0','0','0','0','0','0','printed',' ','','1','0','121667162004','Cleared','12','2022-10-31 00:12:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2166,'','Cash','','2022-10-31 00:24:38','','0','12','2022-10-31 00:24:38','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121667164720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2167,'','Cash','','2022-10-31 01:14:23','','0','12','2022-10-31 00:26:07','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121667165088','Cleared','12','2022-10-31 01:14:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2168,'','Cash','','2022-10-31 18:39:28','','0','12','2022-10-31 18:39:28','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121667230691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2169,'','Cash','','2022-10-31 18:44:58','','0','12','2022-10-31 18:44:58','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121667230773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2170,'','Cash','','2022-10-31 19:28:47','','0','12','2022-10-31 19:28:47','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667231149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2171,'','Cash','','2022-10-31 19:29:58','','0','12','2022-10-31 19:29:58','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121667233733','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2172,'','Cash','','2022-10-31 19:31:22','','0','12','2022-10-31 19:31:22','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667233873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2173,'','Cash','','2022-10-31 19:59:42','','0','12','2022-10-31 19:59:42','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121667233886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2174,'','Cash','','2022-10-31 22:05:50','','0','12','2022-10-31 22:05:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667243140','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2175,'','Cash','','2022-10-31 22:15:15','','0','12','2022-10-31 22:15:15','','5740','5740','1','retail','0','5740','1','0','0','0','0','0','0','printed',' ','','1','0','121667243159','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2176,'','Cash','','2022-10-31 22:18:00','','0','12','2022-10-31 22:18:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667243816','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2177,'','Cash','','2022-10-31 22:26:27','','0','12','2022-10-31 22:26:27','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121667243901','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2178,'','Cash','','2022-10-31 22:30:51','','0','12','2022-10-31 22:30:51','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121667244600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2179,'','Cash','','2022-10-31 22:47:42','','0','12','2022-10-31 22:47:42','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121667244682','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2180,'','Cash','','2022-10-31 23:56:00','','0','12','2022-10-31 23:56:00','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121667245964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2181,'','Cash','','2022-10-31 23:56:53','','0','12','2022-10-31 23:56:53','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121667249765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2182,'','Cash','','2022-11-01 00:03:05','','0','12','2022-11-01 00:03:05','','4850','4850','1','retail','0','4850','1','0','0','0','0','0','0','printed',' ','','1','0','121667249857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2183,'','Cash','','2022-11-01 04:25:45','','0','12','2022-11-01 04:25:46','','4350','4350','1','retail','0','4350','1','0','0','0','0','0','0','printed',' ','','1','0','121667265911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2184,'','Cash','','2022-11-01 04:28:25','','0','12','2022-11-01 04:28:25','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121667266093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2185,'','Cash','','2022-11-01 17:28:02','','0','12','2022-11-01 17:28:02','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667312131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2186,'','Cash','','2022-11-01 18:29:23','','0','12','2022-11-01 18:29:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667312888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2187,'','Cash','','2022-11-01 18:33:06','','0','12','2022-11-01 18:33:06','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121667316601','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2188,'','Cash','','2022-11-01 18:49:46','','0','12','2022-11-01 18:49:46','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667317772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2189,'','Cash','','2022-11-01 19:08:28','','0','12','2022-11-01 19:08:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667317792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2190,'','Cash','','2022-11-01 19:38:57','','0','12','2022-11-01 19:38:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667320705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2191,'','Cash','','2022-11-01 19:43:45','','0','12','2022-11-01 19:43:45','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121667320781','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2192,'','Cash','','2022-11-01 19:50:15','','0','12','2022-11-01 19:50:15','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121667321123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2193,'','Cash','','2022-11-01 22:06:54','','0','12','2022-11-01 22:06:54','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667326124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2194,'','Cash','','2022-11-01 22:18:53','','0','12','2022-11-01 22:18:53','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121667330301','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2195,'','Cash','','2022-11-01 22:34:21','','0','12','2022-11-01 22:34:21','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121667330338','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2196,'','Cash','','2022-11-01 22:50:57','','0','12','2022-11-01 22:50:57','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667331328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2197,'','Cash','','2022-11-01 23:00:00','','0','12','2022-11-01 23:00:00','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121667332321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2198,'','Cash','','2022-11-01 23:17:55','','0','12','2022-11-01 23:17:55','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121667332911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2199,'','Cash','','2022-11-01 23:39:51','','0','12','2022-11-01 23:39:51','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121667333881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2200,'','Cash','','2022-11-01 23:48:38','','0','12','2022-11-01 23:48:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667335240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2201,'','Cash','','2022-11-02 00:15:51','','0','12','2022-11-02 00:15:51','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121667335809','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2202,'','Cash','','2022-11-02 00:18:32','','0','12','2022-11-02 00:18:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667337499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2203,'','Cash','','2022-11-02 00:21:19','','0','12','2022-11-02 00:21:19','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121667337516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2204,'','Cash','','2022-11-02 00:26:13','','0','12','2022-11-02 00:26:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667337894','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2205,'','Cash','','2022-11-02 00:32:36','','0','12','2022-11-02 00:32:36','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121667337982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2206,'','Cash','','2022-11-02 01:15:13','','0','12','2022-11-02 01:15:13','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121667338380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2207,'','Cash','','2022-11-02 01:53:41','','0','12','2022-11-02 01:53:41','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121667340918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2208,'','Cash','','2022-11-02 01:55:05','','0','12','2022-11-02 01:55:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667343230','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2209,'','Cash','','2022-11-02 02:17:59','','0','12','2022-11-02 02:17:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667343528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2210,'','Cash','','2022-11-02 02:23:05','','0','12','2022-11-02 02:23:05','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','1','0','121667344684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2211,'','Cash','','2022-11-02 02:38:08','','0','12','2022-11-02 02:38:08','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121667345833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2212,'','Cash','','2022-11-02 02:50:57','','0','12','2022-11-02 02:50:57','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121667345942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2213,'','Cash','','2022-11-02 03:29:51','','0','12','2022-11-02 03:29:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667346683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2214,'','Cash','','2022-11-02 04:14:24','','0','12','2022-11-02 04:14:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667348996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2215,'','Cash','','2022-11-02 17:43:56','','0','12','2022-11-02 17:43:56','','1380','1380','1','retail','0','1380','1','0','0','0','0','0','0','printed',' ','','1','0','121667400184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2216,'','Cash','','2022-11-02 19:53:59','','0','12','2022-11-02 19:53:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121667400314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2217,'','Cash','','2022-11-02 20:55:26','','0','12','2022-11-02 20:55:26','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121667408232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2218,'','Cash','','2022-11-02 21:03:10','','0','12','2022-11-02 21:03:10','','3740','3740','1','retail','0','3740','1','0','0','0','0','0','0','printed',' ','','1','0','121667411731','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2219,'','Cash','','2022-11-02 21:23:00','','0','12','2022-11-02 21:23:00','','2710','2710','1','retail','0','2710','1','0','0','0','0','0','0','printed',' ','','1','0','121667412201','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2220,'','Cash','','2022-11-02 22:45:28','','0','12','2022-11-02 22:45:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667414845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2221,'','Cash','','2022-11-02 22:55:43','','0','12','2022-11-02 22:55:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667418333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2222,'','Cash','','2022-11-02 23:16:28','','0','12','2022-11-02 23:16:28','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121667419082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2223,'','Cash','','2022-11-02 23:51:56','','0','12','2022-11-02 23:51:56','','2030','2030','1','retail','0','2030','1','0','0','0','0','0','0','printed',' ','','1','0','121667420246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2224,'','Cash','','2022-11-02 23:58:17','','0','12','2022-11-02 23:58:17','','9480','9480','1','retail','0','9480','1','0','0','0','0','0','0','printed',' ','','1','0','121667422500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2225,'','Cash','','2022-11-03 00:00:06','','0','12','2022-11-03 00:00:06','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121667422706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2226,'','Cash','','2022-11-03 00:20:54','','0','12','2022-11-03 00:20:54','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121667422810','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2227,'','Cash','','2022-11-03 00:40:54','','0','12','2022-11-03 00:40:54','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121667425238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2228,'','Cash','','2022-11-03 01:25:48','','0','12','2022-11-03 01:25:48','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667425266','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2229,'','Cash','','2022-11-03 01:32:03','','0','12','2022-11-03 01:32:03','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667427955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2230,'','Cash','','2022-11-03 18:19:47','','0','12','2022-11-03 18:19:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667488780','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2231,'','Cash','','2022-11-03 19:22:50','','0','12','2022-11-03 19:22:50','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121667492538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2232,'','Cash','','2022-11-03 20:38:01','','0','12','2022-11-03 20:38:01','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121667497022','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2233,'','Cash','','2022-11-03 21:55:46','','0','12','2022-11-03 20:58:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667497723','Cleared','12','2022-11-03 21:55:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2234,'','Cash','','2022-11-03 22:34:19','','0','12','2022-11-03 22:34:19','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667502774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2235,'','Cash','','2022-11-03 22:58:55','','0','12','2022-11-03 22:58:55','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667505474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2236,'','Cash','','2022-11-04 01:10:24','','0','12','2022-11-03 23:43:43','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121667508206','Cleared','12','2022-11-04 01:10:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2237,'','Cash','','2022-11-03 23:44:01','','0','12','2022-11-03 23:44:01','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121667508227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2238,'','Cash','','2022-11-04 00:00:18','','0','12','2022-11-04 00:00:18','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121667508245','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2239,'','Cash','','2022-11-04 01:46:14','','0','12','2022-11-04 01:46:14','','940','940','1','retail','0','940','1','0','0','0','0','0','0','printed',' ','','1','0','121667515496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2240,'','Cash','','2022-11-04 02:56:14','','0','12','2022-11-04 02:56:14','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121667515583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2241,'','Cash','','2022-11-04 03:01:16','','0','12','2022-11-04 03:01:16','','8050','8050','1','retail','0','8050','1','0','0','0','0','0','0','printed',' ','','1','0','121667519813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2242,'','Cash','','2022-11-04 20:00:04','','0','12','2022-11-04 20:00:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667576849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2243,'','Cash','','2022-11-04 20:35:28','','0','12','2022-11-04 20:35:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667583312','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2244,'','Cash','','2022-11-04 20:44:58','','0','12','2022-11-04 20:44:58','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121667583332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2245,'','Cash','','2022-11-04 21:24:51','','0','12','2022-11-04 21:24:51','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667583907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2246,'','Cash','','2022-11-04 21:30:34','','0','12','2022-11-04 21:30:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667586404','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2247,'','Cash','','2022-11-04 21:44:14','','0','12','2022-11-04 21:44:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667586646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2248,'','Cash','','2022-11-04 21:57:45','','0','12','2022-11-04 21:57:45','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121667587458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2249,'','Cash','','2022-11-04 22:11:37','','0','12','2022-11-04 22:11:37','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121667588269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2250,'','Cash','','2022-11-04 22:24:03','','0','12','2022-11-04 22:24:04','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667589175','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2251,'','Cash','','2022-11-04 22:30:40','','0','12','2022-11-04 22:30:40','','5800','5800','1','retail','0','5800','1','0','0','0','0','0','0','printed',' ','','1','0','121667589969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2252,'','Cash','','2022-11-04 22:35:41','','0','12','2022-11-04 22:35:41','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121667590247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2253,'','Cash','','2022-11-04 22:50:29','','0','12','2022-11-04 22:50:29','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121667590547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2254,'','Cash','','2022-11-04 23:10:50','','0','12','2022-11-04 23:10:50','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667592639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2255,'','Cash','','2022-11-04 23:22:12','','0','12','2022-11-04 23:22:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667592695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2256,'','Cash','','2022-11-04 23:27:47','','0','12','2022-11-04 23:27:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667593357','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2257,'','Cash','','2022-11-04 23:35:51','','0','12','2022-11-04 23:35:51','','5700','5700','1','retail','0','5700','1','0','0','0','0','0','0','printed',' ','','1','0','121667593672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2258,'','Cash','','2022-11-05 00:09:56','','0','12','2022-11-05 00:09:56','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121667594220','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2259,'','Cash','','2022-11-05 00:21:40','','0','12','2022-11-05 00:21:40','','1880','1880','1','retail','0','1880','1','0','0','0','0','0','0','printed',' ','','1','0','121667596836','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2260,'','Cash','','2022-11-05 00:27:03','','0','12','2022-11-05 00:27:03','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121667596969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2261,'','Cash','','2022-11-05 00:33:39','','0','12','2022-11-05 00:33:39','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121667597247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2262,'','Cash','','2022-11-05 00:39:39','','0','12','2022-11-05 00:39:39','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121667597689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2263,'','Cash','','2022-11-05 00:41:53','','0','12','2022-11-05 00:41:53','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121667598054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2264,'','Cash','','2022-11-05 00:44:26','','0','12','2022-11-05 00:44:26','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667598117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2265,'','Cash','','2022-11-05 01:21:23','','0','12','2022-11-05 01:21:23','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121667598314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2266,'','Cash','','2022-11-05 02:24:37','','0','12','2022-11-05 02:24:37','','9780','9780','1','retail','0','9780','1','0','0','0','0','0','0','printed',' ','','1','0','121667600487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2267,'','Cash','','2022-11-05 02:30:27','','0','12','2022-11-05 02:30:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667604618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2268,'','Cash','','2022-11-05 02:39:47','','0','12','2022-11-05 02:39:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667604633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2269,'','Cash','','2022-11-05 02:53:43','','0','12','2022-11-05 02:53:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667606000','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2270,'','Cash','','2022-11-05 18:24:07','','0','12','2022-11-05 18:24:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667661837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2271,'','Cash','','2022-11-05 18:54:36','','0','12','2022-11-05 18:54:36','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121667661855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2272,'','Cash','','2022-11-05 19:05:04','','0','12','2022-11-05 19:05:04','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121667663699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2273,'','Cash','','2022-11-05 20:35:40','','0','12','2022-11-05 20:35:40','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121667668862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2274,'','Cash','','2022-11-05 21:42:05','','0','12','2022-11-05 21:42:05','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121667673689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2275,'','Cash','','2022-11-05 21:47:01','','0','12','2022-11-05 21:47:02','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121667673737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2276,'','Cash','','2022-11-05 21:56:15','','0','12','2022-11-05 21:56:15','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121667674562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2277,'','Cash','','2022-11-05 23:36:59','','0','12','2022-11-05 23:36:59','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121667680506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2278,'','Cash','','2022-11-05 23:38:55','','0','12','2022-11-05 23:38:55','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121667680637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2279,'','Cash','','2022-11-05 23:48:03','','0','12','2022-11-05 23:48:03','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121667681253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2280,'','Cash','','2022-11-05 23:51:00','','0','12','2022-11-05 23:51:00','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121667681449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2281,'','Cash','','2022-11-05 23:54:02','','0','12','2022-11-05 23:54:02','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121667681626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2282,'','Cash','','2022-11-06 00:07:20','','0','12','2022-11-06 00:07:20','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121667681648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2283,'','Cash','','2022-11-06 00:23:14','','0','12','2022-11-06 00:23:14','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667683016','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2284,'','Cash','','2022-11-06 00:24:42','','0','12','2022-11-06 00:24:42','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667683461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2285,'','Cash','','2022-11-06 00:27:14','','0','12','2022-11-06 00:27:14','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121667683571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2286,'','Cash','','2022-11-06 00:35:45','','0','12','2022-11-06 00:35:45','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667684053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2287,'','Cash','','2022-11-06 01:04:17','','0','12','2022-11-06 01:04:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667685846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2288,'','Cash','','2022-11-06 01:19:16','','0','12','2022-11-06 01:19:16','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121667686721','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2289,'','Cash','','2022-11-06 01:20:18','','0','12','2022-11-06 01:20:18','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667686792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2290,'','Cash','','2022-11-06 01:30:56','','0','12','2022-11-06 01:30:56','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121667686828','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2291,'','Cash','','2022-11-06 01:33:43','','0','12','2022-11-06 01:33:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667687609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2292,'','Cash','','2022-11-06 01:36:04','','0','12','2022-11-06 01:36:04','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121667687740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2293,'','Cash','','2022-11-06 01:39:55','','0','12','2022-11-06 01:39:55','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121667687787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2294,'','Cash','','2022-11-06 01:44:30','','0','12','2022-11-06 01:44:30','','890','890','1','retail','0','890','1','0','0','0','0','0','0','printed',' ','','1','0','121667688001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2295,'','Cash','','2022-11-06 02:01:45','','0','12','2022-11-06 02:01:45','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121667689294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2296,'','Cash','','2022-11-06 02:24:58','','0','12','2022-11-06 02:24:58','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667689310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2297,'','Cash','','2022-11-06 02:55:58','','0','12','2022-11-06 02:55:58','','5000','5000','1','retail','0','5000','1','0','0','0','0','0','0','printed',' ','','1','0','121667690702','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2298,'','Cash','','2022-11-06 03:15:13','','0','12','2022-11-06 03:15:13','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121667693663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2299,'','Cash','','2022-11-06 04:01:40','','0','12','2022-11-06 04:01:40','','2230','2230','1','retail','0','2230','1','0','0','0','0','0','0','printed',' ','','1','0','121667694939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2300,'','Cash','','2022-11-06 04:05:41','','0','12','2022-11-06 04:05:41','','1380','1380','1','retail','0','1380','1','0','0','0','0','0','0','printed',' ','','1','0','121667696712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2301,'','Cash','','2022-11-06 15:32:02','','0','12','2022-11-06 15:32:02','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121667737903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2302,'','Cash','','2022-11-06 15:38:22','','0','12','2022-11-06 15:38:22','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121667738001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2303,'','Cash','','2022-11-06 16:23:07','','0','12','2022-11-06 16:23:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667740976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2304,'','Cash','','2022-11-06 18:23:36','','0','12','2022-11-06 18:23:36','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121667748194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2305,'','Cash','','2022-11-06 18:36:03','','0','12','2022-11-06 18:36:03','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121667748395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2306,'','Cash','','2022-11-06 18:38:30','','0','12','2022-11-06 18:38:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667748969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2307,'','Cash','','2022-11-06 21:13:14','','0','12','2022-11-06 21:13:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667758384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2308,'','Cash','','2022-11-06 21:25:44','','0','12','2022-11-06 21:25:44','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121667759127','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2309,'','Cash','','2022-11-06 22:44:16','','0','12','2022-11-06 22:44:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667763842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2310,'','Cash','','2022-11-06 23:00:41','','0','12','2022-11-06 23:00:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121667764803','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2311,'','Cash','','2022-11-06 23:00:56','','0','12','2022-11-06 23:00:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667764844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2312,'','Cash','','2022-11-07 01:23:07','','0','12','2022-11-07 01:23:07','','1340','1340','1','retail','0','1340','1','0','0','0','0','0','0','printed',' ','','1','0','121667764859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2313,'','Cash','','2022-11-07 02:11:08','','0','12','2022-11-07 02:11:08','','8380','8380','1','retail','0','8380','1','0','0','0','0','0','0','printed',' ','','1','0','121667776146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2314,'','Cash','','2022-11-07 03:00:08','','0','12','2022-11-07 03:00:08','','8500','8500','1','retail','0','8500','1','0','0','0','0','0','0','printed',' ','','1','0','121667776288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2315,'','Cash','','2022-11-07 22:01:13','','0','12','2022-11-07 22:01:13','','1370','1370','1','retail','0','1370','1','0','0','0','0','0','0','printed',' ','','1','0','121667847488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2316,'','Cash','','2022-11-07 22:22:22','','0','12','2022-11-07 22:22:22','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121667848907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2317,'','Cash','','2022-11-07 22:25:13','','0','12','2022-11-07 22:25:13','','2680','2680','1','retail','0','2680','1','0','0','0','0','0','0','printed',' ','','1','0','121667848991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2318,'','Cash','','2022-11-07 22:42:47','','0','12','2022-11-07 22:42:47','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121667850149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2319,'','Cash','','2022-11-07 22:43:42','','0','12','2022-11-07 22:43:42','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667850183','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2320,'','Cash','','2022-11-07 23:02:34','','0','12','2022-11-07 23:02:34','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121667850227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2321,'','Cash','','2022-11-07 23:34:25','','0','12','2022-11-07 23:34:25','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121667853021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2322,'','Cash','','2022-11-07 23:54:13','','0','12','2022-11-07 23:54:13','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667854436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2323,'','Cash','','2022-11-07 23:55:49','','0','12','2022-11-07 23:55:49','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667854468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2324,'','Cash','','2022-11-07 23:56:48','','0','12','2022-11-07 23:56:48','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667854555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2325,'','Cash','','2022-11-08 00:06:39','','0','12','2022-11-08 00:06:39','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121667855131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2326,'','Cash','','2022-11-08 00:07:56','','0','12','2022-11-08 00:07:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667855214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2327,'','Cash','','2022-11-08 00:31:22','','0','12','2022-11-08 00:31:22','','2880','2880','1','retail','0','2880','1','0','0','0','0','0','0','printed',' ','','1','0','121667856619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2328,'','Cash','','2022-11-08 00:59:57','','0','12','2022-11-08 00:59:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667856688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2329,'','Cash','','2022-11-08 01:50:07','','0','12','2022-11-08 01:50:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667861377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2330,'','Cash','','2022-11-08 02:07:40','','0','12','2022-11-08 02:07:40','','5550','5550','1','retail','0','5550','1','0','0','0','0','0','0','printed',' ','','1','0','121667862402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2331,'','Cash','','2022-11-08 03:05:43','','0','12','2022-11-08 03:05:43','','6050','6050','1','retail','0','6050','1','0','0','0','0','0','0','printed',' ','','1','0','121667865567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2332,'','Cash','','2022-11-08 03:37:30','','0','12','2022-11-08 03:37:30','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121667867818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2333,'','Cash','','2022-11-08 03:49:27','','0','12','2022-11-08 03:49:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121667868552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2334,'','Cash','','2022-11-08 16:06:25','','0','12','2022-11-08 16:06:25','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121667910448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2335,'','Cash','','2022-11-08 16:08:56','','0','12','2022-11-08 16:08:56','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121667912790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2336,'','Cash','','2022-11-08 16:37:52','','0','12','2022-11-08 16:37:52','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121667913535','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2337,'','Cash','','2022-11-08 16:42:03','','0','12','2022-11-08 16:42:03','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121667914680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2338,'','Cash','','2022-11-08 21:10:01','','0','12','2022-11-08 21:10:01','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121667925074','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2339,'','Cash','','2022-11-08 21:40:53','','0','12','2022-11-08 21:40:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667931008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2340,'','Cash','','2022-11-08 21:48:16','','0','12','2022-11-08 21:48:16','','1590','1590','1','retail','0','1590','1','0','0','0','0','0','0','printed',' ','','1','0','121667933162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2341,'','Cash','','2022-11-08 21:49:00','','0','12','2022-11-08 21:49:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667933324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2342,'','Cash','','2022-11-08 22:00:38','','0','12','2022-11-08 22:00:38','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667934016','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2343,'','Cash','','2022-11-08 23:24:56','','0','12','2022-11-08 23:24:56','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667939068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2344,'','Cash','','2022-11-09 00:34:39','','0','12','2022-11-09 00:34:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121667942188','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2345,'','Cash','','2022-11-09 01:29:57','','0','12','2022-11-09 01:29:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667946585','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2346,'','Cash','','2022-11-09 02:09:55','','0','12','2022-11-09 02:09:55','','1770','1770','1','retail','0','1770','1','0','0','0','0','0','0','printed',' ','','1','0','121667946610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2347,'','Cash','','2022-11-09 02:53:58','','0','12','2022-11-09 02:53:58','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121667951608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2348,'','Cash','','2022-11-09 02:56:56','','0','12','2022-11-09 02:56:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121667951791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2349,'','Cash','','2022-11-09 03:20:21','','0','12','2022-11-09 03:20:21','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121667953193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2350,'','Cash','','2022-11-09 03:23:56','','0','12','2022-11-09 03:23:56','','3600','3600','1','retail','0','3600','1','0','0','0','0','0','0','printed',' ','','1','0','121667953429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2351,'','Cash','','2022-11-09 03:38:18','','0','12','2022-11-09 03:38:18','','17000','17000','1','retail','0','17000','1','0','0','0','0','0','0','printed',' ','','1','0','121667954287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2352,'','Cash','','2022-11-09 03:41:36','','0','12','2022-11-09 03:41:36','','8500','8500','1','retail','0','8500','1','0','0','0','0','0','0','printed',' ','','1','0','121667954486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2353,'','Cash','','2022-11-09 04:00:27','','0','12','2022-11-09 04:00:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667955523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2354,'','Cash','','2022-11-09 04:00:57','','0','12','2022-11-09 04:00:57','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121667955631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2355,'','Cash','','2022-11-09 04:04:25','','0','12','2022-11-09 04:04:25','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121667955853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2356,'','Cash','','2022-11-09 04:06:08','','0','12','2022-11-09 04:06:08','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121667955960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2357,'','Cash','','2022-11-09 04:09:07','','0','12','2022-11-09 04:09:07','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121667956128','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2358,'','Cash','','2022-11-09 04:12:56','','0','12','2022-11-09 04:12:56','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121667956366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2359,'','Cash','','2022-11-09 04:24:21','','0','12','2022-11-09 04:24:21','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121667956990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2360,'','Cash','','2022-11-09 15:22:33','','0','12','2022-11-09 15:22:33','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121667993093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2361,'','Cash','','2022-11-09 16:08:40','','0','12','2022-11-09 16:08:40','','3740','3740','1','retail','0','3740','1','0','0','0','0','0','0','printed',' ','','1','0','121667999300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2362,'','Cash','','2022-11-09 16:36:56','','0','12','2022-11-09 16:36:56','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121668001002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2363,'','Cash','','2022-11-09 17:49:30','','0','12','2022-11-09 17:49:30','','22200','22200','1','retail','0','22200','1','0','0','0','0','0','0','printed',' ','','1','0','121668005327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2364,'','Cash','','2022-11-09 18:15:31','','0','12','2022-11-09 18:15:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668006917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2365,'','Cash','','2022-11-09 18:18:10','','0','12','2022-11-09 18:18:10','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668007067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2366,'','Cash','','2022-11-09 18:26:25','','0','12','2022-11-09 18:26:25','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668007580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2367,'','Cash','','2022-11-09 18:44:50','','0','12','2022-11-09 18:44:50','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668008678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2368,'','Cash','','2022-11-09 18:45:31','','0','12','2022-11-09 18:45:31','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121668008720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2369,'','Cash','','2022-11-09 18:46:54','','0','12','2022-11-09 18:46:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668008806','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2370,'','Cash','','2022-11-09 18:47:43','','0','12','2022-11-09 18:47:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668008817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2371,'','Cash','','2022-11-09 18:49:58','','0','12','2022-11-09 18:49:58','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121668008984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2372,'','Cash','','2022-11-09 18:50:26','','0','12','2022-11-09 18:50:27','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668009002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2373,'','Cash','','2022-11-09 18:50:49','','0','12','2022-11-09 18:50:49','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668009029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2374,'','Cash','','2022-11-09 18:51:04','','0','12','2022-11-09 18:51:04','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668009054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2375,'','Cash','','2022-11-09 18:55:38','','0','12','2022-11-09 18:55:38','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121668009321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2376,'','Cash','','2022-11-09 19:02:32','','0','12','2022-11-09 19:02:32','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121668009743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2377,'','Cash','','2022-11-09 19:03:30','','0','12','2022-11-09 19:03:30','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121668009756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2378,'','Cash','','2022-11-09 19:07:19','','0','12','2022-11-09 19:07:19','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668009815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2379,'','Cash','','2022-11-09 19:08:11','','0','12','2022-11-09 19:08:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668010042','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2380,'','Cash','','2022-11-09 19:57:22','','0','12','2022-11-09 19:57:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668010716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2381,'','Cash','','2022-11-09 19:58:43','','0','12','2022-11-09 19:58:43','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668013045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2382,'','Cash','','2022-11-09 20:53:31','','0','12','2022-11-09 20:53:31','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668016362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2383,'','Cash','','2022-11-09 21:30:29','','0','12','2022-11-09 21:30:29','','1190','1190','1','retail','0','1190','1','0','0','0','0','0','0','printed',' ','','1','0','121668018428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2384,'','Cash','','2022-11-09 21:32:11','','0','12','2022-11-09 21:32:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668018637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2385,'','Cash','','2022-11-09 22:17:39','','0','12','2022-11-09 22:17:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668018736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2386,'','Cash','','2022-11-09 23:39:06','','0','12','2022-11-09 23:39:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668021464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2387,'','Cash','','2022-11-10 00:15:31','','0','12','2022-11-10 00:15:31','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121668026351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2388,'','Cash','','2022-11-10 00:16:13','','0','12','2022-11-10 00:16:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668028537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2389,'','Cash','','2022-11-10 00:50:25','','0','12','2022-11-10 00:50:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668028578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2390,'','Cash','','2022-11-10 00:54:50','','0','12','2022-11-10 00:54:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668030631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2391,'','Cash','','2022-11-10 01:15:47','','0','12','2022-11-10 01:15:47','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121668030899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2392,'','Cash','','2022-11-10 01:30:11','','0','12','2022-11-10 01:30:11','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121668032158','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2393,'','Cash','','2022-11-10 01:45:59','','0','12','2022-11-10 01:45:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668033101','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2394,'','Cash','','2022-11-10 02:33:33','','0','12','2022-11-10 02:33:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668033964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2395,'','Cash','','2022-11-10 03:04:37','','0','12','2022-11-10 03:04:37','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121668036824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2396,'','Cash','','2022-11-10 03:20:12','','0','12','2022-11-10 03:20:12','','2160','2160','1','retail','0','2160','1','0','0','0','0','0','0','printed',' ','','1','0','121668038812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2397,'','Cash','','2022-11-10 03:26:19','','0','12','2022-11-10 03:26:19','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121668039785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2398,'','Cash','','2022-11-10 03:51:00','','0','12','2022-11-10 03:51:00','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668039997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2399,'','Cash','','2022-11-10 14:19:00','','0','12','2022-11-10 14:19:01','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668077882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2400,'','Cash','','2022-11-10 14:22:12','','0','12','2022-11-10 14:22:12','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121668079153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2401,'','Cash','','2022-11-10 16:48:04','','0','12','2022-11-10 16:48:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668088064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2402,'','Cash','','2022-11-10 17:18:20','','0','12','2022-11-10 17:18:20','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121668088089','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2403,'','Cash','','2022-11-10 18:01:22','','0','12','2022-11-10 18:01:22','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121668089906','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2404,'','Cash','','2022-11-10 18:17:19','','0','12','2022-11-10 18:17:19','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668092496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2405,'','Cash','','2022-11-10 18:46:08','','0','12','2022-11-10 18:46:08','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121668093445','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2406,'','Cash','','2022-11-10 19:34:27','','0','12','2022-11-10 19:34:27','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668095184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2407,'','Cash','','2022-11-10 20:27:35','','0','12','2022-11-10 20:27:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668101234','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2408,'','Cash','','2022-11-10 20:43:13','','0','12','2022-11-10 20:43:13','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668101263','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2409,'','Cash','','2022-11-10 20:51:13','','0','12','2022-11-10 20:51:13','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668102219','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2410,'','Cash','','2022-11-10 23:23:29','','0','12','2022-11-10 23:23:29','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121668111728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2411,'','Cash','','2022-11-10 23:29:02','','0','12','2022-11-10 23:29:02','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121668111817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2412,'','Cash','','2022-11-10 23:34:52','','0','12','2022-11-10 23:34:52','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121668112147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2413,'','Cash','','2022-11-11 00:15:37','','0','12','2022-11-11 00:15:38','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668112499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2414,'','Cash','','2022-11-11 00:32:02','','0','12','2022-11-11 00:32:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668115819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2415,'','Cash','','2022-11-11 00:38:05','','0','12','2022-11-11 00:38:05','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668115927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2416,'','Cash','','2022-11-11 00:48:04','','0','12','2022-11-11 00:48:04','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668116290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2417,'','Cash','','2022-11-11 01:06:58','','0','12','2022-11-11 01:06:59','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121668117466','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2418,'','Cash','','2022-11-11 01:13:07','','0','12','2022-11-11 01:13:07','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668118028','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2419,'','Cash','','2022-11-11 01:36:55','','0','12','2022-11-11 01:36:55','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121668118392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2420,'','Cash','','2022-11-11 01:41:01','','0','12','2022-11-11 01:41:01','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121668119876','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2421,'','Cash','','2022-11-11 02:24:08','','0','12','2022-11-11 02:24:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668120213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2422,'','Cash','','2022-11-11 02:50:54','','0','12','2022-11-11 02:50:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668122654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2423,'','Cash','','2022-11-11 02:51:55','','0','12','2022-11-11 02:51:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668124269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2424,'','Cash','','2022-11-11 02:53:00','','0','12','2022-11-11 02:53:00','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121668124324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2425,'','Cash','','2022-11-11 02:53:50','','0','12','2022-11-11 02:53:50','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121668124386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2426,'','Cash','','2022-11-11 02:57:51','','0','12','2022-11-11 02:57:51','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121668124445','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2427,'','Cash','','2022-11-11 03:09:27','','0','12','2022-11-11 03:09:27','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121668124677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2428,'','Cash','','2022-11-11 03:13:30','','0','12','2022-11-11 03:13:30','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121668125373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2429,'','Cash','','2022-11-11 03:28:02','','0','12','2022-11-11 03:28:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668126468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2430,'','Cash','','2022-11-11 19:16:40','','0','12','2022-11-11 19:16:41','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121668183394','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2431,'','Cash','','2022-11-11 19:39:14','','0','12','2022-11-11 19:39:14','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668183722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2432,'','Cash','','2022-11-11 19:51:58','','0','12','2022-11-11 19:51:58','','2520','2520','1','retail','0','2520','1','0','0','0','0','0','0','printed',' ','','1','0','121668184786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2433,'','Cash','','2022-11-11 20:19:55','','0','12','2022-11-11 20:19:55','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121668187153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2434,'','Cash','','2022-11-11 20:55:32','','0','12','2022-11-11 20:55:32','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668189279','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2435,'','Cash','','2022-11-11 21:01:45','','0','12','2022-11-11 21:01:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668189677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2436,'','Cash','','2022-11-11 21:02:25','','0','12','2022-11-11 21:02:25','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121668189709','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2437,'','Cash','','2022-11-11 21:18:11','','0','12','2022-11-11 21:18:11','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668190663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2438,'','Cash','','2022-11-11 21:41:15','','0','12','2022-11-11 21:41:15','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668191150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2439,'','Cash','','2022-11-11 21:41:59','','0','12','2022-11-11 21:41:59','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668192093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2440,'','Cash','','2022-11-11 21:45:20','','0','12','2022-11-11 21:45:20','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121668192310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2441,'','Cash','','2022-11-11 21:48:12','','0','12','2022-11-11 21:48:12','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121668192394','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2442,'','Cash','','2022-11-11 21:52:40','','0','12','2022-11-11 21:52:40','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668192741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2443,'','Cash','','2022-11-11 22:02:17','','0','12','2022-11-11 22:02:17','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668193308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2444,'','Cash','','2022-11-11 22:14:31','','0','12','2022-11-11 22:14:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668193342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2445,'','Cash','','2022-11-11 22:20:52','','0','12','2022-11-11 22:20:52','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121668194075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2446,'','Cash','','2022-11-11 22:28:13','','0','12','2022-11-11 22:28:13','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121668194459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2447,'','Cash','','2022-11-11 23:01:29','','0','12','2022-11-11 23:01:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668194963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2448,'','Cash','','2022-11-11 23:06:21','','0','12','2022-11-11 23:06:21','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668196904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2449,'','Cash','','2022-11-11 23:21:27','','0','12','2022-11-11 23:21:27','','13220','13220','1','retail','0','13220','1','0','0','0','0','0','0','printed',' ','','1','0','121668197186','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2450,'','Cash','','2022-11-11 23:23:45','','0','12','2022-11-11 23:23:45','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121668198157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2451,'','Cash','','2022-11-11 23:42:57','','0','12','2022-11-11 23:42:57','','5330','5330','1','retail','0','5330','1','0','0','0','0','0','0','printed',' ','','1','0','121668198229','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2452,'','Cash','','2022-11-12 00:07:54','','0','12','2022-11-12 00:07:54','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668200859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2453,'','Cash','','2022-11-12 00:09:20','','0','12','2022-11-12 00:09:20','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668200879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2454,'','Cash','','2022-11-12 00:19:40','','0','12','2022-11-12 00:19:40','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668200964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2455,'','Cash','','2022-11-12 00:38:11','','0','12','2022-11-12 00:38:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668202676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2456,'','Cash','','2022-11-12 00:48:32','','0','12','2022-11-12 00:48:32','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121668203214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2457,'','Cash','','2022-11-12 00:58:37','','0','12','2022-11-12 00:58:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668203902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2458,'','Cash','','2022-11-12 01:08:34','','0','12','2022-11-12 01:08:34','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668203921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2459,'','Cash','','2022-11-12 01:10:07','','0','12','2022-11-12 01:10:07','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668204522','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2460,'','Cash','','2022-11-12 01:13:06','','0','12','2022-11-12 01:13:06','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121668204641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2461,'','Cash','','2022-11-12 01:22:10','','0','12','2022-11-12 01:22:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668205319','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2462,'','Cash','','2022-11-12 01:26:39','','0','12','2022-11-12 01:26:39','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668205564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2463,'','Cash','','2022-11-12 02:22:26','','0','12','2022-11-12 02:22:26','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668205606','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2464,'','Cash','','2022-11-12 03:21:23','','0','12','2022-11-12 03:21:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668208953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2465,'','Cash','','2022-11-12 16:41:01','','0','12','2022-11-12 16:41:01','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121668260387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2466,'','Cash','','2022-11-12 16:41:49','','0','12','2022-11-12 16:41:49','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121668260470','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2467,'','Cash','','2022-11-12 18:53:18','','0','12','2022-11-12 18:53:18','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668266922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2468,'','Cash','','2022-11-12 19:33:55','','0','12','2022-11-12 19:33:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668268403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2469,'','Cash','','2022-11-12 20:32:41','','0','12','2022-11-12 20:32:41','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668270843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2470,'','Cash','','2022-11-12 20:43:40','','0','12','2022-11-12 20:43:40','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121668274938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2471,'','Cash','','2022-11-12 21:07:36','','0','12','2022-11-12 21:07:36','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121668275671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2472,'','Cash','','2022-11-12 21:59:02','','0','12','2022-11-12 21:59:02','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121668276521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2473,'','Cash','','2022-11-12 22:28:24','','0','12','2022-11-12 22:28:24','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668281287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2474,'','Cash','','2022-11-12 22:31:59','','0','12','2022-11-12 22:31:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668281500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2475,'','Cash','','2022-11-12 23:10:05','','0','12','2022-11-12 23:10:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668283789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2476,'','Cash','','2022-11-12 23:38:13','','0','12','2022-11-12 23:38:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668283810','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2477,'','Cash','','2022-11-12 23:38:39','','0','12','2022-11-12 23:38:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668285500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2478,'','Cash','','2022-11-12 23:42:27','','0','12','2022-11-12 23:42:27','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121668285522','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2479,'','Cash','','2022-11-13 00:01:22','','0','12','2022-11-13 00:01:22','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121668285752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2480,'','Cash','','2022-11-13 00:15:20','','0','12','2022-11-13 00:15:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668286887','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2481,'','Cash','','2022-11-13 00:16:06','','0','12','2022-11-13 00:16:06','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121668287724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2482,'','Cash','','2022-11-13 00:35:52','','0','12','2022-11-13 00:35:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668287773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2483,'','Cash','','2022-11-13 00:49:33','','0','12','2022-11-13 00:49:33','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121668288957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2484,'','Cash','','2022-11-13 01:00:09','','0','12','2022-11-13 01:00:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668290399','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2485,'','Cash','','2022-11-13 01:01:18','','0','12','2022-11-13 01:01:18','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668290468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2486,'','Cash','','2022-11-13 01:03:36','','0','12','2022-11-13 01:03:36','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121668290482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2487,'','Cash','','2022-11-13 01:05:51','','0','12','2022-11-13 01:05:51','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121668290739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2488,'','Cash','','2022-11-13 01:07:36','','0','12','2022-11-13 01:07:36','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121668290756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2489,'','Cash','','2022-11-13 01:13:09','','0','12','2022-11-13 01:13:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668290860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2490,'','Cash','','2022-11-13 01:30:14','','0','12','2022-11-13 01:30:14','','19300','19300','1','retail','0','19300','1','0','0','0','0','0','0','printed',' ','','1','0','121668291866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2491,'','Cash','','2022-11-13 01:39:52','','0','12','2022-11-13 01:39:52','','1330','1330','1','retail','0','1330','1','0','0','0','0','0','0','printed',' ','','1','0','121668292224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2492,'','Cash','','2022-11-13 01:41:15','','0','12','2022-11-13 01:41:15','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121668292797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2493,'','Cash','','2022-11-13 01:48:02','','0','12','2022-11-13 01:48:02','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668292879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2494,'','Cash','','2022-11-13 01:54:41','','0','12','2022-11-13 01:54:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668293288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2495,'','Cash','','2022-11-13 02:05:05','','0','12','2022-11-13 02:05:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668294269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2496,'','Cash','','2022-11-13 02:11:50','','0','12','2022-11-13 02:11:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668294314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2497,'','Cash','','2022-11-13 02:14:27','','0','12','2022-11-13 02:14:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668294856','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2498,'','Cash','','2022-11-13 02:24:31','','0','12','2022-11-13 02:24:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668295400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2499,'','Cash','','2022-11-13 02:27:44','','0','12','2022-11-13 02:27:44','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121668295641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2500,'','Cash','','2022-11-13 02:34:38','','0','12','2022-11-13 02:34:38','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668296020','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2501,'','Cash','','2022-11-13 02:40:00','','0','12','2022-11-13 02:40:00','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668296082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2502,'','Cash','','2022-11-13 02:48:37','','0','12','2022-11-13 02:48:37','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121668296870','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2503,'','Cash','','2022-11-13 03:04:09','','0','12','2022-11-13 03:04:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668296922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2504,'','Cash','','2022-11-13 03:15:31','','0','12','2022-11-13 03:15:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121668297857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2505,'','Cash','','2022-11-13 03:29:31','','0','12','2022-11-13 03:29:31','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121668298537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2506,'','Cash','','2022-11-13 03:30:46','','0','12','2022-11-13 03:30:46','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121668299374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2507,'','Cash','','2022-11-13 03:32:13','','0','12','2022-11-13 03:32:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668299450','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2508,'','Cash','','2022-11-13 03:41:57','','0','12','2022-11-13 03:41:57','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121668299811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2509,'','Cash','','2022-11-13 03:51:03','','0','12','2022-11-13 03:51:03','','7350','7350','1','retail','0','7350','1','0','0','0','0','0','0','printed',' ','','1','0','121668300124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2510,'','Cash','','2022-11-13 03:52:27','','0','12','2022-11-13 03:52:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668300669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2511,'','Cash','','2022-11-13 03:55:03','','0','12','2022-11-13 03:55:03','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121668300751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2512,'','Cash','','2022-11-13 03:58:40','','0','12','2022-11-13 03:58:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668300912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2513,'','Cash','','2022-11-13 04:09:04','','0','12','2022-11-13 04:09:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668301126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2514,'','Cash','','2022-11-13 04:20:19','','0','12','2022-11-13 04:20:19','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121668301750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2515,'','Cash','','2022-11-13 05:21:27','','0','12','2022-11-13 05:21:27','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668302423','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2516,'','Cash','','2022-11-13 05:33:14','','0','12','2022-11-13 05:33:14','','9170','9170','1','retail','0','9170','1','0','0','0','0','0','0','printed',' ','','1','0','121668306135','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2517,'','Cash','','2022-11-13 14:47:12','','0','12','2022-11-13 14:47:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668337300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2518,'','Cash','','2022-11-13 17:33:25','','0','12','2022-11-13 17:33:25','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121668349983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2519,'','Cash','','2022-11-13 17:34:42','','0','12','2022-11-13 17:34:42','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668350055','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2520,'','Cash','','2022-11-13 18:24:20','','0','12','2022-11-13 18:24:20','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121668352991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2521,'','Cash','','2022-11-13 20:49:52','','0','12','2022-11-13 20:49:52','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668353164','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2522,'','Cash','','2022-11-13 21:19:26','','0','12','2022-11-13 21:19:26','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121668363236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2523,'','Cash','','2022-11-13 22:16:51','','0','12','2022-11-13 22:16:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668363581','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2524,'','Cash','','2022-11-13 22:25:11','','0','12','2022-11-13 22:25:11','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121668367024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2525,'','Cash','','2022-11-13 23:01:04','','0','12','2022-11-13 23:01:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668367565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2526,'','Cash','','2022-11-13 23:17:02','','0','12','2022-11-13 23:17:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668369909','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2527,'','Cash','','2022-11-14 00:45:11','','0','12','2022-11-14 00:45:11','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668370632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2528,'','Cash','','2022-11-14 01:40:25','','0','12','2022-11-14 01:40:25','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121668375916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2529,'','Cash','','2022-11-14 01:58:36','','0','12','2022-11-14 01:58:36','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121668379389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2530,'','Cash','','2022-11-14 02:21:32','','0','12','2022-11-14 02:21:32','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121668380331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2531,'','Cash','','2022-11-14 04:20:50','','0','12','2022-11-14 04:20:50','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121668381699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2532,'','Cash','','2022-11-14 12:14:08','','0','12','2022-11-14 12:14:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668417202','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2533,'','Cash','','2022-11-14 14:52:16','','0','12','2022-11-14 14:52:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668426716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2534,'','Cash','','2022-11-14 16:19:21','','0','12','2022-11-14 16:19:21','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121668426747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2535,'','Cash','','2022-11-14 18:18:44','','0','12','2022-11-14 18:18:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668432033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2536,'','Cash','','2022-11-14 18:29:14','','0','12','2022-11-14 18:29:15','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121668439151','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2537,'','Cash','','2022-11-14 18:31:57','','0','12','2022-11-14 18:31:57','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668439759','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2538,'','Cash','','2022-11-14 18:44:16','','0','12','2022-11-14 18:44:16','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668440639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2539,'','Cash','','2022-11-14 19:17:53','','0','12','2022-11-14 19:17:53','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668441598','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2540,'','Cash','','2022-11-14 19:35:49','','0','12','2022-11-14 19:35:49','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121668442728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2541,'','Cash','','2022-11-14 21:02:03','','0','12','2022-11-14 21:02:03','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121668448908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2542,'','Cash','','2022-11-14 21:04:35','','0','12','2022-11-14 21:04:35','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668448928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2543,'','Cash','','2022-11-14 21:05:30','','0','12','2022-11-14 21:05:30','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668449118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2544,'','Cash','','2022-11-14 21:17:22','','0','12','2022-11-14 21:17:22','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121668449133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2545,'','Cash','','2022-11-14 21:33:58','','0','12','2022-11-14 21:33:58','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668449898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2546,'','Cash','','2022-11-14 21:44:08','','0','12','2022-11-14 21:44:08','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668451426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2547,'','Cash','','2022-11-14 22:05:23','','0','12','2022-11-14 22:05:23','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121668451452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2548,'','Cash','','2022-11-14 22:36:26','','0','12','2022-11-14 22:36:26','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121668452855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2549,'','Cash','','2022-11-14 22:38:28','','0','12','2022-11-14 22:38:28','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668454594','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2550,'','Cash','','2022-11-14 23:06:49','','0','12','2022-11-14 23:06:49','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668456371','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2551,'','Cash','','2022-11-14 23:10:12','','0','12','2022-11-14 23:10:12','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121668456478','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2552,'','Cash','','2022-11-15 01:04:34','','0','12','2022-11-15 01:04:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668456645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2553,'','Cash','','2022-11-15 01:34:53','','0','12','2022-11-15 01:34:53','','3380','3380','1','retail','0','3380','1','0','0','0','0','0','0','printed',' ','','1','0','121668463480','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2554,'','Cash','','2022-11-15 07:09:03','','0','12','2022-11-15 07:09:03','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121668482916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2555,'','Cash','','2022-11-15 15:04:18','','0','12','2022-11-15 15:04:18','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121668513732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2556,'','Cash','','2022-11-15 15:06:19','','0','12','2022-11-15 15:06:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121668513966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2557,'','Cash','','2022-11-15 17:07:20','','0','12','2022-11-15 17:07:20','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121668520807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2558,'','Cash','','2022-11-15 18:22:38','','0','12','2022-11-15 18:22:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668524486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2559,'','Cash','','2022-11-15 19:15:35','','0','12','2022-11-15 19:15:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668525764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2560,'','Cash','','2022-11-15 19:17:51','','0','12','2022-11-15 19:17:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668528940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2561,'','Cash','','2022-11-15 21:05:11','','0','12','2022-11-15 21:05:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668535486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2562,'','Cash','','2022-11-15 21:34:25','','0','12','2022-11-15 21:34:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668535516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2563,'','Cash','','2022-11-15 21:38:53','','0','12','2022-11-15 21:38:53','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121668537270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2564,'','Cash','','2022-11-15 22:05:57','','0','12','2022-11-15 22:05:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668537539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2565,'','Cash','','2022-11-15 22:34:50','','0','12','2022-11-15 22:34:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668539162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2566,'','Cash','','2022-11-15 23:19:45','','0','12','2022-11-15 23:19:45','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121668543524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2567,'','Cash','','2022-11-15 23:22:18','','0','12','2022-11-15 23:22:18','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121668543591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2568,'','Cash','','2022-11-15 23:33:14','','0','12','2022-11-15 23:33:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668543750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2569,'','Cash','','2022-11-15 23:35:41','','0','12','2022-11-15 23:35:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668544400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2570,'','Cash','','2022-11-15 23:36:24','','0','12','2022-11-15 23:36:24','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121668544544','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2571,'','Cash','','2022-11-15 23:37:45','','0','12','2022-11-15 23:37:45','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121668544588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2572,'','Cash','','2022-11-16 00:07:44','','0','12','2022-11-16 00:07:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668546449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2573,'','Cash','','2022-11-16 01:17:39','','0','12','2022-11-16 01:17:39','','5370','5370','1','retail','0','5370','1','0','0','0','0','0','0','printed',' ','','1','0','121668550389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2574,'','Cash','','2022-11-16 01:27:23','','0','12','2022-11-16 01:27:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668550918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2575,'','Cash','','2022-11-16 02:25:47','','0','12','2022-11-16 02:25:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668551248','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2576,'','Cash','','2022-11-16 03:27:22','','0','12','2022-11-16 03:27:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668554752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2577,'','Cash','','2022-11-16 08:45:25','','0','12','2022-11-16 08:45:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668575069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2578,'','Cash','','2022-11-16 12:54:39','','0','12','2022-11-16 12:54:40','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121668592434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2579,'','Cash','','2022-11-16 13:40:12','','0','12','2022-11-16 13:40:12','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668595200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2580,'','Cash','','2022-11-16 13:43:54','','0','12','2022-11-16 13:43:54','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668595260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2581,'','Cash','','2022-11-16 13:46:21','','0','12','2022-11-16 13:46:21','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668595440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2582,'','Cash','','2022-11-16 14:06:27','','0','12','2022-11-16 14:06:27','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668595588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2583,'','Cash','','2022-11-16 15:05:56','','0','12','2022-11-16 15:05:56','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668596794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2584,'','Cash','','2022-11-16 18:19:05','','0','12','2022-11-16 18:19:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668611917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2585,'','Cash','','2022-11-16 18:21:01','','0','12','2022-11-16 18:21:01','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668611951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2586,'','Cash','','2022-11-16 18:45:57','','0','12','2022-11-16 18:45:57','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668612067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2587,'','Cash','','2022-11-16 18:47:55','','0','12','2022-11-16 18:47:55','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121668613562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2588,'','Cash','','2022-11-16 18:59:17','','0','12','2022-11-16 18:59:17','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121668614342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2589,'','Cash','','2022-11-16 20:00:32','','0','12','2022-11-16 20:00:32','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121668614362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2590,'','Cash','','2022-11-16 20:13:56','','0','12','2022-11-16 20:13:56','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121668618187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2591,'','Cash','','2022-11-16 20:16:28','','0','12','2022-11-16 20:16:28','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668618886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2592,'','Cash','','2022-11-16 21:54:50','','0','12','2022-11-16 21:54:50','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121668618998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2593,'','Cash','','2022-11-16 23:11:55','','0','12','2022-11-16 23:11:55','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121668624913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2594,'','Cash','','2022-11-16 23:16:17','','0','12','2022-11-16 23:16:17','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121668629767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2595,'','Cash','','2022-11-16 23:43:21','','0','12','2022-11-16 23:43:21','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121668631351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2596,'','Cash','','2022-11-16 23:49:35','','0','12','2022-11-16 23:49:35','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121668631545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2597,'','Cash','','2022-11-17 00:05:09','','0','12','2022-11-17 00:05:09','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668631785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2598,'','Cash','','2022-11-17 00:11:06','','0','12','2022-11-17 00:11:06','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121668632995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2599,'','Cash','','2022-11-17 00:38:33','','0','12','2022-11-17 00:38:33','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668633364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2600,'','Cash','','2022-11-17 00:40:45','','0','12','2022-11-17 00:40:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668634725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2601,'','Cash','','2022-11-17 02:18:02','','0','12','2022-11-17 02:18:02','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121668634849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2602,'','Cash','','2022-11-17 02:20:12','','0','12','2022-11-17 02:20:12','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121668640694','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2603,'','Cash','','2022-11-17 02:36:29','','0','12','2022-11-17 02:36:29','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668640939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2604,'','Cash','','2022-11-17 02:38:47','','0','12','2022-11-17 02:38:47','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121668641794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2605,'','Cash','','2022-11-17 08:55:06','','0','12','2022-11-17 08:55:06','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121668664493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2606,'','Cash','','2022-11-17 12:54:19','','0','12','2022-11-17 12:54:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668678844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2607,'','Cash','','2022-11-17 13:10:41','','0','12','2022-11-17 13:10:41','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668678865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2608,'','Cash','','2022-11-17 16:50:17','','0','12','2022-11-17 16:50:17','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668692620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2609,'','Cash','','2022-11-17 17:15:27','','0','12','2022-11-17 17:15:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668693023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2610,'','Cash','','2022-11-17 17:16:47','','0','12','2022-11-17 17:16:47','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668694543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2611,'','Cash','','2022-11-17 17:18:35','','0','12','2022-11-17 17:18:35','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668694611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2612,'','Cash','','2022-11-17 17:55:44','','0','12','2022-11-17 17:55:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668694719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2613,'','Cash','','2022-11-17 20:39:04','','0','12','2022-11-17 20:39:04','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121668706209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2614,'','Cash','','2022-11-17 22:15:59','','0','12','2022-11-17 22:15:59','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668712545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2615,'','Cash','','2022-11-17 22:18:51','','0','12','2022-11-17 22:18:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668712723','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2616,'','Cash','','2022-11-17 22:36:19','','0','12','2022-11-17 22:36:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668713767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2617,'','Cash','','2022-11-17 22:37:31','','0','12','2022-11-17 22:37:31','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121668713784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2618,'','Cash','','2022-11-17 22:55:28','','0','12','2022-11-17 22:55:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668714511','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2619,'','Cash','','2022-11-17 22:58:03','','0','12','2022-11-17 22:58:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668715067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2620,'','Cash','','2022-11-17 23:36:14','','0','12','2022-11-17 23:36:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668717361','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2621,'','Cash','','2022-11-17 23:43:40','','0','12','2022-11-17 23:43:40','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668717378','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2622,'','Cash','','2022-11-18 00:02:09','','0','12','2022-11-18 00:02:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668717824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2623,'','Cash','','2022-11-18 00:52:39','','0','12','2022-11-18 00:52:39','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121668718933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2624,'','Cash','','2022-11-18 01:21:43','','0','12','2022-11-18 01:21:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668723680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2625,'','Cash','','2022-11-18 04:12:29','','0','12','2022-11-18 04:12:29','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121668723748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2626,'','Cash','','2022-11-18 04:31:49','','0','12','2022-11-18 04:31:49','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121668735100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2627,'','Cash','','2022-11-18 05:22:02','','0','12','2022-11-18 05:22:02','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121668735114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2628,'','Cash','','2022-11-18 05:22:50','','0','12','2022-11-18 05:22:50','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121668738129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2629,'','Cash','','2022-11-18 05:23:27','','0','12','2022-11-18 05:23:27','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121668738174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2630,'','Cash','','2022-11-18 09:38:42','','0','12','2022-11-18 09:38:42','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121668753439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2631,'','Cash','','2022-11-18 09:53:27','','0','12','2022-11-18 09:53:27','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668754389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2632,'','Cash','','2022-11-18 11:10:38','','0','12','2022-11-18 11:10:38','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668754413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2633,'','Cash','','2022-11-18 11:53:12','','0','12','2022-11-18 11:53:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668759044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2634,'','Cash','','2022-11-18 14:36:23','','0','12','2022-11-18 14:36:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668771359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2635,'','Cash','','2022-11-18 15:09:40','','0','12','2022-11-18 15:09:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668771388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2636,'','Cash','','2022-11-18 15:14:23','','0','12','2022-11-18 15:14:23','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668773388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2637,'','Cash','','2022-11-18 15:15:43','','0','12','2022-11-18 15:15:43','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121668773668','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2638,'','Cash','','2022-11-18 17:52:06','','0','12','2022-11-18 17:52:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668783071','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2639,'','Cash','','2022-11-18 18:49:54','','0','12','2022-11-18 18:49:54','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121668783130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2640,'','Cash','','2022-11-18 19:49:31','','0','12','2022-11-18 19:49:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668786667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2641,'','Cash','','2022-11-18 21:25:04','','0','12','2022-11-18 21:25:04','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121668791208','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2642,'','Cash','','2022-11-18 21:37:42','','0','12','2022-11-18 21:37:42','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121668796009','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2643,'','Cash','','2022-11-18 21:42:00','','0','12','2022-11-18 21:42:00','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121668796670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2644,'','Cash','','2022-11-18 22:23:20','','0','12','2022-11-18 22:23:20','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668797079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2645,'','Cash','','2022-11-18 22:43:02','','0','12','2022-11-18 22:43:02','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121668799407','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2646,'','Cash','','2022-11-19 00:04:37','','0','12','2022-11-19 00:04:37','','2540','2540','1','retail','0','2540','1','0','0','0','0','0','0','printed',' ','','1','0','121668805449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2647,'','Cash','','2022-11-19 00:32:25','','0','12','2022-11-19 00:32:25','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668805523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2648,'','Cash','','2022-11-19 00:42:07','','0','12','2022-11-19 00:42:07','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121668807162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2649,'','Cash','','2022-11-19 01:25:40','','0','12','2022-11-19 01:25:40','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668807735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2650,'','Cash','','2022-11-19 02:36:01','','0','12','2022-11-19 02:36:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668810345','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2651,'','Cash','','2022-11-19 03:28:53','','0','12','2022-11-19 03:28:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668814566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2652,'','Cash','','2022-11-19 05:37:31','','0','12','2022-11-19 05:37:31','','5200','5200','1','retail','0','5200','1','0','0','0','0','0','0','printed',' ','','1','0','121668825370','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2653,'','Cash','','2022-11-19 05:45:42','','0','12','2022-11-19 05:45:42','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668825455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2654,'','Cash','','2022-11-19 07:58:25','','0','12','2022-11-19 07:58:25','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668833890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2655,'','Cash','','2022-11-19 07:59:59','','0','12','2022-11-19 07:59:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121668833932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2656,'','Cash','','2022-11-19 08:38:24','','0','12','2022-11-19 08:38:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121668835991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2657,'','Cash','','2022-11-19 11:57:23','','0','12','2022-11-19 11:57:23','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121668847995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2658,'','Cash','','2022-11-19 12:52:19','','0','12','2022-11-19 12:52:20','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121668848249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2659,'','Cash','','2022-11-19 14:11:01','','0','12','2022-11-19 14:11:01','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668851565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2660,'','Cash','','2022-11-19 15:36:21','','0','12','2022-11-19 15:36:21','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121668861366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2661,'','Cash','','2022-11-19 15:46:08','','0','12','2022-11-19 15:46:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668861386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2662,'','Cash','','2022-11-19 16:38:23','','0','12','2022-11-19 16:38:23','','4740','4740','1','retail','0','4740','1','0','0','0','0','0','0','printed',' ','','1','0','121668861972','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2663,'','Cash','','2022-11-19 17:24:50','','0','12','2022-11-19 17:24:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668865115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2664,'','Cash','','2022-11-19 17:31:45','','0','12','2022-11-19 17:31:45','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121668867895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2665,'','Cash','','2022-11-19 17:33:32','','0','12','2022-11-19 17:33:32','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121668868311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2666,'','Cash','','2022-11-19 17:49:47','','0','12','2022-11-19 17:49:47','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668869347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2667,'','Cash','','2022-11-19 17:57:07','','0','12','2022-11-19 17:57:07','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668869815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2668,'','Cash','','2022-11-19 18:07:53','','0','12','2022-11-19 18:07:53','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121668869833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2669,'','Cash','','2022-11-19 18:26:33','','0','12','2022-11-19 18:26:33','','2630','2630','1','retail','0','2630','1','0','0','0','0','0','0','printed',' ','','1','0','121668870481','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2670,'','Cash','','2022-11-19 18:37:13','','0','12','2022-11-19 18:37:13','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121668872221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2671,'','Cash','','2022-11-19 19:12:12','','0','12','2022-11-19 19:12:12','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121668874031','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2672,'','Cash','','2022-11-19 19:21:12','','0','12','2022-11-19 19:21:12','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121668874738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2673,'','Cash','','2022-11-19 19:34:36','','0','12','2022-11-19 19:34:36','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668874912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2674,'','Cash','','2022-11-19 19:35:46','','0','12','2022-11-19 19:35:46','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668875692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2675,'','Cash','','2022-11-19 19:49:07','','0','12','2022-11-19 19:49:07','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121668876523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2676,'','Cash','','2022-11-19 21:45:41','','0','12','2022-11-19 21:45:41','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121668876554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2677,'','Cash','','2022-11-19 22:38:49','','0','12','2022-11-19 22:38:49','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121668886660','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2678,'','Cash','','2022-11-19 22:50:01','','0','12','2022-11-19 22:50:01','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668886744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2679,'','Cash','','2022-11-19 22:52:41','','0','12','2022-11-19 22:52:41','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121668887409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2680,'','Cash','','2022-11-19 23:10:15','','0','12','2022-11-19 23:10:15','','3020','3020','1','retail','0','3020','1','0','0','0','0','0','0','printed',' ','','1','0','121668887583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2681,'','Cash','','2022-11-19 23:11:03','','0','12','2022-11-19 23:11:03','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121668888622','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2682,'','Cash','','2022-11-19 23:15:19','','0','12','2022-11-19 23:15:19','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121668888904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2683,'','Cash','','2022-11-19 23:30:53','','0','12','2022-11-19 23:30:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668889843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2684,'','Cash','','2022-11-19 23:55:58','','0','12','2022-11-19 23:55:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121668889859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2685,'','Cash','','2022-11-20 00:36:38','','0','12','2022-11-20 00:36:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668893031','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2686,'','Cash','','2022-11-20 00:38:11','','0','12','2022-11-20 00:38:11','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668893802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2687,'','Cash','','2022-11-20 00:40:36','','0','12','2022-11-20 00:40:36','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121668893902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2688,'','Cash','','2022-11-20 00:57:41','','0','12','2022-11-20 00:57:41','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121668895047','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2689,'','Cash','','2022-11-20 01:52:38','','0','12','2022-11-20 01:52:38','','8020','8020','1','retail','0','8020','1','0','0','0','0','0','0','printed',' ','','1','0','121668895466','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2690,'','Cash','','2022-11-20 02:02:58','','0','12','2022-11-20 02:02:58','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668898671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2691,'','Cash','','2022-11-20 02:24:10','','0','12','2022-11-20 02:24:10','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121668898991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2692,'','Cash','','2022-11-20 02:34:39','','0','12','2022-11-20 02:34:39','','3650','3650','1','retail','0','3650','1','0','0','0','0','0','0','printed',' ','','1','0','121668900254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2693,'','Cash','','2022-11-20 02:44:21','','0','12','2022-11-20 02:44:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668900888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2694,'','Cash','','2022-11-20 03:51:01','','0','12','2022-11-20 03:51:01','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121668901508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2695,'','Cash','','2022-11-20 03:54:05','','0','12','2022-11-20 03:54:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668905496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2696,'','Cash','','2022-11-20 05:12:38','','0','12','2022-11-20 05:12:38','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121668905650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2697,'','Cash','','2022-11-20 12:10:00','','0','12','2022-11-20 12:10:00','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121668926837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2698,'','Cash','','2022-11-20 12:16:58','','0','12','2022-11-20 12:16:58','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121668935418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2699,'','Cash','','2022-11-20 12:26:31','','0','12','2022-11-20 12:26:31','','3460','3460','1','retail','0','3460','1','0','0','0','0','0','0','printed',' ','','1','0','121668936272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2700,'','Cash','','2022-11-20 12:43:13','','0','12','2022-11-20 12:43:13','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121668936845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2701,'','Cash','','2022-11-20 12:44:40','','0','12','2022-11-20 12:44:40','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121668937397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2702,'','Cash','','2022-11-20 13:33:07','','0','12','2022-11-20 13:33:07','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121668940362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2703,'','Cash','','2022-11-20 13:42:14','','0','12','2022-11-20 13:42:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668940659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2704,'','Cash','','2022-11-20 15:25:52','','0','12','2022-11-20 15:25:52','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121668940980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2705,'','Cash','','2022-11-20 15:50:33','','0','12','2022-11-20 15:50:33','','11100','11100','1','retail','0','11100','1','0','0','0','0','0','0','printed',' ','','1','0','121668947158','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2706,'','Cash','','2022-11-20 16:35:28','','0','12','2022-11-20 16:35:28','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121668948656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2707,'','Cash','','2022-11-20 17:31:47','','0','12','2022-11-20 17:31:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668954505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2708,'','Cash','','2022-11-20 17:50:00','','0','12','2022-11-20 17:50:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668954800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2709,'','Cash','','2022-11-20 18:40:06','','0','12','2022-11-20 18:40:07','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121668958787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2710,'','Cash','','2022-11-20 18:45:20','','0','12','2022-11-20 18:45:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121668958811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2711,'','Cash','','2022-11-20 18:50:47','','0','12','2022-11-20 18:50:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668959150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2712,'','Cash','','2022-11-20 19:00:54','','0','12','2022-11-20 19:00:54','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121668959459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2713,'','Cash','','2022-11-20 19:30:30','','0','12','2022-11-20 19:30:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121668960059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2714,'','Cash','','2022-11-20 20:32:10','','0','12','2022-11-20 20:32:10','','1580','1580','1','retail','0','1580','1','0','0','0','0','0','0','printed',' ','','1','0','121668963224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2715,'','Cash','','2022-11-20 20:33:23','','0','12','2022-11-20 20:33:23','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121668965587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2716,'','Cash','','2022-11-20 21:15:00','','0','12','2022-11-20 21:15:00','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121668966000','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2717,'','Cash','','2022-11-20 21:24:39','','0','12','2022-11-20 21:24:39','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121668968106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2718,'','Cash','','2022-11-20 21:59:37','','0','12','2022-11-20 21:59:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668970356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2719,'','Cash','','2022-11-20 22:00:08','','0','12','2022-11-20 22:00:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668970782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2720,'','Cash','','2022-11-20 22:32:25','','0','12','2022-11-20 22:32:25','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121668970813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2721,'','Cash','','2022-11-20 22:45:42','','0','12','2022-11-20 22:45:42','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121668972753','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2722,'','Cash','','2022-11-20 23:14:37','','0','12','2022-11-20 23:14:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121668973883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2723,'','Cash','','2022-11-21 00:21:52','','0','12','2022-11-21 00:21:52','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121668979294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2724,'','Cash','','2022-11-21 00:33:39','','0','12','2022-11-21 00:33:39','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121668980007','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2725,'','Cash','','2022-11-21 00:36:40','','0','12','2022-11-21 00:36:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121668980031','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2726,'','Cash','','2022-11-21 01:44:12','','0','12','2022-11-21 01:44:12','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121668980205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2727,'','Cash','','2022-11-21 02:40:45','','0','12','2022-11-21 02:40:45','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121668984259','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2728,'','Cash','','2022-11-21 05:15:43','','0','12','2022-11-21 05:15:43','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121668996857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2729,'','Cash','','2022-11-21 05:59:56','','0','12','2022-11-21 05:59:56','','1960','1960','1','retail','0','1960','1','0','0','0','0','0','0','printed',' ','','1','0','121668996953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2730,'','Cash','','2022-11-21 06:20:26','','0','12','2022-11-21 06:20:26','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669000079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2731,'','Cash','','2022-11-21 06:36:23','','0','12','2022-11-21 06:36:23','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121669000833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2732,'','Cash','','2022-11-21 10:00:26','','0','12','2022-11-21 10:00:27','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121669010321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2733,'','Cash','','2022-11-21 20:46:15','','0','12','2022-11-21 20:46:15','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121669051865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2734,'','Cash','','2022-11-21 23:05:25','','0','12','2022-11-21 23:05:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669058310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2735,'','Cash','','2022-11-21 23:29:11','','0','12','2022-11-21 23:29:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669061133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2736,'','Cash','','2022-11-21 23:56:18','','0','12','2022-11-21 23:56:18','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121669062558','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2737,'','Cash','','2022-11-22 00:28:07','','0','12','2022-11-22 00:28:07','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121669066056','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2738,'','Cash','','2022-11-22 01:25:55','','0','12','2022-11-22 01:25:55','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669068190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2739,'','Cash','','2022-11-22 22:54:20','','0','12','2022-11-22 22:54:20','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121669140370','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2740,'','Cash','','2022-11-22 22:56:03','','0','12','2022-11-22 22:56:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669146869','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2741,'','Cash','','2022-11-22 23:04:49','','0','12','2022-11-22 23:04:49','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121669147089','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2742,'','Cash','','2022-11-23 00:01:15','','0','12','2022-11-23 00:01:15','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121669147499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2743,'','Cash','','2022-11-23 00:02:49','','0','12','2022-11-23 00:02:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121669150894','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2744,'','Cash','','2022-11-23 00:37:11','','0','12','2022-11-23 00:37:11','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669153002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2745,'','Cash','','2022-11-23 00:54:10','','0','12','2022-11-23 00:54:10','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121669153037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2746,'','Cash','','2022-11-23 00:56:35','','0','12','2022-11-23 00:56:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669154176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2747,'','Cash','','2022-11-23 01:10:09','','0','12','2022-11-23 01:10:09','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121669154200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2748,'','Cash','','2022-11-23 21:31:35','','0','12','2022-11-23 21:31:35','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121669228285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2749,'','Cash','','2022-11-23 22:26:15','','0','12','2022-11-23 22:26:16','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669228303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2750,'','Cash','','2022-11-23 22:51:32','','0','12','2022-11-23 22:51:32','','3130','3130','1','retail','0','3130','1','0','0','0','0','0','0','printed',' ','','1','0','121669231717','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2751,'','Cash','','2022-11-24 00:02:33','','0','12','2022-11-24 00:02:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669233308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2752,'','Cash','','2022-11-24 00:10:48','','0','12','2022-11-24 00:10:48','','4350','4350','1','retail','0','4350','1','0','0','0','0','0','0','printed',' ','','1','0','121669237514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2753,'','Cash','','2022-11-24 00:23:57','','0','12','2022-11-24 00:23:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669238022','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2754,'','Cash','','2022-11-24 21:53:19','','0','12','2022-11-24 21:53:19','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669315954','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2755,'','Cash','','2022-11-24 23:08:47','','0','12','2022-11-24 23:08:47','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669316007','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2756,'','Cash','','2022-11-24 23:14:25','','0','12','2022-11-24 23:14:25','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121669320605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2757,'','Cash','','2022-11-24 23:20:29','','0','12','2022-11-24 23:20:29','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121669321184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2758,'','Cash','','2022-11-25 00:51:20','','0','12','2022-11-25 00:51:20','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121669322965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2759,'','Cash','','2022-11-25 00:52:33','','0','12','2022-11-25 00:52:33','','1430','1430','1','retail','0','1430','1','0','0','0','0','0','0','printed',' ','','1','0','121669326729','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2760,'','Cash','','2022-11-25 01:33:14','','0','12','2022-11-25 01:33:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669329175','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2761,'','Cash','','2022-11-25 02:52:55','','0','12','2022-11-25 02:52:55','','5750','5750','1','retail','0','5750','1','0','0','0','0','0','0','printed',' ','','1','0','121669329199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2762,'','Cash','','2022-11-25 10:04:42','','0','12','2022-11-25 10:04:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669358248','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2763,'','Cash','','2022-11-25 10:07:00','','0','12','2022-11-25 10:07:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669359969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2764,'','Cash','','2022-11-25 10:16:10','','0','12','2022-11-25 10:16:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669360025','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2765,'','Cash','','2022-11-25 10:18:00','','0','12','2022-11-25 10:18:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669360574','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2766,'','Cash','','2022-11-25 15:21:59','','0','12','2022-11-25 15:21:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669366362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2767,'','Cash','','2022-11-25 15:30:12','','0','12','2022-11-25 15:30:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669378939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2768,'','Cash','','2022-11-25 15:37:20','','0','12','2022-11-25 15:37:20','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121669379424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2769,'','Cash','','2022-11-25 15:40:38','','0','12','2022-11-25 15:40:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669379889','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2770,'','Cash','','2022-11-25 17:18:44','','0','12','2022-11-25 17:18:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669385907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2771,'','Cash','','2022-11-25 22:03:48','','0','12','2022-11-25 22:03:48','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121669402983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2772,'','Cash','','2022-11-25 22:35:06','','0','12','2022-11-25 22:35:06','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121669404879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2773,'','Cash','','2022-11-25 23:13:11','','0','12','2022-11-25 23:13:11','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121669405127','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2774,'','Cash','','2022-11-26 00:05:18','','0','12','2022-11-26 00:05:18','','5700','5700','1','retail','0','5700','1','0','0','0','0','0','0','printed',' ','','1','0','121669407201','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2775,'','Cash','','2022-11-26 00:10:25','','0','12','2022-11-26 00:10:25','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121669410328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2776,'','Cash','','2022-11-26 00:34:53','','0','12','2022-11-26 00:34:53','','7700','7700','1','retail','0','7700','1','0','0','0','0','0','0','printed',' ','','1','0','121669411715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2777,'','Cash','','2022-11-26 00:45:39','','0','12','2022-11-26 00:45:39','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121669412142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2778,'','Cash','','2022-11-26 01:01:20','','0','12','2022-11-26 01:01:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669413567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2779,'','Cash','','2022-11-26 01:04:21','','0','12','2022-11-26 01:04:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669413686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2780,'','Cash','','2022-11-26 01:18:59','','0','12','2022-11-26 01:18:59','','2360','2360','1','retail','0','2360','1','0','0','0','0','0','0','printed',' ','','1','0','121669413866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2781,'','Cash','','2022-11-26 01:56:32','','0','12','2022-11-26 01:56:32','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121669416468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2782,'','Cash','','2022-11-26 03:11:35','','0','12','2022-11-26 03:11:35','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121669416998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2783,'','Cash','','2022-11-26 04:26:48','','0','12','2022-11-26 04:26:48','','3040','3040','1','retail','0','3040','1','0','0','0','0','0','0','printed',' ','','1','0','121669423797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2784,'','Cash','','2022-11-26 12:12:37','','0','12','2022-11-26 12:12:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669453878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2785,'','Cash','','2022-11-26 14:33:21','','0','12','2022-11-26 14:33:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669462373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2786,'','Cash','','2022-11-26 17:47:26','','0','12','2022-11-26 17:47:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669470078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2787,'','Cash','','2022-11-26 17:48:49','','0','12','2022-11-26 17:48:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669474052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2788,'','Cash','','2022-11-26 18:15:56','','0','12','2022-11-26 18:15:56','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','1','0','121669475727','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2789,'','Cash','','2022-11-26 18:36:22','','0','12','2022-11-26 18:36:22','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669475763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2790,'','Cash','','2022-11-26 18:50:47','','0','12','2022-11-26 18:50:47','','3840','3840','1','retail','0','3840','1','0','0','0','0','0','0','printed',' ','','1','0','121669477147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2791,'','Cash','','2022-11-26 19:42:19','','0','12','2022-11-26 19:42:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669480381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2792,'','Cash','','2022-11-26 19:56:31','','0','12','2022-11-26 19:56:31','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121669480946','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2793,'','Cash','','2022-11-26 21:19:17','','0','12','2022-11-26 21:19:17','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121669484034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2794,'','Cash','','2022-11-26 22:06:57','','0','12','2022-11-26 22:06:57','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121669489608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2795,'','Cash','','2022-11-26 22:58:34','','0','12','2022-11-26 22:58:34','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121669489716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2796,'','Cash','','2022-11-26 23:07:21','','0','12','2022-11-26 23:07:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669492901','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2797,'','Cash','','2022-11-26 23:17:41','','0','12','2022-11-26 23:17:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669493270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2798,'','Cash','','2022-11-26 23:32:32','','0','12','2022-11-26 23:32:32','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121669494742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2799,'','Cash','','2022-11-26 23:32:50','','0','12','2022-11-26 23:32:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669494758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2800,'','Cash','','2022-11-26 23:45:23','','0','12','2022-11-26 23:45:23','','7700','7700','1','retail','0','7700','1','0','0','0','0','0','0','printed',' ','','1','0','121669494775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2801,'','Cash','','2022-11-26 23:45:53','','0','12','2022-11-26 23:45:53','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121669495538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2802,'','Cash','','2022-11-27 00:29:28','','0','12','2022-11-27 00:29:28','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669495908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2803,'','Cash','','2022-11-27 00:32:06','','0','12','2022-11-27 00:32:06','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121669498181','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2804,'','Cash','','2022-11-27 00:51:21','','0','12','2022-11-27 00:51:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669499468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2805,'','Cash','','2022-11-27 00:53:01','','0','12','2022-11-27 00:53:01','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121669499485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2806,'','Cash','','2022-11-27 00:58:40','','0','12','2022-11-27 00:58:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669499589','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2807,'','Cash','','2022-11-27 01:03:25','','0','12','2022-11-27 01:03:26','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669499925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2808,'','Cash','','2022-11-27 01:06:03','','0','12','2022-11-27 01:06:03','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121669500326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2809,'','Cash','','2022-11-27 01:10:28','','0','12','2022-11-27 01:10:28','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669500452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2810,'','Cash','','2022-11-27 01:34:46','','0','12','2022-11-27 01:34:46','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669502075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2811,'','Cash','','2022-11-27 01:39:36','','0','12','2022-11-27 01:39:36','','4590','4590','1','retail','0','4590','1','0','0','0','0','0','0','printed',' ','','1','0','121669502241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2812,'','Cash','','2022-11-27 01:40:05','','0','12','2022-11-27 01:40:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669502388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2813,'','Cash','','2022-11-27 01:48:42','','0','12','2022-11-27 01:48:42','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121669502664','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2814,'','Cash','','2022-11-27 03:01:56','','0','12','2022-11-27 03:01:56','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121669507305','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2815,'','Cash','','2022-11-27 03:10:01','','0','12','2022-11-27 03:10:01','','7700','7700','1','retail','0','7700','1','0','0','0','0','0','0','printed',' ','','1','0','121669507321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2816,'','Cash','','2022-11-27 03:14:52','','0','12','2022-11-27 03:14:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669507991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2817,'','Cash','','2022-11-27 03:25:54','','0','12','2022-11-27 03:25:54','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669508096','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2818,'','Cash','','2022-11-27 03:33:36','','0','12','2022-11-27 03:33:36','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121669508758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2819,'','Cash','','2022-11-27 04:29:47','','0','12','2022-11-27 04:29:47','','2230','2230','1','retail','0','2230','1','0','0','0','0','0','0','printed',' ','','1','0','121669512531','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2820,'','Cash','','2022-11-27 04:55:05','','0','12','2022-11-27 04:55:05','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121669512714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2821,'','Cash','','2022-11-27 07:15:22','','0','12','2022-11-27 07:15:22','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669522460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2822,'','Cash','','2022-11-27 13:03:51','','0','12','2022-11-27 13:03:51','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121669543287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2823,'','Cash','','2022-11-27 15:29:47','','0','12','2022-11-27 15:29:47','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121669552136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2824,'','Cash','','2022-11-27 19:55:39','','0','12','2022-11-27 19:55:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669568129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2825,'','Cash','','2022-11-27 19:57:25','','0','12','2022-11-27 19:57:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669568224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2826,'','Cash','','2022-11-27 21:46:53','','0','12','2022-11-27 21:46:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669568250','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2827,'','Cash','','2022-11-27 23:29:00','','0','12','2022-11-27 23:29:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669576267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2828,'','Cash','','2022-11-28 00:04:47','','0','12','2022-11-28 00:04:47','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121669580947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2829,'','Cash','','2022-11-28 01:14:41','','0','12','2022-11-28 01:14:41','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121669587244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2830,'','Cash','','2022-11-28 11:34:59','','0','12','2022-11-28 11:34:59','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669624489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2831,'','Cash','','2022-11-28 12:38:35','','0','12','2022-11-28 12:38:35','','1010','1010','1','retail','0','1010','1','0','0','0','0','0','0','printed',' ','','1','0','121669624506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2832,'','Cash','','2022-11-28 14:44:34','','0','12','2022-11-28 14:44:34','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669628411','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2833,'','Cash','','2022-11-28 14:45:04','','0','12','2022-11-28 14:45:04','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669635880','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2834,'','Cash','','2022-11-28 20:40:53','','0','12','2022-11-28 20:40:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121669657145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2835,'','Cash','','2022-11-28 20:41:36','','0','12','2022-11-28 20:41:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669657262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2836,'','Cash','','2022-11-28 20:42:01','','0','12','2022-11-28 20:42:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669657300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2837,'','Cash','','2022-11-28 20:47:50','','0','12','2022-11-28 20:47:50','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669657329','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2838,'','Cash','','2022-11-28 21:31:33','','0','12','2022-11-28 21:31:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669657675','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2839,'','Cash','','2022-11-28 21:38:03','','0','12','2022-11-28 21:38:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669660296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2840,'','Cash','','2022-11-28 21:50:34','','0','12','2022-11-28 21:50:34','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669661374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2841,'','Cash','','2022-11-28 21:53:33','','0','12','2022-11-28 21:53:33','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121669661580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2842,'','Cash','','2022-11-28 22:18:23','','0','12','2022-11-28 22:18:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669663079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2843,'','Cash','','2022-11-28 22:28:50','','0','12','2022-11-28 22:28:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669663114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2844,'','Cash','','2022-11-28 22:31:52','','0','12','2022-11-28 22:31:52','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121669663738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2845,'','Cash','','2022-11-28 22:56:08','','0','12','2022-11-28 22:56:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669663917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2846,'','Cash','','2022-11-28 23:17:58','','0','12','2022-11-28 23:17:58','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121669666669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2847,'','Cash','','2022-11-29 00:23:03','','0','12','2022-11-29 00:23:03','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669670559','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2848,'','Cash','','2022-11-29 00:28:08','','0','12','2022-11-29 00:28:08','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121669670590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2849,'','Cash','','2022-11-29 00:35:56','','0','12','2022-11-29 00:35:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669670969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2850,'','Cash','','2022-11-29 00:43:37','','0','12','2022-11-29 00:43:37','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121669671360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2851,'','Cash','','2022-11-29 01:03:32','','0','12','2022-11-29 01:03:32','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121669673002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2852,'','Cash','','2022-11-29 01:57:00','','0','12','2022-11-29 01:57:00','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669673017','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2853,'','Cash','','2022-11-29 02:06:44','','0','12','2022-11-29 02:06:44','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121669676225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2854,'','Cash','','2022-11-29 04:41:52','','0','12','2022-11-29 04:41:52','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121669686052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2855,'','Cash','','2022-11-29 07:04:38','','0','12','2022-11-29 07:04:38','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669694666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2856,'','Cash','','2022-11-29 07:32:52','','0','12','2022-11-29 07:32:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669696364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2857,'','Cash','','2022-11-29 11:20:24','','0','12','2022-11-29 11:20:24','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669702994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2858,'','Cash','','2022-11-29 12:15:25','','0','12','2022-11-29 12:15:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669710034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2859,'','Cash','','2022-11-29 21:33:28','','0','12','2022-11-29 21:33:28','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121669746594','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2860,'','Cash','','2022-11-29 22:02:57','','0','12','2022-11-29 22:02:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669746816','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2861,'','Cash','','2022-11-29 22:41:55','','0','12','2022-11-29 22:41:55','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121669750892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2862,'','Cash','','2022-11-29 23:00:37','','0','12','2022-11-29 23:00:37','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121669751942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2863,'','Cash','','2022-11-29 23:10:31','','0','12','2022-11-29 23:10:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669752043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2864,'','Cash','','2022-11-29 23:14:28','','0','12','2022-11-29 23:14:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669752641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2865,'','Cash','','2022-11-29 23:36:36','','0','12','2022-11-29 23:36:37','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121669752873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2866,'','Cash','','2022-11-29 23:39:16','','0','12','2022-11-29 23:39:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669754227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2867,'','Cash','','2022-11-30 00:09:51','','0','12','2022-11-30 00:09:51','','5200','5200','1','retail','0','5200','1','0','0','0','0','0','0','printed',' ','','1','0','121669754365','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2868,'','Cash','','2022-11-30 00:20:17','','0','12','2022-11-30 00:20:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669756487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2869,'','Cash','','2022-11-30 01:05:47','','0','12','2022-11-30 01:05:47','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121669756822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2870,'','Cash','','2022-11-30 01:10:46','','0','12','2022-11-30 01:10:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669759817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2871,'','Cash','','2022-11-30 01:21:19','','0','12','2022-11-30 01:21:19','','6050','6050','1','retail','0','6050','1','0','0','0','0','0','0','printed',' ','','1','0','121669760333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2872,'','Cash','','2022-11-30 15:26:41','','0','12','2022-11-30 15:26:41','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121669811173','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2873,'','Cash','','2022-11-30 16:03:20','','0','12','2022-11-30 16:03:20','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121669812302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2874,'','Cash','','2022-11-30 16:24:59','','0','12','2022-11-30 16:24:59','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121669813432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2875,'','Cash','','2022-11-30 16:57:28','','0','12','2022-11-30 16:57:28','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121669814706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2876,'','Cash','','2022-11-30 17:44:47','','0','12','2022-11-30 17:44:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669816653','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2877,'','Cash','','2022-11-30 18:06:38','','0','12','2022-11-30 18:06:38','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121669819494','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2878,'','Cash','','2022-11-30 18:34:29','','0','12','2022-11-30 18:34:29','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669820804','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2879,'','Cash','','2022-11-30 19:39:53','','0','12','2022-11-30 19:39:53','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669822473','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2880,'','Cash','','2022-11-30 19:41:07','','0','12','2022-11-30 19:41:07','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669826402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2881,'','Cash','','2022-11-30 19:42:36','','0','12','2022-11-30 19:42:36','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669826472','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2882,'','Cash','','2022-11-30 19:48:33','','0','12','2022-11-30 19:48:33','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121669826565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2883,'','Cash','','2022-11-30 20:14:19','','0','12','2022-11-30 20:14:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669826922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2884,'','Cash','','2022-11-30 20:59:18','','0','12','2022-11-30 20:59:18','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669831148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2885,'','Cash','','2022-11-30 21:00:10','','0','12','2022-11-30 21:00:10','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121669831162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2886,'','Cash','','2022-11-30 21:12:36','','0','12','2022-11-30 21:12:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669831216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2887,'','Cash','','2022-11-30 21:24:28','','0','12','2022-11-30 21:24:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669831962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2888,'','Cash','','2022-11-30 21:29:26','','0','12','2022-11-30 21:29:26','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121669832878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2889,'','Cash','','2022-11-30 21:35:08','','0','12','2022-11-30 21:35:08','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121669833298','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2890,'','Cash','','2022-11-30 22:00:10','','0','12','2022-11-30 22:00:10','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121669833312','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2891,'','Cash','','2022-11-30 23:55:06','','0','12','2022-11-30 23:55:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669841695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2892,'','Cash','','2022-12-01 00:40:03','','0','12','2022-12-01 00:40:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669841712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2893,'','Cash','','2022-12-01 01:05:34','','0','12','2022-12-01 01:05:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669844409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2894,'','Cash','','2022-12-01 01:11:17','','0','12','2022-12-01 01:11:17','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669845940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2895,'','Cash','','2022-12-01 01:27:25','','0','12','2022-12-01 01:27:25','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669846283','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2896,'','Cash','','2022-12-01 01:30:00','','0','12','2022-12-01 01:30:00','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121669847316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2897,'','Cash','','2022-12-01 01:35:15','','0','12','2022-12-01 01:35:15','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121669847405','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2898,'','Cash','','2022-12-01 01:55:29','','0','12','2022-12-01 01:55:29','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669847995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2899,'','Cash','','2022-12-01 02:04:01','','0','12','2022-12-01 02:04:01','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669848932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2900,'','Cash','','2022-12-01 03:58:37','','0','12','2022-12-01 03:58:37','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121669849449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2901,'','Cash','','2022-12-01 04:03:04','','0','12','2022-12-01 04:03:04','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669856331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2902,'','Cash','','2022-12-01 04:39:05','','0','12','2022-12-01 04:39:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121669856592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2903,'','Cash','','2022-12-01 05:18:13','','0','12','2022-12-01 05:18:13','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669858750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2904,'','Cash','','2022-12-01 10:59:00','','0','12','2022-12-01 10:59:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121669881500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2905,'','Cash','','2022-12-01 11:31:01','','0','12','2022-12-01 11:31:01','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121669883450','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2906,'','Cash','','2022-12-01 13:26:24','','0','12','2022-12-01 13:26:24','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121669890335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2907,'','Cash','','2022-12-01 13:27:08','','0','12','2022-12-01 13:27:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121669890395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2908,'','Cash','','2022-12-01 13:27:36','','0','12','2022-12-01 13:27:36','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121669890432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2909,'','Cash','','2022-12-01 13:58:07','','0','12','2022-12-01 13:58:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121669890461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2910,'','Cash','','2022-12-01 14:33:34','','0','12','2022-12-01 14:33:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121669892292','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2911,'','Cash','','2022-12-01 17:59:56','','0','12','2022-12-01 17:59:56','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121669906768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2912,'','Cash','','2022-12-01 18:10:54','','0','12','2022-12-01 18:10:54','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','1','0','121669906805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2913,'','Cash','','2022-12-01 18:48:45','','0','12','2022-12-01 18:48:45','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669909695','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2914,'','Cash','','2022-12-01 19:08:11','','0','12','2022-12-01 19:08:11','','60','60','1','retail','0','60','1','0','0','0','0','0','0','printed',' ','','1','0','121669909728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2915,'','Cash','','2022-12-01 19:11:03','','0','12','2022-12-01 19:11:03','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121669910896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2916,'','Cash','','2022-12-01 20:22:38','','0','12','2022-12-01 20:22:38','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121669911076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2917,'','Cash','','2022-12-01 22:09:05','','0','12','2022-12-01 22:09:05','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121669921727','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2918,'','Cash','','2022-12-01 22:30:27','','0','12','2022-12-01 22:30:27','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121669922998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2919,'','Cash','','2022-12-01 22:43:37','','0','12','2022-12-01 22:43:37','','1070','1070','1','retail','0','1070','1','0','0','0','0','0','0','printed',' ','','1','0','121669923033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2920,'','Cash','','2022-12-01 22:50:01','','0','12','2022-12-01 22:50:01','','2040','2040','1','retail','0','2040','1','0','0','0','0','0','0','printed',' ','','1','0','121669923825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2921,'','Cash','','2022-12-02 00:13:01','','0','12','2022-12-02 00:13:01','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121669924206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2922,'','Cash','','2022-12-02 01:44:04','','0','12','2022-12-02 01:44:04','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121669929187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2923,'','Cash','','2022-12-02 02:15:46','','0','12','2022-12-02 02:15:46','','8500','8500','1','retail','0','8500','1','0','0','0','0','0','0','printed',' ','','1','0','121669934897','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2924,'','Cash','','2022-12-02 02:47:03','','0','12','2022-12-02 02:47:03','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121669938412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2925,'','Cash','','2022-12-02 18:58:47','','0','12','2022-12-02 18:58:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121669994559','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2926,'','Cash','','2022-12-02 19:49:21','','0','12','2022-12-02 19:49:21','','11380','11380','1','retail','0','11380','1','0','0','0','0','0','0','printed',' ','','1','0','121669996794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2927,'','Cash','','2022-12-02 20:18:46','','0','12','2022-12-02 20:18:46','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121669999857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2928,'','Cash','','2022-12-02 20:23:34','','0','12','2022-12-02 20:23:34','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121670001567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2929,'','Cash','','2022-12-02 21:28:51','','0','12','2022-12-02 21:28:51','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121670001819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2930,'','Cash','','2022-12-02 21:50:54','','0','12','2022-12-02 21:50:54','','2080','2080','1','retail','0','2080','1','0','0','0','0','0','0','printed',' ','','1','0','121670006965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2931,'','Cash','','2022-12-02 22:20:30','','0','12','2022-12-02 22:20:30','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121670008659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2932,'','Cash','','2022-12-02 22:34:03','','0','12','2022-12-02 22:34:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670009053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2933,'','Cash','','2022-12-02 22:43:40','','0','12','2022-12-02 22:43:40','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670010207','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2934,'','Cash','','2022-12-02 23:05:39','','0','12','2022-12-02 23:05:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670011519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2935,'','Cash','','2022-12-02 23:15:53','','0','12','2022-12-02 23:15:53','','1890','1890','1','retail','0','1890','1','0','0','0','0','0','0','printed',' ','','1','0','121670011544','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2936,'','Cash','','2022-12-02 23:16:29','','0','12','2022-12-02 23:16:29','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121670012163','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2937,'','Cash','','2022-12-02 23:19:49','','0','12','2022-12-02 23:19:49','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121670012194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2938,'','Cash','','2022-12-02 23:21:46','','0','12','2022-12-02 23:21:46','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121670012395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2939,'','Cash','','2022-12-02 23:23:42','','0','12','2022-12-02 23:23:42','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121670012537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2940,'','Cash','','2022-12-02 23:30:10','','0','12','2022-12-02 23:30:10','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121670012940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2941,'','Cash','','2022-12-02 23:31:01','','0','12','2022-12-02 23:31:01','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670013048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2942,'','Cash','','2022-12-02 23:53:38','','0','12','2022-12-02 23:53:38','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121670013066','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2943,'','Cash','','2022-12-02 23:55:44','','0','12','2022-12-02 23:55:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670014423','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2944,'','Cash','','2022-12-03 00:10:04','','0','12','2022-12-03 00:10:04','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670015317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2945,'','Cash','','2022-12-03 00:12:20','','0','12','2022-12-03 00:12:20','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121670015443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2946,'','Cash','','2022-12-03 00:23:59','','0','12','2022-12-03 00:23:59','','10160','10160','1','retail','0','10160','1','0','0','0','0','0','0','printed',' ','','1','0','121670015546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2947,'','Cash','','2022-12-03 01:35:46','','0','12','2022-12-03 01:35:46','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121670020454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2948,'','Cash','','2022-12-03 01:41:29','','0','12','2022-12-03 01:41:29','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121670020875','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2949,'','Cash','','2022-12-03 01:49:34','','0','12','2022-12-03 01:49:34','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121670020894','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2950,'','Cash','','2022-12-03 01:50:53','','0','12','2022-12-03 01:50:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670021381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2951,'','Cash','','2022-12-03 02:07:11','','0','12','2022-12-03 02:07:11','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670021458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2952,'','Cash','','2022-12-03 02:13:41','','0','12','2022-12-03 02:13:41','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121670022720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2953,'','Cash','','2022-12-03 02:28:27','','0','12','2022-12-03 02:28:27','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121670023258','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2954,'','Cash','','2022-12-03 02:30:39','','0','12','2022-12-03 02:30:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670023826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2955,'','Cash','','2022-12-03 02:37:28','','0','12','2022-12-03 02:37:28','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121670023843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2956,'','Cash','','2022-12-03 02:44:27','','0','12','2022-12-03 02:44:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670024634','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2957,'','Cash','','2022-12-03 02:50:43','','0','12','2022-12-03 02:50:43','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670025033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2958,'','Cash','','2022-12-03 02:56:34','','0','12','2022-12-03 02:56:34','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121670025056','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2959,'','Cash','','2022-12-03 03:02:16','','0','12','2022-12-03 03:02:16','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121670025400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2960,'','Cash','','2022-12-03 03:06:46','','0','12','2022-12-03 03:06:46','','1390','1390','1','retail','0','1390','1','0','0','0','0','0','0','printed',' ','','1','0','121670025746','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2961,'','Cash','','2022-12-03 03:09:11','','0','12','2022-12-03 03:09:11','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121670026013','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2962,'','Cash','','2022-12-03 06:53:00','','0','12','2022-12-03 06:53:00','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121670039216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2963,'','Cash','','2022-12-03 10:37:08','','0','12','2022-12-03 10:37:08','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121670046179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2964,'','Cash','','2022-12-03 12:31:54','','0','12','2022-12-03 12:31:54','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670053543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2965,'','Cash','','2022-12-03 13:06:48','','0','12','2022-12-03 13:06:48','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670059918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2966,'','Cash','','2022-12-03 13:31:05','','0','12','2022-12-03 13:31:05','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121670062011','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2967,'','Cash','','2022-12-03 13:33:28','','0','12','2022-12-03 13:33:28','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670063529','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2968,'','Cash','','2022-12-03 21:11:49','','0','12','2022-12-03 21:11:49','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121670090013','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2969,'','Cash','','2022-12-03 22:02:13','','0','12','2022-12-03 22:02:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670091583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2970,'','Cash','','2022-12-03 22:27:33','','0','12','2022-12-03 22:27:33','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121670094139','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2971,'','Cash','','2022-12-03 23:12:27','','0','12','2022-12-03 23:12:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670096032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2972,'','Cash','','2022-12-03 23:53:31','','0','12','2022-12-03 23:53:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670100800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2973,'','Cash','','2022-12-03 23:56:51','','0','12','2022-12-03 23:56:51','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121670100815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2974,'','Cash','','2022-12-04 00:12:57','','0','12','2022-12-04 00:12:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670101959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2975,'','Cash','','2022-12-04 00:34:40','','0','12','2022-12-04 00:34:40','','1720','1720','1','retail','0','1720','1','0','0','0','0','0','0','printed',' ','','1','0','121670101983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2976,'','Cash','','2022-12-04 01:15:28','','0','12','2022-12-04 01:15:28','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121670105567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2977,'','Cash','','2022-12-04 01:43:43','','0','12','2022-12-04 01:43:43','','3680','3680','1','retail','0','3680','1','0','0','0','0','0','0','printed',' ','','1','0','121670107246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2978,'','Cash','','2022-12-04 01:47:36','','0','12','2022-12-04 01:47:36','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121670107453','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2979,'','Cash','','2022-12-04 02:14:05','','0','12','2022-12-04 02:14:05','','1660','1660','1','retail','0','1660','1','0','0','0','0','0','0','printed',' ','','1','0','121670107659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2980,'','Cash','','2022-12-04 02:24:00','','0','12','2022-12-04 02:24:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670109274','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2981,'','Cash','','2022-12-04 02:53:33','','0','12','2022-12-04 02:53:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670109845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2982,'','Cash','','2022-12-04 03:08:10','','0','12','2022-12-04 03:08:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670111618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2983,'','Cash','','2022-12-04 03:55:45','','0','12','2022-12-04 03:55:45','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121670115286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2984,'','Cash','','2022-12-04 04:00:15','','0','12','2022-12-04 04:00:15','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121670115365','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2985,'','Cash','','2022-12-04 04:29:49','','0','12','2022-12-04 04:29:49','','6350','6350','1','retail','0','6350','1','0','0','0','0','0','0','printed',' ','','1','0','121670115621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2986,'','Cash','','2022-12-04 04:53:41','','0','12','2022-12-04 04:53:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670117609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2987,'','Cash','','2022-12-04 05:11:42','','0','12','2022-12-04 05:11:42','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121670119768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2988,'','Cash','','2022-12-04 05:18:59','','0','12','2022-12-04 05:18:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670120320','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2989,'','Cash','','2022-12-04 05:20:12','','0','12','2022-12-04 05:20:12','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121670120380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2990,'','Cash','','2022-12-04 05:25:06','','0','12','2022-12-04 05:25:06','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121670120419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2991,'','Cash','','2022-12-04 05:27:04','','0','12','2022-12-04 05:27:04','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121670120711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2992,'','Cash','','2022-12-04 05:27:54','','0','12','2022-12-04 05:27:54','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670120847','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2993,'','Cash','','2022-12-04 05:32:12','','0','12','2022-12-04 05:32:12','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670120879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2994,'','Cash','','2022-12-04 07:05:59','','0','12','2022-12-04 07:05:59','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121670126678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2995,'','Cash','','2022-12-04 09:41:21','','0','12','2022-12-04 09:41:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670129619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2996,'','Cash','','2022-12-04 11:04:17','','0','12','2022-12-04 11:04:17','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121670141029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2997,'','Cash','','2022-12-04 12:08:50','','0','12','2022-12-04 12:08:50','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121670144919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2998,'','Cash','','2022-12-04 13:30:40','','0','12','2022-12-04 13:30:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670149819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2999,'','Cash','','2022-12-04 16:55:45','','0','12','2022-12-04 16:55:45','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121670162115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3000,'','Cash','','2022-12-04 17:15:18','','0','12','2022-12-04 17:15:18','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121670162167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3001,'','Cash','','2022-12-04 23:04:03','','0','12','2022-12-04 23:04:03','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121670184187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3002,'','Cash','','2022-12-05 01:29:09','','0','12','2022-12-05 01:29:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670192868','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3003,'','Cash','','2022-12-05 01:45:15','','0','12','2022-12-05 01:45:16','','45280','45280','1','retail','0','45280','1','0','0','0','0','0','0','printed',' ','','1','0','121670193048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3004,'','Cash','','2022-12-05 01:57:22','','0','12','2022-12-05 01:57:22','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670193985','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3005,'','Cash','','2022-12-05 02:14:59','','0','12','2022-12-05 02:14:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121670194661','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3006,'','Cash','','2022-12-05 02:26:28','','0','12','2022-12-05 02:26:28','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121670195703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3007,'','Cash','','2022-12-05 05:20:55','','0','12','2022-12-05 05:20:55','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121670205311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3008,'','Cash','','2022-12-05 05:28:28','','0','12','2022-12-05 05:28:28','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121670206886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3009,'','Cash','','2022-12-05 05:39:51','','0','12','2022-12-05 05:39:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670207313','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3010,'','Cash','','2022-12-05 05:48:21','','0','12','2022-12-05 05:48:21','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121670207996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3011,'','Cash','','2022-12-05 06:13:25','','0','12','2022-12-05 06:13:25','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121670208506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3012,'','Cash','','2022-12-05 17:53:52','','0','12','2022-12-05 17:53:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670251904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3013,'','Cash','','2022-12-05 17:54:16','','0','12','2022-12-05 17:54:16','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121670252038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3014,'','Cash','','2022-12-05 22:03:59','','0','12','2022-12-05 22:03:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121670266913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3015,'','Cash','','2022-12-05 22:06:45','','0','12','2022-12-05 22:06:45','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121670267184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3016,'','Cash','','2022-12-05 22:37:06','','0','12','2022-12-05 22:37:06','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121670267213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3017,'','Cash','','2022-12-05 22:43:39','','0','12','2022-12-05 22:43:39','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121670269408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3018,'','Cash','','2022-12-05 22:55:07','','0','12','2022-12-05 22:55:07','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670269424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3019,'','Cash','','2022-12-05 22:59:41','','0','12','2022-12-05 22:59:41','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121670270111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3020,'','Cash','','2022-12-05 23:04:54','','0','12','2022-12-05 23:04:54','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121670270387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3021,'','Cash','','2022-12-05 23:06:24','','0','12','2022-12-05 23:06:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670270699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3022,'','Cash','','2022-12-05 23:30:29','','0','12','2022-12-05 23:30:29','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121670272199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3023,'','Cash','','2022-12-05 23:34:57','','0','12','2022-12-05 23:34:57','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121670272235','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3024,'','Cash','','2022-12-05 23:37:54','','0','12','2022-12-05 23:37:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670272502','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3025,'','Cash','','2022-12-05 23:56:33','','0','12','2022-12-05 23:56:33','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121670273732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3026,'','Cash','','2022-12-06 00:10:59','','0','12','2022-12-06 00:10:59','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670273801','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3027,'','Cash','','2022-12-06 00:40:15','','0','12','2022-12-06 00:40:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670274898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3028,'','Cash','','2022-12-06 00:41:33','','0','12','2022-12-06 00:41:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670276479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3029,'','Cash','','2022-12-06 01:50:43','','0','12','2022-12-06 01:50:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670276503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3030,'','Cash','','2022-12-06 12:39:46','','0','12','2022-12-06 12:39:46','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121670308644','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3031,'','Cash','','2022-12-06 17:46:44','','0','12','2022-12-06 17:46:44','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670337769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3032,'','Cash','','2022-12-06 18:34:08','','0','12','2022-12-06 18:34:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670340840','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3033,'','Cash','','2022-12-06 18:59:38','','0','12','2022-12-06 18:59:38','','22000','22000','1','retail','0','22000','1','0','0','0','0','0','0','printed',' ','','1','0','121670340881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3034,'','Cash','','2022-12-06 19:19:31','','0','12','2022-12-06 19:19:31','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670342636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3035,'','Cash','','2022-12-06 19:20:34','','0','12','2022-12-06 19:20:34','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121670343607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3036,'','Cash','','2022-12-06 19:46:00','','0','12','2022-12-06 19:46:00','','3050','3050','1','retail','0','3050','1','0','0','0','0','0','0','printed',' ','','1','0','121670345134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3037,'','Cash','','2022-12-06 20:50:41','','0','12','2022-12-06 20:50:41','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121670345169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3038,'','Cash','','2022-12-06 21:10:33','','0','12','2022-12-06 21:10:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670349105','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3039,'','Cash','','2022-12-06 21:12:03','','0','12','2022-12-06 21:12:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670350306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3040,'','Cash','','2022-12-06 21:18:37','','0','12','2022-12-06 21:18:37','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121670350333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3041,'','Cash','','2022-12-06 21:47:11','','0','12','2022-12-06 21:47:11','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121670352363','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3042,'','Cash','','2022-12-06 22:01:16','','0','12','2022-12-06 22:01:16','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121670352913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3043,'','Cash','','2022-12-06 22:04:16','','0','12','2022-12-06 22:04:16','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121670353281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3044,'','Cash','','2022-12-06 22:37:11','','0','12','2022-12-06 22:37:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670355343','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3045,'','Cash','','2022-12-06 22:37:37','','0','12','2022-12-06 22:37:37','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670355442','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3046,'','Cash','','2022-12-06 23:03:24','','0','12','2022-12-06 23:03:24','','2030','2030','1','retail','0','2030','1','0','0','0','0','0','0','printed',' ','','1','0','121670356980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3047,'','Cash','','2022-12-06 23:14:26','','0','12','2022-12-06 23:14:26','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121670357648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3048,'','Cash','','2022-12-06 23:28:30','','0','12','2022-12-06 23:28:30','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670358457','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3049,'','Cash','','2022-12-07 01:45:15','','0','12','2022-12-07 01:45:15','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121670366705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3050,'','Cash','','2022-12-07 02:50:53','','0','12','2022-12-07 02:50:53','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121670366725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3051,'','Cash','','2022-12-07 03:00:54','','0','12','2022-12-07 03:00:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670370769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3052,'','Cash','','2022-12-07 03:19:42','','0','12','2022-12-07 03:19:42','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121670371289','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3053,'','Cash','','2022-12-07 04:30:34','','0','12','2022-12-07 04:30:34','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121670376614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3054,'','Cash','','2022-12-07 04:40:59','','0','12','2022-12-07 04:40:59','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121670377146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3055,'','Cash','','2022-12-07 10:49:07','','0','12','2022-12-07 10:49:07','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121670397503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3056,'','Cash','','2022-12-07 11:12:13','','0','12','2022-12-07 11:12:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670399352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3057,'','Cash','','2022-12-07 11:23:09','','0','12','2022-12-07 11:23:09','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670400738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3058,'','Cash','','2022-12-07 12:55:29','','0','12','2022-12-07 12:55:29','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670401394','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3059,'','Cash','','2022-12-07 12:58:20','','0','12','2022-12-07 12:58:20','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670406935','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3060,'','Cash','','2022-12-07 13:19:24','','0','12','2022-12-07 13:19:24','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670407104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3061,'','Cash','','2022-12-07 13:46:53','','0','12','2022-12-07 13:46:53','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121670408388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3062,'','Cash','','2022-12-07 14:13:35','','0','12','2022-12-07 14:13:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670410131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3063,'','Cash','','2022-12-07 18:48:00','','0','12','2022-12-07 18:48:00','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121670423477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3064,'','Cash','','2022-12-07 19:00:19','','0','12','2022-12-07 19:00:19','','11500','11500','1','retail','0','11500','1','0','0','0','0','0','0','printed',' ','','1','0','121670428086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3065,'','Cash','','2022-12-07 21:02:28','','0','12','2022-12-07 21:02:28','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121670435742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3066,'','Cash','','2022-12-07 22:05:56','','0','12','2022-12-07 22:05:57','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121670438356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3067,'','Cash','','2022-12-07 22:15:58','','0','12','2022-12-07 22:15:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670440532','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3068,'','Cash','','2022-12-07 22:18:51','','0','12','2022-12-07 22:18:51','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121670440564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3069,'','Cash','','2022-12-07 22:20:08','','0','12','2022-12-07 22:20:08','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121670440742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3070,'','Cash','','2022-12-07 22:21:06','','0','12','2022-12-07 22:21:06','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670440812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3071,'','Cash','','2022-12-07 22:36:23','','0','12','2022-12-07 22:36:23','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670440872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3072,'','Cash','','2022-12-07 22:43:30','','0','12','2022-12-07 22:43:30','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121670441793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3073,'','Cash','','2022-12-07 23:00:02','','0','12','2022-12-07 23:00:02','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670442222','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3074,'','Cash','','2022-12-07 23:05:40','','0','12','2022-12-07 23:05:40','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670443206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3075,'','Cash','','2022-12-07 23:28:17','','0','12','2022-12-07 23:28:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670443855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3076,'','Cash','','2022-12-07 23:58:44','','0','12','2022-12-07 23:58:44','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670446699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3077,'','Cash','','2022-12-08 00:26:27','','0','12','2022-12-08 00:26:27','','16300','16300','1','retail','0','16300','1','0','0','0','0','0','0','printed',' ','','1','0','121670446728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3078,'','Cash','','2022-12-08 00:43:42','','0','12','2022-12-08 00:43:42','','790','790','1','retail','0','790','1','0','0','0','0','0','0','printed',' ','','1','0','121670448398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3079,'','Cash','','2022-12-08 01:01:47','','0','12','2022-12-08 01:01:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670450447','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3080,'','Cash','','2022-12-08 01:15:35','','0','12','2022-12-08 01:15:35','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670451306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3081,'','Cash','','2022-12-08 01:27:48','','0','12','2022-12-08 01:27:48','','1990','1990','1','retail','0','1990','1','0','0','0','0','0','0','printed',' ','','1','0','121670451340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3082,'','Cash','','2022-12-08 01:34:11','','0','12','2022-12-08 01:34:11','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121670452079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3083,'','Cash','','2022-12-08 02:08:04','','0','12','2022-12-08 02:08:04','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121670452458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3084,'','Cash','','2022-12-08 02:17:44','','0','12','2022-12-08 02:17:44','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121670454862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3085,'','Cash','','2022-12-08 14:14:28','','0','12','2022-12-08 14:14:28','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121670495910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3086,'','Cash','','2022-12-08 14:21:48','','0','12','2022-12-08 14:21:48','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670498294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3087,'','Cash','','2022-12-08 15:15:08','','0','12','2022-12-08 15:15:08','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670499043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3088,'','Cash','','2022-12-08 15:20:49','','0','12','2022-12-08 15:20:49','','1870','1870','1','retail','0','1870','1','0','0','0','0','0','0','printed',' ','','1','0','121670501714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3089,'','Cash','','2022-12-08 15:28:47','','0','12','2022-12-08 15:28:47','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670502054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3090,'','Cash','','2022-12-08 16:18:56','','0','12','2022-12-08 16:18:56','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670502531','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3091,'','Cash','','2022-12-08 16:22:00','','0','12','2022-12-08 16:22:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670505540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3092,'','Cash','','2022-12-08 17:30:41','','0','12','2022-12-08 17:30:41','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121670509261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3093,'','Cash','','2022-12-08 17:47:21','','0','12','2022-12-08 17:47:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670510823','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3094,'','Cash','','2022-12-08 18:16:20','','0','12','2022-12-08 18:16:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670510851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3095,'','Cash','','2022-12-08 18:43:57','','0','12','2022-12-08 18:43:57','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121670512584','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3096,'','Cash','','2022-12-08 19:23:25','','0','12','2022-12-08 19:23:25','','1970','1970','1','retail','0','1970','1','0','0','0','0','0','0','printed',' ','','1','0','121670516435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3097,'','Cash','','2022-12-08 19:25:01','','0','12','2022-12-08 19:25:01','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670516610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3098,'','Cash','','2022-12-08 20:10:29','','0','12','2022-12-08 20:10:29','','4080','4080','1','retail','0','4080','1','0','0','0','0','0','0','printed',' ','','1','0','121670518041','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3099,'','Cash','','2022-12-08 20:47:56','','0','12','2022-12-08 20:47:56','','2920','2920','1','retail','0','2920','1','0','0','0','0','0','0','printed',' ','','1','0','121670521539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3100,'','Cash','','2022-12-08 21:21:01','','0','12','2022-12-08 21:21:01','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121670521684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3101,'','Cash','','2022-12-08 21:22:16','','0','12','2022-12-08 21:22:16','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121670523666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3102,'','Cash','','2022-12-08 22:17:27','','0','12','2022-12-08 22:17:27','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121670523741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3103,'','Cash','','2022-12-08 23:02:20','','0','12','2022-12-08 23:02:20','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121670527053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3104,'','Cash','','2022-12-08 23:08:33','','0','12','2022-12-08 23:08:33','','1580','1580','1','retail','0','1580','1','0','0','0','0','0','0','printed',' ','','1','0','121670529747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3105,'','Cash','','2022-12-08 23:11:44','','0','12','2022-12-08 23:11:44','','3230','3230','1','retail','0','3230','1','0','0','0','0','0','0','printed',' ','','1','0','121670530117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3106,'','Cash','','2022-12-08 23:24:45','','0','12','2022-12-08 23:24:45','','1970','1970','1','retail','0','1970','1','0','0','0','0','0','0','printed',' ','','1','0','121670531038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3107,'','Cash','','2022-12-08 23:44:23','','0','12','2022-12-08 23:44:23','','2070','2070','1','retail','0','2070','1','0','0','0','0','0','0','printed',' ','','1','0','121670531090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3108,'','Cash','','2022-12-09 00:12:59','','0','12','2022-12-09 00:12:59','','2360','2360','1','retail','0','2360','1','0','0','0','0','0','0','printed',' ','','1','0','121670532321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3109,'','Cash','','2022-12-09 01:10:40','','0','12','2022-12-09 01:10:40','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121670537226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3110,'','Cash','','2022-12-09 02:08:39','','0','12','2022-12-09 02:08:39','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121670540555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3111,'','Cash','','2022-12-09 04:00:01','','0','12','2022-12-09 04:00:01','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121670547590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3112,'','Cash','','2022-12-09 07:44:12','','0','12','2022-12-09 07:44:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670560983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3113,'','Cash','','2022-12-09 09:47:16','','0','12','2022-12-09 09:47:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670568428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3114,'','Cash','','2022-12-09 10:22:33','','0','12','2022-12-09 10:22:33','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121670568442','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3115,'','Cash','','2022-12-09 11:56:31','','0','12','2022-12-09 11:56:31','','2480','2480','1','retail','0','2480','1','0','0','0','0','0','0','printed',' ','','1','0','121670576101','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3116,'','Cash','','2022-12-09 14:06:13','','0','12','2022-12-09 14:06:13','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121670578705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3117,'','Cash','','2022-12-09 14:09:22','','0','12','2022-12-09 14:09:22','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670584138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3118,'','Cash','','2022-12-09 17:36:57','','0','12','2022-12-09 17:36:57','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121670594483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3119,'','Cash','','2022-12-09 18:36:16','','0','12','2022-12-09 18:36:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670596625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3120,'','Cash','','2022-12-09 19:40:40','','0','12','2022-12-09 19:40:40','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121670600182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3121,'','Cash','','2022-12-09 19:58:28','','0','12','2022-12-09 19:58:28','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121670604094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3122,'','Cash','','2022-12-09 21:41:19','','0','12','2022-12-09 21:41:19','','940','940','1','retail','0','940','1','0','0','0','0','0','0','printed',' ','','1','0','121670605192','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3123,'','Cash','','2022-12-09 21:44:01','','0','12','2022-12-09 21:44:01','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121670611391','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3124,'','Cash','','2022-12-09 21:56:06','','0','12','2022-12-09 21:56:06','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121670611446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3125,'','Cash','','2022-12-09 22:07:30','','0','12','2022-12-09 22:07:30','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121670612171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3126,'','Cash','','2022-12-09 22:34:19','','0','12','2022-12-09 22:34:19','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121670612855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3127,'','Cash','','2022-12-09 22:45:10','','0','12','2022-12-09 22:45:10','','4830','4830','1','retail','0','4830','1','0','0','0','0','0','0','printed',' ','','1','0','121670614917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3128,'','Cash','','2022-12-09 23:08:22','','0','12','2022-12-09 23:08:22','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121670615116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3129,'','Cash','','2022-12-09 23:12:12','','0','12','2022-12-09 23:12:12','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121670616651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3130,'','Cash','','2022-12-09 23:13:32','','0','12','2022-12-09 23:13:32','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670616800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3131,'','Cash','','2022-12-09 23:52:08','','0','12','2022-12-09 23:52:08','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670616841','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3132,'','Cash','','2022-12-09 23:56:01','','0','12','2022-12-09 23:56:01','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121670619133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3133,'','Cash','','2022-12-10 00:02:20','','0','12','2022-12-10 00:02:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670619723','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3134,'','Cash','','2022-12-10 00:04:21','','0','12','2022-12-10 00:04:21','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121670619750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3135,'','Cash','','2022-12-10 00:24:03','','0','12','2022-12-10 00:24:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670619939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3136,'','Cash','','2022-12-10 00:37:35','','0','12','2022-12-10 00:37:35','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121670621074','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3137,'','Cash','','2022-12-10 00:38:49','','0','12','2022-12-10 00:38:49','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670621874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3138,'','Cash','','2022-12-10 01:02:24','','0','12','2022-12-10 01:02:24','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670621939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3139,'','Cash','','2022-12-10 01:08:55','','0','12','2022-12-10 01:08:55','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670623348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3140,'','Cash','','2022-12-10 03:05:19','','0','12','2022-12-10 03:05:19','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121670630316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3141,'','Cash','','2022-12-10 03:07:24','','0','12','2022-12-10 03:07:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670630726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3142,'','Cash','','2022-12-10 03:12:33','','0','12','2022-12-10 03:12:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670630849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3143,'','Cash','','2022-12-10 03:35:53','','0','12','2022-12-10 03:35:53','','3920','3920','1','retail','0','3920','1','0','0','0','0','0','0','printed',' ','','1','0','121670631160','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3144,'','Cash','','2022-12-10 04:03:47','','0','12','2022-12-10 04:03:47','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670632736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3145,'','Cash','','2022-12-10 12:29:05','','0','12','2022-12-10 12:29:05','','910','910','1','retail','0','910','1','0','0','0','0','0','0','printed',' ','','1','0','121670664034','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3146,'','Cash','','2022-12-10 12:34:09','','0','12','2022-12-10 12:34:09','','970','970','1','retail','0','970','1','0','0','0','0','0','0','printed',' ','','1','0','121670664553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3147,'','Cash','','2022-12-10 12:38:18','','0','12','2022-12-10 12:38:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670664959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3148,'','Cash','','2022-12-10 14:30:52','','0','12','2022-12-10 14:30:52','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121670671843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3149,'','Cash','','2022-12-10 17:56:58','','0','12','2022-12-10 17:56:58','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670684207','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3150,'','Cash','','2022-12-10 18:33:04','','0','12','2022-12-10 18:33:04','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121670685825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3151,'','Cash','','2022-12-10 18:52:44','','0','12','2022-12-10 18:52:44','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121670686399','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3152,'','Cash','','2022-12-10 19:45:54','','0','12','2022-12-10 19:45:54','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670687572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3153,'','Cash','','2022-12-10 19:56:59','','0','12','2022-12-10 19:56:59','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670691399','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3154,'','Cash','','2022-12-10 20:55:02','','0','12','2022-12-10 20:55:02','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670694891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3155,'','Cash','','2022-12-10 20:59:40','','0','12','2022-12-10 20:59:40','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121670694906','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3156,'','Cash','','2022-12-10 21:03:49','','0','12','2022-12-10 21:03:49','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121670695400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3157,'','Cash','','2022-12-10 21:56:47','','0','12','2022-12-10 21:56:47','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121670695435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3158,'','Cash','','2022-12-10 22:19:06','','0','12','2022-12-10 22:19:06','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121670698630','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3159,'','Cash','','2022-12-10 23:23:44','','0','12','2022-12-10 23:23:44','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670699951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3160,'','Cash','','2022-12-11 00:02:43','','0','12','2022-12-11 00:02:43','','1880','1880','1','retail','0','1880','1','0','0','0','0','0','0','printed',' ','','1','0','121670703848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3161,'','Cash','','2022-12-11 00:05:26','','0','12','2022-12-11 00:05:27','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670706282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3162,'','Cash','','2022-12-11 01:11:04','','0','12','2022-12-11 01:11:04','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670710252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3163,'','Cash','','2022-12-11 01:38:24','','0','12','2022-12-11 01:38:24','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121670711883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3164,'','Cash','','2022-12-11 01:49:26','','0','12','2022-12-11 01:49:26','','25000','25000','1','retail','0','25000','1','0','0','0','0','0','0','printed',' ','','1','0','121670711908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3165,'','Cash','','2022-12-11 01:58:25','','0','12','2022-12-11 01:58:25','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121670712684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3166,'','Cash','','2022-12-11 02:23:44','','0','12','2022-12-11 02:23:44','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121670714617','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3167,'','Cash','','2022-12-11 07:13:36','','0','12','2022-12-11 07:13:36','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121670732007','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3168,'','Cash','','2022-12-11 07:14:53','','0','12','2022-12-11 07:14:53','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670732032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3169,'','Cash','','2022-12-11 07:17:34','','0','12','2022-12-11 07:17:34','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670732103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3170,'','Cash','','2022-12-11 07:32:35','','0','12','2022-12-11 07:32:35','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121670732261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3171,'','Cash','','2022-12-11 17:38:30','','0','12','2022-12-11 17:38:30','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121670769496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3172,'','Cash','','2022-12-11 18:13:00','','0','12','2022-12-11 18:13:00','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670769774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3173,'','Cash','','2022-12-11 19:29:42','','0','12','2022-12-11 19:29:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670771588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3174,'','Cash','','2022-12-11 19:31:13','','0','12','2022-12-11 19:31:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670776254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3175,'','Cash','','2022-12-11 19:31:30','','0','12','2022-12-11 19:31:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670776277','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3176,'','Cash','','2022-12-11 19:31:51','','0','12','2022-12-11 19:31:51','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670776296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3177,'','Cash','','2022-12-11 19:32:52','','0','12','2022-12-11 19:32:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670776324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3178,'','Cash','','2022-12-11 19:33:31','','0','12','2022-12-11 19:33:31','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121670776381','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3179,'','Cash','','2022-12-11 19:34:03','','0','12','2022-12-11 19:34:03','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121670776422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3180,'','Cash','','2022-12-11 19:34:25','','0','12','2022-12-11 19:34:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670776450','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3181,'','Cash','','2022-12-11 19:47:10','','0','12','2022-12-11 19:47:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670776470','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3182,'','Cash','','2022-12-11 20:36:33','','0','12','2022-12-11 20:36:33','','1540','1540','1','retail','0','1540','1','0','0','0','0','0','0','printed',' ','','1','0','121670777239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3183,'','Cash','','2022-12-11 20:53:59','','0','12','2022-12-11 20:53:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670780409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3184,'','Cash','','2022-12-11 22:32:56','','0','12','2022-12-11 22:32:56','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121670781249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3185,'','Cash','','2022-12-11 22:45:21','','0','12','2022-12-11 22:45:21','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121670787300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3186,'','Cash','','2022-12-11 22:56:22','','0','12','2022-12-11 22:56:22','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121670787925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3187,'','Cash','','2022-12-12 00:46:34','','0','12','2022-12-12 00:46:34','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121670788586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3188,'','Cash','','2022-12-12 04:06:37','','0','12','2022-12-12 04:06:37','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121670805675','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3189,'','Cash','','2022-12-12 11:52:19','','0','12','2022-12-12 11:52:19','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121670835036','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3190,'','Cash','','2022-12-12 14:13:43','','0','12','2022-12-12 14:13:43','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121670843583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3191,'','Cash','','2022-12-12 16:23:11','','0','12','2022-12-12 16:23:11','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121670851370','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3192,'','Cash','','2022-12-12 20:08:10','','0','12','2022-12-12 20:08:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670864878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3193,'','Cash','','2022-12-12 20:51:03','','0','12','2022-12-12 20:51:03','','28500','28500','1','retail','0','28500','1','0','0','0','0','0','0','printed',' ','','1','0','121670864896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3194,'','Cash','','2022-12-12 21:43:18','','0','12','2022-12-12 21:43:18','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670868138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3195,'','Cash','','2022-12-12 22:04:19','','0','12','2022-12-12 22:04:19','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121670870798','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3196,'','Cash','','2022-12-12 23:12:51','','0','12','2022-12-12 23:12:51','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121670871955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3197,'','Cash','','2022-12-12 23:36:08','','0','12','2022-12-12 23:36:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670876043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3198,'','Cash','','2022-12-12 23:38:35','','0','12','2022-12-12 23:38:35','','1420','1420','1','retail','0','1420','1','0','0','0','0','0','0','printed',' ','','1','0','121670877383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3199,'','Cash','','2022-12-13 00:03:04','','0','12','2022-12-13 00:03:04','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121670877557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3200,'','Cash','','2022-12-13 00:34:03','','0','12','2022-12-13 00:34:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670879046','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3201,'','Cash','','2022-12-13 00:34:20','','0','12','2022-12-13 00:34:20','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121670880847','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3202,'','Cash','','2022-12-13 01:45:31','','0','12','2022-12-13 01:45:31','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121670885079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3203,'','Cash','','2022-12-13 03:43:09','','0','12','2022-12-13 03:43:09','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121670892136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3204,'','Cash','','2022-12-13 03:53:12','','0','12','2022-12-13 03:53:12','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121670892194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3205,'','Cash','','2022-12-13 04:17:31','','0','12','2022-12-13 04:17:31','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121670892798','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3206,'','Cash','','2022-12-13 06:24:30','','0','12','2022-12-13 06:24:30','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121670901791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3207,'','Cash','','2022-12-13 10:06:04','','0','12','2022-12-13 10:06:04','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121670915116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3208,'','Cash','','2022-12-13 18:12:00','','0','12','2022-12-13 18:12:00','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121670944297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3209,'','Cash','','2022-12-13 18:35:40','','0','12','2022-12-13 18:35:40','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121670945711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3210,'','Cash','','2022-12-13 18:38:27','','0','12','2022-12-13 18:38:27','','28500','28500','1','retail','0','28500','1','0','0','0','0','0','0','printed',' ','','1','0','121670945744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3211,'','Cash','','2022-12-13 19:35:04','','0','12','2022-12-13 19:35:04','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121670946783','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3212,'','Cash','','2022-12-13 20:45:25','','0','12','2022-12-13 20:45:25','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121670949309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3213,'','Cash','','2022-12-13 20:53:20','','0','12','2022-12-13 20:53:20','','970','970','1','retail','0','970','1','0','0','0','0','0','0','printed',' ','','1','0','121670953944','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3214,'','Cash','','2022-12-13 21:22:59','','0','12','2022-12-13 21:22:59','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121670954273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3215,'','Cash','','2022-12-13 21:55:04','','0','12','2022-12-13 21:55:04','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121670955842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3216,'','Cash','','2022-12-13 22:31:30','','0','12','2022-12-13 22:31:30','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121670957717','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3217,'','Cash','','2022-12-13 22:33:00','','0','12','2022-12-13 22:33:00','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121670959899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3218,'','Cash','','2022-12-13 22:55:16','','0','12','2022-12-13 22:55:16','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121670960004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3219,'','Cash','','2022-12-14 00:04:08','','0','12','2022-12-14 00:04:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670963525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3220,'','Cash','','2022-12-14 00:08:59','','0','12','2022-12-14 00:08:59','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121670965474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3221,'','Cash','','2022-12-14 00:15:16','','0','12','2022-12-14 00:15:16','','4800','4800','1','retail','0','4800','1','0','0','0','0','0','0','printed',' ','','1','0','121670965807','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3222,'','Cash','','2022-12-14 00:32:16','','0','12','2022-12-14 00:32:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670966124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3223,'','Cash','','2022-12-14 00:35:31','','0','12','2022-12-14 00:35:31','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121670967146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3224,'','Cash','','2022-12-14 00:53:50','','0','12','2022-12-14 00:53:51','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121670967335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3225,'','Cash','','2022-12-14 00:55:09','','0','12','2022-12-14 00:55:09','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121670968438','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3226,'','Cash','','2022-12-14 01:24:03','','0','12','2022-12-14 01:24:03','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121670970197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3227,'','Cash','','2022-12-14 01:52:41','','0','12','2022-12-14 01:52:41','','6330','6330','1','retail','0','6330','1','0','0','0','0','0','0','printed',' ','','1','0','121670971866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3228,'','Cash','','2022-12-14 02:42:18','','0','12','2022-12-14 02:42:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670974930','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3229,'','Cash','','2022-12-14 03:08:53','','0','12','2022-12-14 03:08:53','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121670975296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3230,'','Cash','','2022-12-14 03:09:28','','0','12','2022-12-14 03:09:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121670976537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3231,'','Cash','','2022-12-14 03:11:56','','0','12','2022-12-14 03:11:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670976573','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3232,'','Cash','','2022-12-14 03:12:39','','0','12','2022-12-14 03:12:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121670976720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3233,'','Cash','','2022-12-14 03:47:41','','0','12','2022-12-14 03:47:41','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121670976788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3234,'','Cash','','2022-12-14 06:26:30','','0','12','2022-12-14 06:26:30','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121670988340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3235,'','Cash','','2022-12-14 06:29:53','','0','12','2022-12-14 06:29:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121670988395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3236,'','Cash','','2022-12-14 16:16:31','','0','12','2022-12-14 16:16:31','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121671023676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3237,'','Cash','','2022-12-14 16:23:09','','0','12','2022-12-14 16:23:09','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671023799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3238,'','Cash','','2022-12-14 20:33:58','','0','12','2022-12-14 20:33:58','','3550','3550','1','retail','0','3550','1','0','0','0','0','0','0','printed',' ','','1','0','121671035125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3239,'','Cash','','2022-12-14 21:23:32','','0','12','2022-12-14 21:23:32','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121671039332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3240,'','Cash','','2022-12-14 22:14:28','','0','12','2022-12-14 22:14:28','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671045225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3241,'','Cash','','2022-12-14 22:20:45','','0','12','2022-12-14 22:20:45','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671045627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3242,'','Cash','','2022-12-14 22:32:22','','0','12','2022-12-14 22:32:22','','2090','2090','1','retail','0','2090','1','0','0','0','0','0','0','printed',' ','','1','0','121671046174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3243,'','Cash','','2022-12-14 22:37:37','','0','12','2022-12-14 22:37:37','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671046387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3244,'','Cash','','2022-12-14 22:44:36','','0','12','2022-12-14 22:44:36','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121671047027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3245,'','Cash','','2022-12-14 22:56:23','','0','12','2022-12-14 22:56:23','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121671047707','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3246,'','Cash','','2022-12-14 23:07:16','','0','12','2022-12-14 23:07:16','','1620','1620','1','retail','0','1620','1','0','0','0','0','0','0','printed',' ','','1','0','121671048312','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3247,'','Cash','','2022-12-15 00:50:29','','0','12','2022-12-15 00:50:30','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671052238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3248,'','Cash','','2022-12-15 00:56:20','','0','12','2022-12-15 00:56:20','','3350','3350','1','retail','0','3350','1','0','0','0','0','0','0','printed',' ','','1','0','121671054971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3249,'','Cash','','2022-12-15 00:58:19','','0','12','2022-12-15 00:58:19','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121671055057','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3250,'','Cash','','2022-12-15 03:51:57','','0','12','2022-12-15 03:51:57','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671064241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3251,'','Cash','','2022-12-15 04:14:56','','0','12','2022-12-15 04:14:56','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121671065523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3252,'','Cash','','2022-12-15 06:14:42','','0','12','2022-12-15 06:14:42','','3480','3480','1','retail','0','3480','1','0','0','0','0','0','0','printed',' ','','1','0','121671073928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3253,'','Cash','','2022-12-15 06:17:23','','0','12','2022-12-15 06:17:23','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121671074091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3254,'','Cash','','2022-12-15 06:30:33','','0','12','2022-12-15 06:30:33','','1390','1390','1','retail','0','1390','1','0','0','0','0','0','0','printed',' ','','1','0','121671074984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3255,'','Cash','','2022-12-15 07:25:16','','0','12','2022-12-15 07:25:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671077822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3256,'','Cash','','2022-12-15 08:19:52','','0','12','2022-12-15 08:19:52','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671078323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3257,'','Cash','','2022-12-15 08:20:43','','0','12','2022-12-15 08:20:43','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671081598','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3258,'','Cash','','2022-12-15 15:14:31','','0','12','2022-12-15 15:14:31','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121671097595','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3259,'','Cash','','2022-12-15 15:52:03','','0','12','2022-12-15 15:52:03','','7200','7200','1','retail','0','7200','1','0','0','0','0','0','0','printed',' ','','1','0','121671108710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3260,'','Cash','','2022-12-15 15:55:28','','0','12','2022-12-15 15:55:28','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121671108916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3261,'','Cash','','2022-12-15 17:23:03','','0','12','2022-12-15 17:23:03','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671108933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3262,'','Cash','','2022-12-15 17:56:54','','0','12','2022-12-15 17:56:54','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121671116185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3263,'','Cash','','2022-12-15 18:32:26','','0','12','2022-12-15 18:32:26','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121671118327','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3264,'','Cash','','2022-12-15 18:33:53','','0','12','2022-12-15 18:33:53','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671118352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3265,'','Cash','','2022-12-15 19:17:13','','0','12','2022-12-15 19:17:13','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121671118439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3266,'','Cash','','2022-12-15 20:21:53','','0','12','2022-12-15 20:21:53','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671121042','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3267,'','Cash','','2022-12-15 20:35:10','','0','12','2022-12-15 20:35:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121671125259','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3268,'','Cash','','2022-12-15 21:18:07','','0','12','2022-12-15 21:18:07','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121671128232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3269,'','Cash','','2022-12-15 21:44:45','','0','12','2022-12-15 21:44:45','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671129874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3270,'','Cash','','2022-12-15 21:55:39','','0','12','2022-12-15 21:55:39','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671129888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3271,'','Cash','','2022-12-15 22:40:05','','0','12','2022-12-15 22:40:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671133195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3272,'','Cash','','2022-12-15 22:40:17','','0','12','2022-12-15 22:40:17','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671133209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3273,'','Cash','','2022-12-15 22:40:41','','0','12','2022-12-15 22:40:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671133233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3274,'','Cash','','2022-12-15 22:55:08','','0','12','2022-12-15 22:55:08','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671133246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3275,'','Cash','','2022-12-15 23:03:34','','0','12','2022-12-15 23:03:34','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121671134111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3276,'','Cash','','2022-12-16 00:17:29','','0','12','2022-12-16 00:17:29','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121671139030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3277,'','Cash','','2022-12-16 00:25:46','','0','12','2022-12-16 00:25:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671139054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3278,'','Cash','','2022-12-16 00:37:35','','0','12','2022-12-16 00:37:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671139554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3279,'','Cash','','2022-12-16 01:06:31','','0','12','2022-12-16 01:06:31','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121671141962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3280,'','Cash','','2022-12-16 01:33:36','','0','12','2022-12-16 01:33:36','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121671143513','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3281,'','Cash','','2022-12-16 01:48:50','','0','12','2022-12-16 01:48:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671144376','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3282,'','Cash','','2022-12-16 02:05:37','','0','12','2022-12-16 02:05:37','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121671144536','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3283,'','Cash','','2022-12-16 03:23:37','','0','12','2022-12-16 03:23:37','','1280','1280','1','retail','0','1280','1','0','0','0','0','0','0','printed',' ','','1','0','121671150012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3284,'','Cash','','2022-12-16 05:47:32','','0','12','2022-12-16 05:47:32','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121671150231','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3285,'','Cash','','2022-12-16 06:56:01','','0','12','2022-12-16 06:56:01','','5580','5580','1','retail','0','5580','1','0','0','0','0','0','0','printed',' ','','1','0','121671162831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3286,'','Cash','','2022-12-16 07:10:15','','0','12','2022-12-16 07:10:15','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121671163129','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3287,'','Cash','','2022-12-16 13:48:33','','0','12','2022-12-16 13:48:33','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121671187548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3288,'','Cash','','2022-12-16 16:10:50','','0','12','2022-12-16 16:10:51','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121671189754','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3289,'','Cash','','2022-12-16 16:17:03','','0','12','2022-12-16 16:17:03','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671196474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3290,'','Cash','','2022-12-16 18:45:00','','0','12','2022-12-16 18:45:00','','2380','2380','1','retail','0','2380','1','0','0','0','0','0','0','printed',' ','','1','0','121671205210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3291,'','Cash','','2022-12-16 19:06:41','','0','12','2022-12-16 19:06:41','','1040','1040','1','retail','0','1040','1','0','0','0','0','0','0','printed',' ','','1','0','121671205712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3292,'','Cash','','2022-12-16 21:26:09','','0','12','2022-12-16 21:26:09','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671206813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3293,'','Cash','','2022-12-16 21:47:47','','0','12','2022-12-16 21:47:47','','3270','3270','1','retail','0','3270','1','0','0','0','0','0','0','printed',' ','','1','0','121671215177','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3294,'','Cash','','2022-12-16 21:50:20','','0','12','2022-12-16 21:50:20','','1760','1760','1','retail','0','1760','1','0','0','0','0','0','0','printed',' ','','1','0','121671216544','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3295,'','Cash','','2022-12-16 21:52:30','','0','12','2022-12-16 21:52:30','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121671216635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3296,'','Cash','','2022-12-16 21:55:04','','0','12','2022-12-16 21:55:04','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671216873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3297,'','Cash','','2022-12-16 22:23:42','','0','12','2022-12-16 22:23:42','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671217556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3298,'','Cash','','2022-12-16 22:37:03','','0','12','2022-12-16 22:37:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671218625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3299,'','Cash','','2022-12-16 22:50:14','','0','12','2022-12-16 22:50:14','','4390','4390','1','retail','0','4390','1','0','0','0','0','0','0','printed',' ','','1','0','121671219430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3300,'','Cash','','2022-12-16 23:17:44','','0','12','2022-12-16 23:17:44','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121671220290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3301,'','Cash','','2022-12-16 23:26:23','','0','12','2022-12-16 23:26:23','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121671221997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3302,'','Cash','','2022-12-16 23:34:45','','0','12','2022-12-16 23:34:45','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121671222387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3303,'','Cash','','2022-12-16 23:46:23','','0','12','2022-12-16 23:46:23','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671222889','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3304,'','Cash','','2022-12-16 23:48:53','','0','12','2022-12-16 23:48:53','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121671223588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3305,'','Cash','','2022-12-16 23:52:48','','0','12','2022-12-16 23:52:48','','610','610','1','retail','0','610','1','0','0','0','0','0','0','printed',' ','','1','0','121671223948','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3306,'','Cash','','2022-12-16 23:59:24','','0','12','2022-12-16 23:59:24','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671224341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3307,'','Cash','','2022-12-17 00:22:54','','0','12','2022-12-17 00:22:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671225761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3308,'','Cash','','2022-12-17 01:27:45','','0','12','2022-12-17 01:27:45','','4190','4190','1','retail','0','4190','1','0','0','0','0','0','0','printed',' ','','1','0','121671229210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3309,'','Cash','','2022-12-17 01:33:57','','0','12','2022-12-17 01:33:57','','1870','1870','1','retail','0','1870','1','0','0','0','0','0','0','printed',' ','','1','0','121671229676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3310,'','Cash','','2022-12-17 01:41:17','','0','12','2022-12-17 01:41:17','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121671230042','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3311,'','Cash','','2022-12-17 02:16:13','','0','12','2022-12-17 02:16:13','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121671230487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3312,'','Cash','','2022-12-17 03:20:12','','0','12','2022-12-17 03:20:12','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121671232731','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3313,'','Cash','','2022-12-17 03:26:54','','0','12','2022-12-17 03:26:54','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671236479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3314,'','Cash','','2022-12-17 03:27:49','','0','12','2022-12-17 03:27:49','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121671236821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3315,'','Cash','','2022-12-17 03:29:52','','0','12','2022-12-17 03:29:52','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121671236919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3316,'','Cash','','2022-12-17 03:40:15','','0','12','2022-12-17 03:40:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671236997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3317,'','Cash','','2022-12-17 05:08:41','','0','12','2022-12-17 05:08:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671240251','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3318,'','Cash','','2022-12-17 07:09:43','','0','12','2022-12-17 07:09:43','','2230','2230','1','retail','0','2230','1','0','0','0','0','0','0','printed',' ','','1','0','121671242931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3319,'','Cash','','2022-12-17 09:52:22','','0','12','2022-12-17 09:52:22','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121671256708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3320,'','Cash','','2022-12-17 11:23:02','','0','12','2022-12-17 11:23:02','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121671260294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3321,'','Cash','','2022-12-17 12:03:07','','0','12','2022-12-17 12:03:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671265571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3322,'','Cash','','2022-12-17 13:40:26','','0','12','2022-12-17 13:40:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671267797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3323,'','Cash','','2022-12-17 13:41:07','','0','12','2022-12-17 13:41:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671273632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3324,'','Cash','','2022-12-17 15:29:24','','0','12','2022-12-17 15:29:24','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121671276197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3325,'','Cash','','2022-12-17 15:41:31','','0','12','2022-12-17 15:41:31','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671280170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3326,'','Cash','','2022-12-17 15:42:24','','0','12','2022-12-17 15:42:24','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121671280903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3327,'','Cash','','2022-12-17 17:56:22','','0','12','2022-12-17 17:56:22','','2190','2190','1','retail','0','2190','1','0','0','0','0','0','0','printed',' ','','1','0','121671288842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3328,'','Cash','','2022-12-17 17:57:19','','0','12','2022-12-17 17:57:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671289001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3329,'','Cash','','2022-12-17 18:05:40','','0','12','2022-12-17 18:05:40','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121671289049','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3330,'','Cash','','2022-12-17 18:17:01','','0','12','2022-12-17 18:17:01','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671289546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3331,'','Cash','','2022-12-17 18:28:10','','0','12','2022-12-17 18:28:10','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671290226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3332,'','Cash','','2022-12-17 18:34:12','','0','12','2022-12-17 18:34:12','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121671290926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3333,'','Cash','','2022-12-17 18:38:48','','0','12','2022-12-17 18:38:48','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671291260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3334,'','Cash','','2022-12-17 19:02:21','','0','12','2022-12-17 19:02:21','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671291533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3335,'','Cash','','2022-12-17 20:03:05','','0','12','2022-12-17 20:03:05','','10280','10280','1','retail','0','10280','1','0','0','0','0','0','0','printed',' ','','1','0','121671296539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3336,'','Cash','','2022-12-17 20:14:18','','0','12','2022-12-17 20:14:18','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121671297102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3337,'','Cash','','2022-12-17 20:33:07','','0','12','2022-12-17 20:33:07','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121671297267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3338,'','Cash','','2022-12-17 21:00:05','','0','12','2022-12-17 21:00:05','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121671298406','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3339,'','Cash','','2022-12-17 22:27:36','','0','12','2022-12-17 22:27:36','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121671304685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3340,'','Cash','','2022-12-17 22:42:43','','0','12','2022-12-17 22:42:43','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671305261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3341,'','Cash','','2022-12-17 23:00:44','','0','12','2022-12-17 23:00:44','','1760','1760','1','retail','0','1760','1','0','0','0','0','0','0','printed',' ','','1','0','121671307197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3342,'','Cash','','2022-12-18 02:37:30','','0','12','2022-12-18 02:37:30','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671317165','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3343,'','Cash','','2022-12-18 02:45:40','','0','12','2022-12-18 02:45:40','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121671320545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3344,'','Cash','','2022-12-18 02:49:55','','0','12','2022-12-18 02:49:55','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121671320965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3345,'','Cash','','2022-12-18 04:09:52','','0','12','2022-12-18 04:09:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671321206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3346,'','Cash','','2022-12-18 04:44:10','','0','12','2022-12-18 04:44:10','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121671327801','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3347,'','Cash','','2022-12-18 05:57:51','','0','12','2022-12-18 05:57:51','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121671332182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3348,'','Cash','','2022-12-18 06:08:54','','0','12','2022-12-18 06:08:54','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121671332898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3349,'','Cash','','2022-12-18 06:14:59','','0','12','2022-12-18 06:14:59','','690','690','1','retail','0','690','1','0','0','0','0','0','0','printed',' ','','1','0','121671332941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3350,'','Cash','','2022-12-18 11:37:48','','0','12','2022-12-18 11:37:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671347638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3351,'','Cash','','2022-12-18 11:47:52','','0','12','2022-12-18 11:47:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671352678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3352,'','Cash','','2022-12-18 12:55:09','','0','12','2022-12-18 12:55:09','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121671355353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3353,'','Cash','','2022-12-18 13:50:37','','0','12','2022-12-18 13:50:37','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121671360625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3354,'','Cash','','2022-12-18 14:02:22','','0','12','2022-12-18 14:02:22','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121671361297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3355,'','Cash','','2022-12-18 16:08:29','','0','12','2022-12-18 16:08:29','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671368872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3356,'','Cash','','2022-12-18 19:09:39','','0','12','2022-12-18 19:09:39','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671369390','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3357,'','Cash','','2022-12-18 21:04:10','','0','12','2022-12-18 21:04:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671379804','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3358,'','Cash','','2022-12-18 22:49:56','','0','12','2022-12-18 22:49:56','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671386657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3359,'','Cash','','2022-12-18 22:54:51','','0','12','2022-12-18 22:54:51','','1450','1450','1','retail','0','1450','1','0','0','0','0','0','0','printed',' ','','1','0','121671393082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3360,'','Cash','','2022-12-18 23:14:20','','0','12','2022-12-18 23:14:20','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121671393359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3361,'','Cash','','2022-12-18 23:23:06','','0','12','2022-12-18 23:23:06','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121671394957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3362,'','Cash','','2022-12-18 23:35:30','','0','12','2022-12-18 23:35:30','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121671395710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3363,'','Cash','','2022-12-18 23:55:13','','0','12','2022-12-18 23:55:13','','6050','6050','1','retail','0','6050','1','0','0','0','0','0','0','printed',' ','','1','0','121671396866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3364,'','Cash','','2022-12-19 02:10:37','','0','12','2022-12-19 02:10:37','','28500','28500','1','retail','0','28500','1','0','0','0','0','0','0','printed',' ','','1','0','121671403044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3365,'','Cash','','2022-12-19 02:12:57','','0','12','2022-12-19 02:12:57','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671405043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3366,'','Cash','','2022-12-19 03:05:20','','0','12','2022-12-19 03:05:20','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121671408145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3367,'','Cash','','2022-12-19 03:39:13','','0','12','2022-12-19 03:39:13','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671408326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3368,'','Cash','','2022-12-19 05:07:10','','0','12','2022-12-19 05:07:10','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671415604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3369,'','Cash','','2022-12-19 05:22:59','','0','12','2022-12-19 05:22:59','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121671415671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3370,'','Cash','','2022-12-19 08:44:55','','0','12','2022-12-19 08:44:55','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671428684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3371,'','Cash','','2022-12-19 12:33:44','','0','12','2022-12-19 12:33:44','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121671438137','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3372,'','Cash','','2022-12-19 15:03:18','','0','12','2022-12-19 15:03:18','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121671442601','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3373,'','Cash','','2022-12-19 16:11:27','','0','12','2022-12-19 16:11:27','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671453970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3374,'','Cash','','2022-12-19 17:20:36','','0','12','2022-12-19 17:20:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671455514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3375,'','Cash','','2022-12-19 18:51:53','','0','12','2022-12-19 18:51:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671459662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3376,'','Cash','','2022-12-19 20:49:34','','0','12','2022-12-19 20:49:34','','4310','4310','1','retail','0','4310','1','0','0','0','0','0','0','printed',' ','','1','0','121671472095','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3377,'','Cash','','2022-12-19 20:51:48','','0','12','2022-12-19 20:51:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671472182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3378,'','Cash','','2022-12-19 21:51:59','','0','12','2022-12-19 21:51:59','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671475904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3379,'','Cash','','2022-12-19 22:26:11','','0','12','2022-12-19 22:26:11','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121671475927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3380,'','Cash','','2022-12-19 22:28:12','','0','12','2022-12-19 22:28:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671478015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3381,'','Cash','','2022-12-19 22:34:30','','0','12','2022-12-19 22:34:30','','26300','26300','1','retail','0','26300','1','0','0','0','0','0','0','printed',' ','','1','0','121671478374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3382,'','Cash','','2022-12-19 23:09:54','','0','12','2022-12-19 23:09:54','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121671480564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3383,'','Cash','','2022-12-19 23:26:54','','0','12','2022-12-19 23:26:54','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121671480659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3384,'','Cash','','2022-12-20 01:40:28','','0','12','2022-12-20 01:40:28','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121671489417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3385,'','Cash','','2022-12-20 03:10:28','','0','12','2022-12-20 03:10:28','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121671489633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3386,'','Cash','','2022-12-20 03:34:36','','0','12','2022-12-20 03:34:36','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671496462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3387,'','Cash','','2022-12-20 07:22:42','','0','12','2022-12-20 07:22:42','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121671510137','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3388,'','Cash','','2022-12-20 12:16:12','','0','12','2022-12-20 12:16:12','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121671524498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3389,'','Cash','','2022-12-20 12:17:25','','0','12','2022-12-20 12:17:25','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121671527776','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3390,'','Cash','','2022-12-20 14:36:42','','0','12','2022-12-20 14:36:42','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671530206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3391,'','Cash','','2022-12-20 14:39:07','','0','12','2022-12-20 14:39:07','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121671536323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3392,'','Cash','','2022-12-20 15:36:39','','0','12','2022-12-20 15:36:39','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121671539771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3393,'','Cash','','2022-12-20 15:56:44','','0','12','2022-12-20 15:56:44','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121671540982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3394,'','Cash','','2022-12-20 18:10:04','','0','12','2022-12-20 18:10:04','','5650','5650','1','retail','0','5650','1','0','0','0','0','0','0','printed',' ','','1','0','121671548703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3395,'','Cash','','2022-12-20 18:19:01','','0','12','2022-12-20 18:19:01','','5900','5900','1','retail','0','5900','1','0','0','0','0','0','0','printed',' ','','1','0','121671549520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3396,'','Cash','','2022-12-20 20:07:18','','0','12','2022-12-20 20:07:18','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671549545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3397,'','Cash','','2022-12-20 20:12:14','','0','12','2022-12-20 20:12:14','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121671556041','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3398,'','Cash','','2022-12-20 21:19:04','','0','12','2022-12-20 21:19:04','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121671556375','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3399,'','Cash','','2022-12-20 22:14:32','','0','12','2022-12-20 22:14:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671560349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3400,'','Cash','','2022-12-20 22:19:12','','0','12','2022-12-20 22:19:12','','13000','13000','1','retail','0','13000','1','0','0','0','0','0','0','printed',' ','','1','0','121671563737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3401,'','Cash','','2022-12-20 22:43:49','','0','12','2022-12-20 22:43:49','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121671563998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3402,'','Cash','','2022-12-20 22:53:11','','0','12','2022-12-20 22:53:11','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121671565966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3403,'','Cash','','2022-12-21 00:18:43','','0','12','2022-12-21 00:18:43','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121671566325','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3404,'','Cash','','2022-12-21 00:26:09','','0','12','2022-12-21 00:26:09','','1930','1930','1','retail','0','1930','1','0','0','0','0','0','0','printed',' ','','1','0','121671571184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3405,'','Cash','','2022-12-21 01:52:53','','0','12','2022-12-21 01:52:53','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121671576600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3406,'','Cash','','2022-12-21 02:16:55','','0','12','2022-12-21 02:16:55','','1420','1420','1','retail','0','1420','1','0','0','0','0','0','0','printed',' ','','1','0','121671576854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3407,'','Cash','','2022-12-21 03:37:47','','0','12','2022-12-21 03:37:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671583057','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3408,'','Cash','','2022-12-21 03:38:16','','0','12','2022-12-21 03:38:16','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121671583072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3409,'','Cash','','2022-12-21 03:44:08','','0','12','2022-12-21 03:44:08','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121671583101','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3410,'','Cash','','2022-12-21 06:39:30','','0','12','2022-12-21 06:39:30','','5570','5570','1','retail','0','5570','1','0','0','0','0','0','0','printed',' ','','1','0','121671593871','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3411,'','Cash','','2022-12-21 08:56:31','','0','12','2022-12-21 08:56:31','','5800','5800','1','retail','0','5800','1','0','0','0','0','0','0','printed',' ','','1','0','121671602126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3412,'','Cash','','2022-12-21 11:34:45','','0','12','2022-12-21 11:34:45','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121671611570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3413,'','Cash','','2022-12-21 15:16:57','','0','12','2022-12-21 15:16:57','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121671624980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3414,'','Cash','','2022-12-21 15:25:27','','0','12','2022-12-21 15:25:27','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671625517','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3415,'','Cash','','2022-12-21 16:43:27','','0','12','2022-12-21 16:43:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671625575','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3416,'','Cash','','2022-12-21 17:03:14','','0','12','2022-12-21 17:03:14','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121671630226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3417,'','Cash','','2022-12-21 17:53:11','','0','12','2022-12-21 17:53:11','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121671631400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3418,'','Cash','','2022-12-21 19:10:32','','0','12','2022-12-21 19:10:33','','2950','2950','1','retail','0','2950','1','0','0','0','0','0','0','printed',' ','','1','0','121671638963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3419,'','Cash','','2022-12-21 19:28:52','','0','12','2022-12-21 19:28:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671640121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3420,'','Cash','','2022-12-21 19:57:32','','0','12','2022-12-21 19:57:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671640136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3421,'','Cash','','2022-12-21 20:17:43','','0','12','2022-12-21 20:17:43','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121671641862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3422,'','Cash','','2022-12-21 20:22:58','','0','12','2022-12-21 20:22:58','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671643322','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3423,'','Cash','','2022-12-21 23:23:37','','0','12','2022-12-21 23:23:37','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121671647574','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3424,'','Cash','','2022-12-22 00:22:43','','0','12','2022-12-22 00:22:43','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121671654223','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3425,'','Cash','','2022-12-22 00:26:31','','0','12','2022-12-22 00:26:31','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121671657969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3426,'','Cash','','2022-12-22 00:31:26','','0','12','2022-12-22 00:31:26','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671658088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3427,'','Cash','','2022-12-22 00:36:46','','0','12','2022-12-22 00:36:46','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671658592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3428,'','Cash','','2022-12-22 01:06:01','','0','12','2022-12-22 01:06:01','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671658611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3429,'','Cash','','2022-12-22 01:18:30','','0','12','2022-12-22 01:18:30','','3480','3480','1','retail','0','3480','1','0','0','0','0','0','0','printed',' ','','1','0','121671660369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3430,'','Cash','','2022-12-22 01:28:26','','0','12','2022-12-22 01:28:26','','2120','2120','1','retail','0','2120','1','0','0','0','0','0','0','printed',' ','','1','0','121671661160','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3431,'','Cash','','2022-12-22 01:39:47','','0','12','2022-12-22 01:39:47','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671661712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3432,'','Cash','','2022-12-22 04:36:40','','0','12','2022-12-22 04:36:40','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121671672933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3433,'','Cash','','2022-12-22 06:16:45','','0','12','2022-12-22 06:16:45','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121671678919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3434,'','Cash','','2022-12-22 10:50:29','','0','12','2022-12-22 10:50:29','','4330','4330','1','retail','0','4330','1','0','0','0','0','0','0','printed',' ','','1','0','121671695397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3435,'','Cash','','2022-12-22 14:59:37','','0','12','2022-12-22 14:59:37','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121671710294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3436,'','Cash','','2022-12-22 15:44:05','','0','12','2022-12-22 15:44:05','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121671710611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3437,'','Cash','','2022-12-22 15:46:26','','0','12','2022-12-22 15:46:26','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121671713052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3438,'','Cash','','2022-12-22 15:51:05','','0','12','2022-12-22 15:51:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671713191','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3439,'','Cash','','2022-12-22 17:32:43','','0','12','2022-12-22 17:32:43','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121671713471','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3440,'','Cash','','2022-12-22 19:06:39','','0','12','2022-12-22 19:06:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671725180','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3441,'','Cash','','2022-12-22 20:48:10','','0','12','2022-12-22 20:48:10','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671725207','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3442,'','Cash','','2022-12-22 20:50:34','','0','12','2022-12-22 20:50:34','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121671731296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3443,'','Cash','','2022-12-23 00:28:45','','0','12','2022-12-23 00:28:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671744382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3444,'','Cash','','2022-12-23 00:34:48','','0','12','2022-12-23 00:34:48','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121671744875','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3445,'','Cash','','2022-12-23 00:51:10','','0','12','2022-12-23 00:51:10','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121671745856','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3446,'','Cash','','2022-12-23 01:26:51','','0','12','2022-12-23 01:26:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671745876','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3447,'','Cash','','2022-12-23 01:54:39','','0','12','2022-12-23 01:54:39','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121671748019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3448,'','Cash','','2022-12-23 01:55:10','','0','12','2022-12-23 01:55:10','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121671749688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3449,'','Cash','','2022-12-23 02:10:34','','0','12','2022-12-23 02:10:34','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121671749715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3450,'','Cash','','2022-12-23 03:33:20','','0','12','2022-12-23 03:33:20','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121671750642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3451,'','Cash','','2022-12-23 06:17:16','','0','12','2022-12-23 06:17:16','','8600','8600','1','retail','0','8600','1','0','0','0','0','0','0','printed',' ','','1','0','121671765283','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3452,'','Cash','','2022-12-23 06:19:31','','0','12','2022-12-23 06:19:31','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671765467','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3453,'','Cash','','2022-12-23 11:56:04','','0','12','2022-12-23 11:56:04','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121671779580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3454,'','Cash','','2022-12-23 13:48:01','','0','12','2022-12-23 13:48:01','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121671785845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3455,'','Cash','','2022-12-23 14:28:04','','0','12','2022-12-23 14:28:04','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121671792490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3456,'','Cash','','2022-12-23 17:16:25','','0','12','2022-12-23 17:16:25','','2070','2070','1','retail','0','2070','1','0','0','0','0','0','0','printed',' ','','1','0','121671804636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3457,'','Cash','','2022-12-23 18:46:36','','0','12','2022-12-23 18:46:36','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','','1','0','121671809122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3458,'','Cash','','2022-12-23 18:54:32','','0','12','2022-12-23 18:54:32','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121671810547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3459,'','Cash','','2022-12-23 20:05:38','','0','12','2022-12-23 20:05:38','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121671811035','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3460,'','Cash','','2022-12-23 20:29:15','','0','12','2022-12-23 20:29:15','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671815143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3461,'','Cash','','2022-12-23 22:45:22','','0','12','2022-12-23 22:45:22','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121671824705','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3462,'','Cash','','2022-12-23 23:14:03','','0','12','2022-12-23 23:14:03','','1010','1010','1','retail','0','1010','1','0','0','0','0','0','0','printed',' ','','1','0','121671826416','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3463,'','Cash','','2022-12-23 23:50:08','','0','12','2022-12-23 23:50:08','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121671826454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3464,'','Cash','','2022-12-23 23:53:43','','0','12','2022-12-23 23:53:43','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121671828619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3465,'','Cash','','2022-12-24 00:03:54','','0','12','2022-12-24 00:03:54','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121671829272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3466,'','Cash','','2022-12-24 00:15:04','','0','12','2022-12-24 00:15:04','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121671829439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3467,'','Cash','','2022-12-24 00:50:27','','0','12','2022-12-24 00:50:27','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671830110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3468,'','Cash','','2022-12-24 01:26:12','','0','12','2022-12-24 01:26:12','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121671832232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3469,'','Cash','','2022-12-24 03:46:23','','0','12','2022-12-24 03:46:23','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121671842672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3470,'','Cash','','2022-12-24 04:33:43','','0','12','2022-12-24 04:33:43','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121671842969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3471,'','Cash','','2022-12-24 15:10:00','','0','12','2022-12-24 15:10:01','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121671877625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3472,'','Cash','','2022-12-24 18:42:15','','0','12','2022-12-24 18:42:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121671894425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3473,'','Cash','','2022-12-24 19:20:35','','0','12','2022-12-24 19:20:35','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121671896593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3474,'','Cash','','2022-12-24 19:58:49','','0','12','2022-12-24 19:58:49','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121671901108','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3475,'','Cash','','2022-12-24 20:01:08','','0','12','2022-12-24 20:01:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671901134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3476,'','Cash','','2022-12-24 20:02:48','','0','12','2022-12-24 20:02:48','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121671901277','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3477,'','Cash','','2022-12-24 20:25:24','','0','12','2022-12-24 20:25:24','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121671902693','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3478,'','Cash','','2022-12-24 20:31:59','','0','12','2022-12-24 20:31:59','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671902767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3479,'','Cash','','2022-12-24 21:00:41','','0','12','2022-12-24 21:00:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671904752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3480,'','Cash','','2022-12-24 21:06:49','','0','12','2022-12-24 21:06:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671904899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3481,'','Cash','','2022-12-24 21:07:13','','0','12','2022-12-24 21:07:13','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121671905221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3482,'','Cash','','2022-12-24 21:35:25','','0','12','2022-12-24 21:35:25','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121671905304','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3483,'','Cash','','2022-12-24 21:53:05','','0','12','2022-12-24 21:53:05','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121671907008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3484,'','Cash','','2022-12-24 21:55:17','','0','12','2022-12-24 21:55:17','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671907989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3485,'','Cash','','2022-12-24 22:41:04','','0','12','2022-12-24 22:41:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671910021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3486,'','Cash','','2022-12-24 22:43:04','','0','12','2022-12-24 22:43:04','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121671910957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3487,'','Cash','','2022-12-24 23:33:10','','0','12','2022-12-24 23:33:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671911116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3488,'','Cash','','2022-12-25 00:31:02','','0','12','2022-12-25 00:31:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671913995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3489,'','Cash','','2022-12-25 00:37:31','','0','12','2022-12-25 00:37:31','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671917839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3490,'','Cash','','2022-12-25 01:41:52','','0','12','2022-12-25 01:41:52','','1720','1720','1','retail','0','1720','1','0','0','0','0','0','0','printed',' ','','1','0','121671917855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3491,'','Cash','','2022-12-25 01:43:47','','0','12','2022-12-25 01:43:47','','1210','1210','1','retail','0','1210','1','0','0','0','0','0','0','printed',' ','','1','0','121671921724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3492,'','Cash','','2022-12-25 02:23:01','','0','12','2022-12-25 02:23:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671922087','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3493,'','Cash','','2022-12-25 02:25:56','','0','12','2022-12-25 02:25:56','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121671924333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3494,'','Cash','','2022-12-25 02:29:59','','0','12','2022-12-25 02:29:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671924588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3495,'','Cash','','2022-12-25 02:32:16','','0','12','2022-12-25 02:32:16','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121671924724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3496,'','Cash','','2022-12-25 02:35:37','','0','12','2022-12-25 02:35:37','','2650','2650','1','retail','0','2650','1','0','0','0','0','0','0','printed',' ','','1','0','121671924741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3497,'','Cash','','2022-12-25 02:51:12','','0','12','2022-12-25 02:51:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671925864','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3498,'','Cash','','2022-12-25 02:55:57','','0','12','2022-12-25 02:55:57','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121671925877','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3499,'','Cash','','2022-12-25 03:24:17','','0','12','2022-12-25 03:24:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671926166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3500,'','Cash','','2022-12-25 03:44:46','','0','12','2022-12-25 03:44:46','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121671927868','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3501,'','Cash','','2022-12-25 05:41:41','','0','12','2022-12-25 05:41:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671936092','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3502,'','Cash','','2022-12-25 10:46:36','','0','12','2022-12-25 10:46:37','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121671948989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3503,'','Cash','','2022-12-25 17:08:50','','0','12','2022-12-25 17:08:50','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121671972509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3504,'','Cash','','2022-12-25 19:37:40','','0','12','2022-12-25 19:37:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671977335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3505,'','Cash','','2022-12-25 19:41:06','','0','12','2022-12-25 19:41:06','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121671986358','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3506,'','Cash','','2022-12-25 19:46:53','','0','12','2022-12-25 19:46:53','','1110','1110','1','retail','0','1110','1','0','0','0','0','0','0','printed',' ','','1','0','121671986472','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3507,'','Cash','','2022-12-25 20:30:07','','0','12','2022-12-25 20:30:07','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121671987040','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3508,'','Cash','','2022-12-25 22:02:00','','0','12','2022-12-25 22:02:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671989413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3509,'','Cash','','2022-12-25 22:18:19','','0','12','2022-12-25 22:18:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671994924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3510,'','Cash','','2022-12-25 22:23:59','','0','12','2022-12-25 22:23:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121671996227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3511,'','Cash','','2022-12-25 23:01:09','','0','12','2022-12-25 23:01:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121671996243','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3512,'','Cash','','2022-12-25 23:12:50','','0','12','2022-12-25 23:12:50','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121671999136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3513,'','Cash','','2022-12-25 23:51:47','','0','12','2022-12-25 23:51:47','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121671999297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3514,'','Cash','','2022-12-25 23:54:12','','0','12','2022-12-25 23:54:12','','8250','8250','1','retail','0','8250','1','0','0','0','0','0','0','printed',' ','','1','0','121672001516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3515,'','Cash','','2022-12-26 00:52:10','','0','12','2022-12-26 00:52:10','','2810','2810','1','retail','0','2810','1','0','0','0','0','0','0','printed',' ','','1','0','121672003078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3516,'','Cash','','2022-12-26 01:07:04','','0','12','2022-12-26 01:07:04','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121672005251','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3517,'','Cash','','2022-12-26 01:27:16','','0','12','2022-12-26 01:27:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672006030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3518,'','Cash','','2022-12-26 02:18:23','','0','12','2022-12-26 02:18:23','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121672007242','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3519,'','Cash','','2022-12-26 04:18:22','','0','12','2022-12-26 04:18:22','','5660','5660','1','retail','0','5660','1','0','0','0','0','0','0','printed',' ','','1','0','121672010408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3520,'','Cash','','2022-12-26 05:36:36','','0','12','2022-12-26 05:36:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672017614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3521,'','Cash','','2022-12-26 05:55:00','','0','12','2022-12-26 05:55:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672023285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3522,'','Cash','','2022-12-26 06:51:13','','0','12','2022-12-26 06:51:13','','3900','3900','1','retail','0','3900','1','0','0','0','0','0','0','printed',' ','','1','0','121672023304','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3523,'','Cash','','2022-12-26 16:57:57','','0','12','2022-12-26 16:57:57','','10500','10500','1','retail','0','10500','1','0','0','0','0','0','0','printed',' ','','1','0','121672058477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3524,'','Cash','','2022-12-26 18:52:44','','0','12','2022-12-26 18:52:44','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121672069961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3525,'','Cash','','2022-12-26 20:11:39','','0','12','2022-12-26 20:11:39','','25350','25350','1','retail','0','25350','1','0','0','0','0','0','0','printed',' ','','1','0','121672074583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3526,'','Cash','','2022-12-26 21:59:18','','0','12','2022-12-26 21:59:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672081147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3527,'','Cash','','2022-12-26 21:59:42','','0','12','2022-12-26 21:59:42','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672081165','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3528,'','Cash','','2022-12-26 22:12:22','','0','12','2022-12-26 22:12:22','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121672081930','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3529,'','Cash','','2022-12-26 22:56:11','','0','12','2022-12-26 22:56:11','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672084548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3530,'','Cash','','2022-12-26 23:03:34','','0','12','2022-12-26 23:03:34','','1310','1310','1','retail','0','1310','1','0','0','0','0','0','0','printed',' ','','1','0','121672084872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3531,'','Cash','','2022-12-26 23:05:17','','0','12','2022-12-26 23:05:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672085108','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3532,'','Cash','','2022-12-26 23:11:22','','0','12','2022-12-26 23:11:22','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121672085122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3533,'','Cash','','2022-12-26 23:11:39','','0','12','2022-12-26 23:11:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672085488','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3534,'','Cash','','2022-12-26 23:24:24','','0','12','2022-12-26 23:24:24','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121672085503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3535,'','Cash','','2022-12-26 23:33:43','','0','12','2022-12-26 23:33:43','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121672086328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3536,'','Cash','','2022-12-27 00:08:33','','0','12','2022-12-27 00:08:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672088896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3537,'','Cash','','2022-12-27 00:13:17','','0','12','2022-12-27 00:13:18','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672089168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3538,'','Cash','','2022-12-27 00:14:17','','0','12','2022-12-27 00:14:17','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121672089202','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3539,'','Cash','','2022-12-27 00:39:22','','0','12','2022-12-27 00:39:22','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121672089453','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3540,'','Cash','','2022-12-27 01:10:49','','0','12','2022-12-27 01:10:49','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672092637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3541,'','Cash','','2022-12-27 01:34:53','','0','12','2022-12-27 01:34:53','','2510','2510','1','retail','0','2510','1','0','0','0','0','0','0','printed',' ','','1','0','121672092818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3542,'','Cash','','2022-12-27 01:48:57','','0','12','2022-12-27 01:48:57','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121672094239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3543,'','Cash','','2022-12-27 02:55:07','','0','12','2022-12-27 02:55:08','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672094988','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3544,'','Cash','','2022-12-27 03:03:08','','0','12','2022-12-27 03:03:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672098913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3545,'','Cash','','2022-12-27 06:43:15','','0','12','2022-12-27 06:43:15','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121672112311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3546,'','Cash','','2022-12-27 11:06:43','','0','12','2022-12-27 11:06:43','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121672128330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3547,'','Cash','','2022-12-27 14:48:53','','0','12','2022-12-27 14:48:53','','2830','2830','1','retail','0','2830','1','0','0','0','0','0','0','printed',' ','','1','0','121672141389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3548,'','Cash','','2022-12-27 18:44:19','','0','12','2022-12-27 18:44:20','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672155845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3549,'','Cash','','2022-12-27 18:48:38','','0','12','2022-12-27 18:48:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672155864','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3550,'','Cash','','2022-12-27 19:50:59','','0','12','2022-12-27 19:50:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672156123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3551,'','Cash','','2022-12-27 20:44:27','','0','12','2022-12-27 20:44:27','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121672159865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3552,'','Cash','','2022-12-27 20:49:45','','0','12','2022-12-27 20:49:45','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672163132','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3553,'','Cash','','2022-12-27 21:04:37','','0','12','2022-12-27 21:04:37','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672163390','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3554,'','Cash','','2022-12-27 21:06:41','','0','12','2022-12-27 21:06:41','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672164391','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3555,'','Cash','','2022-12-27 21:12:37','','0','12','2022-12-27 21:12:37','','3610','3610','1','retail','0','3610','1','0','0','0','0','0','0','printed',' ','','1','0','121672164675','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3556,'','Cash','','2022-12-27 22:56:20','','0','12','2022-12-27 22:56:20','','1610','1610','1','retail','0','1610','1','0','0','0','0','0','0','printed',' ','','1','0','121672164789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3557,'','Cash','','2022-12-27 23:43:41','','0','12','2022-12-27 23:43:41','','890','890','1','retail','0','890','1','0','0','0','0','0','0','printed',' ','','1','0','121672171086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3558,'','Cash','','2022-12-27 23:48:51','','0','12','2022-12-27 23:48:51','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121672174095','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3559,'','Cash','','2022-12-28 00:03:49','','0','12','2022-12-28 00:03:50','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121672174280','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3560,'','Cash','','2022-12-28 00:20:31','','0','12','2022-12-28 00:20:31','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672176022','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3561,'','Cash','','2022-12-28 00:24:21','','0','12','2022-12-28 00:24:21','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121672176103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3562,'','Cash','','2022-12-28 00:35:19','','0','12','2022-12-28 00:35:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121672176265','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3563,'','Cash','','2022-12-28 01:00:14','','0','12','2022-12-28 01:00:15','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121672178400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3564,'','Cash','','2022-12-28 01:31:35','','0','12','2022-12-28 01:31:35','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672178419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3565,'','Cash','','2022-12-28 01:37:53','','0','12','2022-12-28 01:37:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672180662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3566,'','Cash','','2022-12-28 01:53:53','','0','12','2022-12-28 01:53:53','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121672180677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3567,'','Cash','','2022-12-28 09:25:38','','0','12','2022-12-28 09:25:39','','3700','3700','1','retail','0','3700','1','0','0','0','0','0','0','printed',' ','','1','0','121672200552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3568,'','Cash','','2022-12-28 13:10:25','','0','12','2022-12-28 13:10:25','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121672222206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3569,'','Cash','','2022-12-28 17:05:18','','0','12','2022-12-28 17:05:18','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672234308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3570,'','Cash','','2022-12-28 18:37:16','','0','12','2022-12-28 18:37:16','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121672241749','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3571,'','Cash','','2022-12-28 18:39:04','','0','12','2022-12-28 18:39:04','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672241932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3572,'','Cash','','2022-12-28 18:59:28','','0','12','2022-12-28 18:59:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672241950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3573,'','Cash','','2022-12-28 20:35:59','','0','12','2022-12-28 20:35:59','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121672243176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3574,'','Cash','','2022-12-28 21:33:13','','0','12','2022-12-28 21:33:13','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121672248964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3575,'','Cash','','2022-12-28 21:44:39','','0','12','2022-12-28 21:44:39','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121672252507','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3576,'','Cash','','2022-12-28 21:55:33','','0','12','2022-12-28 21:55:33','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672253725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3577,'','Cash','','2022-12-28 22:05:41','','0','12','2022-12-28 22:05:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672253741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3578,'','Cash','','2022-12-28 22:14:05','','0','12','2022-12-28 22:14:05','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121672254516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3579,'','Cash','','2022-12-28 23:31:35','','0','12','2022-12-28 23:31:35','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672259421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3580,'','Cash','','2022-12-28 23:48:30','','0','12','2022-12-28 23:48:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672259500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3581,'','Cash','','2022-12-29 00:15:28','','0','12','2022-12-29 00:15:28','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672262119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3582,'','Cash','','2022-12-29 00:59:11','','0','12','2022-12-29 00:59:11','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121672264709','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3583,'','Cash','','2022-12-29 01:02:04','','0','12','2022-12-29 01:02:04','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672264795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3584,'','Cash','','2022-12-29 01:03:00','','0','12','2022-12-29 01:03:00','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672264970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3585,'','Cash','','2022-12-29 01:03:16','','0','12','2022-12-29 01:03:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672264986','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3586,'','Cash','','2022-12-29 01:17:02','','0','12','2022-12-29 01:17:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672265004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3587,'','Cash','','2022-12-29 01:48:12','','0','12','2022-12-29 01:48:12','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121672267652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3588,'','Cash','','2022-12-29 01:55:23','','0','12','2022-12-29 01:55:23','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121672268109','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3589,'','Cash','','2022-12-29 02:02:17','','0','12','2022-12-29 02:02:17','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121672268127','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3590,'','Cash','','2022-12-29 02:08:52','','0','12','2022-12-29 02:08:52','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121672268922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3591,'','Cash','','2022-12-29 02:23:22','','0','12','2022-12-29 02:23:22','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121672268938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3592,'','Cash','','2022-12-29 02:35:03','','0','12','2022-12-29 02:35:03','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121672269817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3593,'','Cash','','2022-12-29 03:51:43','','0','12','2022-12-29 03:51:43','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121672270507','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3594,'','Cash','','2022-12-29 03:58:13','','0','12','2022-12-29 03:58:13','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121672275121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3595,'','Cash','','2022-12-29 06:08:02','','0','12','2022-12-29 06:08:02','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121672283240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3596,'','Cash','','2022-12-29 07:58:11','','0','12','2022-12-29 07:58:11','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121672283492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3597,'','Cash','','2022-12-29 17:21:22','','0','12','2022-12-29 17:21:22','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121672323663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3598,'','Cash','','2022-12-29 17:44:18','','0','12','2022-12-29 17:44:18','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121672324187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3599,'','Cash','','2022-12-29 17:46:22','','0','12','2022-12-29 17:46:22','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672325130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3600,'','Cash','','2022-12-29 18:22:20','','0','12','2022-12-29 18:22:20','','8800','8800','1','retail','0','8800','1','0','0','0','0','0','0','printed',' ','','1','0','121672327321','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3601,'','Cash','','2022-12-29 18:34:39','','0','12','2022-12-29 18:34:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672328057','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3602,'','Cash','','2022-12-29 19:00:49','','0','12','2022-12-29 19:00:49','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672329638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3603,'','Cash','','2022-12-29 19:34:21','','0','12','2022-12-29 19:34:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121672329653','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3604,'','Cash','','2022-12-29 20:42:32','','0','12','2022-12-29 20:42:32','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672335739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3605,'','Cash','','2022-12-29 21:08:47','','0','12','2022-12-29 21:08:47','','780','780','1','retail','0','780','1','0','0','0','0','0','0','printed',' ','','1','0','121672335756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3606,'','Cash','','2022-12-29 22:46:35','','0','12','2022-12-29 22:46:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672337479','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3607,'','Cash','','2022-12-29 23:14:17','','0','12','2022-12-29 23:14:17','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121672344832','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3608,'','Cash','','2022-12-29 23:46:16','','0','12','2022-12-29 23:46:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672346764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3609,'','Cash','','2022-12-30 00:28:00','','0','12','2022-12-30 00:28:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672349269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3610,'','Cash','','2022-12-30 00:28:27','','0','12','2022-12-30 00:28:27','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121672349285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3611,'','Cash','','2022-12-30 00:28:44','','0','12','2022-12-30 00:28:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672349311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3612,'','Cash','','2022-12-30 00:31:09','','0','12','2022-12-30 00:31:09','','3950','3950','1','retail','0','3950','1','0','0','0','0','0','0','printed',' ','','1','0','121672349439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3613,'','Cash','','2022-12-30 00:50:54','','0','12','2022-12-30 00:50:54','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672350642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3614,'','Cash','','2022-12-30 01:39:32','','0','12','2022-12-30 01:39:32','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121672350662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3615,'','Cash','','2022-12-30 01:58:06','','0','12','2022-12-30 01:58:06','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121672353579','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3616,'','Cash','','2022-12-30 03:59:41','','0','12','2022-12-30 03:59:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672355785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3617,'','Cash','','2022-12-30 03:59:56','','0','12','2022-12-30 03:59:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672361985','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3618,'','Cash','','2022-12-30 04:36:18','','0','12','2022-12-30 04:36:18','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121672362021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3619,'','Cash','','2022-12-30 04:52:44','','0','12','2022-12-30 04:52:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672365150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3620,'','Cash','','2022-12-30 07:12:26','','0','12','2022-12-30 07:12:26','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672373534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3621,'','Cash','','2022-12-30 16:26:05','','0','12','2022-12-30 16:26:05','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121672406726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3622,'','Cash','','2022-12-30 18:01:21','','0','12','2022-12-30 18:01:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672406774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3623,'','Cash','','2022-12-30 18:15:37','','0','12','2022-12-30 18:15:37','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121672413324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3624,'','Cash','','2022-12-30 18:17:55','','0','12','2022-12-30 18:17:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121672413347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3625,'','Cash','','2022-12-30 20:21:20','','0','12','2022-12-30 20:21:20','','6050','6050','1','retail','0','6050','1','0','0','0','0','0','0','printed',' ','','1','0','121672420825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3626,'','Cash','','2022-12-30 20:42:16','','0','12','2022-12-30 20:42:16','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121672420896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3627,'','Cash','','2022-12-30 21:29:07','','0','12','2022-12-30 21:29:07','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121672422831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3628,'','Cash','','2022-12-30 21:43:28','','0','12','2022-12-30 21:43:28','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121672425775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3629,'','Cash','','2022-12-30 21:51:24','','0','12','2022-12-30 21:51:24','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672425812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3630,'','Cash','','2022-12-30 22:26:07','','0','12','2022-12-30 22:26:07','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121672426288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3631,'','Cash','','2022-12-30 22:35:25','','0','12','2022-12-30 22:35:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672428370','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3632,'','Cash','','2022-12-30 22:47:10','','0','12','2022-12-30 22:47:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121672428982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3633,'','Cash','','2022-12-30 23:19:39','','0','12','2022-12-30 23:19:39','','1890','1890','1','retail','0','1890','1','0','0','0','0','0','0','printed',' ','','1','0','121672431528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3634,'','Cash','','2022-12-30 23:30:20','','0','12','2022-12-30 23:30:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672431583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3635,'','Cash','','2022-12-30 23:44:21','','0','12','2022-12-30 23:44:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672433048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3636,'','Cash','','2022-12-31 00:11:02','','0','12','2022-12-31 00:11:02','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121672433068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3637,'','Cash','','2022-12-31 01:02:22','','0','12','2022-12-31 01:02:22','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121672437713','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3638,'','Cash','','2022-12-31 01:09:24','','0','12','2022-12-31 01:09:24','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121672438133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3639,'','Cash','','2022-12-31 02:09:32','','0','12','2022-12-31 02:09:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672438171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3640,'','Cash','','2022-12-31 03:14:55','','0','12','2022-12-31 03:14:55','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121672441778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3641,'','Cash','','2022-12-31 04:20:02','','0','12','2022-12-31 04:20:02','','17250','17250','1','retail','0','17250','1','0','0','0','0','0','0','printed',' ','','1','0','121672445743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3642,'','Cash','','2022-12-31 13:32:24','','0','12','2022-12-31 13:32:24','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121672482715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3643,'','Cash','','2022-12-31 15:09:24','','0','12','2022-12-31 15:09:24','','1070','1070','1','retail','0','1070','1','0','0','0','0','0','0','printed',' ','','1','0','121672488446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3644,'','Cash','','2022-12-31 15:35:10','','0','12','2022-12-31 15:35:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672488571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3645,'','Cash','','2022-12-31 16:18:40','','0','12','2022-12-31 16:18:40','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672492661','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3646,'','Cash','','2022-12-31 17:22:42','','0','12','2022-12-31 17:22:42','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121672492834','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3647,'','Cash','','2022-12-31 18:13:03','','0','12','2022-12-31 18:13:03','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121672499550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3648,'','Cash','','2022-12-31 19:10:40','','0','12','2022-12-31 19:10:40','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672503014','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3649,'','Cash','','2022-12-31 20:34:31','','0','12','2022-12-31 20:34:31','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672503050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3650,'','Cash','','2022-12-31 20:50:57','','0','12','2022-12-31 20:50:57','','29200','29200','1','retail','0','29200','1','0','0','0','0','0','0','printed',' ','','1','0','121672508817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3651,'','Cash','','2022-12-31 20:54:55','','0','12','2022-12-31 20:54:55','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121672509064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3652,'','Cash','','2022-12-31 20:58:38','','0','12','2022-12-31 20:58:38','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121672509412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3653,'','Cash','','2022-12-31 21:00:32','','0','12','2022-12-31 21:00:32','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121672509538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3654,'','Cash','','2022-12-31 21:24:27','','0','12','2022-12-31 21:24:27','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121672509687','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3655,'','Cash','','2022-12-31 22:00:25','','0','12','2022-12-31 22:00:25','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121672511072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3656,'','Cash','','2022-12-31 22:04:26','','0','12','2022-12-31 22:04:26','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672513360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3657,'','Cash','','2022-12-31 22:06:43','','0','12','2022-12-31 22:06:43','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121672513533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3658,'','Cash','','2022-12-31 22:19:16','','0','12','2022-12-31 22:19:16','','6060','6060','1','retail','0','6060','1','0','0','0','0','0','0','printed',' ','','1','0','121672513612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3659,'','Cash','','2022-12-31 22:20:07','','0','12','2022-12-31 22:20:07','','2390','2390','1','retail','0','2390','1','0','0','0','0','0','0','printed',' ','','1','0','121672514362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3660,'','Cash','','2022-12-31 22:26:57','','0','12','2022-12-31 22:26:57','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121672514586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3661,'','Cash','','2022-12-31 22:33:56','','0','12','2022-12-31 22:33:56','','2930','2930','1','retail','0','2930','1','0','0','0','0','0','0','printed',' ','','1','0','121672514899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3662,'','Cash','','2022-12-31 22:41:10','','0','12','2022-12-31 22:41:10','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121672515629','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3663,'','Cash','','2022-12-31 22:49:39','','0','12','2022-12-31 22:49:39','','4150','4150','1','retail','0','4150','1','0','0','0','0','0','0','printed',' ','','1','0','121672515827','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3664,'','Cash','','2022-12-31 22:50:56','','0','12','2022-12-31 22:50:56','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121672516246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3665,'','Cash','','2022-12-31 22:52:11','','0','12','2022-12-31 22:52:11','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672516316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3666,'','Cash','','2022-12-31 23:20:04','','0','12','2022-12-31 23:20:04','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672517959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3667,'','Cash','','2022-12-31 23:23:52','','0','12','2022-12-31 23:23:52','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121672518056','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3668,'','Cash','','2022-12-31 23:31:16','','0','12','2022-12-31 23:31:16','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672518513','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3669,'','Cash','','2022-12-31 23:31:40','','0','12','2022-12-31 23:31:40','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672518681','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3670,'','Cash','','2022-12-31 23:34:15','','0','12','2022-12-31 23:34:15','','3910','3910','1','retail','0','3910','1','0','0','0','0','0','0','printed',' ','','1','0','121672518737','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3671,'','Cash','','2022-12-31 23:39:26','','0','12','2022-12-31 23:39:26','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121672518956','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3672,'','Cash','','2022-12-31 23:40:12','','0','12','2022-12-31 23:40:12','','3340','3340','1','retail','0','3340','1','0','0','0','0','0','0','printed',' ','','1','0','121672519171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3673,'','Cash','','2022-12-31 23:48:50','','0','12','2022-12-31 23:48:50','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121672519714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3674,'','Cash','','2022-12-31 23:51:43','','0','12','2022-12-31 23:51:43','','35000','35000','1','retail','0','35000','1','0','0','0','0','0','0','printed',' ','','1','0','121672519867','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3675,'','Cash','','2023-01-01 00:24:49','','0','12','2023-01-01 00:24:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672520947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3676,'','Cash','','2023-01-01 00:41:52','','0','12','2023-01-01 00:41:52','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121672521893','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3677,'','Cash','','2023-01-01 00:45:40','','0','12','2023-01-01 00:45:40','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121672522920','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3678,'','Cash','','2023-01-01 00:49:37','','0','12','2023-01-01 00:49:37','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121672523354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3679,'','Cash','','2023-01-01 00:52:59','','0','12','2023-01-01 00:52:59','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672523507','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3680,'','Cash','','2023-01-01 01:01:11','','0','12','2023-01-01 01:01:11','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121672524023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3681,'','Cash','','2023-01-01 01:45:40','','0','12','2023-01-01 01:45:40','','5030','5030','1','retail','0','5030','1','0','0','0','0','0','0','printed',' ','','1','0','121672526649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3682,'','Cash','','2023-01-01 01:56:31','','0','12','2023-01-01 01:56:31','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121672526886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3683,'','Cash','','2023-01-01 02:01:29','','0','12','2023-01-01 02:01:29','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121672527678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3684,'','Cash','','2023-01-01 02:54:32','','0','12','2023-01-01 02:54:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672530842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3685,'','Cash','','2023-01-01 03:16:19','','0','12','2023-01-01 03:16:19','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121672530878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3686,'','Cash','','2023-01-01 04:49:15','','0','12','2023-01-01 04:04:20','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672532185','Cleared','12','2023-01-01 04:49:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3687,'','Cash','','2023-01-01 10:44:37','','0','12','2023-01-01 10:44:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672559054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3688,'','Cash','','2023-01-01 11:41:25','','0','12','2023-01-01 11:41:25','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672559088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3689,'','Cash','','2023-01-01 13:01:00','','0','12','2023-01-01 13:01:00','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672562491','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3690,'','Cash','','2023-01-01 13:16:33','','0','12','2023-01-01 13:16:33','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121672568145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3691,'','Cash','','2023-01-01 14:07:28','','0','12','2023-01-01 14:07:28','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672568386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3692,'','Cash','','2023-01-01 14:35:21','','0','12','2023-01-01 14:35:21','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672571262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3693,'','Cash','','2023-01-01 16:10:53','','0','12','2023-01-01 16:10:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672578642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3694,'','Cash','','2023-01-01 18:10:50','','0','12','2023-01-01 18:10:50','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121672585775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3695,'','Cash','','2023-01-01 18:36:16','','0','12','2023-01-01 18:36:16','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121672586274','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3696,'','Cash','','2023-01-01 18:44:59','','0','12','2023-01-01 18:44:59','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121672587663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3697,'','Cash','','2023-01-01 19:04:33','','0','12','2023-01-01 19:04:33','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672589064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3698,'','Cash','','2023-01-01 19:04:54','','0','12','2023-01-01 19:04:54','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672589078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3699,'','Cash','','2023-01-01 19:05:30','','0','12','2023-01-01 19:05:30','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672589122','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3700,'','Cash','','2023-01-01 19:07:01','','0','12','2023-01-01 19:07:01','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672589197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3701,'','Cash','','2023-01-01 19:09:16','','0','12','2023-01-01 19:09:16','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672589333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3702,'','Cash','','2023-01-01 19:10:30','','0','12','2023-01-01 19:10:30','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121672589361','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3703,'','Cash','','2023-01-01 19:11:45','','0','12','2023-01-01 19:11:45','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672589482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3704,'','Cash','','2023-01-01 19:12:20','','0','12','2023-01-01 19:12:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672589530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3705,'','Cash','','2023-01-01 19:13:01','','0','12','2023-01-01 19:13:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672589572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3706,'','Cash','','2023-01-01 19:15:34','','0','12','2023-01-01 19:15:34','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121672589691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3707,'','Cash','','2023-01-01 19:29:55','','0','12','2023-01-01 19:29:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121672589738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3708,'','Cash','','2023-01-01 21:48:16','','0','12','2023-01-01 21:48:16','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121672590600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3709,'','Cash','','2023-01-01 21:59:18','','0','12','2023-01-01 21:59:18','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672598915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3710,'','Cash','','2023-01-01 22:38:32','','0','12','2023-01-01 22:38:32','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121672599615','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3711,'','Cash','','2023-01-01 22:38:54','','0','12','2023-01-01 22:38:54','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121672601919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3712,'','Cash','','2023-01-01 23:34:15','','0','12','2023-01-01 23:34:15','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672605244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3713,'','Cash','','2023-01-01 23:44:28','','0','12','2023-01-01 23:44:28','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121672605855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3714,'','Cash','','2023-01-02 00:11:04','','0','12','2023-01-02 00:11:04','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121672605872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3715,'','Cash','','2023-01-02 00:37:05','','0','12','2023-01-02 00:37:05','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121672608968','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3716,'','Cash','','2023-01-02 00:50:43','','0','12','2023-01-02 00:50:44','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121672609039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3717,'','Cash','','2023-01-02 00:59:46','','0','12','2023-01-02 00:59:46','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121672609849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3718,'','Cash','','2023-01-02 01:11:51','','0','12','2023-01-02 01:11:51','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672610436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3719,'','Cash','','2023-01-02 01:45:07','','0','12','2023-01-02 01:45:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672613095','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3720,'','Cash','','2023-01-02 02:01:48','','0','12','2023-01-02 02:01:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672614091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3721,'','Cash','','2023-01-02 02:34:34','','0','12','2023-01-02 02:34:34','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672616049','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3722,'','Cash','','2023-01-02 02:35:17','','0','12','2023-01-02 02:35:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672616081','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3723,'','Cash','','2023-01-02 03:29:36','','0','12','2023-01-02 03:29:36','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121672616156','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3724,'','Cash','','2023-01-02 12:26:59','','0','12','2023-01-02 12:26:59','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672651607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3725,'','Cash','','2023-01-02 12:29:10','','0','12','2023-01-02 12:29:10','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121672651727','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3726,'','Cash','','2023-01-02 12:29:52','','0','12','2023-01-02 12:29:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672651781','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3727,'','Cash','','2023-01-02 15:25:42','','0','12','2023-01-02 15:25:42','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121672662328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3728,'','Cash','','2023-01-02 15:31:18','','0','12','2023-01-02 15:31:18','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121672662350','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3729,'','Cash','','2023-01-02 15:51:16','','0','12','2023-01-02 15:51:16','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672662682','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3730,'','Cash','','2023-01-02 19:49:01','','0','12','2023-01-02 19:49:01','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672664287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3731,'','Cash','','2023-01-02 19:49:24','','0','12','2023-01-02 19:49:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672678151','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3732,'','Cash','','2023-01-02 21:24:25','','0','12','2023-01-02 21:24:25','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121672683744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3733,'','Cash','','2023-01-02 21:26:25','','0','12','2023-01-02 21:26:25','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672683955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3734,'','Cash','','2023-01-02 21:29:51','','0','12','2023-01-02 21:29:51','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672684168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3735,'','Cash','','2023-01-02 22:07:04','','0','12','2023-01-02 22:07:04','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121672684361','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3736,'','Cash','','2023-01-02 22:09:50','','0','12','2023-01-02 22:09:50','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121672686506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3737,'','Cash','','2023-01-02 22:10:06','','0','12','2023-01-02 22:10:06','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672686596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3738,'','Cash','','2023-01-02 22:36:54','','0','12','2023-01-02 22:36:54','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121672688198','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3739,'','Cash','','2023-01-03 00:24:41','','0','12','2023-01-03 00:24:41','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121672694669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3740,'','Cash','','2023-01-03 00:26:55','','0','12','2023-01-03 00:26:55','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672694800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3741,'','Cash','','2023-01-03 01:15:26','','0','12','2023-01-03 01:15:26','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672697583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3742,'','Cash','','2023-01-03 01:58:18','','0','12','2023-01-03 01:58:18','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672697739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3743,'','Cash','','2023-01-03 10:21:34','','0','12','2023-01-03 10:21:34','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121672730065','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3744,'','Cash','','2023-01-03 16:55:02','','0','12','2023-01-03 16:55:02','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121672754032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3745,'','Cash','','2023-01-03 16:55:25','','0','12','2023-01-03 16:55:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672754115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3746,'','Cash','','2023-01-03 16:55:39','','0','12','2023-01-03 16:55:39','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121672754130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3747,'','Cash','','2023-01-03 18:28:29','','0','12','2023-01-03 18:28:29','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121672754143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3748,'','Cash','','2023-01-03 18:32:12','','0','12','2023-01-03 18:32:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672759788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3749,'','Cash','','2023-01-03 19:07:57','','0','12','2023-01-03 19:07:57','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672759941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3750,'','Cash','','2023-01-03 19:24:53','','0','12','2023-01-03 19:24:53','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121672762086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3751,'','Cash','','2023-01-03 22:59:38','','0','12','2023-01-03 22:59:38','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121672775960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3752,'','Cash','','2023-01-03 23:44:07','','0','12','2023-01-03 23:44:07','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121672778614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3753,'','Cash','','2023-01-04 00:16:33','','0','12','2023-01-04 00:16:33','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121672780570','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3754,'','Cash','','2023-01-04 02:30:02','','0','12','2023-01-04 02:30:02','','8980','8980','1','retail','0','8980','1','0','0','0','0','0','0','printed',' ','','1','0','121672786771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3755,'','Cash','','2023-01-04 05:03:33','','0','12','2023-01-04 05:03:33','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121672788733','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3756,'','Cash','','2023-01-04 05:05:27','','0','12','2023-01-04 05:05:27','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121672797821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3757,'','Cash','','2023-01-04 09:49:35','','0','12','2023-01-04 09:49:35','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121672814853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3758,'','Cash','','2023-01-04 15:45:01','','0','12','2023-01-04 15:45:01','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672836109','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3759,'','Cash','','2023-01-04 18:02:37','','0','12','2023-01-04 18:02:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672836307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3760,'','Cash','','2023-01-04 18:12:13','','0','12','2023-01-04 18:12:13','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121672844566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3761,'','Cash','','2023-01-04 19:01:49','','0','12','2023-01-04 19:01:49','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121672845138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3762,'','Cash','','2023-01-04 20:13:00','','0','12','2023-01-04 20:13:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672848117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3763,'','Cash','','2023-01-04 21:45:47','','0','12','2023-01-04 21:45:47','','4570','4570','1','retail','0','4570','1','0','0','0','0','0','0','printed',' ','','1','0','121672852384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3764,'','Cash','','2023-01-04 22:02:16','','0','12','2023-01-04 22:02:16','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121672858146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3765,'','Cash','','2023-01-04 22:57:07','','0','12','2023-01-04 22:57:07','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672858941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3766,'','Cash','','2023-01-04 23:05:17','','0','12','2023-01-04 23:05:17','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121672862549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3767,'','Cash','','2023-01-05 00:19:46','','0','12','2023-01-05 00:19:46','','2360','2360','1','retail','0','2360','1','0','0','0','0','0','0','printed',' ','','1','0','121672867150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3768,'','Cash','','2023-01-05 00:54:13','','0','12','2023-01-05 00:54:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672867244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3769,'','Cash','','2023-01-05 01:47:13','','0','12','2023-01-05 01:47:13','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121672872420','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3770,'','Cash','','2023-01-05 01:53:45','','0','12','2023-01-05 01:53:45','','4150','4150','1','retail','0','4150','1','0','0','0','0','0','0','printed',' ','','1','0','121672872815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3771,'','Cash','','2023-01-05 03:20:41','','0','12','2023-01-05 03:20:41','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121672872836','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3772,'','Cash','','2023-01-05 05:07:15','','0','12','2023-01-05 05:07:15','','1890','1890','1','retail','0','1890','1','0','0','0','0','0','0','printed',' ','','1','0','121672878050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3773,'','Cash','','2023-01-05 05:08:15','','0','12','2023-01-05 05:08:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121672884444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3774,'','Cash','','2023-01-05 05:11:35','','0','12','2023-01-05 05:11:35','','1640','1640','1','retail','0','1640','1','0','0','0','0','0','0','printed',' ','','1','0','121672884501','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3775,'','Cash','','2023-01-05 05:14:09','','0','12','2023-01-05 05:14:09','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121672884701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3776,'','Cash','','2023-01-05 06:21:30','','0','12','2023-01-05 06:21:30','','1120','1120','1','retail','0','1120','1','0','0','0','0','0','0','printed',' ','','1','0','121672884854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3777,'','Cash','','2023-01-05 12:57:23','','0','12','2023-01-05 12:57:23','','3260','3260','1','retail','0','3260','1','0','0','0','0','0','0','printed',' ','','1','0','121672912586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3778,'','Cash','','2023-01-05 15:43:57','','0','12','2023-01-05 15:43:57','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121672922627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3779,'','Cash','','2023-01-05 16:31:33','','0','12','2023-01-05 16:31:33','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121672922641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3780,'','Cash','','2023-01-05 18:24:05','','0','12','2023-01-05 18:24:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672932233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3781,'','Cash','','2023-01-05 18:37:57','','0','12','2023-01-05 18:37:57','','1290','1290','1','retail','0','1290','1','0','0','0','0','0','0','printed',' ','','1','0','121672932251','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3782,'','Cash','','2023-01-05 20:43:58','','0','12','2023-01-05 20:43:58','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121672940543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3783,'','Cash','','2023-01-05 21:13:02','','0','12','2023-01-05 21:13:02','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121672940720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3784,'','Cash','','2023-01-06 00:21:44','','0','12','2023-01-06 00:21:44','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121672953553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3785,'','Cash','','2023-01-06 00:22:31','','0','12','2023-01-06 00:22:31','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672953710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3786,'','Cash','','2023-01-06 00:34:30','','0','12','2023-01-06 00:34:30','','3760','3760','1','retail','0','3760','1','0','0','0','0','0','0','printed',' ','','1','0','121672953945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3787,'','Cash','','2023-01-06 01:05:58','','0','12','2023-01-06 01:05:58','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121672955239','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3788,'','Cash','','2023-01-06 01:06:38','','0','12','2023-01-06 01:06:38','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121672956372','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3789,'','Cash','','2023-01-06 01:22:08','','0','12','2023-01-06 01:22:08','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121672956485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3790,'','Cash','','2023-01-06 02:22:00','','0','12','2023-01-06 02:22:00','','3600','3600','1','retail','0','3600','1','0','0','0','0','0','0','printed',' ','','1','0','121672960892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3791,'','Cash','','2023-01-06 02:24:28','','0','12','2023-01-06 02:24:28','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672961044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3792,'','Cash','','2023-01-06 02:27:10','','0','12','2023-01-06 02:27:10','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121672961212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3793,'','Cash','','2023-01-06 02:29:06','','0','12','2023-01-06 02:29:06','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121672961315','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3794,'','Cash','','2023-01-06 02:31:55','','0','12','2023-01-06 02:31:55','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121672961495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3795,'','Cash','','2023-01-06 02:32:52','','0','12','2023-01-06 02:32:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672961557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3796,'','Cash','','2023-01-06 02:39:16','','0','12','2023-01-06 02:39:16','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121672961921','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3797,'','Cash','','2023-01-06 02:39:50','','0','12','2023-01-06 02:39:50','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121672961962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3798,'','Cash','','2023-01-06 02:41:00','','0','12','2023-01-06 02:41:00','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121672962032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3799,'','Cash','','2023-01-06 02:44:38','','0','12','2023-01-06 02:44:38','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121672962264','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3800,'','Cash','','2023-01-06 02:52:58','','0','12','2023-01-06 02:52:58','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121672962764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3801,'','Cash','','2023-01-06 02:53:21','','0','12','2023-01-06 02:53:21','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121672962786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3802,'','Cash','','2023-01-06 02:54:55','','0','12','2023-01-06 02:54:56','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121672962847','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3803,'','Cash','','2023-01-06 02:55:51','','0','12','2023-01-06 02:55:51','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672962928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3804,'','Cash','','2023-01-06 02:57:38','','0','12','2023-01-06 02:57:38','','4200','4200','1','retail','0','4200','1','0','0','0','0','0','0','printed',' ','','1','0','121672962996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3805,'','Cash','','2023-01-06 03:07:00','','0','12','2023-01-06 03:07:00','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121672963534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3806,'','Cash','','2023-01-06 03:10:34','','0','12','2023-01-06 03:10:34','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672963811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3807,'','Cash','','2023-01-06 03:11:18','','0','12','2023-01-06 03:11:18','','7600','7600','1','retail','0','7600','1','0','0','0','0','0','0','printed',' ','','1','0','121672963838','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3808,'','Cash','','2023-01-06 03:12:07','','0','12','2023-01-06 03:12:07','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121672963884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3809,'','Cash','','2023-01-06 03:13:45','','0','12','2023-01-06 03:13:45','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672963992','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3810,'','Cash','','2023-01-06 03:20:52','','0','12','2023-01-06 03:20:52','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121672964430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3811,'','Cash','','2023-01-06 03:31:15','','0','12','2023-01-06 03:31:15','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121672964942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3812,'','Cash','','2023-01-06 03:33:04','','0','12','2023-01-06 03:33:04','','15400','15400','1','retail','0','15400','1','0','0','0','0','0','0','printed',' ','','1','0','121672965145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3813,'','Cash','','2023-01-06 03:33:39','','0','12','2023-01-06 03:33:39','','13500','13500','1','retail','0','13500','1','0','0','0','0','0','0','printed',' ','','1','0','121672965193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3814,'','Cash','','2023-01-06 03:36:03','','0','12','2023-01-06 03:36:03','','8000','8000','1','retail','0','8000','1','0','0','0','0','0','0','printed',' ','','1','0','121672965225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3815,'','Cash','','2023-01-06 03:37:10','','0','12','2023-01-06 03:37:10','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121672965366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3816,'','Cash','','2023-01-06 03:37:40','','0','12','2023-01-06 03:37:40','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121672965434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3817,'','Cash','','2023-01-06 03:40:11','','0','12','2023-01-06 03:40:11','','4800','4800','1','retail','0','4800','1','0','0','0','0','0','0','printed',' ','','1','0','121672965464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3818,'','Cash','','2023-01-06 03:42:29','','0','12','2023-01-06 03:42:29','','4200','4200','1','retail','0','4200','1','0','0','0','0','0','0','printed',' ','','1','0','121672965730','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3819,'','Cash','','2023-01-06 03:51:55','','0','12','2023-01-06 03:51:55','','32500','32500','1','retail','0','32500','1','0','0','0','0','0','0','printed',' ','','1','0','121672966287','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3820,'','Cash','','2023-01-06 04:04:01','','0','12','2023-01-06 04:04:01','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121672967013','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3821,'','Cash','','2023-01-06 04:10:41','','0','12','2023-01-06 04:10:41','','4150','4150','1','retail','0','4150','1','0','0','0','0','0','0','printed',' ','','1','0','121672967413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3822,'','Cash','','2023-01-06 04:11:27','','0','12','2023-01-06 04:11:27','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121672967469','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3823,'','Cash','','2023-01-06 04:15:02','','0','12','2023-01-06 04:15:02','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121672967656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3824,'','Cash','','2023-01-06 04:16:39','','0','12','2023-01-06 04:16:39','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121672967776','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3825,'','Cash','','2023-01-06 04:19:44','','0','12','2023-01-06 04:19:44','','5600','5600','1','retail','0','5600','1','0','0','0','0','0','0','printed',' ','','1','0','121672967973','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3826,'','Cash','','2023-01-06 04:22:00','','0','12','2023-01-06 04:22:00','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121672968096','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3827,'','Cash','','2023-01-06 04:24:17','','0','12','2023-01-06 04:24:17','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121672968240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3828,'','Cash','','2023-01-06 04:26:04','','0','12','2023-01-06 04:26:04','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121672968347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3829,'','Cash','','2023-01-06 04:27:42','','0','12','2023-01-06 04:27:42','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121672968439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3830,'','Cash','','2023-01-06 04:30:40','','0','12','2023-01-06 04:30:40','','30600','30600','1','retail','0','30600','1','0','0','0','0','0','0','printed',' ','','1','0','121672968606','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3831,'','Cash','','2023-01-06 04:31:41','','0','12','2023-01-06 04:31:41','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121672968647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3832,'','Cash','','2023-01-06 04:32:25','','0','12','2023-01-06 04:32:25','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121672968706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3833,'','Cash','','2023-01-06 04:42:13','','0','12','2023-01-06 04:42:13','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121672969311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3834,'','Cash','','2023-01-06 04:44:41','','0','12','2023-01-06 04:44:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121672969466','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3835,'','Cash','','2023-01-06 04:46:09','','0','12','2023-01-06 04:46:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121672969548','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3836,'','Cash','','2023-01-06 05:06:09','','0','12','2023-01-06 05:06:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121672970750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3837,'','Cash','','2023-01-06 05:06:52','','0','12','2023-01-06 05:06:52','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121672970790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3838,'','Cash','','2023-01-06 05:11:02','','0','12','2023-01-06 05:11:02','','2280','2280','1','retail','0','2280','1','0','0','0','0','0','0','printed',' ','','1','0','121672971045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3839,'','Cash','','2023-01-06 05:11:35','','0','12','2023-01-06 05:11:35','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121672971067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3840,'','Cash','','2023-01-06 05:13:56','','0','12','2023-01-06 05:13:56','','1140','1140','1','retail','0','1140','1','0','0','0','0','0','0','printed',' ','','1','0','121672971099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3841,'','Cash','','2023-01-06 15:22:23','','0','12','2023-01-06 15:22:23','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121673001460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3842,'','Cash','','2023-01-06 15:23:03','','0','12','2023-01-06 15:23:03','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121673007771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3843,'','Cash','','2023-01-06 15:23:33','','0','12','2023-01-06 15:23:33','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121673007793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3844,'','Cash','','2023-01-06 15:24:15','','0','12','2023-01-06 15:24:15','','1460','1460','1','retail','0','1460','1','0','0','0','0','0','0','printed',' ','','1','0','121673007817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3845,'','Cash','','2023-01-06 16:05:27','','0','12','2023-01-06 16:05:27','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121673007862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3846,'','Cash','','2023-01-06 16:41:55','','0','12','2023-01-06 16:41:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673010333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3847,'','Cash','','2023-01-06 16:55:53','','0','12','2023-01-06 16:55:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673012520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3848,'','Cash','','2023-01-06 17:22:26','','0','12','2023-01-06 17:22:26','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121673013360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3849,'','Cash','','2023-01-06 17:27:31','','0','12','2023-01-06 17:27:31','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673015184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3851,'','Cash','','2023-01-06 17:49:33','','0','12','2023-01-06 17:49:33','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673016382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3852,'','Cash','','2023-01-06 18:09:08','','0','12','2023-01-06 18:09:08','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673016577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3853,'','Cash','','2023-01-06 19:10:43','','0','12','2023-01-06 19:10:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673017753','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3854,'','Cash','','2023-01-06 20:02:37','','0','12','2023-01-06 20:02:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121673021866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3855,'','Cash','','2023-01-06 20:18:35','','0','12','2023-01-06 20:18:35','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121673024710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3856,'','Cash','','2023-01-06 20:36:32','','0','12','2023-01-06 20:36:32','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121673025521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3857,'','Cash','','2023-01-06 20:38:42','','0','12','2023-01-06 20:38:42','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673026684','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3858,'','Cash','','2023-01-06 21:40:24','','0','12','2023-01-06 21:40:25','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121673026791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3859,'','Cash','','2023-01-06 21:44:27','','0','12','2023-01-06 21:44:27','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121673030429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3860,'','Cash','','2023-01-06 21:58:34','','0','12','2023-01-06 21:58:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673030814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3861,'','Cash','','2023-01-06 22:06:29','','0','12','2023-01-06 22:06:29','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121673031519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3862,'','Cash','','2023-01-06 22:15:43','','0','12','2023-01-06 22:15:43','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121673031998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3863,'','Cash','','2023-01-06 22:18:04','','0','12','2023-01-06 22:18:04','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673032556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3864,'','Cash','','2023-01-06 22:31:17','','0','12','2023-01-06 22:31:17','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121673032849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3865,'','Cash','','2023-01-06 23:24:24','','0','12','2023-01-06 23:24:24','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121673036501','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3866,'','Cash','','2023-01-06 23:29:55','','0','12','2023-01-06 23:29:55','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121673036671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3867,'','Cash','','2023-01-06 23:36:18','','0','12','2023-01-06 23:36:18','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121673037319','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3868,'','Cash','','2023-01-06 23:45:57','','0','12','2023-01-06 23:45:57','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121673037445','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3869,'','Cash','','2023-01-07 00:25:11','','0','12','2023-01-07 00:25:11','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121673038014','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3870,'','Cash','','2023-01-07 00:36:25','','0','12','2023-01-07 00:36:25','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121673040435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3871,'','Cash','','2023-01-07 00:49:02','','0','12','2023-01-07 00:49:02','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673041131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3872,'','Cash','','2023-01-07 01:07:10','','0','12','2023-01-07 01:07:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673041826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3873,'','Cash','','2023-01-07 01:43:52','','0','12','2023-01-07 01:43:52','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121673043328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3874,'','Cash','','2023-01-07 01:53:23','','0','12','2023-01-07 01:53:23','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121673045045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3875,'','Cash','','2023-01-07 02:31:08','','0','12','2023-01-07 02:31:08','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121673045610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3876,'','Cash','','2023-01-07 02:33:08','','0','12','2023-01-07 02:33:08','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121673047879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3877,'','Cash','','2023-01-07 03:10:50','','0','12','2023-01-07 03:10:50','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121673047992','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3878,'','Cash','','2023-01-07 03:50:02','','0','12','2023-01-07 03:50:02','','5020','5020','1','retail','0','5020','1','0','0','0','0','0','0','printed',' ','','1','0','121673052520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3879,'','Cash','','2023-01-07 04:09:56','','0','12','2023-01-07 04:09:56','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121673053762','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3880,'','Cash','','2023-01-07 04:59:30','','0','12','2023-01-07 04:59:30','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121673056721','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3881,'','Cash','','2023-01-07 05:25:00','','0','12','2023-01-07 05:25:00','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121673056776','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3882,'','Cash','','2023-01-07 05:26:04','','0','12','2023-01-07 05:26:04','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121673058317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3883,'','Cash','','2023-01-07 05:26:41','','0','12','2023-01-07 05:26:41','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121673058386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3884,'','Cash','','2023-01-07 06:48:32','','0','12','2023-01-07 06:48:32','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121673058588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3885,'','Cash','','2023-01-07 08:38:12','','0','12','2023-01-07 08:38:12','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121673069845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3886,'','Cash','','2023-01-07 13:28:45','','0','12','2023-01-07 13:28:45','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673087307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3887,'','Cash','','2023-01-07 13:29:14','','0','12','2023-01-07 13:29:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673087330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3888,'','Cash','','2023-01-07 13:52:48','','0','12','2023-01-07 13:52:48','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673087359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3889,'','Cash','','2023-01-07 13:57:43','','0','12','2023-01-07 13:57:43','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121673088950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3890,'','Cash','','2023-01-07 15:37:06','','0','12','2023-01-07 15:37:06','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673092270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3891,'','Cash','','2023-01-07 15:40:33','','0','12','2023-01-07 15:40:33','','7500','7500','1','retail','0','7500','1','0','0','0','0','0','0','printed',' ','','1','0','121673095032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3892,'','Cash','','2023-01-07 19:09:07','','0','12','2023-01-07 19:09:07','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121673106846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3893,'','Cash','','2023-01-07 19:55:38','','0','12','2023-01-07 19:55:38','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121673107753','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3894,'','Cash','','2023-01-07 20:05:43','','0','12','2023-01-07 20:05:43','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121673110605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3895,'','Cash','','2023-01-07 21:09:32','','0','12','2023-01-07 21:09:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673111149','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3896,'','Cash','','2023-01-07 21:24:44','','0','12','2023-01-07 21:24:44','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121673115194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3897,'','Cash','','2023-01-07 22:09:50','','0','12','2023-01-07 22:09:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673115927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3898,'','Cash','','2023-01-07 22:39:48','','0','12','2023-01-07 22:39:48','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121673118595','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3899,'','Cash','','2023-01-07 23:00:32','','0','12','2023-01-07 23:00:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673120594','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3900,'','Cash','','2023-01-07 23:02:47','','0','12','2023-01-07 23:02:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673121637','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3901,'','Cash','','2023-01-07 23:06:53','','0','12','2023-01-07 23:06:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673121771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3902,'','Cash','','2023-01-07 23:25:46','','0','12','2023-01-07 23:25:46','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121673122048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3903,'','Cash','','2023-01-07 23:35:24','','0','12','2023-01-07 23:35:24','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673123153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3904,'','Cash','','2023-01-07 23:51:19','','0','12','2023-01-07 23:51:19','','5550','5550','1','retail','0','5550','1','0','0','0','0','0','0','printed',' ','','1','0','121673123728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3905,'','Cash','','2023-01-08 00:35:54','','0','12','2023-01-08 00:35:54','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673124686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3906,'','Cash','','2023-01-08 01:03:44','','0','12','2023-01-08 01:03:44','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121673127362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3907,'','Cash','','2023-01-08 01:27:15','','0','12','2023-01-08 01:27:15','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121673129130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3908,'','Cash','','2023-01-08 01:29:43','','0','12','2023-01-08 01:29:43','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121673130440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3909,'','Cash','','2023-01-08 01:46:46','','0','12','2023-01-08 01:46:46','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121673130920','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3910,'','Cash','','2023-01-08 01:55:18','','0','12','2023-01-08 01:55:18','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121673131619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3911,'','Cash','','2023-01-08 02:10:38','','0','12','2023-01-08 02:10:38','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121673132409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3912,'','Cash','','2023-01-08 02:24:12','','0','12','2023-01-08 02:24:12','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673133042','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3913,'','Cash','','2023-01-08 02:31:07','','0','12','2023-01-08 02:31:07','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121673133857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3914,'','Cash','','2023-01-08 02:32:52','','0','12','2023-01-08 02:32:52','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673134272','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3915,'','Cash','','2023-01-08 02:59:03','','0','12','2023-01-08 02:59:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673134380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3916,'','Cash','','2023-01-08 03:08:15','','0','12','2023-01-08 03:08:15','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673135947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3917,'','Cash','','2023-01-08 03:18:02','','0','12','2023-01-08 03:18:02','','1620','1620','1','retail','0','1620','1','0','0','0','0','0','0','printed',' ','','1','0','121673136499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3918,'','Cash','','2023-01-08 03:23:44','','0','12','2023-01-08 03:23:45','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673137166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3919,'','Cash','','2023-01-08 03:28:52','','0','12','2023-01-08 03:28:52','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121673137429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3920,'','Cash','','2023-01-08 03:32:57','','0','12','2023-01-08 03:32:57','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673137965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3921,'','Cash','','2023-01-08 04:12:24','','0','12','2023-01-08 04:12:24','','2650','2650','1','retail','0','2650','1','0','0','0','0','0','0','printed',' ','','1','0','121673138055','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3922,'','Cash','','2023-01-08 12:22:44','','0','12','2023-01-08 12:22:44','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673169741','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3923,'','Cash','','2023-01-08 12:23:12','','0','12','2023-01-08 12:23:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673169772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3924,'','Cash','','2023-01-08 12:23:44','','0','12','2023-01-08 12:23:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673169800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3925,'','Cash','','2023-01-08 13:45:59','','0','12','2023-01-08 13:45:59','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673169833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3926,'','Cash','','2023-01-08 14:21:44','','0','12','2023-01-08 14:21:44','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121673174765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3927,'','Cash','','2023-01-08 16:52:41','','0','12','2023-01-08 16:52:41','','28500','28500','1','retail','0','28500','1','0','0','0','0','0','0','printed',' ','','1','0','121673176910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3928,'','Cash','','2023-01-08 19:19:29','','0','12','2023-01-08 19:19:29','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121673194621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3929,'','Cash','','2023-01-08 20:42:27','','0','12','2023-01-08 20:42:27','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673194774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3930,'','Cash','','2023-01-08 21:02:33','','0','12','2023-01-08 21:02:33','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121673199752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3931,'','Cash','','2023-01-08 21:09:22','','0','12','2023-01-08 21:09:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673200998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3932,'','Cash','','2023-01-08 22:15:47','','0','12','2023-01-08 22:15:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121673201374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3933,'','Cash','','2023-01-08 22:23:01','','0','12','2023-01-08 22:23:01','','28500','28500','1','retail','0','28500','1','0','0','0','0','0','0','printed',' ','','1','0','121673205354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3934,'','Cash','','2023-01-08 22:54:04','','0','12','2023-01-08 22:54:04','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673205787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3935,'','Cash','','2023-01-08 22:56:58','','0','12','2023-01-08 22:56:58','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121673207796','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3936,'','Cash','','2023-01-09 00:08:14','','0','12','2023-01-09 00:08:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673207823','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3937,'','Cash','','2023-01-09 00:50:31','','0','12','2023-01-09 00:50:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673212146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3938,'','Cash','','2023-01-09 01:48:51','','0','12','2023-01-09 01:48:51','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121673214636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3939,'','Cash','','2023-01-09 02:12:13','','0','12','2023-01-09 02:12:13','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121673218138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3940,'','Cash','','2023-01-09 04:27:09','','0','12','2023-01-09 04:27:09','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673227608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3941,'','Cash','','2023-01-09 04:28:02','','0','12','2023-01-09 04:28:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673227638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3942,'','Cash','','2023-01-09 05:21:58','','0','12','2023-01-09 05:21:58','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673230906','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3943,'','Cash','','2023-01-09 14:01:35','','0','12','2023-01-09 14:01:35','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673262052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3944,'','Cash','','2023-01-09 16:53:34','','0','12','2023-01-09 16:53:34','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673272397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3945,'','Cash','','2023-01-09 19:42:25','','0','12','2023-01-09 19:42:25','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121673277925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3946,'','Cash','','2023-01-09 19:43:58','','0','12','2023-01-09 19:43:58','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121673282575','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3947,'','Cash','','2023-01-09 19:44:41','','0','12','2023-01-09 19:44:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121673282646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3948,'','Cash','','2023-01-09 19:48:12','','0','12','2023-01-09 19:48:12','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673282692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3949,'','Cash','','2023-01-09 19:48:30','','0','12','2023-01-09 19:48:30','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121673282899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3950,'','Cash','','2023-01-09 20:06:35','','0','12','2023-01-09 20:06:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673283607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3951,'','Cash','','2023-01-09 21:07:51','','0','12','2023-01-09 21:07:51','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121673287666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3952,'','Cash','','2023-01-09 21:11:31','','0','12','2023-01-09 21:11:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673287772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3953,'','Cash','','2023-01-09 21:27:35','','0','12','2023-01-09 21:27:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673288837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3954,'','Cash','','2023-01-09 22:49:04','','0','12','2023-01-09 22:49:04','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121673288859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3955,'','Cash','','2023-01-09 22:51:48','','0','12','2023-01-09 22:51:48','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121673293751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3956,'','Cash','','2023-01-09 22:52:57','','0','12','2023-01-09 22:52:57','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121673293914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3957,'','Cash','','2023-01-09 23:03:08','','0','12','2023-01-09 23:03:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673294069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3958,'','Cash','','2023-01-09 23:15:05','','0','12','2023-01-09 23:15:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673295294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3959,'','Cash','','2023-01-09 23:52:20','','0','12','2023-01-09 23:52:20','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673295310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3960,'','Cash','','2023-01-10 00:02:04','','0','12','2023-01-10 00:02:04','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121673297546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3961,'','Cash','','2023-01-10 00:16:30','','0','12','2023-01-10 00:16:30','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121673298194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3962,'','Cash','','2023-01-10 07:24:23','','0','12','2023-01-10 07:24:23','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121673323543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3963,'','Cash','','2023-01-10 10:06:05','','0','12','2023-01-10 10:06:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673334348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3964,'','Cash','','2023-01-10 11:44:53','','0','12','2023-01-10 11:44:53','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673340254','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3965,'','Cash','','2023-01-10 15:39:07','','0','12','2023-01-10 15:39:07','','1780','1780','1','retail','0','1780','1','0','0','0','0','0','0','printed',' ','','1','0','121673352797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3966,'','Cash','','2023-01-10 15:39:21','','0','12','2023-01-10 15:39:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673354352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3967,'','Cash','','2023-01-10 19:36:35','','0','12','2023-01-10 19:36:35','','2660','2660','1','retail','0','2660','1','0','0','0','0','0','0','printed',' ','','1','0','121673361827','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3968,'','Cash','','2023-01-10 19:44:39','','0','12','2023-01-10 19:44:39','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673369041','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3969,'','Cash','','2023-01-10 21:22:11','','0','12','2023-01-10 21:22:11','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121673369103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3970,'','Cash','','2023-01-10 22:01:44','','0','12','2023-01-10 22:01:44','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673374936','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3971,'','Cash','','2023-01-10 22:12:52','','0','12','2023-01-10 22:12:52','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121673377309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3972,'','Cash','','2023-01-10 22:20:58','','0','12','2023-01-10 22:20:58','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673377976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3973,'','Cash','','2023-01-10 22:40:46','','0','12','2023-01-10 22:40:46','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673378463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3974,'','Cash','','2023-01-10 22:43:33','','0','12','2023-01-10 22:43:33','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121673379692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3975,'','Cash','','2023-01-10 22:44:44','','0','12','2023-01-10 22:44:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673379835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3976,'','Cash','','2023-01-10 22:52:18','','0','12','2023-01-10 22:52:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673379889','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3977,'','Cash','','2023-01-10 23:22:31','','0','12','2023-01-10 23:22:31','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121673382115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3978,'','Cash','','2023-01-10 23:27:53','','0','12','2023-01-10 23:27:53','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121673382376','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3979,'','Cash','','2023-01-10 23:44:18','','0','12','2023-01-10 23:44:18','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673383106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3980,'','Cash','','2023-01-11 00:38:15','','0','12','2023-01-11 00:38:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673383463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3981,'','Cash','','2023-01-11 01:11:41','','0','12','2023-01-11 01:11:41','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121673386703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3982,'','Cash','','2023-01-11 01:12:27','','0','12','2023-01-11 01:12:27','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121673388739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3983,'','Cash','','2023-01-11 01:28:41','','0','12','2023-01-11 01:28:41','','2280','2280','1','retail','0','2280','1','0','0','0','0','0','0','printed',' ','','1','0','121673388753','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3984,'','Cash','','2023-01-11 02:27:17','','0','12','2023-01-11 02:27:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673389973','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3985,'','Cash','','2023-01-11 04:55:37','','0','12','2023-01-11 04:55:37','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121673402113','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3986,'','Cash','','2023-01-11 18:45:18','','0','12','2023-01-11 18:45:18','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121673451797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3987,'','Cash','','2023-01-11 18:57:29','','0','12','2023-01-11 18:57:29','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121673452623','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3988,'','Cash','','2023-01-11 20:05:18','','0','12','2023-01-11 20:05:18','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121673456672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3989,'','Cash','','2023-01-11 21:31:42','','0','12','2023-01-11 21:31:42','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121673457349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3990,'','Cash','','2023-01-11 21:34:37','','0','12','2023-01-11 21:34:37','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673461960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3991,'','Cash','','2023-01-11 21:36:31','','0','12','2023-01-11 21:36:31','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673462081','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3992,'','Cash','','2023-01-11 21:55:19','','0','12','2023-01-11 21:55:19','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121673463250','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3993,'','Cash','','2023-01-11 23:31:46','','0','12','2023-01-11 23:31:46','','1530','1530','1','retail','0','1530','1','0','0','0','0','0','0','printed',' ','','1','0','121673466603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3994,'','Cash','','2023-01-12 00:14:12','','0','12','2023-01-12 00:14:12','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121673469240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3995,'','Cash','','2023-01-12 00:23:22','','0','12','2023-01-12 00:23:22','','1370','1370','1','retail','0','1370','1','0','0','0','0','0','0','printed',' ','','1','0','121673471657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3996,'','Cash','','2023-01-12 00:28:12','','0','12','2023-01-12 00:28:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121673472212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3997,'','Cash','','2023-01-12 00:33:42','','0','12','2023-01-12 00:33:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673472812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3998,'','Cash','','2023-01-12 01:24:45','','0','12','2023-01-12 01:24:45','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121673472826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3999,'','Cash','','2023-01-12 01:52:46','','0','12','2023-01-12 01:52:47','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673477553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4000,'','Cash','','2023-01-12 01:58:00','','0','12','2023-01-12 01:58:00','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121673477578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4001,'','Cash','','2023-01-12 08:54:39','','0','12','2023-01-12 08:54:39','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673502837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4002,'','Cash','','2023-01-12 18:22:41','','0','12','2023-01-12 18:22:42','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121673536849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4003,'','Cash','','2023-01-12 18:35:45','','0','12','2023-01-12 18:35:45','','4050','4050','1','retail','0','4050','1','0','0','0','0','0','0','printed',' ','','1','0','121673536972','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4004,'','Cash','','2023-01-12 19:25:17','','0','12','2023-01-12 19:25:17','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673540241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4005,'','Cash','','2023-01-12 19:31:49','','0','12','2023-01-12 19:31:49','','710','710','1','retail','0','710','1','0','0','0','0','0','0','printed',' ','','1','0','121673541040','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4006,'','Cash','','2023-01-12 21:31:08','','0','12','2023-01-12 21:31:08','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121673541118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4007,'','Cash','','2023-01-12 22:19:51','','0','12','2023-01-12 22:19:51','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121673548396','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4008,'','Cash','','2023-01-12 22:55:45','','0','12','2023-01-12 22:55:45','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121673551487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4009,'','Cash','','2023-01-12 23:14:18','','0','12','2023-01-12 23:14:18','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121673553352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4010,'','Cash','','2023-01-12 23:46:03','','0','12','2023-01-12 23:46:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673554539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4011,'','Cash','','2023-01-12 23:58:54','','0','12','2023-01-12 23:58:54','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673556369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4012,'','Cash','','2023-01-13 00:01:50','','0','12','2023-01-13 00:01:50','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121673557286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4013,'','Cash','','2023-01-13 00:07:55','','0','12','2023-01-13 00:07:55','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121673557315','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4014,'','Cash','','2023-01-13 00:17:57','','0','12','2023-01-13 00:17:57','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121673557794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4015,'','Cash','','2023-01-13 01:12:10','','0','12','2023-01-13 01:12:10','','5670','5670','1','retail','0','5670','1','0','0','0','0','0','0','printed',' ','','1','0','121673558295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4016,'','Cash','','2023-01-13 02:46:07','','0','12','2023-01-13 02:46:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673561626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4017,'','Cash','','2023-01-13 04:28:08','','0','12','2023-01-13 04:28:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673567176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4018,'','Cash','','2023-01-13 04:28:52','','0','12','2023-01-13 04:28:52','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673573297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4019,'','Cash','','2023-01-13 16:24:24','','0','12','2023-01-13 16:24:24','','5680','5680','1','retail','0','5680','1','0','0','0','0','0','0','printed',' ','','1','0','121673616225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4020,'','Cash','','2023-01-13 17:30:49','','0','12','2023-01-13 17:30:49','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121673620224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4021,'','Cash','','2023-01-13 18:51:01','','0','12','2023-01-13 18:51:01','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121673624109','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4022,'','Cash','','2023-01-13 19:03:49','','0','12','2023-01-13 19:03:49','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121673625068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4023,'','Cash','','2023-01-13 19:29:34','','0','12','2023-01-13 19:29:34','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121673625977','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4024,'','Cash','','2023-01-13 19:35:56','','0','12','2023-01-13 19:35:56','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673627405','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4025,'','Cash','','2023-01-13 19:57:47','','0','12','2023-01-13 19:57:47','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673628923','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4026,'','Cash','','2023-01-13 19:58:56','','0','12','2023-01-13 19:58:56','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673629072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4027,'','Cash','','2023-01-13 20:03:18','','0','12','2023-01-13 20:03:18','','3050','3050','1','retail','0','3050','1','0','0','0','0','0','0','printed',' ','','1','0','121673629364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00); INSERT INTO `sales` VALUES (4028,'','Cash','','2023-01-13 20:09:12','','0','12','2023-01-13 20:09:12','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673629441','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4029,'','Cash','','2023-01-13 20:12:17','','0','12','2023-01-13 20:12:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673629864','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4030,'','Cash','','2023-01-13 21:29:29','','0','12','2023-01-13 21:29:29','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673629941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4031,'','Cash','','2023-01-13 21:36:27','','0','12','2023-01-13 21:36:27','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121673634964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4032,'','Cash','','2023-01-13 22:23:25','','0','12','2023-01-13 22:23:25','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121673634991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4033,'','Cash','','2023-01-13 22:53:57','','0','12','2023-01-13 22:53:57','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121673638098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4034,'','Cash','','2023-01-13 23:01:10','','0','12','2023-01-13 23:01:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673640053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4035,'','Cash','','2023-01-13 23:07:45','','0','12','2023-01-13 23:07:45','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121673640078','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4036,'','Cash','','2023-01-13 23:24:15','','0','12','2023-01-13 23:24:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673640533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4037,'','Cash','','2023-01-13 23:24:31','','0','12','2023-01-13 23:24:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673641460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4038,'','Cash','','2023-01-13 23:31:16','','0','12','2023-01-13 23:31:16','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673641477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4039,'','Cash','','2023-01-13 23:38:48','','0','12','2023-01-13 23:38:48','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121673642253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4040,'','Cash','','2023-01-13 23:49:28','','0','12','2023-01-13 23:49:28','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121673642448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4041,'','Cash','','2023-01-14 00:11:28','','0','12','2023-01-14 00:11:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673642973','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4042,'','Cash','','2023-01-14 00:47:19','','0','12','2023-01-14 00:47:19','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673646400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4043,'','Cash','','2023-01-14 00:49:49','','0','12','2023-01-14 00:49:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673646469','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4044,'','Cash','','2023-01-14 00:58:36','','0','12','2023-01-14 00:58:36','','2460','2460','1','retail','0','2460','1','0','0','0','0','0','0','printed',' ','','1','0','121673646593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4045,'','Cash','','2023-01-14 01:03:22','','0','12','2023-01-14 01:03:22','','2570','2570','1','retail','0','2570','1','0','0','0','0','0','0','printed',' ','','1','0','121673647226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4046,'','Cash','','2023-01-14 01:13:41','','0','12','2023-01-14 01:13:41','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121673647494','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4047,'','Cash','','2023-01-14 01:24:57','','0','12','2023-01-14 01:24:57','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673648079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4048,'','Cash','','2023-01-14 01:40:31','','0','12','2023-01-14 01:40:31','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673648751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4049,'','Cash','','2023-01-14 01:47:35','','0','12','2023-01-14 01:47:35','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121673649638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4050,'','Cash','','2023-01-14 01:50:32','','0','12','2023-01-14 01:50:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673650067','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4051,'','Cash','','2023-01-14 01:52:40','','0','12','2023-01-14 01:52:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673650237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4052,'','Cash','','2023-01-14 02:00:09','','0','12','2023-01-14 02:00:09','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673650398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4053,'','Cash','','2023-01-14 02:51:54','','0','12','2023-01-14 02:51:54','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121673650815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4054,'','Cash','','2023-01-14 03:15:05','','0','12','2023-01-14 03:15:05','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121673653979','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4055,'','Cash','','2023-01-14 03:42:23','','0','12','2023-01-14 03:42:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673655335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4056,'','Cash','','2023-01-14 04:11:25','','0','12','2023-01-14 04:11:25','','1450','1450','1','retail','0','1450','1','0','0','0','0','0','0','printed',' ','','1','0','121673656952','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4057,'','Cash','','2023-01-14 06:54:02','','0','12','2023-01-14 06:54:02','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121673668284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4058,'','Cash','','2023-01-14 13:35:58','','0','12','2023-01-14 13:35:58','','4080','4080','1','retail','0','4080','1','0','0','0','0','0','0','printed',' ','','1','0','121673692414','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4059,'','Cash','','2023-01-14 13:43:49','','0','12','2023-01-14 13:43:49','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121673692562','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4060,'','Cash','','2023-01-14 16:29:38','','0','12','2023-01-14 16:29:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673702872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4061,'','Cash','','2023-01-14 17:14:12','','0','12','2023-01-14 17:14:12','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673705635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4062,'','Cash','','2023-01-14 21:34:45','','0','12','2023-01-14 21:34:45','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673721232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4063,'','Cash','','2023-01-14 21:44:38','','0','12','2023-01-14 21:44:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673721290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4064,'','Cash','','2023-01-14 22:52:36','','0','12','2023-01-14 22:52:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673721883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4065,'','Cash','','2023-01-14 23:16:28','','0','12','2023-01-14 23:16:28','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121673725961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4066,'','Cash','','2023-01-14 23:22:15','','0','12','2023-01-14 23:22:15','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121673727430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4067,'','Cash','','2023-01-14 23:24:45','','0','12','2023-01-14 23:24:45','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673727830','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4068,'','Cash','','2023-01-15 00:09:43','','0','12','2023-01-15 00:09:43','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121673729044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4069,'','Cash','','2023-01-15 00:11:20','','0','12','2023-01-15 00:11:20','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673730595','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4070,'','Cash','','2023-01-15 00:11:49','','0','12','2023-01-15 00:11:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673730686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4071,'','Cash','','2023-01-15 00:21:39','','0','12','2023-01-15 00:21:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673730725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4072,'','Cash','','2023-01-15 00:26:20','','0','12','2023-01-15 00:26:20','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121673731546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4073,'','Cash','','2023-01-15 00:32:54','','0','12','2023-01-15 00:32:54','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121673731662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4074,'','Cash','','2023-01-15 00:33:36','','0','12','2023-01-15 00:33:36','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121673731979','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4075,'','Cash','','2023-01-15 00:36:20','','0','12','2023-01-15 00:36:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673732042','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4076,'','Cash','','2023-01-15 00:39:27','','0','12','2023-01-15 00:39:28','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673732185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4077,'','Cash','','2023-01-15 00:44:28','','0','12','2023-01-15 00:44:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673732435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4078,'','Cash','','2023-01-15 00:51:55','','0','12','2023-01-15 00:51:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673732800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4079,'','Cash','','2023-01-15 00:53:40','','0','12','2023-01-15 00:53:40','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121673733123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4080,'','Cash','','2023-01-15 01:02:02','','0','12','2023-01-15 01:02:02','','2190','2190','1','retail','0','2190','1','0','0','0','0','0','0','printed',' ','','1','0','121673733231','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4081,'','Cash','','2023-01-15 01:06:43','','0','12','2023-01-15 01:06:43','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121673733763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4082,'','Cash','','2023-01-15 01:08:32','','0','12','2023-01-15 01:08:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673734062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4083,'','Cash','','2023-01-15 01:14:13','','0','12','2023-01-15 01:14:13','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121673734117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4084,'','Cash','','2023-01-15 01:25:20','','0','12','2023-01-15 01:25:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673734552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4085,'','Cash','','2023-01-15 01:39:15','','0','12','2023-01-15 01:39:15','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673735131','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4086,'','Cash','','2023-01-15 01:59:57','','0','12','2023-01-15 01:59:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673735960','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4087,'','Cash','','2023-01-15 02:12:04','','0','12','2023-01-15 02:12:04','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121673737839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4088,'','Cash','','2023-01-15 02:53:11','','0','12','2023-01-15 02:53:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673737975','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4089,'','Cash','','2023-01-15 03:01:29','','0','12','2023-01-15 03:01:29','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121673740398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4090,'','Cash','','2023-01-15 03:05:52','','0','12','2023-01-15 03:05:52','','1190','1190','1','retail','0','1190','1','0','0','0','0','0','0','printed',' ','','1','0','121673740897','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4091,'','Cash','','2023-01-15 03:21:04','','0','12','2023-01-15 03:21:04','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121673741203','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4092,'','Cash','','2023-01-15 04:09:02','','0','12','2023-01-15 04:09:02','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121673742096','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4093,'','Cash','','2023-01-15 04:39:15','','0','12','2023-01-15 04:39:15','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121673746449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4094,'','Cash','','2023-01-15 04:50:31','','0','12','2023-01-15 04:50:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121673747307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4095,'','Cash','','2023-01-15 05:44:49','','0','12','2023-01-15 05:44:49','','790','790','1','retail','0','790','1','0','0','0','0','0','0','printed',' ','','1','0','121673748100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4096,'','Cash','','2023-01-15 09:57:10','','0','12','2023-01-15 09:57:10','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673765821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4097,'','Cash','','2023-01-15 12:28:13','','0','12','2023-01-15 12:28:13','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121673774880','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4098,'','Cash','','2023-01-15 12:37:59','','0','12','2023-01-15 12:37:59','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121673774900','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4099,'','Cash','','2023-01-15 15:32:40','','0','12','2023-01-15 15:32:40','','7300','7300','1','retail','0','7300','1','0','0','0','0','0','0','printed',' ','','1','0','121673778654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4100,'','Cash','','2023-01-15 16:18:19','','0','12','2023-01-15 16:18:19','','1470','1470','1','retail','0','1470','1','0','0','0','0','0','0','printed',' ','','1','0','121673786098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4101,'','Cash','','2023-01-15 19:11:31','','0','12','2023-01-15 19:11:31','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121673799006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4102,'','Cash','','2023-01-15 19:21:13','','0','12','2023-01-15 19:21:13','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121673799341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4103,'','Cash','','2023-01-15 20:51:23','','0','12','2023-01-15 20:51:23','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121673799701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4104,'','Cash','','2023-01-15 21:26:38','','0','12','2023-01-15 21:26:38','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121673805128','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4105,'','Cash','','2023-01-15 21:32:33','','0','12','2023-01-15 21:32:33','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121673807268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4106,'','Cash','','2023-01-15 21:41:06','','0','12','2023-01-15 21:41:06','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673807564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4107,'','Cash','','2023-01-15 21:42:46','','0','12','2023-01-15 21:42:46','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673808148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4108,'','Cash','','2023-01-15 21:52:21','','0','12','2023-01-15 21:52:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673808728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4109,'','Cash','','2023-01-15 22:15:07','','0','12','2023-01-15 22:15:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673808745','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4110,'','Cash','','2023-01-15 22:29:17','','0','12','2023-01-15 22:29:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673810121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4111,'','Cash','','2023-01-15 22:41:24','','0','12','2023-01-15 22:41:24','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673811673','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4112,'','Cash','','2023-01-15 22:43:39','','0','12','2023-01-15 22:43:39','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121673811690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4113,'','Cash','','2023-01-15 23:41:38','','0','12','2023-01-15 23:41:38','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121673811969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4114,'','Cash','','2023-01-16 00:01:13','','0','12','2023-01-16 00:01:13','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673816449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4115,'','Cash','','2023-01-16 00:34:30','','0','12','2023-01-16 00:34:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673816480','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4116,'','Cash','','2023-01-16 00:35:50','','0','12','2023-01-16 00:35:50','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673818476','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4117,'','Cash','','2023-01-16 01:00:29','','0','12','2023-01-16 01:00:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673818554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4118,'','Cash','','2023-01-16 07:19:53','','0','12','2023-01-16 07:19:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673828055','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4119,'','Cash','','2023-01-16 07:20:15','','0','12','2023-01-16 07:20:15','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121673842802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4120,'','Cash','','2023-01-16 09:26:38','','0','12','2023-01-16 09:26:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673848599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4121,'','Cash','','2023-01-16 13:41:58','','0','12','2023-01-16 13:41:58','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673864944','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4122,'','Cash','','2023-01-16 13:52:20','','0','12','2023-01-16 13:52:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673865724','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4123,'','Cash','','2023-01-16 14:58:22','','0','12','2023-01-16 14:58:22','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121673866345','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4124,'','Cash','','2023-01-16 15:24:00','','0','12','2023-01-16 15:24:00','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673870318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4125,'','Cash','','2023-01-16 16:30:33','','0','12','2023-01-16 16:30:33','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121673875726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4126,'','Cash','','2023-01-16 19:42:02','','0','12','2023-01-16 19:42:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673885035','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4127,'','Cash','','2023-01-16 22:28:57','','0','12','2023-01-16 22:28:57','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121673896740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4128,'','Cash','','2023-01-16 22:41:05','','0','12','2023-01-16 22:41:05','','9250','9250','1','retail','0','9250','1','0','0','0','0','0','0','printed',' ','','1','0','121673897343','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4129,'','Cash','','2023-01-16 22:43:53','','0','12','2023-01-16 22:43:53','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673898216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4130,'','Cash','','2023-01-17 00:10:54','','0','12','2023-01-17 00:10:54','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673903421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4131,'','Cash','','2023-01-17 00:24:28','','0','12','2023-01-17 00:24:28','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673904260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4132,'','Cash','','2023-01-17 01:33:52','','0','12','2023-01-17 01:33:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673904273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4133,'','Cash','','2023-01-17 01:47:03','','0','12','2023-01-17 01:47:03','','4660','4660','1','retail','0','4660','1','0','0','0','0','0','0','printed',' ','','1','0','121673908440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4134,'','Cash','','2023-01-17 01:51:40','','0','12','2023-01-17 01:51:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673909413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4135,'','Cash','','2023-01-17 02:42:55','','0','12','2023-01-17 02:42:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673909590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4136,'','Cash','','2023-01-17 02:43:13','','0','12','2023-01-17 02:43:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673912580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4137,'','Cash','','2023-01-17 03:33:57','','0','12','2023-01-17 03:33:57','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673912783','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4138,'','Cash','','2023-01-17 11:37:59','','0','12','2023-01-17 11:37:59','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121673942367','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4139,'','Cash','','2023-01-17 14:23:57','','0','12','2023-01-17 14:23:57','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673954627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4140,'','Cash','','2023-01-17 15:31:19','','0','12','2023-01-17 15:31:19','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673954645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4141,'','Cash','','2023-01-17 15:44:04','','0','12','2023-01-17 15:44:04','','3030','3030','1','retail','0','3030','1','0','0','0','0','0','0','printed',' ','','1','0','121673958686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4142,'','Cash','','2023-01-17 16:48:24','','0','12','2023-01-17 16:48:24','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121673959629','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4143,'','Cash','','2023-01-17 17:11:28','','0','12','2023-01-17 17:11:28','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673963438','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4144,'','Cash','','2023-01-17 17:15:28','','0','12','2023-01-17 17:15:28','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121673964898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4145,'','Cash','','2023-01-17 17:38:06','','0','12','2023-01-17 17:38:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121673965026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4146,'','Cash','','2023-01-17 17:38:31','','0','12','2023-01-17 17:38:31','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121673966291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4147,'','Cash','','2023-01-17 18:06:00','','0','12','2023-01-17 18:06:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121673966319','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4148,'','Cash','','2023-01-17 18:58:47','','0','12','2023-01-17 18:58:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673967966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4149,'','Cash','','2023-01-17 19:19:58','','0','12','2023-01-17 19:19:58','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121673971132','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4150,'','Cash','','2023-01-17 19:34:09','','0','12','2023-01-17 19:34:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673972925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4151,'','Cash','','2023-01-17 20:08:41','','0','12','2023-01-17 20:08:41','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121673973255','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4152,'','Cash','','2023-01-17 21:10:14','','0','12','2023-01-17 21:10:14','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121673975329','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4153,'','Cash','','2023-01-17 21:12:35','','0','12','2023-01-17 21:12:35','','8850','8850','1','retail','0','8850','1','0','0','0','0','0','0','printed',' ','','1','0','121673979070','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4154,'','Cash','','2023-01-17 21:15:06','','0','12','2023-01-17 21:15:06','','4500','4500','1','retail','0','4500','1','0','0','0','0','0','0','printed',' ','','1','0','121673979174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4155,'','Cash','','2023-01-17 21:19:52','','0','12','2023-01-17 21:19:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673979311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4156,'','Cash','','2023-01-17 22:33:10','','0','12','2023-01-17 22:33:10','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121673979645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4157,'','Cash','','2023-01-17 22:41:28','','0','12','2023-01-17 22:41:28','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121673984015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4158,'','Cash','','2023-01-17 22:53:05','','0','12','2023-01-17 22:53:05','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121673984949','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4159,'','Cash','','2023-01-17 22:59:32','','0','12','2023-01-17 22:59:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121673985192','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4160,'','Cash','','2023-01-17 23:17:21','','0','12','2023-01-17 23:17:21','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121673985579','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4161,'','Cash','','2023-01-17 23:34:13','','0','12','2023-01-17 23:34:13','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121673986647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4162,'','Cash','','2023-01-17 23:49:44','','0','12','2023-01-17 23:49:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121673987665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4163,'','Cash','','2023-01-18 00:03:51','','0','12','2023-01-18 00:03:51','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121673988651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4164,'','Cash','','2023-01-18 00:21:17','','0','12','2023-01-18 00:21:17','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121673989691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4165,'','Cash','','2023-01-18 00:37:55','','0','12','2023-01-18 00:37:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121673990486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4166,'','Cash','','2023-01-18 01:38:20','','0','12','2023-01-18 01:38:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121673995064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4167,'','Cash','','2023-01-18 04:41:04','','0','12','2023-01-18 04:41:04','','2660','2660','1','retail','0','2660','1','0','0','0','0','0','0','printed',' ','','1','0','121674005887','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4168,'','Cash','','2023-01-18 11:02:40','','0','12','2023-01-18 11:02:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674026752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4169,'','Cash','','2023-01-18 11:09:08','','0','12','2023-01-18 11:09:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674028969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4170,'','Cash','','2023-01-18 17:02:57','','0','12','2023-01-18 17:02:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674050561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4171,'','Cash','','2023-01-18 18:59:51','','0','12','2023-01-18 18:59:51','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674050583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4172,'','Cash','','2023-01-18 19:37:07','','0','12','2023-01-18 19:37:07','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674059813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4173,'','Cash','','2023-01-18 21:31:34','','0','12','2023-01-18 21:31:34','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121674059833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4174,'','Cash','','2023-01-18 21:48:06','','0','12','2023-01-18 21:48:06','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121674066923','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4175,'','Cash','','2023-01-18 23:05:48','','0','12','2023-01-18 23:05:48','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674072082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4176,'','Cash','','2023-01-18 23:22:54','','0','12','2023-01-18 23:22:54','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674072492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4177,'','Cash','','2023-01-18 23:49:19','','0','12','2023-01-18 23:49:19','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121674073379','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4178,'','Cash','','2023-01-19 01:11:05','','0','12','2023-01-19 01:11:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674074995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4179,'','Cash','','2023-01-19 01:53:14','','0','12','2023-01-19 01:53:14','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121674082360','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4180,'','Cash','','2023-01-19 18:35:38','','0','12','2023-01-19 18:35:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674142528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4181,'','Cash','','2023-01-19 18:42:49','','0','12','2023-01-19 18:42:49','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121674142546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4182,'','Cash','','2023-01-19 19:42:39','','0','12','2023-01-19 19:42:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674143107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4183,'','Cash','','2023-01-19 20:16:10','','0','12','2023-01-19 20:16:10','','7500','7500','1','retail','0','7500','1','0','0','0','0','0','0','printed',' ','','1','0','121674146568','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4184,'','Cash','','2023-01-19 20:36:32','','0','12','2023-01-19 20:36:32','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674148590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4185,'','Cash','','2023-01-19 20:49:26','','0','12','2023-01-19 20:49:26','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674149799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4186,'','Cash','','2023-01-19 21:24:16','','0','12','2023-01-19 21:24:16','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121674150747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4187,'','Cash','','2023-01-19 21:47:23','','0','12','2023-01-19 21:47:23','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121674152758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4188,'','Cash','','2023-01-19 22:28:04','','0','12','2023-01-19 22:28:04','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121674154103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4189,'','Cash','','2023-01-19 23:24:10','','0','12','2023-01-19 23:24:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674156490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4190,'','Cash','','2023-01-20 00:14:57','','0','12','2023-01-20 00:14:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674159874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4191,'','Cash','','2023-01-20 00:19:05','','0','12','2023-01-20 00:19:05','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121674162932','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4192,'','Cash','','2023-01-20 00:39:42','','0','12','2023-01-20 00:39:42','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121674163177','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4193,'','Cash','','2023-01-20 00:40:08','','0','12','2023-01-20 00:40:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674164395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4194,'','Cash','','2023-01-20 00:43:58','','0','12','2023-01-20 00:43:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674164413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4195,'','Cash','','2023-01-20 00:50:23','','0','12','2023-01-20 00:50:23','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121674164656','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4196,'','Cash','','2023-01-20 00:58:12','','0','12','2023-01-20 00:58:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674165483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4197,'','Cash','','2023-01-20 01:06:16','','0','12','2023-01-20 01:06:16','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121674165569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4198,'','Cash','','2023-01-20 01:39:06','','0','12','2023-01-20 01:39:06','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121674165981','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4199,'','Cash','','2023-01-20 01:42:05','','0','12','2023-01-20 01:42:05','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674167955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4200,'','Cash','','2023-01-20 01:47:29','','0','12','2023-01-20 01:47:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674168436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4201,'','Cash','','2023-01-20 02:29:38','','0','12','2023-01-20 02:29:39','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121674169410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4202,'','Cash','','2023-01-20 02:34:52','','0','12','2023-01-20 02:34:52','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121674171009','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4203,'','Cash','','2023-01-20 03:33:41','','0','12','2023-01-20 03:33:41','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121674171297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4204,'','Cash','','2023-01-20 08:03:07','','0','12','2023-01-20 08:03:07','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674190789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4205,'','Cash','','2023-01-20 09:25:44','','0','12','2023-01-20 09:25:44','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121674190998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4206,'','Cash','','2023-01-20 09:26:58','','0','12','2023-01-20 09:26:58','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121674195962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4207,'','Cash','','2023-01-20 10:24:23','','0','12','2023-01-20 10:24:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674196027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4208,'','Cash','','2023-01-20 19:10:17','','0','12','2023-01-20 19:10:17','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121674230076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4209,'','Cash','','2023-01-20 19:12:12','','0','12','2023-01-20 19:12:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674231112','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4210,'','Cash','','2023-01-20 20:27:51','','0','12','2023-01-20 20:27:51','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121674235659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4211,'','Cash','','2023-01-20 20:45:34','','0','12','2023-01-20 20:45:34','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674235679','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4212,'','Cash','','2023-01-20 20:51:14','','0','12','2023-01-20 20:51:14','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121674236955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4213,'','Cash','','2023-01-20 22:02:37','','0','12','2023-01-20 22:02:37','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121674237397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4214,'','Cash','','2023-01-20 22:06:00','','0','12','2023-01-20 22:06:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674241364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4215,'','Cash','','2023-01-20 23:17:06','','0','12','2023-01-20 23:17:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674241564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4216,'','Cash','','2023-01-20 23:58:34','','0','12','2023-01-20 23:58:34','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121674248285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4217,'','Cash','','2023-01-21 00:32:09','','0','12','2023-01-21 00:32:09','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121674250309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4218,'','Cash','','2023-01-21 01:32:19','','0','12','2023-01-21 01:32:19','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121674250583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4219,'','Cash','','2023-01-21 01:43:16','','0','12','2023-01-21 01:43:16','','15480','15480','1','retail','0','15480','1','0','0','0','0','0','0','printed',' ','','1','0','121674254093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4220,'','Cash','','2023-01-21 02:41:05','','0','12','2023-01-21 02:41:05','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121674254607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4221,'','Cash','','2023-01-21 03:10:52','','0','12','2023-01-21 03:10:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674259828','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4222,'','Cash','','2023-01-21 04:38:15','','0','12','2023-01-21 04:38:16','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674265044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4223,'','Cash','','2023-01-21 04:43:11','','0','12','2023-01-21 04:43:11','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121674265330','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4224,'','Cash','','2023-01-21 04:45:22','','0','12','2023-01-21 04:45:22','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121674265426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4225,'','Cash','','2023-01-21 13:01:09','','0','12','2023-01-21 13:01:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674295260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4226,'','Cash','','2023-01-21 13:06:42','','0','12','2023-01-21 13:06:42','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121674295275','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4227,'','Cash','','2023-01-21 13:07:41','','0','12','2023-01-21 13:07:41','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121674295609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4228,'','Cash','','2023-01-21 15:35:27','','0','12','2023-01-21 15:35:27','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121674295854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4229,'','Cash','','2023-01-21 16:55:19','','0','12','2023-01-21 16:55:19','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121674304533','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4230,'','Cash','','2023-01-21 16:58:23','','0','12','2023-01-21 16:58:24','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121674309326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4231,'','Cash','','2023-01-21 17:06:34','','0','12','2023-01-21 17:06:34','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121674309984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4232,'','Cash','','2023-01-21 17:17:02','','0','12','2023-01-21 17:17:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674310072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4233,'','Cash','','2023-01-21 17:30:58','','0','12','2023-01-21 17:30:58','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121674310627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4234,'','Cash','','2023-01-21 18:11:58','','0','12','2023-01-21 18:11:58','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674311464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4235,'','Cash','','2023-01-21 19:58:02','','0','12','2023-01-21 19:58:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674313943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4236,'','Cash','','2023-01-21 19:59:38','','0','12','2023-01-21 19:59:38','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121674320369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4237,'','Cash','','2023-01-21 20:31:45','','0','12','2023-01-21 20:31:45','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121674320561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4238,'','Cash','','2023-01-21 20:43:48','','0','12','2023-01-21 20:43:48','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121674322339','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4239,'','Cash','','2023-01-21 21:49:44','','0','12','2023-01-21 21:49:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674326971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4240,'','Cash','','2023-01-21 21:59:15','','0','12','2023-01-21 21:59:15','','1880','1880','1','retail','0','1880','1','0','0','0','0','0','0','printed',' ','','1','0','121674327521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4241,'','Cash','','2023-01-21 22:09:23','','0','12','2023-01-21 22:09:23','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121674327599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4242,'','Cash','','2023-01-21 22:13:16','','0','12','2023-01-21 22:13:16','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121674328167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4243,'','Cash','','2023-01-21 22:19:40','','0','12','2023-01-21 22:19:40','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121674328763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4244,'','Cash','','2023-01-21 22:35:03','','0','12','2023-01-21 22:35:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674328796','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4245,'','Cash','','2023-01-21 23:03:14','','0','12','2023-01-21 23:03:14','','760','760','1','retail','0','760','1','0','0','0','0','0','0','printed',' ','','1','0','121674329711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4246,'','Cash','','2023-01-21 23:14:37','','0','12','2023-01-21 23:14:37','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674331400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4247,'','Cash','','2023-01-21 23:59:37','','0','12','2023-01-21 23:59:37','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674332087','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4248,'','Cash','','2023-01-22 00:07:12','','0','12','2023-01-22 00:07:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674334782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4249,'','Cash','','2023-01-22 00:11:44','','0','12','2023-01-22 00:11:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674335475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4250,'','Cash','','2023-01-22 00:12:00','','0','12','2023-01-22 00:12:00','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121674335508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4251,'','Cash','','2023-01-22 00:54:03','','0','12','2023-01-22 00:54:03','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121674335525','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4252,'','Cash','','2023-01-22 00:56:57','','0','12','2023-01-22 00:56:57','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674338209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4253,'','Cash','','2023-01-22 01:18:59','','0','12','2023-01-22 01:18:59','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121674338276','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4254,'','Cash','','2023-01-22 01:26:36','','0','12','2023-01-22 01:26:36','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121674339543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4255,'','Cash','','2023-01-22 01:28:03','','0','12','2023-01-22 01:28:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674340071','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4256,'','Cash','','2023-01-22 01:36:01','','0','12','2023-01-22 01:36:01','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674340088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4257,'','Cash','','2023-01-22 01:45:04','','0','12','2023-01-22 01:45:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674340578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4258,'','Cash','','2023-01-22 02:02:32','','0','12','2023-01-22 02:02:32','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121674342139','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4259,'','Cash','','2023-01-22 02:05:45','','0','12','2023-01-22 02:05:46','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121674342203','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4260,'','Cash','','2023-01-22 02:10:50','','0','12','2023-01-22 02:10:50','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674342630','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4261,'','Cash','','2023-01-22 03:27:56','','0','12','2023-01-22 03:27:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674342654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4262,'','Cash','','2023-01-22 03:41:20','','0','12','2023-01-22 03:41:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674347293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4263,'','Cash','','2023-01-22 03:47:09','','0','12','2023-01-22 03:47:09','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121674348085','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4264,'','Cash','','2023-01-22 04:11:21','','0','12','2023-01-22 04:11:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674348434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4265,'','Cash','','2023-01-22 04:37:33','','0','12','2023-01-22 04:37:33','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121674349886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4266,'','Cash','','2023-01-22 04:51:05','','0','12','2023-01-22 04:51:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674351530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4267,'','Cash','','2023-01-22 04:59:18','','0','12','2023-01-22 04:59:18','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121674352730','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4268,'','Cash','','2023-01-22 06:04:21','','0','12','2023-01-22 06:04:21','','3120','3120','1','retail','0','3120','1','0','0','0','0','0','0','printed',' ','','1','0','121674352768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4269,'','Cash','','2023-01-22 06:12:42','','0','12','2023-01-22 06:12:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674357142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4270,'','Cash','','2023-01-22 09:30:44','','0','12','2023-01-22 09:30:44','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121674369017','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4271,'','Cash','','2023-01-22 10:51:33','','0','12','2023-01-22 10:51:33','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121674369134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4272,'','Cash','','2023-01-22 12:46:54','','0','12','2023-01-22 12:46:54','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674380802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4273,'','Cash','','2023-01-22 15:44:18','','0','12','2023-01-22 15:44:18','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674391438','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4274,'','Cash','','2023-01-22 16:35:40','','0','12','2023-01-22 16:35:40','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121674391471','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4275,'','Cash','','2023-01-22 18:49:26','','0','12','2023-01-22 18:49:26','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121674401797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4276,'','Cash','','2023-01-22 21:00:38','','0','12','2023-01-22 21:00:38','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674410356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4277,'','Cash','','2023-01-22 21:17:57','','0','12','2023-01-22 21:17:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674410519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4278,'','Cash','','2023-01-22 23:10:16','','0','12','2023-01-22 23:10:16','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121674411493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4279,'','Cash','','2023-01-22 23:42:08','','0','12','2023-01-22 23:42:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674418255','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4280,'','Cash','','2023-01-23 01:03:08','','0','12','2023-01-23 01:03:08','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674420136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4281,'','Cash','','2023-01-23 02:01:23','','0','12','2023-01-23 02:01:23','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121674425001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4282,'','Cash','','2023-01-23 02:33:00','','0','12','2023-01-23 02:33:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674428495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4283,'','Cash','','2023-01-23 02:39:15','','0','12','2023-01-23 02:39:15','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121674430660','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4284,'','Cash','','2023-01-23 03:01:38','','0','12','2023-01-23 03:01:38','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','1','0','121674430828','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4285,'','Cash','','2023-01-23 04:39:56','','0','12','2023-01-23 04:39:56','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121674436660','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4286,'','Cash','','2023-01-23 05:18:58','','0','12','2023-01-23 05:18:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674439346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4287,'','Cash','','2023-01-23 16:51:18','','0','12','2023-01-23 16:51:18','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121674474943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4288,'','Cash','','2023-01-23 17:11:40','','0','12','2023-01-23 17:11:40','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121674482103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4289,'','Cash','','2023-01-23 17:27:13','','0','12','2023-01-23 17:27:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674484019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4290,'','Cash','','2023-01-23 20:52:44','','0','12','2023-01-23 20:52:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674496343','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4291,'','Cash','','2023-01-23 21:58:09','','0','12','2023-01-23 21:58:09','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121674496373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4292,'','Cash','','2023-01-23 22:21:17','','0','12','2023-01-23 22:21:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674500308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4293,'','Cash','','2023-01-23 22:56:54','','0','12','2023-01-23 22:56:54','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121674501687','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4294,'','Cash','','2023-01-23 23:21:26','','0','12','2023-01-23 23:21:26','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121674503825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4295,'','Cash','','2023-01-23 23:29:16','','0','12','2023-01-23 23:29:16','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121674505710','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4296,'','Cash','','2023-01-23 23:38:08','','0','12','2023-01-23 23:38:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674505768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4297,'','Cash','','2023-01-23 23:58:29','','0','12','2023-01-23 23:58:29','','5760','5760','1','retail','0','5760','1','0','0','0','0','0','0','printed',' ','','1','0','121674506296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4298,'','Cash','','2023-01-24 00:25:54','','0','12','2023-01-24 00:25:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674507515','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4299,'','Cash','','2023-01-24 00:29:54','','0','12','2023-01-24 00:29:54','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121674509383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4300,'','Cash','','2023-01-24 00:50:41','','0','12','2023-01-24 00:50:41','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121674509413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4301,'','Cash','','2023-01-24 01:17:14','','0','12','2023-01-24 01:17:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674512205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4302,'','Cash','','2023-01-24 01:47:30','','0','12','2023-01-24 01:47:30','','2760','2760','1','retail','0','2760','1','0','0','0','0','0','0','printed',' ','','1','0','121674512281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4303,'','Cash','','2023-01-24 02:19:01','','0','12','2023-01-24 02:19:01','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674514062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4304,'','Cash','','2023-01-24 14:48:47','','0','12','2023-01-24 14:48:47','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121674559810','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4305,'','Cash','','2023-01-24 15:03:34','','0','12','2023-01-24 15:03:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674561225','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4306,'','Cash','','2023-01-24 15:33:36','','0','12','2023-01-24 15:33:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674561871','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4307,'','Cash','','2023-01-24 16:15:19','','0','12','2023-01-24 16:15:19','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674564247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4308,'','Cash','','2023-01-24 18:39:52','','0','12','2023-01-24 18:39:53','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121674574608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4309,'','Cash','','2023-01-24 18:43:16','','0','12','2023-01-24 18:43:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674574861','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4310,'','Cash','','2023-01-24 19:10:41','','0','12','2023-01-24 19:10:41','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121674575004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4311,'','Cash','','2023-01-24 19:13:30','','0','12','2023-01-24 19:13:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674576646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4312,'','Cash','','2023-01-24 19:29:16','','0','12','2023-01-24 19:29:16','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121674576822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4313,'','Cash','','2023-01-24 19:56:36','','0','12','2023-01-24 19:56:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674577849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4314,'','Cash','','2023-01-24 20:56:38','','0','12','2023-01-24 20:56:38','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121674582972','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4315,'','Cash','','2023-01-24 21:37:04','','0','12','2023-01-24 21:37:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674583058','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4316,'','Cash','','2023-01-24 22:00:55','','0','12','2023-01-24 22:00:55','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674585434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4317,'','Cash','','2023-01-24 22:01:58','','0','12','2023-01-24 22:01:58','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674586860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4318,'','Cash','','2023-01-24 22:05:13','','0','12','2023-01-24 22:05:13','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121674586924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4319,'','Cash','','2023-01-24 22:07:15','','0','12','2023-01-24 22:07:16','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674587161','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4320,'','Cash','','2023-01-24 22:48:32','','0','12','2023-01-24 22:48:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674587289','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4321,'','Cash','','2023-01-24 22:56:10','','0','12','2023-01-24 22:56:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121674589725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4322,'','Cash','','2023-01-24 23:29:32','','0','12','2023-01-24 23:29:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674590177','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4323,'','Cash','','2023-01-25 00:22:25','','0','12','2023-01-25 00:22:25','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121674592177','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4324,'','Cash','','2023-01-25 00:50:46','','0','12','2023-01-25 00:50:46','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121674595351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4325,'','Cash','','2023-01-25 00:52:01','','0','12','2023-01-25 00:52:01','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121674597062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4326,'','Cash','','2023-01-25 01:53:30','','0','12','2023-01-25 01:53:30','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121674600789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4327,'','Cash','','2023-01-25 03:28:35','','0','12','2023-01-25 03:28:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674600852','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4328,'','Cash','','2023-01-25 03:50:05','','0','12','2023-01-25 03:50:05','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121674606537','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4329,'','Cash','','2023-01-25 16:00:39','','0','12','2023-01-25 16:00:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674651567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4330,'','Cash','','2023-01-25 16:37:30','','0','12','2023-01-25 16:37:30','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121674651647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4331,'','Cash','','2023-01-25 16:56:18','','0','12','2023-01-25 16:56:18','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121674653936','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4332,'','Cash','','2023-01-25 19:25:24','','0','12','2023-01-25 19:25:24','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121674663901','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4333,'','Cash','','2023-01-25 20:03:58','','0','12','2023-01-25 20:03:58','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121674664433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4334,'','Cash','','2023-01-25 20:04:38','','0','12','2023-01-25 20:04:38','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674666245','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4335,'','Cash','','2023-01-25 21:10:41','','0','12','2023-01-25 21:10:41','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121674666375','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4336,'','Cash','','2023-01-25 21:34:50','','0','12','2023-01-25 21:34:50','','9500','9500','1','retail','0','9500','1','0','0','0','0','0','0','printed',' ','','1','0','121674671535','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4337,'','Cash','','2023-01-25 22:08:43','','0','12','2023-01-25 22:08:43','','2670','2670','1','retail','0','2670','1','0','0','0','0','0','0','printed',' ','','1','0','121674671787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4338,'','Cash','','2023-01-25 22:16:52','','0','12','2023-01-25 22:16:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121674674110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4339,'','Cash','','2023-01-25 23:33:28','','0','12','2023-01-25 23:33:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674674217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4340,'','Cash','','2023-01-25 23:35:56','','0','12','2023-01-25 23:35:56','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121674678913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4341,'','Cash','','2023-01-25 23:47:33','','0','12','2023-01-25 23:47:33','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121674679626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4342,'','Cash','','2023-01-25 23:51:35','','0','12','2023-01-25 23:51:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674679663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4343,'','Cash','','2023-01-25 23:59:57','','0','12','2023-01-25 23:59:58','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674680008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4344,'','Cash','','2023-01-26 01:00:18','','0','12','2023-01-26 01:00:18','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121674680403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4345,'','Cash','','2023-01-26 03:14:51','','0','12','2023-01-26 03:14:51','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674684169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4346,'','Cash','','2023-01-26 03:15:23','','0','12','2023-01-26 03:15:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674692100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4347,'','Cash','','2023-01-26 03:17:06','','0','12','2023-01-26 03:17:06','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121674692128','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4348,'','Cash','','2023-01-26 03:33:16','','0','12','2023-01-26 03:33:16','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121674692246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4349,'','Cash','','2023-01-26 03:50:57','','0','12','2023-01-26 03:50:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674694217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4350,'','Cash','','2023-01-26 04:45:19','','0','12','2023-01-26 04:45:19','','5600','5600','1','retail','0','5600','1','0','0','0','0','0','0','printed',' ','','1','0','121674694264','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4351,'','Cash','','2023-01-26 05:30:16','','0','12','2023-01-26 05:30:18','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674697814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4352,'','Cash','','2023-01-26 12:54:57','','0','12','2023-01-26 12:54:57','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674725207','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4353,'','Cash','','2023-01-26 14:47:57','','0','12','2023-01-26 14:47:57','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121674733383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4354,'','Cash','','2023-01-26 15:46:03','','0','12','2023-01-26 15:46:03','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121674737075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4355,'','Cash','','2023-01-26 20:03:23','','0','12','2023-01-26 20:03:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674752575','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4356,'','Cash','','2023-01-26 20:42:07','','0','12','2023-01-26 20:42:07','','5450','5450','1','retail','0','5450','1','0','0','0','0','0','0','printed',' ','','1','0','121674754569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4357,'','Cash','','2023-01-26 20:48:38','','0','12','2023-01-26 20:48:38','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674754940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4358,'','Cash','','2023-01-26 21:14:05','','0','12','2023-01-26 21:14:05','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674755333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4359,'','Cash','','2023-01-26 21:31:23','','0','12','2023-01-26 21:31:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674756910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4360,'','Cash','','2023-01-26 22:23:37','','0','12','2023-01-26 22:23:37','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674761010','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4361,'','Cash','','2023-01-26 22:48:48','','0','12','2023-01-26 22:48:48','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121674761021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4362,'','Cash','','2023-01-26 22:58:18','','0','12','2023-01-26 22:58:18','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121674762639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4363,'','Cash','','2023-01-26 23:27:59','','0','12','2023-01-26 23:27:59','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121674763104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4364,'','Cash','','2023-01-27 00:07:40','','0','12','2023-01-27 00:07:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674764978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4365,'','Cash','','2023-01-27 00:48:43','','0','12','2023-01-27 00:48:43','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674767388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4366,'','Cash','','2023-01-27 00:49:50','','0','12','2023-01-27 00:49:50','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674769742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4367,'','Cash','','2023-01-27 01:34:39','','0','12','2023-01-27 01:34:39','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121674769828','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4368,'','Cash','','2023-01-27 01:38:14','','0','12','2023-01-27 01:38:14','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121674772485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4369,'','Cash','','2023-01-27 01:59:32','','0','12','2023-01-27 01:59:32','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674773937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4370,'','Cash','','2023-01-27 04:08:33','','0','12','2023-01-27 04:08:33','','3740','3740','1','retail','0','3740','1','0','0','0','0','0','0','printed',' ','','1','0','121674779438','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4371,'','Cash','','2023-01-27 04:12:24','','0','12','2023-01-27 04:12:24','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674781919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4372,'','Cash','','2023-01-27 04:39:20','','0','12','2023-01-27 04:39:20','','6700','6700','1','retail','0','6700','1','0','0','0','0','0','0','printed',' ','','1','0','121674782012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4373,'','Cash','','2023-01-27 05:03:27','','0','12','2023-01-27 05:03:27','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674783806','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4374,'','Cash','','2023-01-27 05:04:05','','0','12','2023-01-27 05:04:05','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121674785036','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4375,'','Cash','','2023-01-27 16:07:28','','0','12','2023-01-27 16:07:28','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121674824804','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4376,'','Cash','','2023-01-27 16:45:49','','0','12','2023-01-27 16:45:49','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674826030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4377,'','Cash','','2023-01-27 17:48:21','','0','12','2023-01-27 17:48:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674827419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4378,'','Cash','','2023-01-27 18:53:53','','0','12','2023-01-27 18:53:53','','5150','5150','1','retail','0','5150','1','0','0','0','0','0','0','printed',' ','','1','0','121674834754','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4379,'','Cash','','2023-01-27 19:02:46','','0','12','2023-01-27 19:02:46','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121674834945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4380,'','Cash','','2023-01-27 21:14:19','','0','12','2023-01-27 21:14:19','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121674835372','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4381,'','Cash','','2023-01-27 21:50:14','','0','12','2023-01-27 21:50:14','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121674843311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4382,'','Cash','','2023-01-27 23:50:30','','0','12','2023-01-27 23:50:30','','6600','6600','1','retail','0','6600','1','0','0','0','0','0','0','printed',' ','','1','0','121674845512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4383,'','Cash','','2023-01-28 00:09:32','','0','12','2023-01-28 00:09:32','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674852692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4384,'','Cash','','2023-01-28 00:14:05','','0','12','2023-01-28 00:14:05','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121674853988','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4385,'','Cash','','2023-01-28 00:32:22','','0','12','2023-01-28 00:32:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674854314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4386,'','Cash','','2023-01-28 00:57:23','','0','12','2023-01-28 00:57:23','','2660','2660','1','retail','0','2660','1','0','0','0','0','0','0','printed',' ','','1','0','121674855349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4387,'','Cash','','2023-01-28 01:45:56','','0','12','2023-01-28 01:45:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674856819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4388,'','Cash','','2023-01-28 02:00:19','','0','12','2023-01-28 02:00:19','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674859665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4389,'','Cash','','2023-01-28 02:16:04','','0','12','2023-01-28 02:16:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121674860425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4390,'','Cash','','2023-01-28 02:52:31','','0','12','2023-01-28 02:52:31','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674861373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4391,'','Cash','','2023-01-28 03:35:49','','0','12','2023-01-28 03:35:49','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121674863566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4392,'','Cash','','2023-01-28 03:38:53','','0','12','2023-01-28 03:38:53','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121674866302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4393,'','Cash','','2023-01-28 04:48:16','','0','12','2023-01-28 04:48:16','','5000','5000','1','retail','0','5000','1','0','0','0','0','0','0','printed',' ','','1','0','121674870451','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4394,'','Cash','','2023-01-28 04:50:43','','0','12','2023-01-28 04:50:43','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674870561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4395,'','Cash','','2023-01-28 05:26:12','','0','12','2023-01-28 05:26:13','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674872735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4396,'','Cash','','2023-01-28 05:27:41','','0','12','2023-01-28 05:27:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121674872814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4397,'','Cash','','2023-01-28 05:54:31','','0','12','2023-01-28 05:54:31','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121674874429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4398,'','Cash','','2023-01-28 06:25:22','','0','12','2023-01-28 06:25:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674874523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4399,'','Cash','','2023-01-28 13:22:26','','0','12','2023-01-28 13:22:26','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121674901335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4400,'','Cash','','2023-01-28 13:23:21','','0','12','2023-01-28 13:23:21','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121674901352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4401,'','Cash','','2023-01-28 13:39:26','','0','12','2023-01-28 13:39:26','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121674901406','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4402,'','Cash','','2023-01-28 13:45:21','','0','12','2023-01-28 13:45:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674902712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4403,'','Cash','','2023-01-28 14:03:53','','0','12','2023-01-28 14:03:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121674903824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4404,'','Cash','','2023-01-28 15:40:43','','0','12','2023-01-28 15:40:43','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121674903839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4405,'','Cash','','2023-01-28 18:40:01','','0','12','2023-01-28 18:40:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674919048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4406,'','Cash','','2023-01-28 19:45:36','','0','12','2023-01-28 19:45:36','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121674924291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4407,'','Cash','','2023-01-28 22:29:20','','0','12','2023-01-28 22:29:20','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121674924341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4408,'','Cash','','2023-01-28 22:30:49','','0','12','2023-01-28 22:30:49','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121674934185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4409,'','Cash','','2023-01-28 22:35:34','','0','12','2023-01-28 22:35:34','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674934406','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4410,'','Cash','','2023-01-28 22:39:41','','0','12','2023-01-28 22:39:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674934540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4411,'','Cash','','2023-01-28 22:44:38','','0','12','2023-01-28 22:44:38','','3180','3180','1','retail','0','3180','1','0','0','0','0','0','0','printed',' ','','1','0','121674934787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4412,'','Cash','','2023-01-28 22:48:51','','0','12','2023-01-28 22:48:51','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121674935164','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4413,'','Cash','','2023-01-28 23:01:23','','0','12','2023-01-28 23:01:23','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121674935966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4414,'','Cash','','2023-01-28 23:15:05','','0','12','2023-01-28 23:15:05','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121674936134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4415,'','Cash','','2023-01-28 23:16:15','','0','12','2023-01-28 23:16:15','','740','740','1','retail','0','740','1','0','0','0','0','0','0','printed',' ','','1','0','121674936911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4416,'','Cash','','2023-01-28 23:19:44','','0','12','2023-01-28 23:19:44','','4250','4250','1','retail','0','4250','1','0','0','0','0','0','0','printed',' ','','1','0','121674937170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4417,'','Cash','','2023-01-28 23:22:19','','0','12','2023-01-28 23:22:19','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121674937236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4418,'','Cash','','2023-01-28 23:29:22','','0','12','2023-01-28 23:29:22','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121674937740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4419,'','Cash','','2023-01-28 23:40:27','','0','12','2023-01-28 23:40:27','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121674937815','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4420,'','Cash','','2023-01-28 23:59:11','','0','12','2023-01-28 23:59:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674938517','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4421,'','Cash','','2023-01-29 00:30:56','','0','12','2023-01-29 00:30:56','','1090','1090','1','retail','0','1090','1','0','0','0','0','0','0','printed',' ','','1','0','121674939585','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4422,'','Cash','','2023-01-29 01:00:15','','0','12','2023-01-29 01:00:15','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121674941538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4423,'','Cash','','2023-01-29 01:12:51','','0','12','2023-01-29 01:12:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674943419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4424,'','Cash','','2023-01-29 01:47:47','','0','12','2023-01-29 01:47:47','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121674944217','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4425,'','Cash','','2023-01-29 01:49:00','','0','12','2023-01-29 01:49:00','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121674946123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4426,'','Cash','','2023-01-29 02:12:16','','0','12','2023-01-29 02:12:16','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121674947506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4427,'','Cash','','2023-01-29 02:40:59','','0','12','2023-01-29 02:40:59','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121674947553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4428,'','Cash','','2023-01-29 02:47:23','','0','12','2023-01-29 02:47:23','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121674949273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4429,'','Cash','','2023-01-29 03:52:39','','0','12','2023-01-29 03:52:39','','19800','19800','1','retail','0','19800','1','0','0','0','0','0','0','printed',' ','','1','0','121674949648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4430,'','Cash','','2023-01-29 03:59:15','','0','12','2023-01-29 03:59:15','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121674953569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4431,'','Cash','','2023-01-29 04:18:22','','0','12','2023-01-29 04:18:22','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121674954226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4432,'','Cash','','2023-01-29 04:25:52','','0','12','2023-01-29 04:25:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674955505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4433,'','Cash','','2023-01-29 04:55:31','','0','12','2023-01-29 04:55:31','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121674957311','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4434,'','Cash','','2023-01-29 05:48:04','','0','12','2023-01-29 05:48:04','','5080','5080','1','retail','0','5080','1','0','0','0','0','0','0','printed',' ','','1','0','121674957336','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4435,'','Cash','','2023-01-29 06:30:47','','0','12','2023-01-29 06:30:47','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121674961397','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4436,'','Cash','','2023-01-29 07:39:29','','0','12','2023-01-29 07:39:29','','490','490','1','retail','0','490','1','0','0','0','0','0','0','printed',' ','','1','0','121674963645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4437,'','Cash','','2023-01-29 08:25:07','','0','12','2023-01-29 08:25:08','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121674967234','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4438,'','Cash','','2023-01-29 10:00:51','','0','12','2023-01-29 10:00:51','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121674975604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4439,'','Cash','','2023-01-29 11:27:39','','0','12','2023-01-29 11:27:39','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121674980685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4440,'','Cash','','2023-01-29 12:05:23','','0','12','2023-01-29 12:05:23','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121674980865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4441,'','Cash','','2023-01-29 12:43:36','','0','12','2023-01-29 12:43:36','','5200','5200','1','retail','0','5200','1','0','0','0','0','0','0','printed',' ','','1','0','121674985351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4442,'','Cash','','2023-01-29 16:09:39','','0','12','2023-01-29 16:09:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121674997760','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4443,'','Cash','','2023-01-29 16:48:26','','0','12','2023-01-29 16:48:26','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121674997792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4444,'','Cash','','2023-01-29 17:43:32','','0','12','2023-01-29 17:43:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675000116','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4445,'','Cash','','2023-01-29 18:28:08','','0','12','2023-01-29 18:28:09','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121675003421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4446,'','Cash','','2023-01-29 19:27:10','','0','12','2023-01-29 19:27:10','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675006098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4447,'','Cash','','2023-01-29 19:59:01','','0','12','2023-01-29 19:59:01','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121675009646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4448,'','Cash','','2023-01-29 21:04:49','','0','12','2023-01-29 21:04:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675015459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4449,'','Cash','','2023-01-29 22:12:10','','0','12','2023-01-29 22:12:10','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121675015677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4450,'','Cash','','2023-01-29 23:04:40','','0','12','2023-01-29 23:04:40','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675019603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4451,'','Cash','','2023-01-29 23:05:32','','0','12','2023-01-29 23:05:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121675022688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4452,'','Cash','','2023-01-29 23:11:33','','0','12','2023-01-29 23:11:33','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121675022751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4453,'','Cash','','2023-01-29 23:23:50','','0','12','2023-01-29 23:23:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675023701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4454,'','Cash','','2023-01-30 00:20:40','','0','12','2023-01-30 00:20:40','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121675023885','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4455,'','Cash','','2023-01-30 00:50:34','','0','12','2023-01-30 00:50:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675027247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4456,'','Cash','','2023-01-30 01:42:48','','0','12','2023-01-30 01:42:48','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121675029045','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4457,'','Cash','','2023-01-30 11:24:06','','0','12','2023-01-30 11:24:07','','4600','4600','1','retail','0','4600','1','0','0','0','0','0','0','printed',' ','','1','0','121675056772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4458,'','Cash','','2023-01-30 13:42:14','','0','12','2023-01-30 13:42:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121675075302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4459,'','Cash','','2023-01-30 14:01:31','','0','12','2023-01-30 14:01:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675076484','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4460,'','Cash','','2023-01-30 14:21:58','','0','12','2023-01-30 14:21:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121675076511','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4461,'','Cash','','2023-01-30 15:22:38','','0','12','2023-01-30 15:22:38','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121675077731','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4462,'','Cash','','2023-01-30 16:04:35','','0','12','2023-01-30 16:04:36','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121675081369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4463,'','Cash','','2023-01-30 16:05:57','','0','12','2023-01-30 16:05:57','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675083929','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4464,'','Cash','','2023-01-30 16:08:45','','0','12','2023-01-30 16:08:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675083963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4465,'','Cash','','2023-01-30 16:47:14','','0','12','2023-01-30 16:47:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675084183','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4466,'','Cash','','2023-01-30 20:13:53','','0','12','2023-01-30 20:13:53','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121675098744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4467,'','Cash','','2023-01-30 20:57:48','','0','12','2023-01-30 20:57:48','','2290','2290','1','retail','0','2290','1','0','0','0','0','0','0','printed',' ','','1','0','121675098844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4468,'','Cash','','2023-01-30 21:50:51','','0','12','2023-01-30 21:50:51','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675104636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4469,'','Cash','','2023-01-30 22:14:27','','0','12','2023-01-30 22:14:27','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121675104657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4470,'','Cash','','2023-01-30 22:14:56','','0','12','2023-01-30 22:14:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675106073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4471,'','Cash','','2023-01-30 22:46:01','','0','12','2023-01-30 22:46:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675106102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4472,'','Cash','','2023-01-30 23:17:41','','0','12','2023-01-30 23:17:41','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121675108114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4473,'','Cash','','2023-01-31 10:46:40','','0','12','2023-01-31 10:46:40','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675145805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4474,'','Cash','','2023-01-31 13:51:38','','0','12','2023-01-31 13:51:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675161268','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4475,'','Cash','','2023-01-31 15:57:59','','0','12','2023-01-31 15:57:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675162367','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4476,'','Cash','','2023-01-31 18:29:57','','0','12','2023-01-31 18:29:57','','5910','5910','1','retail','0','5910','1','0','0','0','0','0','0','printed',' ','','1','0','121675178950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4477,'','Cash','','2023-01-31 18:50:07','','0','12','2023-01-31 18:50:07','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675179083','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4478,'','Cash','','2023-01-31 19:03:30','','0','12','2023-01-31 19:03:30','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121675180996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4479,'','Cash','','2023-01-31 19:39:04','','0','12','2023-01-31 19:39:04','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121675183104','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4480,'','Cash','','2023-01-31 19:44:04','','0','12','2023-01-31 19:44:04','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675183433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4481,'','Cash','','2023-01-31 20:37:16','','0','12','2023-01-31 20:37:16','','2070','2070','1','retail','0','2070','1','0','0','0','0','0','0','printed',' ','','1','0','121675183449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4482,'','Cash','','2023-01-31 21:38:03','','0','12','2023-01-31 21:38:04','','2680','2680','1','retail','0','2680','1','0','0','0','0','0','0','printed',' ','','1','0','121675186762','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4483,'','Cash','','2023-01-31 22:16:20','','0','12','2023-01-31 22:16:20','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121675190295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4484,'','Cash','','2023-02-01 00:41:43','','0','12','2023-02-01 00:41:43','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675196179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4485,'','Cash','','2023-02-01 01:51:22','','0','12','2023-02-01 01:51:22','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121675201313','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4486,'','Cash','','2023-02-01 02:10:13','','0','12','2023-02-01 02:10:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675205860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4487,'','Cash','','2023-02-01 02:13:45','','0','12','2023-02-01 02:13:45','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121675206624','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4488,'','Cash','','2023-02-01 02:17:56','','0','12','2023-02-01 02:17:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675206835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4489,'','Cash','','2023-02-01 02:31:13','','0','12','2023-02-01 02:31:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121675207091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4490,'','Cash','','2023-02-01 02:45:01','','0','12','2023-02-01 02:45:01','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675207885','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4491,'','Cash','','2023-02-01 03:53:05','','0','12','2023-02-01 03:53:05','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121675208708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4492,'','Cash','','2023-02-01 03:56:13','','0','12','2023-02-01 03:56:14','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675212791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4493,'','Cash','','2023-02-01 04:45:51','','0','12','2023-02-01 04:45:51','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675213413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4494,'','Cash','','2023-02-01 06:21:21','','0','12','2023-02-01 06:21:21','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675221564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4495,'','Cash','','2023-02-01 13:40:50','','0','12','2023-02-01 13:40:51','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675248025','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4496,'','Cash','','2023-02-01 13:55:06','','0','12','2023-02-01 13:55:06','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121675248072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4497,'','Cash','','2023-02-01 19:11:57','','0','12','2023-02-01 19:11:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675264473','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4498,'','Cash','','2023-02-01 19:41:27','','0','12','2023-02-01 19:41:27','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675267923','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4499,'','Cash','','2023-02-01 20:52:44','','0','12','2023-02-01 20:52:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675269693','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4500,'','Cash','','2023-02-01 20:53:35','','0','12','2023-02-01 20:53:35','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121675273974','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4501,'','Cash','','2023-02-01 21:53:22','','0','12','2023-02-01 21:53:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675276419','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4502,'','Cash','','2023-02-01 21:53:47','','0','12','2023-02-01 21:53:47','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121675277610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4503,'','Cash','','2023-02-01 22:16:31','','0','12','2023-02-01 22:16:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675278984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4504,'','Cash','','2023-02-01 23:09:12','','0','12','2023-02-01 23:09:12','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675278996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4505,'','Cash','','2023-02-01 23:23:36','','0','12','2023-02-01 23:23:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675282157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4506,'','Cash','','2023-02-01 23:36:13','','0','12','2023-02-01 23:36:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675283027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4507,'','Cash','','2023-02-01 23:39:20','','0','12','2023-02-01 23:39:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675283777','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4508,'','Cash','','2023-02-02 00:03:13','','0','12','2023-02-02 00:03:13','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121675283969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4509,'','Cash','','2023-02-02 00:16:45','','0','12','2023-02-02 00:16:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675286184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4510,'','Cash','','2023-02-02 00:21:59','','0','12','2023-02-02 00:21:59','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121675286211','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4511,'','Cash','','2023-02-02 00:41:23','','0','12','2023-02-02 00:41:23','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675286523','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4512,'','Cash','','2023-02-02 00:54:57','','0','12','2023-02-02 00:54:57','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121675287766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4513,'','Cash','','2023-02-02 01:46:07','','0','12','2023-02-02 01:46:07','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121675288503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4514,'','Cash','','2023-02-02 05:07:20','','0','12','2023-02-02 05:07:20','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675303627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4515,'','Cash','','2023-02-02 09:06:04','','0','12','2023-02-02 09:06:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675317942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4516,'','Cash','','2023-02-02 10:12:03','','0','12','2023-02-02 10:12:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675317974','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4517,'','Cash','','2023-02-02 12:29:02','','0','12','2023-02-02 12:29:02','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121675330134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4518,'','Cash','','2023-02-02 16:42:41','','0','12','2023-02-02 16:42:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675344240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4519,'','Cash','','2023-02-02 16:55:47','','0','12','2023-02-02 16:55:47','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121675345369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4520,'','Cash','','2023-02-02 18:52:58','','0','12','2023-02-02 18:52:58','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121675346152','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4521,'','Cash','','2023-02-02 19:26:55','','0','12','2023-02-02 19:26:56','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675353187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4522,'','Cash','','2023-02-02 21:48:27','','0','12','2023-02-02 21:48:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675363666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4523,'','Cash','','2023-02-02 22:45:04','','0','12','2023-02-02 22:45:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675363718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4524,'','Cash','','2023-02-02 22:51:06','','0','12','2023-02-02 22:51:06','','5500','5500','1','retail','0','5500','1','0','0','0','0','0','0','printed',' ','','1','0','121675367119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4525,'','Cash','','2023-02-02 22:52:32','','0','12','2023-02-02 22:52:32','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121675367475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4526,'','Cash','','2023-02-02 23:16:37','','0','12','2023-02-02 23:16:37','','1620','1620','1','retail','0','1620','1','0','0','0','0','0','0','printed',' ','','1','0','121675368722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4527,'','Cash','','2023-02-02 23:20:17','','0','12','2023-02-02 23:20:17','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121675369006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4528,'','Cash','','2023-02-02 23:37:37','','0','12','2023-02-02 23:37:37','','5750','5750','1','retail','0','5750','1','0','0','0','0','0','0','printed',' ','','1','0','121675369325','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4529,'','Cash','','2023-02-02 23:45:10','','0','12','2023-02-02 23:45:10','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675370273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4530,'','Cash','','2023-02-02 23:49:51','','0','12','2023-02-02 23:49:51','','2930','2930','1','retail','0','2930','1','0','0','0','0','0','0','printed',' ','','1','0','121675370858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4531,'','Cash','','2023-02-02 23:51:53','','0','12','2023-02-02 23:51:53','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675371094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4532,'','Cash','','2023-02-03 06:01:46','','0','12','2023-02-03 06:01:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675393243','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4533,'','Cash','','2023-02-03 06:02:49','','0','12','2023-02-03 06:02:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675393346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4534,'','Cash','','2023-02-03 10:48:11','','0','12','2023-02-03 10:48:11','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675410477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4535,'','Cash','','2023-02-03 12:58:16','','0','12','2023-02-03 12:58:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121675414635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4536,'','Cash','','2023-02-03 15:17:23','','0','12','2023-02-03 15:17:23','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675418303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4537,'','Cash','','2023-02-03 15:22:03','','0','12','2023-02-03 15:22:03','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121675426650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4538,'','Cash','','2023-02-03 16:46:42','','0','12','2023-02-03 16:46:42','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121675426928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4539,'','Cash','','2023-02-03 17:47:44','','0','12','2023-02-03 17:47:44','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121675435654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4540,'','Cash','','2023-02-03 18:09:48','','0','12','2023-02-03 18:09:48','','530','530','1','retail','0','530','1','0','0','0','0','0','0','printed',' ','','1','0','121675435671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4541,'','Cash','','2023-02-03 20:36:50','','0','12','2023-02-03 20:36:50','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675445799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4542,'','Cash','','2023-02-03 22:35:02','','0','12','2023-02-03 22:35:02','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121675445821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4543,'','Cash','','2023-02-04 00:53:05','','0','12','2023-02-04 00:53:05','','360','360','1','retail','0','360','1','0','0','0','0','0','0','printed',' ','','1','0','121675452911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4544,'','Cash','','2023-02-04 01:01:57','','0','12','2023-02-04 01:01:57','','5010','5010','1','retail','0','5010','1','0','0','0','0','0','0','printed',' ','','1','0','121675461646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4545,'','Cash','','2023-02-04 01:12:22','','0','12','2023-02-04 01:12:22','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121675461818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4546,'','Cash','','2023-02-04 01:14:03','','0','12','2023-02-04 01:14:03','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121675462348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4547,'','Cash','','2023-02-04 01:28:00','','0','12','2023-02-04 01:28:00','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121675462563','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4548,'','Cash','','2023-02-04 05:02:20','','0','12','2023-02-04 05:02:20','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675474879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4549,'','Cash','','2023-02-04 05:07:59','','0','12','2023-02-04 05:07:59','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121675476160','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4550,'','Cash','','2023-02-04 05:13:03','','0','12','2023-02-04 05:13:03','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121675476738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4551,'','Cash','','2023-02-04 05:15:01','','0','12','2023-02-04 05:15:01','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121675476792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4552,'','Cash','','2023-02-04 05:17:18','','0','12','2023-02-04 05:17:18','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121675476908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4553,'','Cash','','2023-02-04 10:01:55','','0','12','2023-02-04 10:01:55','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121675485406','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4554,'','Cash','','2023-02-04 14:50:24','','0','12','2023-02-04 14:50:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675511281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4555,'','Cash','','2023-02-04 15:26:56','','0','12','2023-02-04 15:26:56','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675513605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4556,'','Cash','','2023-02-04 15:55:30','','0','12','2023-02-04 15:55:30','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121675515317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4557,'','Cash','','2023-02-04 17:30:53','','0','12','2023-02-04 17:30:53','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121675515340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4558,'','Cash','','2023-02-04 19:13:55','','0','12','2023-02-04 19:13:55','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121675521062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4559,'','Cash','','2023-02-04 19:18:11','','0','12','2023-02-04 19:18:11','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121675527244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4560,'','Cash','','2023-02-04 20:10:53','','0','12','2023-02-04 20:10:53','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121675530642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4561,'','Cash','','2023-02-04 20:50:16','','0','12','2023-02-04 20:50:16','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675533002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4562,'','Cash','','2023-02-04 21:05:21','','0','12','2023-02-04 21:05:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675533021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4563,'','Cash','','2023-02-04 21:19:25','','0','12','2023-02-04 21:19:25','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675533926','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4564,'','Cash','','2023-02-04 21:38:50','','0','12','2023-02-04 21:38:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675534775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4565,'','Cash','','2023-02-04 21:59:09','','0','12','2023-02-04 21:59:09','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121675535941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4566,'','Cash','','2023-02-04 22:03:38','','0','12','2023-02-04 22:03:38','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675537410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4567,'','Cash','','2023-02-04 22:37:15','','0','12','2023-02-04 22:37:15','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121675539425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4568,'','Cash','','2023-02-04 23:02:05','','0','12','2023-02-04 23:02:05','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121675540915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4569,'','Cash','','2023-02-04 23:44:26','','0','12','2023-02-04 23:44:26','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121675543426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4570,'','Cash','','2023-02-04 23:50:18','','0','12','2023-02-04 23:50:18','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675543472','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4571,'','Cash','','2023-02-04 23:59:01','','0','12','2023-02-04 23:59:01','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121675543823','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4572,'','Cash','','2023-02-05 00:14:31','','0','12','2023-02-05 00:14:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675545263','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4573,'','Cash','','2023-02-05 00:20:16','','0','12','2023-02-05 00:20:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675545276','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4574,'','Cash','','2023-02-05 00:29:04','','0','12','2023-02-05 00:29:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675545621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4575,'','Cash','','2023-02-05 00:56:46','','0','12','2023-02-05 00:56:46','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121675547762','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4576,'','Cash','','2023-02-05 00:58:29','','0','12','2023-02-05 00:58:29','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121675547877','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4577,'','Cash','','2023-02-05 01:19:56','','0','12','2023-02-05 01:19:56','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675549185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4578,'','Cash','','2023-02-05 01:24:10','','0','12','2023-02-05 01:24:10','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121675549201','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4579,'','Cash','','2023-02-05 01:47:12','','0','12','2023-02-05 01:47:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675549502','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4580,'','Cash','','2023-02-05 01:48:41','','0','12','2023-02-05 01:48:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675550911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4581,'','Cash','','2023-02-05 01:49:42','','0','12','2023-02-05 01:49:42','','1230','1230','1','retail','0','1230','1','0','0','0','0','0','0','printed',' ','','1','0','121675550963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4582,'','Cash','','2023-02-05 01:57:24','','0','12','2023-02-05 01:57:24','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675551006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4583,'','Cash','','2023-02-05 02:03:43','','0','12','2023-02-05 02:03:44','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121675551457','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4584,'','Cash','','2023-02-05 02:34:51','','0','12','2023-02-05 02:34:52','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675551829','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4585,'','Cash','','2023-02-05 02:36:40','','0','12','2023-02-05 02:36:40','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121675553697','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4586,'','Cash','','2023-02-05 02:50:33','','0','12','2023-02-05 02:50:33','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121675553888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4587,'','Cash','','2023-02-05 02:55:03','','0','12','2023-02-05 02:55:03','','2010','2010','1','retail','0','2010','1','0','0','0','0','0','0','printed',' ','','1','0','121675554639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4588,'','Cash','','2023-02-05 03:09:04','','0','12','2023-02-05 03:09:04','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121675555095','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4589,'','Cash','','2023-02-05 03:10:01','','0','12','2023-02-05 03:10:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675555784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4590,'','Cash','','2023-02-05 03:38:28','','0','12','2023-02-05 03:38:28','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121675555805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4591,'','Cash','','2023-02-05 04:11:12','','0','12','2023-02-05 04:11:12','','6500','6500','1','retail','0','6500','1','0','0','0','0','0','0','printed',' ','','1','0','121675557549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4592,'','Cash','','2023-02-05 04:22:21','','0','12','2023-02-05 04:22:21','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675560106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4593,'','Cash','','2023-02-05 04:23:12','','0','12','2023-02-05 04:23:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675560183','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4594,'','Cash','','2023-02-05 04:23:35','','0','12','2023-02-05 04:23:35','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121675560196','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4595,'','Cash','','2023-02-05 04:42:39','','0','12','2023-02-05 04:42:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675560224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4596,'','Cash','','2023-02-05 04:48:33','','0','12','2023-02-05 04:48:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675561387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4597,'','Cash','','2023-02-05 04:49:55','','0','12','2023-02-05 04:49:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675561726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4598,'','Cash','','2023-02-05 05:04:17','','0','12','2023-02-05 05:04:17','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121675562495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4599,'','Cash','','2023-02-05 05:26:14','','0','12','2023-02-05 05:26:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675563962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4600,'','Cash','','2023-02-05 05:43:15','','0','12','2023-02-05 05:43:15','','970','970','1','retail','0','970','1','0','0','0','0','0','0','printed',' ','','1','0','121675563982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4601,'','Cash','','2023-02-05 05:48:02','','0','12','2023-02-05 05:48:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675565209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4602,'','Cash','','2023-02-05 05:53:05','','0','12','2023-02-05 05:53:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675565288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4603,'','Cash','','2023-02-05 06:24:51','','0','12','2023-02-05 06:24:51','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121675566621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4604,'','Cash','','2023-02-05 06:51:32','','0','12','2023-02-05 06:51:32','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121675567497','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4605,'','Cash','','2023-02-05 07:12:16','','0','12','2023-02-05 07:12:16','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675570322','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4606,'','Cash','','2023-02-05 07:50:52','','0','12','2023-02-05 07:50:52','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121675570344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4607,'','Cash','','2023-02-05 08:16:37','','0','12','2023-02-05 08:16:37','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121675572657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4608,'','Cash','','2023-02-05 10:16:49','','0','12','2023-02-05 10:16:49','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675581348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4609,'','Cash','','2023-02-05 19:35:02','','0','12','2023-02-05 19:35:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675614880','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4610,'','Cash','','2023-02-05 21:19:40','','0','12','2023-02-05 21:19:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675614917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4611,'','Cash','','2023-02-05 21:20:03','','0','12','2023-02-05 21:20:03','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675621186','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4612,'','Cash','','2023-02-05 21:34:27','','0','12','2023-02-05 21:34:27','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675621211','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4613,'','Cash','','2023-02-05 22:02:43','','0','12','2023-02-05 22:02:43','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121675622076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4614,'','Cash','','2023-02-05 22:33:52','','0','12','2023-02-05 22:33:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675623767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4615,'','Cash','','2023-02-05 22:46:57','','0','12','2023-02-05 22:46:57','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675626405','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4616,'','Cash','','2023-02-05 23:36:13','','0','12','2023-02-05 23:36:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675629351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4617,'','Cash','','2023-02-05 23:53:44','','0','12','2023-02-05 23:53:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675630409','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4618,'','Cash','','2023-02-06 00:15:14','','0','12','2023-02-06 00:15:15','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675631704','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4619,'','Cash','','2023-02-06 00:45:32','','0','12','2023-02-06 00:45:32','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121675633463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4620,'','Cash','','2023-02-06 01:50:45','','0','12','2023-02-06 01:50:45','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675637433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4621,'','Cash','','2023-02-06 01:54:41','','0','12','2023-02-06 01:54:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675637650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4622,'','Cash','','2023-02-06 01:58:22','','0','12','2023-02-06 01:58:22','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121675637685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4623,'','Cash','','2023-02-06 02:00:17','','0','12','2023-02-06 02:00:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675637909','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4624,'','Cash','','2023-02-06 20:53:49','','0','12','2023-02-06 20:53:49','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121675705953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4625,'','Cash','','2023-02-06 20:59:55','','0','12','2023-02-06 20:59:55','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675706373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4626,'','Cash','','2023-02-06 21:52:15','','0','12','2023-02-06 21:52:15','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675709524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4627,'','Cash','','2023-02-06 22:00:27','','0','12','2023-02-06 22:00:27','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121675709540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4628,'','Cash','','2023-02-06 22:05:13','','0','12','2023-02-06 22:05:13','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121675710100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4629,'','Cash','','2023-02-06 22:44:39','','0','12','2023-02-06 22:44:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675710465','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4630,'','Cash','','2023-02-06 23:21:16','','0','12','2023-02-06 23:21:16','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121675712688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4631,'','Cash','','2023-02-06 23:33:05','','0','12','2023-02-06 23:33:05','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121675715565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4632,'','Cash','','2023-02-07 01:12:45','','0','12','2023-02-07 01:12:45','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121675715963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4633,'','Cash','','2023-02-07 01:23:45','','0','12','2023-02-07 01:23:45','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121675722027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4634,'','Cash','','2023-02-07 03:05:15','','0','12','2023-02-07 03:05:15','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121675722231','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4635,'','Cash','','2023-02-07 04:19:27','','0','12','2023-02-07 04:19:27','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121675732734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4636,'','Cash','','2023-02-07 04:31:34','','0','12','2023-02-07 04:31:34','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121675733449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4637,'','Cash','','2023-02-07 18:53:20','','0','12','2023-02-07 18:53:20','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675785187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4638,'','Cash','','2023-02-07 18:56:57','','0','12','2023-02-07 18:56:57','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121675785385','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4639,'','Cash','','2023-02-07 18:58:29','','0','12','2023-02-07 18:58:29','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121675785485','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4640,'','Cash','','2023-02-07 19:01:32','','0','12','2023-02-07 19:01:32','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675785639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4641,'','Cash','','2023-02-07 19:04:08','','0','12','2023-02-07 19:04:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675785734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4642,'','Cash','','2023-02-07 21:37:33','','0','12','2023-02-07 21:37:33','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121675794515','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4643,'','Cash','','2023-02-07 21:37:59','','0','12','2023-02-07 21:37:59','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121675795058','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4644,'','Cash','','2023-02-07 21:54:30','','0','12','2023-02-07 21:54:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675795084','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4645,'','Cash','','2023-02-07 22:01:41','','0','12','2023-02-07 22:01:41','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121675796079','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4646,'','Cash','','2023-02-07 22:48:36','','0','12','2023-02-07 22:48:36','','6340','6340','1','retail','0','6340','1','0','0','0','0','0','0','printed',' ','','1','0','121675796505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4647,'','Cash','','2023-02-07 23:42:50','','0','12','2023-02-07 23:42:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675802557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4648,'','Cash','','2023-02-08 00:19:55','','0','12','2023-02-08 00:19:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675804785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4649,'','Cash','','2023-02-08 01:05:23','','0','12','2023-02-08 01:05:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675807512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4650,'','Cash','','2023-02-08 01:21:30','','0','12','2023-02-08 01:21:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675807528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4651,'','Cash','','2023-02-08 03:08:49','','0','12','2023-02-08 03:08:49','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675814902','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4652,'','Cash','','2023-02-08 03:21:13','','0','12','2023-02-08 03:21:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675814937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4653,'','Cash','','2023-02-08 03:40:56','','0','12','2023-02-08 03:40:56','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675815683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4654,'','Cash','','2023-02-08 08:19:07','','0','12','2023-02-08 08:19:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675833490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4655,'','Cash','','2023-02-08 14:52:38','','0','12','2023-02-08 14:52:38','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121675851452','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4656,'','Cash','','2023-02-08 16:37:02','','0','12','2023-02-08 16:37:02','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121675857165','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4657,'','Cash','','2023-02-08 16:37:36','','0','12','2023-02-08 16:37:36','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121675863433','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4658,'','Cash','','2023-02-08 22:11:35','','0','12','2023-02-08 22:11:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675877033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4659,'','Cash','','2023-02-08 22:24:49','','0','12','2023-02-08 22:24:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675884270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4660,'','Cash','','2023-02-08 23:18:21','','0','12','2023-02-08 23:18:21','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121675884293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4661,'','Cash','','2023-02-08 23:23:38','','0','12','2023-02-08 23:23:38','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121675887795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4662,'','Cash','','2023-02-09 00:03:50','','0','12','2023-02-09 00:03:50','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121675890136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4663,'','Cash','','2023-02-09 00:08:02','','0','12','2023-02-09 00:08:02','','1580','1580','1','retail','0','1580','1','0','0','0','0','0','0','printed',' ','','1','0','121675890418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4664,'','Cash','','2023-02-09 00:11:18','','0','12','2023-02-09 00:11:18','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121675890528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4665,'','Cash','','2023-02-09 00:16:22','','0','12','2023-02-09 00:16:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121675890970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4666,'','Cash','','2023-02-09 00:30:25','','0','12','2023-02-09 00:30:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675891170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4667,'','Cash','','2023-02-09 00:37:33','','0','12','2023-02-09 00:37:33','','11470','11470','1','retail','0','11470','1','0','0','0','0','0','0','printed',' ','','1','0','121675892001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4668,'','Cash','','2023-02-09 01:01:23','','0','12','2023-02-09 01:01:23','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675893399','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4669,'','Cash','','2023-02-09 01:21:20','','0','12','2023-02-09 01:21:20','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121675893734','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4670,'','Cash','','2023-02-09 01:24:48','','0','12','2023-02-09 01:24:48','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675894970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4671,'','Cash','','2023-02-09 01:33:33','','0','12','2023-02-09 01:33:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121675895092','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4672,'','Cash','','2023-02-09 02:06:41','','0','12','2023-02-09 02:06:41','','8880','8880','1','retail','0','8880','1','0','0','0','0','0','0','printed',' ','','1','0','121675895804','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4673,'','Cash','','2023-02-09 02:45:36','','0','12','2023-02-09 02:45:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675897614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4674,'','Cash','','2023-02-09 02:46:39','','0','12','2023-02-09 02:46:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121675899940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4675,'','Cash','','2023-02-09 03:27:39','','0','12','2023-02-09 03:27:39','','8600','8600','1','retail','0','8600','1','0','0','0','0','0','0','printed',' ','','1','0','121675900004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4676,'','Cash','','2023-02-09 03:32:53','','0','12','2023-02-09 03:32:53','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675902464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4677,'','Cash','','2023-02-09 03:53:18','','0','12','2023-02-09 03:53:18','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121675902789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4678,'','Cash','','2023-02-09 05:22:09','','0','12','2023-02-09 05:22:09','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121675904003','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4679,'','Cash','','2023-02-09 08:20:21','','0','12','2023-02-09 08:20:21','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121675919994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4680,'','Cash','','2023-02-09 20:30:55','','0','12','2023-02-09 20:30:58','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121675963839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4681,'','Cash','','2023-02-09 20:50:33','','0','12','2023-02-09 20:50:33','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121675963873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4682,'','Cash','','2023-02-09 22:18:06','','0','12','2023-02-09 22:18:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675965202','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4683,'','Cash','','2023-02-09 22:43:47','','0','12','2023-02-09 22:43:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121675970292','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4684,'','Cash','','2023-02-09 22:50:22','','0','12','2023-02-09 22:50:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675972205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4685,'','Cash','','2023-02-09 23:04:41','','0','12','2023-02-09 23:04:41','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121675973062','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4686,'','Cash','','2023-02-10 00:03:55','','0','12','2023-02-10 00:03:55','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121675973086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4687,'','Cash','','2023-02-10 00:26:13','','0','12','2023-02-10 00:26:13','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121675977950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4688,'','Cash','','2023-02-10 01:17:47','','0','12','2023-02-10 01:17:47','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121675978056','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4689,'','Cash','','2023-02-10 01:37:27','','0','12','2023-02-10 01:37:27','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121675981073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4690,'','Cash','','2023-02-10 01:47:17','','0','12','2023-02-10 01:47:17','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121675982813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4691,'','Cash','','2023-02-10 02:35:53','','0','12','2023-02-10 02:35:53','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121675982842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4692,'','Cash','','2023-02-10 02:53:10','','0','12','2023-02-10 02:53:10','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121675985760','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4693,'','Cash','','2023-02-10 03:33:27','','0','12','2023-02-10 03:33:27','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121675989187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4694,'','Cash','','2023-02-10 03:58:28','','0','12','2023-02-10 03:58:28','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121675989219','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4695,'','Cash','','2023-02-10 04:08:05','','0','12','2023-02-10 04:08:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121675990715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4696,'','Cash','','2023-02-10 05:58:33','','0','12','2023-02-10 05:58:33','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121675997862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4697,'','Cash','','2023-02-10 10:40:33','','0','12','2023-02-10 10:40:33','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121676014662','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4698,'','Cash','','2023-02-10 20:02:37','','0','12','2023-02-10 20:02:37','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121676048494','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4699,'','Cash','','2023-02-10 20:05:25','','0','12','2023-02-10 20:05:25','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121676048699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4700,'','Cash','','2023-02-10 20:06:37','','0','12','2023-02-10 20:06:37','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121676048740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4701,'','Cash','','2023-02-10 20:10:53','','0','12','2023-02-10 20:10:53','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121676048983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4702,'','Cash','','2023-02-10 22:29:57','','0','12','2023-02-10 22:29:57','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676057384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4703,'','Cash','','2023-02-10 23:27:37','','0','12','2023-02-10 23:27:37','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121676057417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4704,'','Cash','','2023-02-11 00:06:33','','0','12','2023-02-11 00:06:33','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121676063185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4705,'','Cash','','2023-02-11 00:12:38','','0','12','2023-02-11 00:12:38','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121676063204','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4706,'','Cash','','2023-02-11 00:26:46','','0','12','2023-02-11 00:26:46','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121676063572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4707,'','Cash','','2023-02-11 01:03:00','','0','12','2023-02-11 01:03:00','','2350','2350','1','retail','0','2350','1','0','0','0','0','0','0','printed',' ','','1','0','121676064571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4708,'','Cash','','2023-02-11 02:42:51','','0','12','2023-02-11 02:42:51','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121676066742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4709,'','Cash','','2023-02-11 02:49:07','','0','12','2023-02-11 02:49:07','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676072578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4710,'','Cash','','2023-02-11 02:51:24','','0','12','2023-02-11 02:51:24','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121676073008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4711,'','Cash','','2023-02-11 03:18:29','','0','12','2023-02-11 03:18:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676073215','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4712,'','Cash','','2023-02-11 03:21:16','','0','12','2023-02-11 03:21:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676074846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4713,'','Cash','','2023-02-11 03:55:39','','0','12','2023-02-11 03:55:39','','1870','1870','1','retail','0','1870','1','0','0','0','0','0','0','printed',' ','','1','0','121676076886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4714,'','Cash','','2023-02-11 04:14:06','','0','12','2023-02-11 04:14:06','','1140','1140','1','retail','0','1140','1','0','0','0','0','0','0','printed',' ','','1','0','121676077283','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4715,'','Cash','','2023-02-11 04:19:24','','0','12','2023-02-11 04:19:24','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121676078344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4716,'','Cash','','2023-02-11 04:23:03','','0','12','2023-02-11 04:23:03','','610','610','1','retail','0','610','1','0','0','0','0','0','0','printed',' ','','1','0','121676078392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4717,'','Cash','','2023-02-11 04:42:22','','0','12','2023-02-11 04:42:22','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121676079683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4718,'','Cash','','2023-02-11 05:10:30','','0','12','2023-02-11 05:10:30','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121676079748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4719,'','Cash','','2023-02-11 16:27:34','','0','12','2023-02-11 16:27:35','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676122019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4720,'','Cash','','2023-02-11 20:38:58','','0','12','2023-02-11 20:38:58','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121676136236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4721,'','Cash','','2023-02-11 22:54:07','','0','12','2023-02-11 22:54:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676143950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4722,'','Cash','','2023-02-11 22:55:01','','0','12','2023-02-11 22:55:01','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676145288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4723,'','Cash','','2023-02-11 22:56:42','','0','12','2023-02-11 22:56:42','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed',' ','','1','0','121676145362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4724,'','Cash','','2023-02-11 23:02:39','','0','12','2023-02-11 23:02:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676145429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4725,'','Cash','','2023-02-11 23:43:03','','0','12','2023-02-11 23:43:03','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121676145769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4726,'','Cash','','2023-02-12 00:01:20','','0','12','2023-02-12 00:01:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676149266','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4727,'','Cash','','2023-02-12 00:22:52','','0','12','2023-02-12 00:22:52','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121676150564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4728,'','Cash','','2023-02-12 04:28:29','','0','12','2023-02-12 04:28:30','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121676158303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4729,'','Cash','','2023-02-12 04:31:38','','0','12','2023-02-12 04:31:38','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121676165487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4730,'','Cash','','2023-02-12 04:54:05','','0','12','2023-02-12 04:54:05','','1450','1450','1','retail','0','1450','1','0','0','0','0','0','0','printed',' ','','1','0','121676166765','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4731,'','Cash','','2023-02-12 04:54:24','','0','12','2023-02-12 04:54:25','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121676166851','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4732,'','Cash','','2023-02-12 04:55:57','','0','12','2023-02-12 04:55:57','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121676166871','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4733,'','Cash','','2023-02-12 10:44:41','','0','12','2023-02-12 10:44:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676187650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4734,'','Cash','','2023-02-12 11:13:57','','0','12','2023-02-12 11:13:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676187887','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4735,'','Cash','','2023-02-12 11:47:59','','0','12','2023-02-12 11:48:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676189644','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4736,'','Cash','','2023-02-12 11:48:48','','0','12','2023-02-12 11:48:48','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121676191686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4737,'','Cash','','2023-02-12 13:55:36','','0','12','2023-02-12 13:55:36','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121676199290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4738,'','Cash','','2023-02-12 16:15:42','','0','12','2023-02-12 16:15:42','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121676207732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4739,'','Cash','','2023-02-12 17:21:57','','0','12','2023-02-12 17:21:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676207746','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4740,'','Cash','','2023-02-12 17:52:21','','0','12','2023-02-12 17:52:21','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121676213527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4741,'','Cash','','2023-02-12 17:56:42','','0','12','2023-02-12 17:56:42','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121676213567','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4742,'','Cash','','2023-02-12 18:02:55','','0','12','2023-02-12 18:02:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121676214156','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4743,'','Cash','','2023-02-12 18:24:06','','0','12','2023-02-12 18:24:06','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121676215436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4744,'','Cash','','2023-02-12 19:04:18','','0','12','2023-02-12 19:04:18','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676215840','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4745,'','Cash','','2023-02-12 19:10:48','','0','12','2023-02-12 19:10:48','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121676217863','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4746,'','Cash','','2023-02-12 19:28:57','','0','12','2023-02-12 19:28:57','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121676218296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4747,'','Cash','','2023-02-12 19:46:24','','0','12','2023-02-12 19:46:24','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121676219342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4748,'','Cash','','2023-02-12 23:31:49','','0','12','2023-02-12 23:31:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676233896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4749,'','Cash','','2023-02-12 23:32:58','','0','12','2023-02-12 23:32:58','','6320','6320','1','retail','0','6320','1','0','0','0','0','0','0','printed',' ','','1','0','121676233913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4750,'','Cash','','2023-02-12 23:38:43','','0','12','2023-02-12 23:38:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676234310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4751,'','Cash','','2023-02-13 00:12:04','','0','12','2023-02-13 00:12:04','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676236293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4752,'','Cash','','2023-02-13 00:55:30','','0','12','2023-02-13 00:55:30','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121676236332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4753,'','Cash','','2023-02-13 01:23:34','','0','12','2023-02-13 01:23:34','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121676238943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4754,'','Cash','','2023-02-13 11:08:45','','0','12','2023-02-13 11:08:45','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676275701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4755,'','Cash','','2023-02-13 11:20:46','','0','12','2023-02-13 11:20:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121676276410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4756,'','Cash','','2023-02-13 20:08:51','','0','12','2023-02-13 20:08:51','','1160','1160','1','retail','0','1160','1','0','0','0','0','0','0','printed',' ','','1','0','121676306241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4757,'','Cash','','2023-02-13 20:12:43','','0','12','2023-02-13 20:12:43','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676308356','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4758,'','Cash','','2023-02-13 20:18:32','','0','12','2023-02-13 20:18:32','','590','590','1','retail','0','590','1','0','0','0','0','0','0','printed',' ','','1','0','121676308692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4759,'','Cash','','2023-02-13 20:33:46','','0','12','2023-02-13 20:33:46','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121676308719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4760,'','Cash','','2023-02-13 21:52:16','','0','12','2023-02-13 21:52:16','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121676314320','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4761,'','Cash','','2023-02-13 22:41:38','','0','12','2023-02-13 22:41:38','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121676317267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4762,'','Cash','','2023-02-13 22:53:30','','0','12','2023-02-13 22:53:30','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121676317349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4763,'','Cash','','2023-02-13 22:58:16','','0','12','2023-02-13 22:58:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676318283','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4764,'','Cash','','2023-02-13 23:12:53','','0','12','2023-02-13 23:12:53','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121676318303','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4765,'','Cash','','2023-02-13 23:42:19','','0','12','2023-02-13 23:42:20','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676320914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4766,'','Cash','','2023-02-14 00:02:19','','0','12','2023-02-14 00:02:19','','2420','2420','1','retail','0','2420','1','0','0','0','0','0','0','printed',' ','','1','0','121676322090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4767,'','Cash','','2023-02-14 00:19:59','','0','12','2023-02-14 00:19:59','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676322168','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4768,'','Cash','','2023-02-14 00:21:24','','0','12','2023-02-14 00:21:24','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121676323214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4769,'','Cash','','2023-02-14 00:22:01','','0','12','2023-02-14 00:22:01','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121676323294','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4770,'','Cash','','2023-02-14 00:24:33','','0','12','2023-02-14 00:24:33','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121676323350','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4771,'','Cash','','2023-02-14 00:29:05','','0','12','2023-02-14 00:29:05','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121676323491','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4772,'','Cash','','2023-02-14 00:29:52','','0','12','2023-02-14 00:29:52','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121676323774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4773,'','Cash','','2023-02-14 00:36:49','','0','12','2023-02-14 00:36:49','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121676324142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4774,'','Cash','','2023-02-14 04:49:11','','0','12','2023-02-14 04:49:11','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121676339317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4775,'','Cash','','2023-02-14 05:21:49','','0','12','2023-02-14 05:21:49','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121676339359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4776,'','Cash','','2023-02-14 06:44:33','','0','12','2023-02-14 06:44:33','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121676345703','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4777,'','Cash','','2023-02-14 14:38:46','','0','12','2023-02-14 14:38:47','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676366753','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4778,'','Cash','','2023-02-14 14:50:37','','0','12','2023-02-14 14:50:37','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121676374750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4779,'','Cash','','2023-02-14 18:24:03','','0','12','2023-02-14 18:24:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676388130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4780,'','Cash','','2023-02-14 19:51:55','','0','12','2023-02-14 19:51:55','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121676393499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4781,'','Cash','','2023-02-14 19:52:48','','0','12','2023-02-14 19:52:48','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676393553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4782,'','Cash','','2023-02-14 22:05:37','','0','12','2023-02-14 22:05:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676393573','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4783,'','Cash','','2023-02-14 22:16:59','','0','12','2023-02-14 22:16:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676401555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4784,'','Cash','','2023-02-14 22:45:19','','0','12','2023-02-14 22:45:19','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121676403863','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4785,'','Cash','','2023-02-14 22:48:18','','0','12','2023-02-14 22:48:18','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','','1','0','121676403957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4786,'','Cash','','2023-02-14 22:49:25','','0','12','2023-02-14 22:49:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676404147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4787,'','Cash','','2023-02-14 22:49:58','','0','12','2023-02-14 22:49:58','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121676404173','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4788,'','Cash','','2023-02-14 23:25:00','','0','12','2023-02-14 23:25:00','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676404209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4789,'','Cash','','2023-02-14 23:35:35','','0','12','2023-02-14 23:35:35','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121676406883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4790,'','Cash','','2023-02-15 00:40:03','','0','12','2023-02-15 00:40:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676406941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4791,'','Cash','','2023-02-15 00:50:23','','0','12','2023-02-15 00:50:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676410816','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4792,'','Cash','','2023-02-15 01:13:39','','0','12','2023-02-15 01:13:39','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121676411430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4793,'','Cash','','2023-02-15 01:46:06','','0','12','2023-02-15 01:46:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676412825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4794,'','Cash','','2023-02-15 01:47:15','','0','12','2023-02-15 01:47:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676414779','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4795,'','Cash','','2023-02-15 01:48:49','','0','12','2023-02-15 01:48:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676414898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4796,'','Cash','','2023-02-15 01:51:11','','0','12','2023-02-15 01:51:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676414935','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4797,'','Cash','','2023-02-15 02:03:44','','0','12','2023-02-15 02:03:44','','10590','10590','1','retail','0','10590','1','0','0','0','0','0','0','printed',' ','','1','0','121676415154','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4798,'','Cash','','2023-02-15 10:33:22','','0','12','2023-02-15 10:33:22','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121676446386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4799,'','Cash','','2023-02-15 13:42:21','','0','12','2023-02-15 13:42:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676457732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4800,'','Cash','','2023-02-15 13:55:48','','0','12','2023-02-15 13:55:48','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676458538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4801,'','Cash','','2023-02-15 15:01:38','','0','12','2023-02-15 15:01:38','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121676462477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4802,'','Cash','','2023-02-15 16:19:29','','0','12','2023-02-15 16:19:29','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121676467161','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4803,'','Cash','','2023-02-15 16:30:37','','0','12','2023-02-15 16:30:37','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121676467825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4804,'','Cash','','2023-02-15 17:05:19','','0','12','2023-02-15 17:05:19','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676469905','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4805,'','Cash','','2023-02-15 17:58:44','','0','12','2023-02-15 17:58:45','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676469927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4806,'','Cash','','2023-02-15 18:57:51','','0','12','2023-02-15 18:57:51','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121676474889','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4807,'','Cash','','2023-02-15 19:06:36','','0','12','2023-02-15 19:06:36','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121676476758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4808,'','Cash','','2023-02-15 20:45:10','','0','12','2023-02-15 20:45:10','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121676483100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4809,'','Cash','','2023-02-15 21:02:53','','0','12','2023-02-15 21:02:53','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121676483117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4810,'','Cash','','2023-02-15 21:15:45','','0','12','2023-02-15 21:15:45','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121676484178','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4811,'','Cash','','2023-02-15 23:24:01','','0','12','2023-02-15 23:24:01','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121676484950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4812,'','Cash','','2023-02-16 00:04:34','','0','12','2023-02-16 00:04:34','','8930','8930','1','retail','0','8930','1','0','0','0','0','0','0','printed',' ','','1','0','121676494657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4813,'','Cash','','2023-02-16 00:08:52','','0','12','2023-02-16 00:08:52','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121676495255','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4814,'','Cash','','2023-02-16 12:24:52','','0','12','2023-02-16 12:24:52','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121676539471','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4815,'','Cash','','2023-02-16 14:30:02','','0','12','2023-02-16 14:30:02','','870','870','1','retail','0','870','1','0','0','0','0','0','0','printed',' ','','1','0','121676544943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4816,'','Cash','','2023-02-16 16:31:19','','0','12','2023-02-16 16:31:19','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676554258','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4817,'','Cash','','2023-02-16 17:27:23','','0','12','2023-02-16 17:27:23','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121676554284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4818,'','Cash','','2023-02-16 17:36:21','','0','12','2023-02-16 17:36:22','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121676557651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4819,'','Cash','','2023-02-16 19:24:11','','0','12','2023-02-16 19:24:11','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121676558366','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4820,'','Cash','','2023-02-16 20:30:42','','0','12','2023-02-16 20:30:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676568632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4821,'','Cash','','2023-02-16 22:27:11','','0','12','2023-02-16 22:27:11','','2200','2200','1','retail','0','2200','1','0','0','0','0','0','0','printed',' ','','1','0','121676575618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4822,'','Cash','','2023-02-16 23:01:11','','0','12','2023-02-16 23:01:11','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676577608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4823,'','Cash','','2023-02-16 23:50:15','','0','12','2023-02-16 23:50:15','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121676577678','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4824,'','Cash','','2023-02-17 00:01:03','','0','12','2023-02-17 00:01:03','','2980','2980','1','retail','0','2980','1','0','0','0','0','0','0','printed',' ','','1','0','121676580622','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4825,'','Cash','','2023-02-17 00:49:34','','0','12','2023-02-17 00:49:34','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676581323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4826,'','Cash','','2023-02-17 10:32:23','','0','12','2023-02-17 10:32:23','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121676618573','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4827,'','Cash','','2023-02-17 14:48:44','','0','12','2023-02-17 14:48:44','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676634025','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4828,'','Cash','','2023-02-17 16:59:32','','0','12','2023-02-17 16:59:32','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121676634536','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4829,'','Cash','','2023-02-17 17:56:42','','0','12','2023-02-17 17:56:42','','4800','4800','1','retail','0','4800','1','0','0','0','0','0','0','printed',' ','','1','0','121676642380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4830,'','Cash','','2023-02-17 19:58:22','','0','12','2023-02-17 19:58:22','','6300','6300','1','retail','0','6300','1','0','0','0','0','0','0','printed',' ','','1','0','121676653026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4831,'','Cash','','2023-02-17 20:37:48','','0','12','2023-02-17 20:37:48','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676655436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4832,'','Cash','','2023-02-17 20:52:30','','0','12','2023-02-17 20:52:30','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121676655473','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4833,'','Cash','','2023-02-17 21:04:46','','0','12','2023-02-17 21:04:46','','780','780','1','retail','0','780','1','0','0','0','0','0','0','printed',' ','','1','0','121676656354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4834,'','Cash','','2023-02-17 22:34:45','','0','12','2023-02-17 22:34:45','','2520','2520','1','retail','0','2520','1','0','0','0','0','0','0','printed',' ','','1','0','121676657117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4835,'','Cash','','2023-02-18 00:13:57','','0','12','2023-02-18 00:13:57','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121676667982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4836,'','Cash','','2023-02-18 00:19:29','','0','12','2023-02-18 00:19:29','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121676668722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4837,'','Cash','','2023-02-18 00:20:02','','0','12','2023-02-18 00:20:02','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121676668777','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4838,'','Cash','','2023-02-18 00:26:09','','0','12','2023-02-18 00:26:10','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121676668843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4839,'','Cash','','2023-02-18 00:26:53','','0','12','2023-02-18 00:26:53','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121676669175','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4840,'','Cash','','2023-02-18 13:33:19','','0','12','2023-02-18 13:33:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676716359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4841,'','Cash','','2023-02-18 14:25:39','','0','12','2023-02-18 14:25:39','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121676716704','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4842,'','Cash','','2023-02-18 14:51:31','','0','12','2023-02-18 14:51:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676719797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4843,'','Cash','','2023-02-18 16:28:13','','0','12','2023-02-18 16:28:13','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121676721095','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4844,'','Cash','','2023-02-18 16:36:43','','0','12','2023-02-18 16:36:44','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676726899','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4845,'','Cash','','2023-02-18 17:08:14','','0','12','2023-02-18 17:08:14','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121676727457','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4846,'','Cash','','2023-02-18 17:19:55','','0','12','2023-02-18 17:19:56','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121676729301','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4847,'','Cash','','2023-02-18 20:38:26','','0','12','2023-02-18 20:38:26','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121676730015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4848,'','Cash','','2023-02-18 21:48:18','','0','12','2023-02-18 21:48:18','','11200','11200','1','retail','0','11200','1','0','0','0','0','0','0','printed',' ','','1','0','121676741919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4849,'','Cash','','2023-02-18 21:52:49','','0','12','2023-02-18 21:52:49','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676746351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4850,'','Cash','','2023-02-18 21:57:36','','0','12','2023-02-18 21:57:36','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121676746373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4851,'','Cash','','2023-02-18 22:01:10','','0','12','2023-02-18 22:01:10','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676746859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4852,'','Cash','','2023-02-18 22:32:15','','0','12','2023-02-18 22:32:15','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121676748657','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4853,'','Cash','','2023-02-18 22:33:44','','0','12','2023-02-18 22:33:44','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121676748744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4854,'','Cash','','2023-02-18 22:38:46','','0','12','2023-02-18 22:38:46','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121676748938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4855,'','Cash','','2023-02-18 22:46:24','','0','12','2023-02-18 22:46:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676749281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4856,'','Cash','','2023-02-18 22:48:00','','0','12','2023-02-18 22:48:00','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121676749592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4857,'','Cash','','2023-02-18 22:50:02','','0','12','2023-02-18 22:50:02','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121676749685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4858,'','Cash','','2023-02-18 22:54:55','','0','12','2023-02-18 22:54:55','','3550','3550','1','retail','0','3550','1','0','0','0','0','0','0','printed',' ','','1','0','121676750070','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4859,'','Cash','','2023-02-18 23:38:32','','0','12','2023-02-18 23:38:32','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121676750153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4860,'','Cash','','2023-02-19 00:05:08','','0','12','2023-02-19 00:05:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676752759','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4861,'','Cash','','2023-02-19 00:08:03','','0','12','2023-02-19 00:08:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676754474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4862,'','Cash','','2023-02-19 00:18:53','','0','12','2023-02-19 00:18:53','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121676755107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4863,'','Cash','','2023-02-19 00:35:37','','0','12','2023-02-19 00:35:37','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676756110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4864,'','Cash','','2023-02-19 00:47:31','','0','12','2023-02-19 00:47:31','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121676756142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4865,'','Cash','','2023-02-19 00:53:26','','0','12','2023-02-19 00:53:26','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121676757184','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4866,'','Cash','','2023-02-19 00:57:40','','0','12','2023-02-19 00:57:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676757211','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4867,'','Cash','','2023-02-19 01:11:16','','0','12','2023-02-19 01:11:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676757495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4868,'','Cash','','2023-02-19 01:14:51','','0','12','2023-02-19 01:14:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676758282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4869,'','Cash','','2023-02-19 01:38:31','','0','12','2023-02-19 01:38:31','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121676758495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4870,'','Cash','','2023-02-19 01:49:19','','0','12','2023-02-19 01:49:19','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121676759918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4871,'','Cash','','2023-02-19 02:41:58','','0','12','2023-02-19 02:41:58','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676760572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4872,'','Cash','','2023-02-19 03:01:07','','0','12','2023-02-19 03:01:07','','4350','4350','1','retail','0','4350','1','0','0','0','0','0','0','printed',' ','','1','0','121676763725','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4873,'','Cash','','2023-02-19 03:01:47','','0','12','2023-02-19 03:01:47','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121676764888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4874,'','Cash','','2023-02-19 03:31:47','','0','12','2023-02-19 03:31:47','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121676766689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4875,'','Cash','','2023-02-19 03:39:49','','0','12','2023-02-19 03:39:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676766866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4876,'','Cash','','2023-02-19 03:47:58','','0','12','2023-02-19 03:47:58','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121676767204','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4877,'','Cash','','2023-02-19 04:55:31','','0','12','2023-02-19 04:55:31','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121676767790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4878,'','Cash','','2023-02-19 06:29:14','','0','12','2023-02-19 06:29:15','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121676771750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4879,'','Cash','','2023-02-19 19:51:37','','0','12','2023-02-19 19:51:37','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121676819054','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4880,'','Cash','','2023-02-19 21:03:31','','0','12','2023-02-19 21:03:31','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121676825514','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4881,'','Cash','','2023-02-19 21:05:04','','0','12','2023-02-19 21:05:04','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121676829818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4882,'','Cash','','2023-02-19 21:27:08','','0','12','2023-02-19 21:27:08','','820','820','1','retail','0','820','1','0','0','0','0','0','0','printed',' ','','1','0','121676829997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4883,'','Cash','','2023-02-19 22:49:11','','0','12','2023-02-19 22:49:11','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121676836139','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4884,'','Cash','','2023-02-19 23:02:51','','0','12','2023-02-19 23:02:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676836157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4885,'','Cash','','2023-02-20 00:27:11','','0','12','2023-02-20 00:27:11','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121676841957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4886,'','Cash','','2023-02-20 01:11:57','','0','12','2023-02-20 01:11:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676844702','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4887,'','Cash','','2023-02-20 03:49:24','','0','12','2023-02-20 03:49:24','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121676844730','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4888,'','Cash','','2023-02-20 13:44:48','','0','12','2023-02-20 13:44:48','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121676889849','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4889,'','Cash','','2023-02-20 14:43:07','','0','12','2023-02-20 14:43:07','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121676893378','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4890,'','Cash','','2023-02-20 14:52:27','','0','12','2023-02-20 14:52:27','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121676893913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4891,'','Cash','','2023-02-20 14:54:19','','0','12','2023-02-20 14:54:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676894048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4892,'','Cash','','2023-02-20 15:00:29','','0','12','2023-02-20 15:00:29','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121676894414','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4893,'','Cash','','2023-02-20 15:02:45','','0','12','2023-02-20 15:02:45','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121676894508','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4894,'','Cash','','2023-02-20 15:10:56','','0','12','2023-02-20 15:10:56','','1040','1040','1','retail','0','1040','1','0','0','0','0','0','0','printed',' ','','1','0','121676895014','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4895,'','Cash','','2023-02-20 15:14:30','','0','12','2023-02-20 15:14:30','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121676895262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4896,'','Cash','','2023-02-20 15:17:29','','0','12','2023-02-20 15:17:29','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121676895440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4897,'','Cash','','2023-02-20 15:18:02','','0','12','2023-02-20 15:18:02','','12500','12500','1','retail','0','12500','1','0','0','0','0','0','0','printed',' ','','1','0','121676895454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4898,'','Cash','','2023-02-20 15:18:56','','0','12','2023-02-20 15:18:56','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121676895486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4899,'','Cash','','2023-02-20 15:21:24','','0','12','2023-02-20 15:21:24','','17800','17800','1','retail','0','17800','1','0','0','0','0','0','0','printed',' ','','1','0','121676895659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4900,'','Cash','','2023-02-20 15:26:14','','0','12','2023-02-20 15:26:14','','20300','20300','1','retail','0','20300','1','0','0','0','0','0','0','printed',' ','','1','0','121676895934','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4901,'','Cash','','2023-02-20 15:28:47','','0','12','2023-02-20 15:28:47','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121676895996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4902,'','Cash','','2023-02-20 15:29:17','','0','12','2023-02-20 15:29:17','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121676896133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4903,'','Cash','','2023-02-20 15:31:20','','0','12','2023-02-20 15:31:20','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121676896270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4904,'','Cash','','2023-02-20 15:35:30','','0','12','2023-02-20 15:35:30','','8750','8750','1','retail','0','8750','1','0','0','0','0','0','0','printed',' ','','1','0','121676896285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4905,'','Cash','','2023-02-20 16:31:23','','0','12','2023-02-20 16:31:23','','46750','46750','1','retail','0','46750','1','0','0','0','0','0','0','printed',' ','','1','0','121676897295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4906,'','Cash','','2023-02-20 17:11:30','','0','12','2023-02-20 17:11:30','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121676901457','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4907,'','Cash','','2023-02-20 17:22:34','','0','12','2023-02-20 17:22:34','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121676902296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4908,'','Cash','','2023-02-20 18:59:32','','0','12','2023-02-20 18:59:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676902959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4909,'','Cash','','2023-02-20 19:31:48','','0','12','2023-02-20 19:31:48','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121676908884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4910,'','Cash','','2023-02-20 20:11:30','','0','12','2023-02-20 20:11:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676910717','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4911,'','Cash','','2023-02-20 21:38:10','','0','12','2023-02-20 21:38:10','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121676913099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4912,'','Cash','','2023-02-20 22:11:32','','0','12','2023-02-20 22:11:32','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121676918346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4913,'','Cash','','2023-02-20 22:30:05','','0','12','2023-02-20 22:30:05','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121676921110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4914,'','Cash','','2023-02-20 22:40:14','','0','12','2023-02-20 22:40:14','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121676921410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4915,'','Cash','','2023-02-20 22:45:05','','0','12','2023-02-20 22:45:05','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121676922019','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4916,'','Cash','','2023-02-20 23:12:51','','0','12','2023-02-20 23:12:51','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676922310','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4917,'','Cash','','2023-02-20 23:13:53','','0','12','2023-02-20 23:13:53','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121676923978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4918,'','Cash','','2023-02-21 00:12:20','','0','12','2023-02-21 00:12:20','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121676924039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4919,'','Cash','','2023-02-21 00:34:10','','0','12','2023-02-21 00:34:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121676928837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4920,'','Cash','','2023-02-21 00:44:28','','0','12','2023-02-21 00:44:28','','890','890','1','retail','0','890','1','0','0','0','0','0','0','printed',' ','','1','0','121676929335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4921,'','Cash','','2023-02-21 02:06:21','','0','12','2023-02-21 02:06:21','','470','470','1','retail','0','470','1','0','0','0','0','0','0','printed',' ','','1','0','121676934362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4922,'','Cash','','2023-02-21 07:08:02','','0','12','2023-02-21 07:08:02','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121676952461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4923,'','Cash','','2023-02-21 08:51:20','','0','12','2023-02-21 08:51:20','','390','390','1','retail','0','390','1','0','0','0','0','0','0','printed',' ','','1','0','121676952492','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4924,'','Cash','','2023-02-21 09:34:32','','0','12','2023-02-21 09:34:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121676958687','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4925,'','Cash','','2023-02-21 14:35:56','','0','12','2023-02-21 14:35:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676979337','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4926,'','Cash','','2023-02-21 14:38:14','','0','12','2023-02-21 14:38:14','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121676979361','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4927,'','Cash','','2023-02-21 18:20:17','','0','12','2023-02-21 18:20:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121676992794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4928,'','Cash','','2023-02-21 18:56:08','','0','12','2023-02-21 18:56:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121676992825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4929,'','Cash','','2023-02-21 19:01:49','','0','12','2023-02-21 19:01:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121676994975','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4930,'','Cash','','2023-02-21 20:28:04','','0','12','2023-02-21 20:28:04','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121677000473','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4931,'','Cash','','2023-02-21 21:56:32','','0','12','2023-02-21 21:56:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677000490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4932,'','Cash','','2023-02-21 22:06:54','','0','12','2023-02-21 22:06:54','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121677005798','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4933,'','Cash','','2023-02-21 22:18:57','','0','12','2023-02-21 22:18:57','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677006559','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4934,'','Cash','','2023-02-21 23:04:23','','0','12','2023-02-21 23:04:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677008392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4935,'','Cash','','2023-02-21 23:18:09','','0','12','2023-02-21 23:18:09','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121677009908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4936,'','Cash','','2023-02-21 23:41:09','','0','12','2023-02-21 23:41:09','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121677012043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4937,'','Cash','','2023-02-21 23:47:29','','0','12','2023-02-21 23:47:29','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677012076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4938,'','Cash','','2023-02-22 00:16:05','','0','12','2023-02-22 00:16:06','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677012526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4939,'','Cash','','2023-02-22 00:44:58','','0','12','2023-02-22 00:44:58','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121677014171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4940,'','Cash','','2023-02-22 01:17:05','','0','12','2023-02-22 01:17:05','','1290','1290','1','retail','0','1290','1','0','0','0','0','0','0','printed',' ','','1','0','121677017790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4941,'','Cash','','2023-02-22 01:21:47','','0','12','2023-02-22 01:21:47','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677017861','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4942,'','Cash','','2023-02-22 01:27:34','','0','12','2023-02-22 01:27:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677018420','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4943,'','Cash','','2023-02-22 01:58:08','','0','12','2023-02-22 01:58:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677018460','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4944,'','Cash','','2023-02-22 03:10:06','','0','12','2023-02-22 03:10:06','','1470','1470','1','retail','0','1470','1','0','0','0','0','0','0','printed',' ','','1','0','121677023141','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4945,'','Cash','','2023-02-22 03:23:25','','0','12','2023-02-22 03:23:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677024638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4946,'','Cash','','2023-02-22 06:15:17','','0','12','2023-02-22 06:15:17','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121677035665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4947,'','Cash','','2023-02-22 06:19:43','','0','12','2023-02-22 06:19:43','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677035723','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4948,'','Cash','','2023-02-22 13:30:40','','0','12','2023-02-22 13:30:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677053683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4949,'','Cash','','2023-02-22 13:32:15','','0','12','2023-02-22 13:32:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677061872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4950,'','Cash','','2023-02-22 13:32:47','','0','12','2023-02-22 13:32:47','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677061956','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4951,'','Cash','','2023-02-22 15:31:35','','0','12','2023-02-22 15:31:35','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677061976','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4952,'','Cash','','2023-02-22 16:07:48','','0','12','2023-02-22 16:07:48','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121677069109','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4953,'','Cash','','2023-02-22 18:57:05','','0','12','2023-02-22 18:57:05','','6150','6150','1','retail','0','6150','1','0','0','0','0','0','0','printed',' ','','1','0','121677081371','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4954,'','Cash','','2023-02-22 19:33:15','','0','12','2023-02-22 19:33:15','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677081552','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4955,'','Cash','','2023-02-22 20:52:15','','0','12','2023-02-22 20:52:15','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121677083600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4956,'','Cash','','2023-02-22 21:35:29','','0','12','2023-02-22 21:35:29','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121677088347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4957,'','Cash','','2023-02-22 22:14:33','','0','12','2023-02-22 22:14:33','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677090951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4958,'','Cash','','2023-02-22 22:36:20','','0','12','2023-02-22 22:36:20','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677093279','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4959,'','Cash','','2023-02-22 22:36:43','','0','12','2023-02-22 22:36:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677094590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4960,'','Cash','','2023-02-22 22:44:36','','0','12','2023-02-22 22:44:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677094610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4961,'','Cash','','2023-02-22 22:59:45','','0','12','2023-02-22 22:59:45','','5850','5850','1','retail','0','5850','1','0','0','0','0','0','0','printed',' ','','1','0','121677095082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4962,'','Cash','','2023-02-22 23:02:45','','0','12','2023-02-22 23:02:45','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121677096107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4963,'','Cash','','2023-02-22 23:41:23','','0','12','2023-02-22 23:41:23','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121677096398','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4964,'','Cash','','2023-02-23 00:29:55','','0','12','2023-02-23 00:29:55','','6970','6970','1','retail','0','6970','1','0','0','0','0','0','0','printed',' ','','1','0','121677098534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4965,'','Cash','','2023-02-23 01:01:46','','0','12','2023-02-23 01:01:46','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121677101746','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4966,'','Cash','','2023-02-23 01:20:39','','0','12','2023-02-23 01:20:39','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121677104332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4967,'','Cash','','2023-02-23 01:39:35','','0','12','2023-02-23 01:39:35','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677104455','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4968,'','Cash','','2023-02-23 01:43:53','','0','12','2023-02-23 01:43:53','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121677105580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4969,'','Cash','','2023-02-23 01:57:46','','0','12','2023-02-23 01:57:46','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677105931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4970,'','Cash','','2023-02-23 02:32:40','','0','12','2023-02-23 02:32:40','','4700','4700','1','retail','0','4700','1','0','0','0','0','0','0','printed',' ','','1','0','121677106672','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4971,'','Cash','','2023-02-23 02:36:03','','0','12','2023-02-23 02:36:03','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677108890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4972,'','Cash','','2023-02-23 07:32:13','','0','12','2023-02-23 07:32:13','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121677126706','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4973,'','Cash','','2023-02-23 07:35:37','','0','12','2023-02-23 07:35:37','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121677126739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4974,'','Cash','','2023-02-23 07:37:46','','0','12','2023-02-23 07:37:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677126941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4975,'','Cash','','2023-02-23 07:40:22','','0','12','2023-02-23 07:40:22','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121677127070','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4976,'','Cash','','2023-02-23 10:09:24','','0','12','2023-02-23 10:09:25','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677135228','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4977,'','Cash','','2023-02-23 15:56:32','','0','12','2023-02-23 15:56:32','','360','360','1','retail','0','360','1','0','0','0','0','0','0','printed',' ','','1','0','121677156953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4978,'','Cash','','2023-02-23 16:11:39','','0','12','2023-02-23 16:11:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677157002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4979,'','Cash','','2023-02-23 16:18:42','','0','12','2023-02-23 16:18:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677157903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4980,'','Cash','','2023-02-23 19:26:39','','0','12','2023-02-23 19:26:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677169569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4981,'','Cash','','2023-02-23 20:05:38','','0','12','2023-02-23 20:05:38','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121677169604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4982,'','Cash','','2023-02-23 20:18:54','','0','12','2023-02-23 20:18:54','','340','340','1','retail','0','340','1','0','0','0','0','0','0','printed',' ','','1','0','121677172014','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4983,'','Cash','','2023-02-23 20:19:26','','0','12','2023-02-23 20:19:26','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121677172750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4984,'','Cash','','2023-02-23 20:54:20','','0','12','2023-02-23 20:54:20','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121677172775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4985,'','Cash','','2023-02-23 21:01:33','','0','12','2023-02-23 21:01:33','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677174865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4986,'','Cash','','2023-02-23 21:21:39','','0','12','2023-02-23 21:21:39','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677175307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4987,'','Cash','','2023-02-23 21:33:47','','0','12','2023-02-23 21:33:47','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677176504','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4988,'','Cash','','2023-02-23 22:35:22','','0','12','2023-02-23 22:35:22','','1190','1190','1','retail','0','1190','1','0','0','0','0','0','0','printed',' ','','1','0','121677177231','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4989,'','Cash','','2023-02-23 22:57:44','','0','12','2023-02-23 22:57:44','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677181030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4990,'','Cash','','2023-02-23 23:04:44','','0','12','2023-02-23 23:04:44','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121677182276','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4991,'','Cash','','2023-02-23 23:13:22','','0','12','2023-02-23 23:13:22','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677182750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4992,'','Cash','','2023-02-23 23:16:09','','0','12','2023-02-23 23:16:09','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121677183209','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4993,'','Cash','','2023-02-23 23:18:54','','0','12','2023-02-23 23:18:54','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677183411','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4994,'','Cash','','2023-02-23 23:27:40','','0','12','2023-02-23 23:27:40','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677183541','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4995,'','Cash','','2023-02-24 00:20:49','','0','12','2023-02-24 00:20:49','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677184088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4996,'','Cash','','2023-02-24 01:21:12','','0','12','2023-02-24 01:21:12','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677187722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4997,'','Cash','','2023-02-24 01:41:24','','0','12','2023-02-24 01:41:24','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677190917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4998,'','Cash','','2023-02-24 01:50:04','','0','12','2023-02-24 01:50:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677192090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4999,'','Cash','','2023-02-24 01:59:05','','0','12','2023-02-24 01:59:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677192609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5000,'','Cash','','2023-02-24 01:59:25','','0','12','2023-02-24 01:59:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677193150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5001,'','Cash','','2023-02-24 02:06:10','','0','12','2023-02-24 02:06:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677193169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5002,'','Cash','','2023-02-24 02:55:13','','0','12','2023-02-24 02:55:13','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677194786','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5003,'','Cash','','2023-02-24 03:59:22','','0','12','2023-02-24 03:59:22','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121677196551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5004,'','Cash','','2023-02-24 05:40:18','','0','12','2023-02-24 05:40:18','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677200368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5005,'','Cash','','2023-02-24 15:23:41','','0','12','2023-02-24 15:23:41','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121677241315','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5006,'','Cash','','2023-02-24 15:24:15','','0','12','2023-02-24 15:24:16','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677241432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5007,'','Cash','','2023-02-24 15:24:40','','0','12','2023-02-24 15:24:40','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121677241465','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5008,'','Cash','','2023-02-24 18:25:18','','0','12','2023-02-24 18:25:18','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677241486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5009,'','Cash','','2023-02-24 20:08:06','','0','12','2023-02-24 20:08:06','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121677252337','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5010,'','Cash','','2023-02-24 20:25:47','','0','12','2023-02-24 20:25:47','','8700','8700','1','retail','0','8700','1','0','0','0','0','0','0','printed',' ','','1','0','121677258590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5011,'','Cash','','2023-02-24 20:29:06','','0','12','2023-02-24 20:29:06','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677259594','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5012,'','Cash','','2023-02-24 20:30:11','','0','12','2023-02-24 20:30:11','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677259751','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5013,'','Cash','','2023-02-24 20:42:02','','0','12','2023-02-24 20:42:02','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677259818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5014,'','Cash','','2023-02-24 21:07:26','','0','12','2023-02-24 21:07:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677260527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5015,'','Cash','','2023-02-24 21:51:51','','0','12','2023-02-24 21:51:51','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121677262051','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5016,'','Cash','','2023-02-24 21:57:42','','0','12','2023-02-24 21:57:42','','1630','1630','1','retail','0','1630','1','0','0','0','0','0','0','printed',' ','','1','0','121677265030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5017,'','Cash','','2023-02-24 22:01:52','','0','12','2023-02-24 22:01:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677265299','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5018,'','Cash','','2023-02-24 22:02:37','','0','12','2023-02-24 22:02:37','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121677265316','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5019,'','Cash','','2023-02-24 22:12:58','','0','12','2023-02-24 22:12:58','','290','290','1','retail','0','290','1','0','0','0','0','0','0','printed',' ','','1','0','121677265391','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5020,'','Cash','','2023-02-24 23:19:43','','0','12','2023-02-24 23:19:43','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677265985','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5021,'','Cash','','2023-02-24 23:21:48','','0','12','2023-02-24 23:21:48','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121677269989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5022,'','Cash','','2023-02-24 23:33:32','','0','12','2023-02-24 23:33:32','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121677270144','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5023,'','Cash','','2023-02-24 23:34:55','','0','12','2023-02-24 23:34:55','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121677270873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5024,'','Cash','','2023-02-24 23:44:01','','0','12','2023-02-24 23:44:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677270978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5025,'','Cash','','2023-02-25 01:02:14','','0','12','2023-02-25 01:02:14','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121677271448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5026,'','Cash','','2023-02-25 01:04:44','','0','12','2023-02-25 01:04:44','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121677276141','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5027,'','Cash','','2023-02-25 01:43:25','','0','12','2023-02-25 01:43:25','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677276326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5028,'','Cash','','2023-02-25 01:59:12','','0','12','2023-02-25 01:59:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677278630','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5029,'','Cash','','2023-02-25 02:05:45','','0','12','2023-02-25 02:05:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677279603','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5030,'','Cash','','2023-02-25 02:27:43','','0','12','2023-02-25 02:27:43','','2190','2190','1','retail','0','2190','1','0','0','0','0','0','0','printed',' ','','1','0','121677279958','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5031,'','Cash','','2023-02-25 02:30:31','','0','12','2023-02-25 02:30:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677281318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5032,'','Cash','','2023-02-25 20:58:47','','0','12','2023-02-25 20:58:47','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677347413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5033,'','Cash','','2023-02-25 20:59:41','','0','12','2023-02-25 20:59:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677347934','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5034,'','Cash','','2023-02-25 21:01:26','','0','12','2023-02-25 21:01:26','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677347989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5035,'','Cash','','2023-02-25 21:06:56','','0','12','2023-02-25 21:06:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677348091','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5036,'','Cash','','2023-02-25 21:07:16','','0','12','2023-02-25 21:07:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677348422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5037,'','Cash','','2023-02-25 21:09:09','','0','12','2023-02-25 21:09:09','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121677348442','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5038,'','Cash','','2023-02-25 21:10:11','','0','12','2023-02-25 21:10:11','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121677348554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5039,'','Cash','','2023-02-25 21:10:32','','0','12','2023-02-25 21:10:32','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677348621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5040,'','Cash','','2023-02-25 21:10:56','','0','12','2023-02-25 21:10:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121677348642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5041,'','Cash','','2023-02-25 21:57:11','','0','12','2023-02-25 21:57:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677348915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5042,'','Cash','','2023-02-25 21:57:31','','0','12','2023-02-25 21:57:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677351436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5043,'','Cash','','2023-02-25 21:58:53','','0','12','2023-02-25 21:58:53','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121677351456','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5044,'','Cash','','2023-02-25 22:44:45','','0','12','2023-02-25 22:44:45','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121677351639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5045,'','Cash','','2023-02-25 23:01:09','','0','12','2023-02-25 23:01:09','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677354292','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5046,'','Cash','','2023-02-25 23:23:45','','0','12','2023-02-25 23:23:45','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677356588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5047,'','Cash','','2023-02-25 23:46:52','','0','12','2023-02-25 23:46:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677356632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5048,'','Cash','','2023-02-26 00:12:27','','0','12','2023-02-26 00:12:27','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121677358017','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5049,'','Cash','','2023-02-26 00:27:13','','0','12','2023-02-26 00:27:13','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121677360424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5050,'','Cash','','2023-02-26 00:32:00','','0','12','2023-02-26 00:32:00','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121677360439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5051,'','Cash','','2023-02-26 00:39:13','','0','12','2023-02-26 00:39:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677360727','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5052,'','Cash','','2023-02-26 00:43:08','','0','12','2023-02-26 00:43:08','','2280','2280','1','retail','0','2280','1','0','0','0','0','0','0','printed',' ','','1','0','121677361157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5053,'','Cash','','2023-02-26 00:45:41','','0','12','2023-02-26 00:45:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677361401','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5054,'','Cash','','2023-02-26 01:04:06','','0','12','2023-02-26 01:04:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677361545','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5055,'','Cash','','2023-02-26 01:25:06','','0','12','2023-02-26 01:25:06','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121677363885','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5056,'','Cash','','2023-02-26 02:12:53','','0','12','2023-02-26 02:12:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677363965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5057,'','Cash','','2023-02-26 03:18:24','','0','12','2023-02-26 03:18:24','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121677366781','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5058,'','Cash','','2023-02-26 03:20:15','','0','12','2023-02-26 03:20:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677370793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5059,'','Cash','','2023-02-26 03:29:01','','0','12','2023-02-26 03:29:01','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121677370822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5060,'','Cash','','2023-02-26 03:53:33','','0','12','2023-02-26 03:53:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121677371413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5061,'','Cash','','2023-02-26 04:01:19','','0','12','2023-02-26 04:01:19','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677372822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5062,'','Cash','','2023-02-26 04:14:44','','0','12','2023-02-26 04:14:44','','2240','2240','1','retail','0','2240','1','0','0','0','0','0','0','printed',' ','','1','0','121677373400','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5063,'','Cash','','2023-02-26 04:22:35','','0','12','2023-02-26 04:22:35','','2020','2020','1','retail','0','2020','1','0','0','0','0','0','0','printed',' ','','1','0','121677374169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5064,'','Cash','','2023-02-26 04:44:01','','0','12','2023-02-26 04:44:01','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121677374884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5065,'','Cash','','2023-02-26 05:27:48','','0','12','2023-02-26 05:27:48','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121677378459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5066,'','Cash','','2023-02-26 05:55:43','','0','12','2023-02-26 05:55:43','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677380130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5067,'','Cash','','2023-02-26 09:05:26','','0','12','2023-02-26 09:05:26','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677391516','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5068,'','Cash','','2023-02-26 09:10:19','','0','12','2023-02-26 09:10:19','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677391532','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5069,'','Cash','','2023-02-26 09:29:27','','0','12','2023-02-26 09:14:39','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121677391824','Cleared','12','2023-02-26 09:29:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5070,'','Cash','','2023-02-26 09:50:27','','0','12','2023-02-26 09:50:27','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677393024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5071,'','Cash','','2023-02-26 11:40:20','','0','12','2023-02-26 11:40:20','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677394237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5072,'','Cash','','2023-02-26 13:26:42','','0','12','2023-02-26 13:26:42','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121677403068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5073,'','Cash','','2023-02-26 13:32:09','','0','12','2023-02-26 13:32:09','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121677407342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5074,'','Cash','','2023-02-26 14:16:03','','0','12','2023-02-26 14:16:03','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121677407554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5075,'','Cash','','2023-02-26 16:33:02','','0','12','2023-02-26 16:33:02','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121677418124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5076,'','Cash','','2023-02-26 17:05:19','','0','12','2023-02-26 17:05:19','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677418621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5077,'','Cash','','2023-02-26 17:51:56','','0','12','2023-02-26 17:51:56','','1270','1270','1','retail','0','1270','1','0','0','0','0','0','0','printed',' ','','1','0','121677420329','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5078,'','Cash','','2023-02-26 18:42:25','','0','12','2023-02-26 18:42:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677423123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5079,'','Cash','','2023-02-26 19:30:02','','0','12','2023-02-26 19:30:02','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677426167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5080,'','Cash','','2023-02-26 19:31:06','','0','12','2023-02-26 19:31:06','','3050','3050','1','retail','0','3050','1','0','0','0','0','0','0','printed',' ','','1','0','121677429013','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5081,'','Cash','','2023-02-26 19:57:07','','0','12','2023-02-26 19:57:07','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed',' ','','1','0','121677429826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5082,'','Cash','','2023-02-26 20:09:46','','0','12','2023-02-26 20:09:46','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677430742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5083,'','Cash','','2023-02-26 22:19:58','','0','12','2023-02-26 22:19:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677437980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5084,'','Cash','','2023-02-26 22:20:52','','0','12','2023-02-26 22:20:52','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677439205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5085,'','Cash','','2023-02-26 22:57:49','','0','12','2023-02-26 22:57:49','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121677440870','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5086,'','Cash','','2023-02-27 00:00:29','','0','12','2023-02-27 00:00:29','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677445187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5087,'','Cash','','2023-02-27 00:54:24','','0','12','2023-02-27 00:54:24','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121677445237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5088,'','Cash','','2023-02-27 04:31:21','','0','12','2023-02-27 04:31:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677461446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5089,'','Cash','','2023-02-27 04:31:47','','0','12','2023-02-27 04:31:47','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677461486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5090,'','Cash','','2023-02-27 04:39:16','','0','12','2023-02-27 04:39:16','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677461907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5091,'','Cash','','2023-02-27 12:34:54','','0','12','2023-02-27 12:34:54','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677490483','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5092,'','Cash','','2023-02-27 16:55:29','','0','12','2023-02-27 16:55:30','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677506111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5093,'','Cash','','2023-02-27 18:00:51','','0','12','2023-02-27 18:00:51','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121677506134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5094,'','Cash','','2023-02-27 18:20:07','','0','12','2023-02-27 18:20:07','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121677510153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5095,'','Cash','','2023-02-27 18:22:17','','0','12','2023-02-27 18:22:17','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677511318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5096,'','Cash','','2023-02-27 18:28:32','','0','12','2023-02-27 18:28:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677511557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5097,'','Cash','','2023-02-27 19:04:18','','0','12','2023-02-27 19:04:18','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121677511729','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5098,'','Cash','','2023-02-27 20:06:42','','0','12','2023-02-27 20:06:42','','7840','7840','1','retail','0','7840','1','0','0','0','0','0','0','printed',' ','','1','0','121677513897','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5099,'','Cash','','2023-02-27 20:12:31','','0','12','2023-02-27 20:12:31','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677517639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5100,'','Cash','','2023-02-27 20:26:03','','0','12','2023-02-27 20:26:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677518237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5101,'','Cash','','2023-02-27 20:58:25','','0','12','2023-02-27 20:58:25','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677520468','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5102,'','Cash','','2023-02-27 20:59:11','','0','12','2023-02-27 20:59:11','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677520738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5103,'','Cash','','2023-02-27 21:09:02','','0','12','2023-02-27 21:09:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677520756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5104,'','Cash','','2023-02-27 21:32:46','','0','12','2023-02-27 21:32:46','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677521353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5105,'','Cash','','2023-02-27 23:12:06','','0','12','2023-02-27 23:12:06','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677528666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5106,'','Cash','','2023-02-27 23:16:20','','0','12','2023-02-27 23:16:20','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121677528969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5107,'','Cash','','2023-02-28 04:30:08','','0','12','2023-02-28 04:30:08','','4200','4200','1','retail','0','4200','1','0','0','0','0','0','0','printed',' ','','1','0','121677547386','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5108,'','Cash','','2023-02-28 05:41:59','','0','12','2023-02-28 05:41:59','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677547830','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5109,'','Cash','','2023-02-28 12:12:51','','0','12','2023-02-28 12:12:52','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121677571821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5110,'','Cash','','2023-02-28 12:23:37','','0','12','2023-02-28 12:23:37','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121677576117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5111,'','Cash','','2023-02-28 16:00:16','','0','12','2023-02-28 16:00:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677585814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5112,'','Cash','','2023-02-28 17:29:56','','0','12','2023-02-28 17:29:56','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677589244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5113,'','Cash','','2023-02-28 18:11:51','','0','12','2023-02-28 18:11:51','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677595951','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5114,'','Cash','','2023-02-28 19:27:23','','0','12','2023-02-28 19:27:23','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121677597230','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5115,'','Cash','','2023-02-28 20:23:12','','0','12','2023-02-28 20:23:12','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677604977','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5116,'','Cash','','2023-02-28 21:20:44','','0','12','2023-02-28 21:20:44','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121677604997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5117,'','Cash','','2023-02-28 22:25:03','','0','12','2023-02-28 22:25:03','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121677609487','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5118,'','Cash','','2023-02-28 23:17:45','','0','12','2023-02-28 23:17:45','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677615429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5119,'','Cash','','2023-02-28 23:29:10','','0','12','2023-02-28 23:29:10','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121677615475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5120,'','Cash','','2023-02-28 23:53:07','','0','12','2023-02-28 23:53:07','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121677616157','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5121,'','Cash','','2023-03-01 00:29:11','','0','12','2023-03-01 00:29:11','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677617658','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5122,'','Cash','','2023-03-01 01:01:15','','0','12','2023-03-01 01:01:15','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677619782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5123,'','Cash','','2023-03-01 01:22:01','','0','12','2023-03-01 01:22:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677621689','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5124,'','Cash','','2023-03-01 02:17:13','','0','12','2023-03-01 02:17:13','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677622927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5125,'','Cash','','2023-03-01 03:13:42','','0','12','2023-03-01 03:13:42','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121677626267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5126,'','Cash','','2023-03-01 06:00:21','','0','12','2023-03-01 06:00:21','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121677639509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5127,'','Cash','','2023-03-01 16:00:21','','0','12','2023-03-01 16:00:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677672392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5128,'','Cash','','2023-03-01 17:24:51','','0','12','2023-03-01 17:24:51','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121677675636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5129,'','Cash','','2023-03-01 21:48:08','','0','12','2023-03-01 21:48:08','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677691769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5130,'','Cash','','2023-03-01 21:48:42','','0','12','2023-03-01 21:48:42','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677696495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5131,'','Cash','','2023-03-01 21:49:00','','0','12','2023-03-01 21:49:00','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677696528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5132,'','Cash','','2023-03-01 21:50:13','','0','12','2023-03-01 21:50:13','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677696546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5133,'','Cash','','2023-03-01 22:21:41','','0','12','2023-03-01 22:21:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677696618','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5134,'','Cash','','2023-03-01 23:53:56','','0','12','2023-03-01 23:53:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677704025','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5135,'','Cash','','2023-03-01 23:54:34','','0','12','2023-03-01 23:54:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677704044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5136,'','Cash','','2023-03-02 00:41:08','','0','12','2023-03-02 00:41:08','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121677706848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5137,'','Cash','','2023-03-02 00:59:52','','0','12','2023-03-02 00:59:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121677706882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5138,'','Cash','','2023-03-02 03:06:59','','0','12','2023-03-02 03:06:59','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677715591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5139,'','Cash','','2023-03-02 10:35:57','','0','12','2023-03-02 10:35:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677742503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5140,'','Cash','','2023-03-02 10:36:21','','0','12','2023-03-02 10:36:21','','120','120','1','retail','0','120','1','0','0','0','0','0','0','printed',' ','','1','0','121677742564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5141,'','Cash','','2023-03-02 15:04:50','','0','12','2023-03-02 15:04:50','','6750','6750','1','retail','0','6750','1','0','0','0','0','0','0','printed',' ','','1','0','121677758364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5142,'','Cash','','2023-03-02 17:55:58','','0','12','2023-03-02 17:55:58','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677768866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5143,'','Cash','','2023-03-02 17:56:33','','0','12','2023-03-02 17:56:33','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677768965','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5144,'','Cash','','2023-03-02 19:13:47','','0','12','2023-03-02 19:13:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677769003','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5145,'','Cash','','2023-03-02 20:15:53','','0','12','2023-03-02 20:15:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677773711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5146,'','Cash','','2023-03-02 20:26:47','','0','12','2023-03-02 20:26:47','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121677777368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5147,'','Cash','','2023-03-02 20:58:26','','0','12','2023-03-02 20:58:26','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121677779832','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5148,'','Cash','','2023-03-02 21:28:40','','0','12','2023-03-02 21:28:40','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121677779914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5149,'','Cash','','2023-03-02 21:38:02','','0','12','2023-03-02 21:38:02','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677782226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5150,'','Cash','','2023-03-02 23:31:27','','0','12','2023-03-02 23:31:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677782304','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5151,'','Cash','','2023-03-02 23:42:45','','0','12','2023-03-02 23:42:45','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121677789643','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5152,'','Cash','','2023-03-03 01:31:37','','0','12','2023-03-03 01:31:37','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677796267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5153,'','Cash','','2023-03-03 07:30:57','','0','12','2023-03-03 07:30:57','','10000','10000','1','retail','0','10000','1','0','0','0','0','0','0','printed',' ','','1','0','121677817213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5154,'','Cash','','2023-03-03 11:41:15','','0','12','2023-03-03 11:41:15','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121677826758','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5155,'','Cash','','2023-03-03 14:34:54','','0','12','2023-03-03 14:34:54','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677843123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5156,'','Cash','','2023-03-03 16:10:30','','0','12','2023-03-03 16:10:30','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121677843436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5157,'','Cash','','2023-03-03 20:58:16','','0','12','2023-03-03 20:58:16','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121677866246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5158,'','Cash','','2023-03-03 21:18:49','','0','12','2023-03-03 21:18:49','','7250','7250','1','retail','0','7250','1','0','0','0','0','0','0','printed',' ','','1','0','121677866307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5159,'','Cash','','2023-03-03 22:10:22','','0','12','2023-03-03 22:10:22','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121677867608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5160,'','Cash','','2023-03-03 23:49:23','','0','12','2023-03-03 23:49:23','','10610','10610','1','retail','0','10610','1','0','0','0','0','0','0','printed',' ','','1','0','121677870917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5161,'','Cash','','2023-03-04 00:22:54','','0','12','2023-03-04 00:22:54','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121677876576','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5162,'','Cash','','2023-03-04 00:49:20','','0','12','2023-03-04 00:49:20','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677878581','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5163,'','Cash','','2023-03-04 01:45:55','','0','12','2023-03-04 01:45:55','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121677880198','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5164,'','Cash','','2023-03-04 02:08:12','','0','12','2023-03-04 02:08:12','','1450','1450','1','retail','0','1450','1','0','0','0','0','0','0','printed',' ','','1','0','121677883564','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5165,'','Cash','','2023-03-04 02:59:05','','0','12','2023-03-04 02:59:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121677885035','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5166,'','Cash','','2023-03-04 03:55:37','','0','12','2023-03-04 03:55:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677887961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5167,'','Cash','','2023-03-04 03:56:12','','0','12','2023-03-04 03:56:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677891347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5168,'','Cash','','2023-03-04 04:39:52','','0','12','2023-03-04 04:39:52','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121677891379','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5169,'','Cash','','2023-03-04 04:44:41','','0','12','2023-03-04 04:44:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677894013','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5170,'','Cash','','2023-03-04 04:55:30','','0','12','2023-03-04 04:55:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677894301','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5171,'','Cash','','2023-03-04 04:59:55','','0','12','2023-03-04 04:59:55','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121677894942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5172,'','Cash','','2023-03-04 05:10:30','','0','12','2023-03-04 05:10:30','','360','360','1','retail','0','360','1','0','0','0','0','0','0','printed',' ','','1','0','121677895286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5173,'','Cash','','2023-03-04 05:38:27','','0','12','2023-03-04 05:38:27','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121677895837','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5174,'','Cash','','2023-03-04 05:54:06','','0','12','2023-03-04 05:54:06','','3050','3050','1','retail','0','3050','1','0','0','0','0','0','0','printed',' ','','1','0','121677897532','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5175,'','Cash','','2023-03-04 06:06:02','','0','12','2023-03-04 06:06:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677899148','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5176,'','Cash','','2023-03-04 15:40:57','','0','12','2023-03-04 15:40:57','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121677933444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5177,'','Cash','','2023-03-04 23:45:42','','0','12','2023-03-04 23:45:42','','3380','3380','1','retail','0','3380','1','0','0','0','0','0','0','printed',' ','','1','0','121677962604','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5178,'','Cash','','2023-03-04 23:46:28','','0','12','2023-03-04 23:46:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677962748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5179,'','Cash','','2023-03-04 23:46:46','','0','12','2023-03-04 23:46:46','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121677962794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5180,'','Cash','','2023-03-04 23:47:03','','0','12','2023-03-04 23:47:03','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677962811','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5181,'','Cash','','2023-03-04 23:47:40','','0','12','2023-03-04 23:47:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677962828','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5182,'','Cash','','2023-03-04 23:50:22','','0','12','2023-03-04 23:50:22','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121677962865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5183,'','Cash','','2023-03-04 23:54:44','','0','12','2023-03-04 23:54:44','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121677963032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5184,'','Cash','','2023-03-05 00:10:11','','0','12','2023-03-05 00:10:11','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121677963474','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5185,'','Cash','','2023-03-05 00:25:51','','0','12','2023-03-05 00:25:51','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677965021','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5186,'','Cash','','2023-03-05 01:11:47','','0','12','2023-03-05 01:11:47','','9700','9700','1','retail','0','9700','1','0','0','0','0','0','0','printed',' ','','1','0','121677965285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5187,'','Cash','','2023-03-05 01:13:40','','0','12','2023-03-05 01:13:40','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677967912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5188,'','Cash','','2023-03-05 01:39:59','','0','12','2023-03-05 01:39:59','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121677968024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5189,'','Cash','','2023-03-05 01:59:20','','0','12','2023-03-05 01:59:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677969611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5190,'','Cash','','2023-03-05 02:17:27','','0','12','2023-03-05 02:17:27','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121677971820','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5191,'','Cash','','2023-03-05 02:28:59','','0','12','2023-03-05 02:28:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121677972500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5192,'','Cash','','2023-03-05 02:52:43','','0','12','2023-03-05 02:52:43','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121677973872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5193,'','Cash','','2023-03-05 03:24:38','','0','12','2023-03-05 03:24:38','','2760','2760','1','retail','0','2760','1','0','0','0','0','0','0','printed',' ','','1','0','121677974422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5194,'','Cash','','2023-03-05 03:28:15','','0','12','2023-03-05 03:28:15','','2520','2520','1','retail','0','2520','1','0','0','0','0','0','0','printed',' ','','1','0','121677976052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5195,'','Cash','','2023-03-05 03:32:06','','0','12','2023-03-05 03:32:06','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121677976100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5196,'','Cash','','2023-03-05 03:45:40','','0','12','2023-03-05 03:45:40','','8670','8670','1','retail','0','8670','1','0','0','0','0','0','0','printed',' ','','1','0','121677976331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5197,'','Cash','','2023-03-05 03:48:20','','0','12','2023-03-05 03:48:20','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121677977276','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5198,'','Cash','','2023-03-05 04:03:42','','0','12','2023-03-05 04:03:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677978212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5199,'','Cash','','2023-03-05 04:09:20','','0','12','2023-03-05 04:09:20','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121677978228','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5200,'','Cash','','2023-03-05 04:28:48','','0','12','2023-03-05 04:28:48','','2950','2950','1','retail','0','2950','1','0','0','0','0','0','0','printed',' ','','1','0','121677978565','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5201,'','Cash','','2023-03-05 04:57:22','','0','12','2023-03-05 04:57:22','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121677979748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5202,'','Cash','','2023-03-05 05:44:21','','0','12','2023-03-05 05:44:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121677984241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5203,'','Cash','','2023-03-05 05:47:21','','0','12','2023-03-05 05:47:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121677984427','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5204,'','Cash','','2023-03-05 05:48:03','','0','12','2023-03-05 05:48:03','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121677984446','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5205,'','Cash','','2023-03-05 06:37:15','','0','12','2023-03-05 06:37:15','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121677984489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5206,'','Cash','','2023-03-05 07:17:26','','0','12','2023-03-05 07:17:26','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121677987456','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5207,'','Cash','','2023-03-05 07:29:35','','0','12','2023-03-05 07:29:36','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121677990550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5208,'','Cash','','2023-03-05 07:37:58','','0','12','2023-03-05 07:37:58','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121677990594','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5209,'','Cash','','2023-03-05 09:28:51','','0','12','2023-03-05 09:28:51','','1570','1570','1','retail','0','1570','1','0','0','0','0','0','0','printed',' ','','1','0','121677997704','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5210,'','Cash','','2023-03-05 13:26:08','','0','12','2023-03-05 13:26:08','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121678011928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5211,'','Cash','','2023-03-05 16:06:54','','0','12','2023-03-05 16:06:54','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121678021600','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5212,'','Cash','','2023-03-05 16:07:51','','0','12','2023-03-05 16:07:51','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121678021623','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5213,'','Cash','','2023-03-05 20:00:56','','0','12','2023-03-05 20:00:56','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121678035214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5214,'','Cash','','2023-03-05 21:34:58','','0','12','2023-03-05 21:34:58','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121678035681','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5215,'','Cash','','2023-03-05 21:49:52','','0','12','2023-03-05 21:49:52','','11700','11700','1','retail','0','11700','1','0','0','0','0','0','0','printed',' ','','1','0','121678041506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5216,'','Cash','','2023-03-05 22:01:04','','0','12','2023-03-05 22:01:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678042201','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5217,'','Cash','','2023-03-05 23:08:26','','0','12','2023-03-05 23:08:26','','10750','10750','1','retail','0','10750','1','0','0','0','0','0','0','printed',' ','','1','0','121678046817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5218,'','Cash','','2023-03-05 23:39:46','','0','12','2023-03-05 23:39:46','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121678048768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5219,'','Cash','','2023-03-05 23:41:14','','0','12','2023-03-05 23:41:14','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121678048791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5220,'','Cash','','2023-03-06 00:03:29','','0','12','2023-03-06 00:03:29','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121678048890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5221,'','Cash','','2023-03-06 00:11:27','','0','12','2023-03-06 00:11:27','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121678050300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5222,'','Cash','','2023-03-06 00:30:16','','0','12','2023-03-06 00:30:16','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121678050910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5223,'','Cash','','2023-03-06 00:57:51','','0','12','2023-03-06 00:57:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678051821','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5224,'','Cash','','2023-03-06 01:35:21','','0','12','2023-03-06 01:35:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678053476','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5225,'','Cash','','2023-03-06 04:21:45','','0','12','2023-03-06 04:21:45','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121678065440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5226,'','Cash','','2023-03-06 04:22:55','','0','12','2023-03-06 04:22:55','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121678065714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5227,'','Cash','','2023-03-06 19:03:09','','0','12','2023-03-06 19:03:09','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121678118539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5228,'','Cash','','2023-03-06 19:03:47','','0','12','2023-03-06 19:03:47','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121678118597','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5229,'','Cash','','2023-03-06 19:04:13','','0','12','2023-03-06 19:04:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678118635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5230,'','Cash','','2023-03-06 19:06:09','','0','12','2023-03-06 19:06:09','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121678118713','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5231,'','Cash','','2023-03-06 19:07:39','','0','12','2023-03-06 19:07:39','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121678118825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5232,'','Cash','','2023-03-06 22:16:52','','0','12','2023-03-06 22:16:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678130160','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5233,'','Cash','','2023-03-06 22:17:52','','0','12','2023-03-06 22:17:52','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121678130247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5234,'','Cash','','2023-03-06 22:18:35','','0','12','2023-03-06 22:18:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678130300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5235,'','Cash','','2023-03-06 22:44:45','','0','12','2023-03-06 22:44:45','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121678131878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5236,'','Cash','','2023-03-06 23:03:53','','0','12','2023-03-06 23:03:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678131891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5237,'','Cash','','2023-03-06 23:06:04','','0','12','2023-03-06 23:06:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678133155','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5238,'','Cash','','2023-03-06 23:14:06','','0','12','2023-03-06 23:14:06','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121678133635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5239,'','Cash','','2023-03-06 23:17:35','','0','12','2023-03-06 23:17:35','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121678133650','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5240,'','Cash','','2023-03-06 23:46:05','','0','12','2023-03-06 23:46:05','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121678133989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5241,'','Cash','','2023-03-06 23:48:30','','0','12','2023-03-06 23:48:30','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121678135571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5242,'','Cash','','2023-03-07 03:25:55','','0','12','2023-03-07 03:25:55','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678148739','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5243,'','Cash','','2023-03-07 06:40:40','','0','12','2023-03-07 06:40:40','','1450','1450','1','retail','0','1450','1','0','0','0','0','0','0','printed',' ','','1','0','121678148761','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5244,'','Cash','','2023-03-07 15:01:00','','0','12','2023-03-07 15:01:00','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678181961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5245,'','Cash','','2023-03-07 23:01:04','','0','12','2023-03-07 23:01:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121678217212','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5246,'','Cash','','2023-03-07 23:18:15','','0','12','2023-03-07 23:18:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678220264','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5247,'','Cash','','2023-03-07 23:22:07','','0','12','2023-03-07 23:22:07','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121678220302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5248,'','Cash','','2023-03-08 00:18:55','','0','12','2023-03-08 00:18:55','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121678220532','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5249,'','Cash','','2023-03-08 01:18:11','','0','12','2023-03-08 01:18:11','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121678223983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5250,'','Cash','','2023-03-08 01:18:32','','0','12','2023-03-08 01:18:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678227499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5251,'','Cash','','2023-03-08 09:37:17','','0','12','2023-03-08 09:37:17','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121678257408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5252,'','Cash','','2023-03-08 20:31:53','','0','12','2023-03-08 20:31:53','','2430','2430','1','retail','0','2430','1','0','0','0','0','0','0','printed',' ','','1','0','121678290375','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5253,'','Cash','','2023-03-08 21:26:24','','0','12','2023-03-08 21:26:24','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121678299971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5254,'','Cash','','2023-03-08 22:41:27','','0','12','2023-03-08 22:41:27','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121678299990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5255,'','Cash','','2023-03-08 23:11:54','','0','12','2023-03-08 23:11:54','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121678304517','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5256,'','Cash','','2023-03-08 23:34:01','','0','12','2023-03-08 23:34:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678306326','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5257,'','Cash','','2023-03-09 01:09:44','','0','12','2023-03-09 01:09:44','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121678307647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5258,'','Cash','','2023-03-09 01:14:52','','0','12','2023-03-09 01:14:52','','3650','3650','1','retail','0','3650','1','0','0','0','0','0','0','printed',' ','','1','0','121678313503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5259,'','Cash','','2023-03-09 01:30:05','','0','12','2023-03-09 01:30:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678313791','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5260,'','Cash','','2023-03-09 09:58:33','','0','12','2023-03-09 09:58:33','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121678344583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5261,'','Cash','','2023-03-09 10:17:29','','0','12','2023-03-09 10:17:30','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678345179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5262,'','Cash','','2023-03-09 20:33:02','','0','12','2023-03-09 20:33:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678383164','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5263,'','Cash','','2023-03-09 20:34:02','','0','12','2023-03-09 20:34:02','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121678383191','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5264,'','Cash','','2023-03-09 20:34:48','','0','12','2023-03-09 20:34:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678383253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5265,'','Cash','','2023-03-09 21:35:33','','0','12','2023-03-09 21:35:33','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678383298','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5266,'','Cash','','2023-03-09 21:51:33','','0','12','2023-03-09 21:51:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678387873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5267,'','Cash','','2023-03-09 22:35:03','','0','12','2023-03-09 22:35:03','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121678387898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5268,'','Cash','','2023-03-09 23:34:28','','0','12','2023-03-09 23:34:28','','260','260','1','retail','0','260','1','0','0','0','0','0','0','printed',' ','','1','0','121678390521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5269,'','Cash','','2023-03-10 01:00:49','','0','12','2023-03-10 01:00:49','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121678394088','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5270,'','Cash','','2023-03-10 01:17:28','','0','12','2023-03-10 01:17:28','','660','660','1','retail','0','660','1','0','0','0','0','0','0','printed',' ','','1','0','121678399331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5271,'','Cash','','2023-03-10 01:47:38','','0','12','2023-03-10 01:47:38','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121678400265','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5272,'','Cash','','2023-03-10 01:53:38','','0','12','2023-03-10 01:53:38','','2860','2860','1','retail','0','2860','1','0','0','0','0','0','0','printed',' ','','1','0','121678402110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5273,'','Cash','','2023-03-10 01:57:24','','0','12','2023-03-10 01:57:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678402462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5274,'','Cash','','2023-03-10 22:30:50','','0','12','2023-03-10 22:30:50','','4030','4030','1','retail','0','4030','1','0','0','0','0','0','0','printed',' ','','1','0','121678471243','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5275,'','Cash','','2023-03-10 23:01:48','','0','12','2023-03-10 23:01:48','','3200','3200','1','retail','0','3200','1','0','0','0','0','0','0','printed',' ','','1','0','121678477004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5276,'','Cash','','2023-03-10 23:24:11','','0','12','2023-03-10 23:24:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678478735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5277,'','Cash','','2023-03-10 23:39:07','','0','12','2023-03-10 23:39:07','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121678479858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5278,'','Cash','','2023-03-10 23:41:38','','0','12','2023-03-10 23:41:38','','5300','5300','1','retail','0','5300','1','0','0','0','0','0','0','printed',' ','','1','0','121678480752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5279,'','Cash','','2023-03-10 23:49:33','','0','12','2023-03-10 23:49:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678480911','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5280,'','Cash','','2023-03-11 00:10:34','','0','12','2023-03-11 00:10:34','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121678481383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5281,'','Cash','','2023-03-11 00:20:25','','0','12','2023-03-11 00:20:25','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121678482640','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5282,'','Cash','','2023-03-11 00:25:42','','0','12','2023-03-11 00:25:42','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121678483233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5283,'','Cash','','2023-03-11 00:37:23','','0','12','2023-03-11 00:37:23','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121678484134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5284,'','Cash','','2023-03-11 01:01:39','','0','12','2023-03-11 01:01:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121678484439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5285,'','Cash','','2023-03-11 02:19:54','','0','12','2023-03-11 02:19:54','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121678485718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5286,'','Cash','','2023-03-11 16:55:13','','0','12','2023-03-11 16:55:13','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121678542795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5287,'','Cash','','2023-03-11 17:49:36','','0','12','2023-03-11 17:49:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121678546118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5288,'','Cash','','2023-03-11 18:47:34','','0','12','2023-03-11 18:47:34','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678549609','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5289,'','Cash','','2023-03-11 20:56:09','','0','12','2023-03-11 20:56:09','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121678557359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5290,'','Cash','','2023-03-11 21:19:11','','0','12','2023-03-11 21:19:11','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678557374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5291,'','Cash','','2023-03-11 21:19:34','','0','12','2023-03-11 21:19:34','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121678558756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5292,'','Cash','','2023-03-11 21:33:01','','0','12','2023-03-11 21:33:01','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121678558780','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5293,'','Cash','','2023-03-11 21:46:45','','0','12','2023-03-11 21:46:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678559591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5294,'','Cash','','2023-03-11 22:00:49','','0','12','2023-03-11 22:00:49','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121678561133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5295,'','Cash','','2023-03-11 22:05:46','','0','12','2023-03-11 22:05:47','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121678561256','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5296,'','Cash','','2023-03-11 23:27:00','','0','12','2023-03-11 23:27:00','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121678561553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5297,'','Cash','','2023-03-11 23:40:28','','0','12','2023-03-11 23:40:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678566425','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5298,'','Cash','','2023-03-12 00:29:42','','0','12','2023-03-12 00:29:42','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121678567235','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5299,'','Cash','','2023-03-12 00:31:43','','0','12','2023-03-12 00:31:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678570253','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5300,'','Cash','','2023-03-12 00:37:17','','0','12','2023-03-12 00:37:17','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121678570309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5301,'','Cash','','2023-03-12 00:38:08','','0','12','2023-03-12 00:38:08','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121678570671','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5302,'','Cash','','2023-03-12 00:39:28','','0','12','2023-03-12 00:39:28','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121678570745','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5303,'','Cash','','2023-03-12 00:54:00','','0','12','2023-03-12 00:54:00','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121678570865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5304,'','Cash','','2023-03-12 02:19:33','','0','12','2023-03-12 02:19:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678572023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5305,'','Cash','','2023-03-12 02:26:20','','0','12','2023-03-12 02:26:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678576784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5306,'','Cash','','2023-03-12 03:53:15','','0','12','2023-03-12 03:53:15','','6370','6370','1','retail','0','6370','1','0','0','0','0','0','0','printed',' ','','1','0','121678582170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5307,'','Cash','','2023-03-12 06:06:26','','0','12','2023-03-12 06:06:26','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed',' ','','1','0','121678590227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5308,'','Cash','','2023-03-12 06:42:08','','0','12','2023-03-12 06:42:08','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121678590392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5309,'','Cash','','2023-03-12 09:21:34','','0','12','2023-03-12 09:21:34','','1930','1930','1','retail','0','1930','1','0','0','0','0','0','0','printed',' ','','1','0','121678602030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5310,'','Cash','','2023-03-12 16:03:39','','0','12','2023-03-12 16:03:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678626206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5311,'','Cash','','2023-03-12 16:37:05','','0','12','2023-03-12 16:37:05','','18250','18250','1','retail','0','18250','1','0','0','0','0','0','0','printed',' ','','1','0','121678626229','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5312,'','Cash','','2023-03-12 16:57:03','','0','12','2023-03-12 16:57:03','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121678628792','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5313,'','Cash','','2023-03-12 17:53:38','','0','12','2023-03-12 17:53:38','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121678629429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5314,'','Cash','','2023-03-12 20:30:18','','0','12','2023-03-12 20:30:18','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121678632826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5315,'','Cash','','2023-03-12 21:08:00','','0','12','2023-03-12 21:08:00','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121678642438','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5316,'','Cash','','2023-03-12 21:14:02','','0','12','2023-03-12 21:14:02','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121678644681','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5317,'','Cash','','2023-03-12 22:35:07','','0','12','2023-03-12 22:35:07','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121678644848','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5318,'','Cash','','2023-03-12 23:23:16','','0','12','2023-03-12 23:23:16','','3360','3360','1','retail','0','3360','1','0','0','0','0','0','0','printed',' ','','1','0','121678649729','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5319,'','Cash','','2023-03-12 23:39:16','','0','12','2023-03-12 23:39:16','','4300','4300','1','retail','0','4300','1','0','0','0','0','0','0','printed',' ','','1','0','121678653521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5320,'','Cash','','2023-03-12 23:51:29','','0','12','2023-03-12 23:51:30','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678653667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5321,'','Cash','','2023-03-13 00:00:09','','0','12','2023-03-13 00:00:09','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121678654296','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5322,'','Cash','','2023-03-13 01:00:10','','0','12','2023-03-13 01:00:10','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678654844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5323,'','Cash','','2023-03-13 01:00:55','','0','12','2023-03-13 01:00:55','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed',' ','','1','0','121678658415','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5324,'','Cash','','2023-03-13 01:17:33','','0','12','2023-03-13 01:17:33','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121678658461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5325,'','Cash','','2023-03-13 01:50:07','','0','12','2023-03-13 01:50:07','','11150','11150','1','retail','0','11150','1','0','0','0','0','0','0','printed',' ','','1','0','121678661364','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5326,'','Cash','','2023-03-13 01:51:46','','0','12','2023-03-13 01:51:46','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121678661413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5327,'','Cash','','2023-03-13 02:38:20','','0','12','2023-03-13 02:38:20','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121678661513','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5328,'','Cash','','2023-03-13 03:08:09','','0','12','2023-03-13 03:08:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678664346','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5329,'','Cash','','2023-03-13 04:15:41','','0','12','2023-03-13 04:15:41','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121678666103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5330,'','Cash','','2023-03-13 08:05:01','','0','12','2023-03-13 08:05:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678683839','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5331,'','Cash','','2023-03-13 14:17:32','','0','12','2023-03-13 14:17:33','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121678701528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5332,'','Cash','','2023-03-13 16:42:20','','0','12','2023-03-13 16:42:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121678714907','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5333,'','Cash','','2023-03-13 16:44:18','','0','12','2023-03-13 16:44:18','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678714945','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5334,'','Cash','','2023-03-13 18:52:00','','0','12','2023-03-13 18:52:00','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121678722711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5335,'','Cash','','2023-03-13 19:08:54','','0','12','2023-03-13 19:08:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678722726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5336,'','Cash','','2023-03-13 20:13:23','','0','12','2023-03-13 20:13:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678723740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5337,'','Cash','','2023-03-13 22:40:51','','0','12','2023-03-13 22:40:51','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121678736432','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5338,'','Cash','','2023-03-13 22:42:06','','0','12','2023-03-13 22:42:06','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121678736462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5339,'','Cash','','2023-03-13 22:44:04','','0','12','2023-03-13 22:44:04','','1280','1280','1','retail','0','1280','1','0','0','0','0','0','0','printed',' ','','1','0','121678736554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5340,'','Cash','','2023-03-13 22:48:18','','0','12','2023-03-13 22:48:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121678736676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5341,'','Cash','','2023-03-13 22:55:28','','0','12','2023-03-13 22:55:28','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121678736904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5342,'','Cash','','2023-03-13 23:21:12','','0','12','2023-03-13 23:21:12','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121678738831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5343,'','Cash','','2023-03-14 00:37:04','','0','12','2023-03-14 00:37:04','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121678740465','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5344,'','Cash','','2023-03-14 20:52:49','','0','12','2023-03-14 20:52:49','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678816323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5345,'','Cash','','2023-03-14 21:26:54','','0','12','2023-03-14 21:26:54','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121678816377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5346,'','Cash','','2023-03-14 22:17:58','','0','12','2023-03-14 22:17:58','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121678818572','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5347,'','Cash','','2023-03-15 03:23:09','','0','12','2023-03-15 03:23:09','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121678837668','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5348,'','Cash','','2023-03-15 03:26:54','','0','12','2023-03-15 03:26:54','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121678839966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5349,'','Cash','','2023-03-15 03:28:28','','0','12','2023-03-15 03:28:28','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121678840092','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5350,'','Cash','','2023-03-15 11:44:02','','0','12','2023-03-15 11:44:02','','4080','4080','1','retail','0','4080','1','0','0','0','0','0','0','printed',' ','','1','0','121678863755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5351,'','Cash','','2023-03-15 12:38:14','','0','12','2023-03-15 12:38:14','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121678869953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5352,'','Cash','','2023-03-15 18:39:50','','0','12','2023-03-15 18:39:50','','1630','1630','1','retail','0','1630','1','0','0','0','0','0','0','printed',' ','','1','0','121678894655','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5353,'','Cash','','2023-03-15 18:41:02','','0','12','2023-03-15 18:41:02','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121678894845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5354,'','Cash','','2023-03-15 18:53:22','','0','12','2023-03-15 18:53:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678894867','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5355,'','Cash','','2023-03-15 18:55:43','','0','12','2023-03-15 18:55:43','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121678895621','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5356,'','Cash','','2023-03-15 18:58:33','','0','12','2023-03-15 18:58:33','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121678895756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5357,'','Cash','','2023-03-15 19:28:16','','0','12','2023-03-15 19:28:16','','2950','2950','1','retail','0','2950','1','0','0','0','0','0','0','printed',' ','','1','0','121678895920','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5358,'','Cash','','2023-03-15 21:18:40','','0','12','2023-03-15 21:18:40','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121678904267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5359,'','Cash','','2023-03-15 21:45:23','','0','12','2023-03-15 21:45:23','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121678904341','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5360,'','Cash','','2023-03-15 22:15:43','','0','12','2023-03-15 22:15:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678905968','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5361,'','Cash','','2023-03-15 22:37:44','','0','12','2023-03-15 22:37:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678907750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5362,'','Cash','','2023-03-15 22:39:28','','0','12','2023-03-15 22:39:28','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121678909094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5363,'','Cash','','2023-03-15 22:44:44','','0','12','2023-03-15 22:44:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678909252','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5364,'','Cash','','2023-03-15 23:05:59','','0','12','2023-03-15 23:05:59','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121678909489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5365,'','Cash','','2023-03-16 01:01:30','','0','12','2023-03-16 01:01:30','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121678910767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5366,'','Cash','','2023-03-16 18:22:52','','0','12','2023-03-16 18:22:52','','1130','1130','1','retail','0','1130','1','0','0','0','0','0','0','printed',' ','','1','0','121678980123','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5367,'','Cash','','2023-03-16 19:56:06','','0','12','2023-03-16 19:56:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678980178','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5368,'','Cash','','2023-03-16 20:34:56','','0','12','2023-03-16 20:34:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678985787','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5369,'','Cash','','2023-03-16 22:01:34','','0','12','2023-03-16 22:01:34','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121678988162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5370,'','Cash','','2023-03-16 22:16:07','','0','12','2023-03-16 22:16:07','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121678993302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5371,'','Cash','','2023-03-16 22:23:04','','0','12','2023-03-16 22:23:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121678994172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5372,'','Cash','','2023-03-16 22:30:55','','0','12','2023-03-16 22:30:55','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121678994590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5373,'','Cash','','2023-03-16 23:51:04','','0','12','2023-03-16 23:51:05','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121678998768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5374,'','Cash','','2023-03-16 23:51:50','','0','12','2023-03-16 23:51:50','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121678999893','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5375,'','Cash','','2023-03-17 00:30:21','','0','12','2023-03-17 00:30:21','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121679001505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5376,'','Cash','','2023-03-17 01:02:43','','0','12','2023-03-17 01:02:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679002241','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5377,'','Cash','','2023-03-17 02:29:21','','0','12','2023-03-17 02:29:21','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121679009318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5378,'','Cash','','2023-03-17 02:30:21','','0','12','2023-03-17 02:30:21','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121679009389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5379,'','Cash','','2023-03-17 02:56:56','','0','12','2023-03-17 02:56:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679009430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5380,'','Cash','','2023-03-17 04:51:50','','0','12','2023-03-17 04:51:50','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121679011022','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5381,'','Cash','','2023-03-17 21:37:32','','0','12','2023-03-17 21:37:32','','1430','1430','1','retail','0','1430','1','0','0','0','0','0','0','printed',' ','','1','0','121679077983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5382,'','Cash','','2023-03-17 21:46:26','','0','12','2023-03-17 21:46:26','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121679078273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5383,'','Cash','','2023-03-17 21:47:10','','0','12','2023-03-17 21:47:10','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121679078793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5384,'','Cash','','2023-03-17 21:47:50','','0','12','2023-03-17 21:47:50','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679078843','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5385,'','Cash','','2023-03-17 21:48:28','','0','12','2023-03-17 21:48:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679078878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5386,'','Cash','','2023-03-17 22:00:32','','0','12','2023-03-17 22:00:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679078915','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5387,'','Cash','','2023-03-17 22:22:05','','0','12','2023-03-17 22:22:05','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121679079677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5388,'','Cash','','2023-03-17 23:08:40','','0','12','2023-03-17 23:08:40','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121679080933','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5389,'','Cash','','2023-03-17 23:38:40','','0','12','2023-03-17 23:38:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679083797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5390,'','Cash','','2023-03-17 23:58:53','','0','12','2023-03-17 23:58:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679085553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5391,'','Cash','','2023-03-18 00:42:24','','0','12','2023-03-18 00:42:24','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121679086744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5392,'','Cash','','2023-03-18 03:34:03','','0','12','2023-03-18 03:34:03','','3350','3350','1','retail','0','3350','1','0','0','0','0','0','0','printed',' ','','1','0','121679099322','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5393,'','Cash','','2023-03-18 03:49:13','','0','12','2023-03-18 03:49:13','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121679100512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5394,'','Cash','','2023-03-18 04:00:22','','0','12','2023-03-18 04:00:22','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121679100561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5395,'','Cash','','2023-03-18 04:03:56','','0','12','2023-03-18 04:03:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679101226','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5396,'','Cash','','2023-03-18 04:22:04','','0','12','2023-03-18 04:22:04','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121679102503','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5397,'','Cash','','2023-03-18 08:02:55','','0','12','2023-03-18 08:02:55','','2990','2990','1','retail','0','2990','1','0','0','0','0','0','0','printed',' ','','1','0','121679115634','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5398,'','Cash','','2023-03-18 12:33:59','','0','12','2023-03-18 12:33:59','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121679131412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5399,'','Cash','','2023-03-18 17:37:48','','0','12','2023-03-18 17:37:48','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121679150231','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5400,'','Cash','','2023-03-18 17:39:24','','0','12','2023-03-18 17:39:24','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121679150332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5401,'','Cash','','2023-03-18 17:40:17','','0','12','2023-03-18 17:40:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679150369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5402,'','Cash','','2023-03-18 20:09:21','','0','12','2023-03-18 20:09:21','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121679159328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5403,'','Cash','','2023-03-18 20:51:31','','0','12','2023-03-18 20:51:31','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121679159374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5404,'','Cash','','2023-03-18 20:53:28','','0','12','2023-03-18 20:53:28','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679161936','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5405,'','Cash','','2023-03-18 20:57:53','','0','12','2023-03-18 20:57:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679162262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5406,'','Cash','','2023-03-18 21:18:06','','0','12','2023-03-18 21:18:06','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679162279','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5407,'','Cash','','2023-03-18 22:50:49','','0','12','2023-03-18 22:50:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679163491','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5408,'','Cash','','2023-03-18 23:06:57','','0','12','2023-03-18 23:06:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679170005','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5409,'','Cash','','2023-03-18 23:18:58','','0','12','2023-03-18 23:18:58','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679170496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5410,'','Cash','','2023-03-18 23:38:27','','0','12','2023-03-18 23:38:27','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121679170749','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5411,'','Cash','','2023-03-19 00:16:14','','0','12','2023-03-19 00:16:14','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121679171912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5412,'','Cash','','2023-03-19 00:28:34','','0','12','2023-03-19 00:28:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679174201','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5413,'','Cash','','2023-03-19 00:34:24','','0','12','2023-03-19 00:34:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679174919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5414,'','Cash','','2023-03-19 00:42:26','','0','12','2023-03-19 00:42:26','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121679175269','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5415,'','Cash','','2023-03-19 00:48:00','','0','12','2023-03-19 00:48:00','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121679175797','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5416,'','Cash','','2023-03-19 00:59:27','','0','12','2023-03-19 00:59:27','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121679176085','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5417,'','Cash','','2023-03-19 01:03:40','','0','12','2023-03-19 01:03:40','','130','130','1','retail','0','130','1','0','0','0','0','0','0','printed',' ','','1','0','121679176988','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5418,'','Cash','','2023-03-19 01:28:57','','0','12','2023-03-19 01:28:57','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121679177515','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5419,'','Cash','','2023-03-19 02:05:37','','0','12','2023-03-19 02:05:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679178542','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5420,'','Cash','','2023-03-19 02:18:55','','0','12','2023-03-19 02:18:55','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679180743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5421,'','Cash','','2023-03-19 02:39:37','','0','12','2023-03-19 02:39:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679181541','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5422,'','Cash','','2023-03-19 02:44:39','','0','12','2023-03-19 02:44:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679182785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5423,'','Cash','','2023-03-19 03:45:06','','0','12','2023-03-19 03:45:06','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121679183084','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5424,'','Cash','','2023-03-19 04:35:03','','0','12','2023-03-19 04:35:03','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679187854','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5425,'','Cash','','2023-03-19 06:15:40','','0','12','2023-03-19 06:15:40','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121679195723','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5426,'','Cash','','2023-03-19 21:51:17','','0','12','2023-03-19 21:51:17','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121679251859','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5427,'','Cash','','2023-03-19 21:54:08','','0','12','2023-03-19 21:54:08','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121679251882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5428,'','Cash','','2023-03-19 22:24:42','','0','12','2023-03-19 22:24:42','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121679252092','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5429,'','Cash','','2023-03-19 22:44:07','','0','12','2023-03-19 22:44:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121679253919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5430,'','Cash','','2023-03-19 23:04:04','','0','12','2023-03-19 23:04:04','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121679255052','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5431,'','Cash','','2023-03-20 00:03:15','','0','12','2023-03-20 00:03:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679259788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5432,'','Cash','','2023-03-20 00:03:37','','0','12','2023-03-20 00:03:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679259801','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5433,'','Cash','','2023-03-20 02:17:10','','0','12','2023-03-20 02:17:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679259824','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5434,'','Cash','','2023-03-20 03:03:52','','0','12','2023-03-20 03:03:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679267835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5435,'','Cash','','2023-03-20 03:04:21','','0','12','2023-03-20 03:04:21','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121679270648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5436,'','Cash','','2023-03-20 05:07:14','','0','12','2023-03-20 05:07:14','','1240','1240','1','retail','0','1240','1','0','0','0','0','0','0','printed',' ','','1','0','121679277990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5437,'','Cash','','2023-03-20 05:09:04','','0','12','2023-03-20 05:09:04','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679278039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5438,'','Cash','','2023-03-20 12:47:19','','0','12','2023-03-20 12:47:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679305588','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5439,'','Cash','','2023-03-20 19:42:52','','0','12','2023-03-20 19:42:52','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679330505','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5440,'','Cash','','2023-03-20 21:22:25','','0','12','2023-03-20 21:22:25','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679336526','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5441,'','Cash','','2023-03-20 21:49:15','','0','12','2023-03-20 21:49:15','','3580','3580','1','retail','0','3580','1','0','0','0','0','0','0','printed',' ','','1','0','121679336560','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5442,'','Cash','','2023-03-20 22:15:16','','0','12','2023-03-20 22:15:16','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121679338214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5443,'','Cash','','2023-03-20 22:30:22','','0','12','2023-03-20 22:30:22','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121679339773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5444,'','Cash','','2023-03-20 23:10:12','','0','12','2023-03-20 23:10:12','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121679340626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5445,'','Cash','','2023-03-20 23:25:40','','0','12','2023-03-20 23:25:40','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679343038','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5446,'','Cash','','2023-03-20 23:51:24','','0','12','2023-03-20 23:51:24','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121679343947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5447,'','Cash','','2023-03-20 23:54:22','','0','12','2023-03-20 23:54:22','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121679345518','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5448,'','Cash','','2023-03-21 00:02:41','','0','12','2023-03-21 00:02:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679345747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5449,'','Cash','','2023-03-21 00:30:46','','0','12','2023-03-21 00:30:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679346169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5450,'','Cash','','2023-03-21 00:57:46','','0','12','2023-03-21 00:57:46','','5800','5800','1','retail','0','5800','1','0','0','0','0','0','0','printed',' ','','1','0','121679347853','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5451,'','Cash','','2023-03-21 01:24:35','','0','12','2023-03-21 01:24:35','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679349509','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5452,'','Cash','','2023-03-21 01:40:25','','0','12','2023-03-21 01:40:25','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121679351080','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5453,'','Cash','','2023-03-21 02:12:46','','0','12','2023-03-21 02:12:46','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121679352030','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5454,'','Cash','','2023-03-21 09:16:07','','0','12','2023-03-21 09:16:07','','196750','196750','1','retail','0','196750','1','0','0','0','0','0','0','printed',' ','','1','0','121679378444','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5455,'','Cash','','2023-03-21 17:20:15','','0','12','2023-03-21 17:20:15','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121679408359','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5456,'','Cash','','2023-03-21 17:22:36','','0','12','2023-03-21 17:22:36','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121679408540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5457,'','Cash','','2023-03-21 17:46:21','','0','12','2023-03-21 17:46:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679408561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5458,'','Cash','','2023-03-21 17:47:43','','0','12','2023-03-21 17:47:43','','510','510','1','retail','0','510','1','0','0','0','0','0','0','printed',' ','','1','0','121679409998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5459,'','Cash','','2023-03-21 22:03:32','','0','12','2023-03-21 22:03:32','','4950','4950','1','retail','0','4950','1','0','0','0','0','0','0','printed',' ','','1','0','121679418651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5460,'','Cash','','2023-03-21 22:58:01','','0','12','2023-03-21 22:58:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679427048','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5461,'','Cash','','2023-03-22 00:09:48','','0','12','2023-03-22 00:09:48','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121679428697','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5462,'','Cash','','2023-03-22 00:15:13','','0','12','2023-03-22 00:15:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121679432996','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5463,'','Cash','','2023-03-22 00:51:04','','0','12','2023-03-22 00:51:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679435454','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5464,'','Cash','','2023-03-22 01:15:05','','0','12','2023-03-22 01:15:05','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679435473','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5465,'','Cash','','2023-03-22 01:33:32','','0','12','2023-03-22 01:33:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679436910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5466,'','Cash','','2023-03-22 01:43:55','','0','12','2023-03-22 01:43:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679438628','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5467,'','Cash','','2023-03-22 03:36:55','','0','12','2023-03-22 03:36:55','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121679438640','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5468,'','Cash','','2023-03-22 03:45:43','','0','12','2023-03-22 03:45:43','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121679445547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5469,'','Cash','','2023-03-22 17:52:44','','0','12','2023-03-22 17:52:44','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121679496561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5470,'','Cash','','2023-03-22 18:38:07','','0','12','2023-03-22 18:38:07','','1290','1290','1','retail','0','1290','1','0','0','0','0','0','0','printed',' ','','1','0','121679499102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5471,'','Cash','','2023-03-22 21:16:37','','0','12','2023-03-22 21:16:37','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121679508964','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5472,'','Cash','','2023-03-22 21:17:01','','0','12','2023-03-22 21:17:01','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121679509003','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5473,'','Cash','','2023-03-22 21:39:59','','0','12','2023-03-22 21:39:59','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed',' ','','1','0','121679509027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5474,'','Cash','','2023-03-22 21:43:56','','0','12','2023-03-22 21:43:56','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121679510551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5475,'','Cash','','2023-03-22 21:51:27','','0','12','2023-03-22 21:51:27','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121679510726','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5476,'','Cash','','2023-03-22 22:10:34','','0','12','2023-03-22 22:10:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679511093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5477,'','Cash','','2023-03-22 22:36:38','','0','12','2023-03-22 22:36:38','','3150','3150','1','retail','0','3150','1','0','0','0','0','0','0','printed',' ','','1','0','121679513768','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5478,'','Cash','','2023-03-22 22:52:04','','0','12','2023-03-22 22:52:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121679514715','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5479,'','Cash','','2023-03-22 22:58:57','','0','12','2023-03-22 22:58:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679514730','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5480,'','Cash','','2023-03-22 23:14:54','','0','12','2023-03-22 23:14:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679516075','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5481,'','Cash','','2023-03-22 23:15:13','','0','12','2023-03-22 23:15:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121679516099','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5482,'','Cash','','2023-03-23 00:01:38','','0','12','2023-03-23 00:01:38','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121679516118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5483,'','Cash','','2023-03-23 03:02:00','','0','12','2023-03-23 03:02:00','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121679529702','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5484,'','Cash','','2023-03-23 05:30:21','','0','12','2023-03-23 05:30:21','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121679538580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5485,'','Cash','','2023-03-23 08:36:13','','0','12','2023-03-23 08:36:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121679549756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5486,'','Cash','','2023-03-23 22:03:07','','0','12','2023-03-23 22:03:07','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121679593794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5487,'','Cash','','2023-03-23 22:07:14','','0','12','2023-03-23 22:07:14','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679598194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5488,'','Cash','','2023-03-23 23:02:04','','0','12','2023-03-23 23:02:04','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679598439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5489,'','Cash','','2023-03-23 23:07:14','','0','12','2023-03-23 23:07:14','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121679601732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5490,'','Cash','','2023-03-23 23:49:00','','0','12','2023-03-23 23:49:00','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679602039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5491,'','Cash','','2023-03-24 00:29:14','','0','12','2023-03-24 00:29:14','','4030','4030','1','retail','0','4030','1','0','0','0','0','0','0','printed',' ','','1','0','121679604546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5492,'','Cash','','2023-03-24 01:01:24','','0','12','2023-03-24 01:01:24','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121679607070','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5493,'','Cash','','2023-03-24 01:32:38','','0','12','2023-03-24 01:32:38','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121679608941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5494,'','Cash','','2023-03-24 01:52:25','','0','12','2023-03-24 01:52:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679610764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5495,'','Cash','','2023-03-24 03:06:48','','0','12','2023-03-24 03:06:48','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679611962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5496,'','Cash','','2023-03-24 03:07:41','','0','12','2023-03-24 03:07:41','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121679616413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5497,'','Cash','','2023-03-24 06:54:46','','0','12','2023-03-24 06:54:46','','2970','2970','1','retail','0','2970','1','0','0','0','0','0','0','printed',' ','','1','0','121679629908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5498,'','Cash','','2023-03-24 07:26:13','','0','12','2023-03-24 07:26:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121679630291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5499,'','Cash','','2023-03-24 20:09:33','','0','12','2023-03-24 20:09:33','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121679667340','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5500,'','Cash','','2023-03-24 20:17:13','','0','12','2023-03-24 20:17:13','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121679678144','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5501,'','Cash','','2023-03-24 20:58:34','','0','12','2023-03-24 20:58:34','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121679679551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5502,'','Cash','','2023-03-24 21:30:04','','0','12','2023-03-24 21:30:04','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121679682494','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5503,'','Cash','','2023-03-24 22:10:49','','0','12','2023-03-24 22:10:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679684716','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5504,'','Cash','','2023-03-24 22:11:31','','0','12','2023-03-24 22:11:31','','260','260','1','retail','0','260','1','0','0','0','0','0','0','printed',' ','','1','0','121679685057','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5505,'','Cash','','2023-03-24 23:15:01','','0','12','2023-03-24 23:15:01','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121679687178','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5506,'','Cash','','2023-03-25 00:14:49','','0','12','2023-03-25 00:14:49','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121679692456','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5507,'','Cash','','2023-03-25 00:23:49','','0','12','2023-03-25 00:23:49','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121679692495','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5508,'','Cash','','2023-03-25 00:55:07','','0','12','2023-03-25 00:55:07','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121679693493','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5509,'','Cash','','2023-03-25 02:21:18','','0','12','2023-03-25 02:21:18','','2130','2130','1','retail','0','2130','1','0','0','0','0','0','0','printed',' ','','1','0','121679694920','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5510,'','Cash','','2023-03-25 02:23:41','','0','12','2023-03-25 02:23:41','','2580','2580','1','retail','0','2580','1','0','0','0','0','0','0','printed',' ','','1','0','121679700191','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5511,'','Cash','','2023-03-25 02:47:30','','0','12','2023-03-25 02:47:30','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121679701605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5512,'','Cash','','2023-03-25 03:07:41','','0','12','2023-03-25 03:07:41','','1060','1060','1','retail','0','1060','1','0','0','0','0','0','0','printed',' ','','1','0','121679701663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5513,'','Cash','','2023-03-25 03:56:15','','0','12','2023-03-25 03:56:15','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121679702866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5514,'','Cash','','2023-03-25 04:07:44','','0','12','2023-03-25 04:07:44','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121679706440','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5515,'','Cash','','2023-03-25 04:19:47','','0','12','2023-03-25 04:19:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679706497','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5516,'','Cash','','2023-03-25 11:52:10','','0','12','2023-03-25 11:52:10','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121679734320','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5517,'','Cash','','2023-03-25 11:53:01','','0','12','2023-03-25 11:53:01','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121679734338','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5518,'','Cash','','2023-03-25 14:16:52','','0','12','2023-03-25 14:16:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121679742963','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5519,'','Cash','','2023-03-25 14:48:40','','0','12','2023-03-25 14:48:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121679744913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5520,'','Cash','','2023-03-25 14:50:27','','0','12','2023-03-25 14:50:27','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121679744925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5521,'','Cash','','2023-03-25 15:12:23','','0','12','2023-03-25 15:12:23','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679745032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5522,'','Cash','','2023-03-25 21:25:57','','0','12','2023-03-25 21:25:57','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679768742','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5523,'','Cash','','2023-03-25 22:17:38','','0','12','2023-03-25 22:17:38','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121679768776','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5524,'','Cash','','2023-03-25 22:18:45','','0','12','2023-03-25 22:18:45','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121679771869','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5525,'','Cash','','2023-03-25 22:19:24','','0','12','2023-03-25 22:19:24','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121679771931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5526,'','Cash','','2023-03-25 22:20:08','','0','12','2023-03-25 22:20:08','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121679771971','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5527,'','Cash','','2023-03-25 22:41:31','','0','12','2023-03-25 22:41:31','','2680','2680','1','retail','0','2680','1','0','0','0','0','0','0','printed',' ','','1','0','121679772015','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5528,'','Cash','','2023-03-25 22:44:48','','0','12','2023-03-25 22:44:48','','2070','2070','1','retail','0','2070','1','0','0','0','0','0','0','printed',' ','','1','0','121679773405','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5529,'','Cash','','2023-03-25 23:04:09','','0','12','2023-03-25 23:04:10','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121679773504','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5530,'','Cash','','2023-03-25 23:38:57','','0','12','2023-03-25 23:38:57','','5400','5400','1','retail','0','5400','1','0','0','0','0','0','0','printed',' ','','1','0','121679774658','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5531,'','Cash','','2023-03-26 04:09:33','','0','12','2023-03-26 04:09:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121679792956','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5532,'','Cash','','2023-03-26 13:00:03','','0','12','2023-03-26 13:00:03','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121679824774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5533,'','Cash','','2023-03-26 16:29:35','','0','12','2023-03-26 16:29:35','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121679837335','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5534,'','Cash','','2023-03-26 18:08:15','','0','12','2023-03-26 18:08:16','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121679842540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5535,'','Cash','','2023-03-26 18:36:15','','0','12','2023-03-26 18:36:16','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121679843302','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5536,'','Cash','','2023-03-26 18:51:38','','0','12','2023-03-26 18:51:38','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121679844983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5537,'','Cash','','2023-03-26 20:15:37','','0','12','2023-03-26 20:15:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121679845904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5538,'','Cash','','2023-03-27 02:42:34','','0','12','2023-03-27 02:42:34','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121679874100','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5539,'','Cash','','2023-03-27 02:45:19','','0','12','2023-03-27 02:45:19','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121679874160','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5540,'','Cash','','2023-03-27 02:46:10','','0','12','2023-03-27 02:46:10','','2450','2450','1','retail','0','2450','1','0','0','0','0','0','0','printed',' ','','1','0','121679874332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5541,'','Cash','','2023-03-27 19:02:19','','0','12','2023-03-27 19:02:19','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed',' ','','1','0','121679932910','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5542,'','Cash','','2023-03-27 21:02:36','','0','12','2023-03-27 21:02:36','','1660','1660','1','retail','0','1660','1','0','0','0','0','0','0','printed',' ','','1','0','121679940125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5543,'','Cash','','2023-03-27 22:34:06','','0','12','2023-03-27 22:34:06','','2980','2980','1','retail','0','2980','1','0','0','0','0','0','0','printed',' ','','1','0','121679940165','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5544,'','Cash','','2023-03-27 23:16:05','','0','12','2023-03-27 23:16:05','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121679945661','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5545,'','Cash','','2023-03-28 05:50:13','','0','12','2023-03-28 05:50:13','','4050','4050','1','retail','0','4050','1','0','0','0','0','0','0','printed',' ','','1','0','121679971528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5546,'','Cash','','2023-03-28 22:14:12','','0','12','2023-03-28 22:14:12','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680030581','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5547,'','Cash','','2023-03-28 23:56:26','','0','12','2023-03-28 23:56:26','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680036942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5548,'','Cash','','2023-03-29 00:22:50','','0','12','2023-03-29 00:22:50','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121680036991','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5549,'','Cash','','2023-03-29 04:33:49','','0','12','2023-03-29 04:33:49','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121680053579','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5550,'','Cash','','2023-03-29 04:55:29','','0','12','2023-03-29 04:55:29','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121680053635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5551,'','Cash','','2023-03-30 00:42:25','','0','12','2023-03-30 00:42:25','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121680126121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5552,'','Cash','','2023-03-30 00:42:50','','0','12','2023-03-30 00:42:50','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121680126151','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5553,'','Cash','','2023-03-30 00:43:20','','0','12','2023-03-30 00:43:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121680126179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5554,'','Cash','','2023-03-30 00:46:20','','0','12','2023-03-30 00:46:20','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121680126205','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5555,'','Cash','','2023-03-30 01:28:54','','0','12','2023-03-30 01:28:54','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121680126384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5556,'','Cash','','2023-03-30 02:44:41','','0','12','2023-03-30 02:44:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680128997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5557,'','Cash','','2023-03-30 02:47:57','','0','12','2023-03-30 02:47:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680133489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5558,'','Cash','','2023-03-30 05:18:18','','0','12','2023-03-30 05:18:18','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121680142676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5559,'','Cash','','2023-03-30 21:44:41','','0','12','2023-03-30 21:44:41','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680201856','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5560,'','Cash','','2023-03-30 22:40:18','','0','12','2023-03-30 22:40:18','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121680205197','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5561,'','Cash','','2023-03-30 22:57:58','','0','12','2023-03-30 22:57:58','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680206270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5562,'','Cash','','2023-03-30 23:50:41','','0','12','2023-03-30 23:50:41','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680206282','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5563,'','Cash','','2023-03-31 01:37:56','','0','12','2023-03-31 01:37:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680209448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5564,'','Cash','','2023-03-31 01:54:27','','0','12','2023-03-31 01:54:27','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121680215882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5565,'','Cash','','2023-03-31 02:08:11','','0','12','2023-03-31 02:08:12','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121680216872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5566,'','Cash','','2023-03-31 22:50:25','','0','12','2023-03-31 22:50:25','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121680288530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5567,'','Cash','','2023-04-01 00:11:58','','0','12','2023-04-01 00:11:58','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680292240','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5568,'','Cash','','2023-04-01 02:23:20','','0','12','2023-04-01 02:23:20','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121680297125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5569,'','Cash','','2023-04-01 02:37:46','','0','12','2023-04-01 02:37:46','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680305008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5570,'','Cash','','2023-04-01 02:56:41','','0','12','2023-04-01 02:56:41','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680305870','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5571,'','Cash','','2023-04-01 21:23:57','','0','12','2023-04-01 21:23:57','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121680369238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5572,'','Cash','','2023-04-01 21:53:22','','0','12','2023-04-01 21:53:22','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680373443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5573,'','Cash','','2023-04-01 22:27:15','','0','12','2023-04-01 22:27:15','','2400','2400','1','retail','0','2400','1','0','0','0','0','0','0','printed',' ','','1','0','121680375206','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5574,'','Cash','','2023-04-01 23:24:32','','0','12','2023-04-01 23:24:32','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680377443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5575,'','Cash','','2023-04-01 23:30:57','','0','12','2023-04-01 23:30:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680380677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5576,'','Cash','','2023-04-01 23:45:01','','0','12','2023-04-01 23:45:01','','5350','5350','1','retail','0','5350','1','0','0','0','0','0','0','printed',' ','','1','0','121680381061','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5577,'','Cash','','2023-04-02 02:32:11','','0','12','2023-04-02 02:32:11','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121680391909','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5578,'','Cash','','2023-04-02 02:39:42','','0','12','2023-04-02 02:39:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680391937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5579,'','Cash','','2023-04-02 20:23:06','','0','12','2023-04-02 20:23:06','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680449262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5580,'','Cash','','2023-04-02 20:24:35','','0','12','2023-04-02 20:24:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680456193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5581,'','Cash','','2023-04-02 20:25:21','','0','12','2023-04-02 20:25:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680456281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5582,'','Cash','','2023-04-02 20:39:58','','0','12','2023-04-02 20:39:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680456328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5583,'','Cash','','2023-04-02 21:57:48','','0','12','2023-04-02 21:57:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121680457246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5584,'','Cash','','2023-04-02 21:58:03','','0','12','2023-04-02 21:58:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680461873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5585,'','Cash','','2023-04-02 22:41:58','','0','12','2023-04-02 22:41:58','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed',' ','','1','0','121680461888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5586,'','Cash','','2023-04-02 23:27:04','','0','12','2023-04-02 23:27:04','','5120','5120','1','retail','0','5120','1','0','0','0','0','0','0','printed',' ','','1','0','121680464522','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5587,'','Cash','','2023-04-03 00:06:06','','0','12','2023-04-03 00:06:06','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121680468050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5588,'','Cash','','2023-04-03 02:10:22','','0','12','2023-04-03 02:10:22','','10000','10000','1','retail','0','10000','1','0','0','0','0','0','0','printed',' ','','1','0','121680469571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5589,'','Cash','','2023-04-03 02:56:01','','0','12','2023-04-03 02:56:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121680479220','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5590,'','Cash','','2023-04-03 03:44:09','','0','12','2023-04-03 03:44:09','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121680482631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5591,'','Cash','','2023-04-03 19:14:01','','0','12','2023-04-03 19:14:01','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121680534133','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5592,'','Cash','','2023-04-03 19:15:01','','0','12','2023-04-03 19:15:01','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121680538448','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5593,'','Cash','','2023-04-03 19:19:31','','0','12','2023-04-03 19:19:31','','140','140','1','retail','0','140','1','0','0','0','0','0','0','printed',' ','','1','0','121680538577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5594,'','Cash','','2023-04-03 19:35:50','','0','12','2023-04-03 19:35:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680538777','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5595,'','Cash','','2023-04-03 22:45:21','','0','12','2023-04-03 22:45:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680551108','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5596,'','Cash','','2023-04-03 22:46:05','','0','12','2023-04-03 22:46:05','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680551126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5597,'','Cash','','2023-04-03 22:46:17','','0','12','2023-04-03 22:46:17','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680551170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5598,'','Cash','','2023-04-03 23:07:17','','0','12','2023-04-03 23:07:17','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121680551182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5599,'','Cash','','2023-04-04 22:57:07','','0','12','2023-04-04 22:57:07','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680632948','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5600,'','Cash','','2023-04-04 22:58:16','','0','12','2023-04-04 22:58:16','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121680638236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5601,'','Cash','','2023-04-04 23:20:53','','0','12','2023-04-04 23:20:53','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121680638300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5602,'','Cash','','2023-04-04 23:27:45','','0','12','2023-04-04 23:27:45','','5850','5850','1','retail','0','5850','1','0','0','0','0','0','0','printed',' ','','1','0','121680639659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5603,'','Cash','','2023-04-05 01:44:04','','0','12','2023-04-05 01:44:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680648182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5604,'','Cash','','2023-04-05 20:39:23','','0','12','2023-04-05 20:39:23','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121680716342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5605,'','Cash','','2023-04-05 20:40:45','','0','12','2023-04-05 20:40:45','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680716403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5606,'','Cash','','2023-04-05 20:41:25','','0','12','2023-04-05 20:41:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680716450','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5607,'','Cash','','2023-04-05 21:38:57','','0','12','2023-04-05 21:38:57','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121680719931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5608,'','Cash','','2023-04-05 21:41:01','','0','12','2023-04-05 21:41:01','','3600','3600','1','retail','0','3600','1','0','0','0','0','0','0','printed',' ','','1','0','121680720029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5609,'','Cash','','2023-04-05 21:44:43','','0','12','2023-04-05 21:44:43','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680720076','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5610,'','Cash','','2023-04-05 22:18:36','','0','12','2023-04-05 22:18:36','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121680720334','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5611,'','Cash','','2023-04-05 23:09:57','','0','12','2023-04-05 23:09:57','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121680722323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5612,'','Cash','','2023-04-05 23:12:14','','0','12','2023-04-05 23:12:14','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121680725518','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5613,'','Cash','','2023-04-06 22:24:31','','0','12','2023-04-06 22:24:32','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121680809050','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5614,'','Cash','','2023-04-06 23:05:38','','0','12','2023-04-06 23:05:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680809077','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5615,'','Cash','','2023-04-06 23:28:35','','0','12','2023-04-06 23:28:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680812904','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5616,'','Cash','','2023-04-06 23:28:53','','0','12','2023-04-06 23:28:53','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121680812919','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5617,'','Cash','','2023-04-06 23:55:47','','0','12','2023-04-06 23:55:47','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680814538','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5618,'','Cash','','2023-04-07 00:26:56','','0','12','2023-04-07 00:26:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121680814553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5619,'','Cash','','2023-04-07 03:19:05','','0','12','2023-04-07 03:19:05','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121680826646','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5620,'','Cash','','2023-04-07 06:10:17','','0','12','2023-04-07 06:10:17','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121680836941','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5621,'','Cash','','2023-04-07 19:22:28','','0','12','2023-04-07 19:22:28','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121680884037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5622,'','Cash','','2023-04-07 21:27:16','','0','12','2023-04-07 21:27:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680884559','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5623,'','Cash','','2023-04-07 23:07:35','','0','12','2023-04-07 23:07:35','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121680895403','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5624,'','Cash','','2023-04-07 23:23:16','','0','12','2023-04-07 23:23:16','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121680898955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5625,'','Cash','','2023-04-08 00:24:45','','0','12','2023-04-08 00:24:45','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680902677','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5626,'','Cash','','2023-04-08 00:31:19','','0','12','2023-04-08 00:31:19','','240','240','1','retail','0','240','1','0','0','0','0','0','0','printed',' ','','1','0','121680902688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5627,'','Cash','','2023-04-08 00:41:34','','0','12','2023-04-08 00:41:34','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121680903686','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5628,'','Cash','','2023-04-08 00:43:55','','0','12','2023-04-08 00:43:55','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121680903798','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5629,'','Cash','','2023-04-08 01:15:55','','0','12','2023-04-08 01:15:55','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680905744','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5630,'','Cash','','2023-04-08 02:43:13','','0','12','2023-04-08 02:43:13','','2540','2540','1','retail','0','2540','1','0','0','0','0','0','0','printed',' ','','1','0','121680910823','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5631,'','Cash','','2023-04-08 03:16:10','','0','12','2023-04-08 03:16:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680912959','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5632,'','Cash','','2023-04-08 03:37:16','','0','12','2023-04-08 03:37:16','','15160','15160','1','retail','0','15160','1','0','0','0','0','0','0','printed',' ','','1','0','121680913759','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5633,'','Cash','','2023-04-08 06:50:41','','0','12','2023-04-08 06:50:41','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121680925814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5634,'','Cash','','2023-04-08 09:52:18','','0','12','2023-04-08 09:52:18','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121680936608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5635,'','Cash','','2023-04-08 12:18:02','','0','12','2023-04-08 12:18:02','','3600','3600','1','retail','0','3600','1','0','0','0','0','0','0','printed',' ','','1','0','121680945421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5636,'','Cash','','2023-04-08 16:01:54','','0','12','2023-04-08 16:01:54','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121680958712','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5637,'','Cash','','2023-04-08 19:45:34','','0','12','2023-04-08 19:45:35','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121680972314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5638,'','Cash','','2023-04-08 19:46:06','','0','12','2023-04-08 19:46:07','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121680972342','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5639,'','Cash','','2023-04-08 20:09:01','','0','12','2023-04-08 20:09:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121680972372','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5640,'','Cash','','2023-04-08 20:43:50','','0','12','2023-04-08 20:43:50','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121680975630','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5641,'','Cash','','2023-04-08 20:58:53','','0','12','2023-04-08 20:58:53','','6610','6610','1','retail','0','6610','1','0','0','0','0','0','0','printed',' ','','1','0','121680976550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5642,'','Cash','','2023-04-08 22:02:01','','0','12','2023-04-08 22:02:02','','4050','4050','1','retail','0','4050','1','0','0','0','0','0','0','printed',' ','','1','0','121680979896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5643,'','Cash','','2023-04-09 00:52:46','','0','12','2023-04-09 00:52:46','','3990','3990','1','retail','0','3990','1','0','0','0','0','0','0','printed',' ','','1','0','121680990683','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5644,'','Cash','','2023-04-09 00:54:25','','0','12','2023-04-09 00:54:25','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121680990842','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5645,'','Cash','','2023-04-09 01:12:16','','0','12','2023-04-09 01:12:16','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121680990870','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5646,'','Cash','','2023-04-09 01:29:34','','0','12','2023-04-09 01:29:34','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121680992903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5647,'','Cash','','2023-04-09 02:28:02','','0','12','2023-04-09 02:28:02','','960','960','1','retail','0','960','1','0','0','0','0','0','0','printed',' ','','1','0','121680992980','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5648,'','Cash','','2023-04-09 04:15:34','','0','12','2023-04-09 04:15:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681002922','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5649,'','Cash','','2023-04-09 04:29:18','','0','12','2023-04-09 04:29:18','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121681003736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5650,'','Cash','','2023-04-09 04:35:51','','0','12','2023-04-09 04:35:51','','880','880','1','retail','0','880','1','0','0','0','0','0','0','printed',' ','','1','0','121681004120','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5651,'','Cash','','2023-04-09 13:02:24','','0','12','2023-04-09 13:02:24','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121681034147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5652,'','Cash','','2023-04-09 14:51:29','','0','12','2023-04-09 14:51:29','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121681040827','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5653,'','Cash','','2023-04-09 15:47:54','','0','12','2023-04-09 15:47:54','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121681041332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5654,'','Cash','','2023-04-10 04:12:39','','0','12','2023-04-10 04:12:39','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121681089143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5655,'','Cash','','2023-04-10 12:57:17','','0','12','2023-04-10 12:57:17','','1070','1070','1','retail','0','1070','1','0','0','0','0','0','0','printed',' ','','1','0','121681120616','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5656,'','Cash','','2023-04-10 14:15:16','','0','12','2023-04-10 14:15:16','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121681121333','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5657,'','Cash','','2023-04-10 19:10:15','','0','12','2023-04-10 19:10:15','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681138439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5658,'','Cash','','2023-04-10 19:14:19','','0','12','2023-04-10 19:14:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681143024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5659,'','Cash','','2023-04-10 19:17:50','','0','12','2023-04-10 19:17:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681143265','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5660,'','Cash','','2023-04-10 19:18:09','','0','12','2023-04-10 19:18:09','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121681143475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5661,'','Cash','','2023-04-11 00:50:24','','0','12','2023-04-11 00:50:24','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121681163389','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5662,'','Cash','','2023-04-11 02:46:23','','0','12','2023-04-11 02:46:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681170347','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5663,'','Cash','','2023-04-11 02:46:57','','0','12','2023-04-11 02:46:57','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121681170388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5664,'','Cash','','2023-04-11 02:50:01','','0','12','2023-04-11 02:50:01','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681170424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5665,'','Cash','','2023-04-11 11:43:48','','0','12','2023-04-11 11:43:48','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121681202580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5666,'','Cash','','2023-04-11 12:58:39','','0','12','2023-04-11 12:58:39','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121681202635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5667,'','Cash','','2023-04-11 13:25:44','','0','12','2023-04-11 13:25:44','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121681208735','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5668,'','Cash','','2023-04-11 21:20:32','','0','12','2023-04-11 21:20:32','','1550','1550','1','retail','0','1550','1','0','0','0','0','0','0','printed',' ','','1','0','121681237210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5669,'','Cash','','2023-04-11 23:46:42','','0','12','2023-04-11 23:46:42','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121681244178','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5670,'','Cash','','2023-04-12 00:17:27','','0','12','2023-04-12 00:17:27','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121681246008','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5671,'','Cash','','2023-04-12 03:35:51','','0','12','2023-04-12 03:35:51','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121681259698','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5672,'','Cash','','2023-04-12 14:35:26','','0','12','2023-04-12 14:35:26','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121681299313','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5673,'','Cash','','2023-04-12 15:57:35','','0','12','2023-04-12 15:57:35','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121681304213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5674,'','Cash','','2023-04-12 18:02:42','','0','12','2023-04-12 18:02:42','','1320','1320','1','retail','0','1320','1','0','0','0','0','0','0','printed',' ','','1','0','121681311722','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5675,'','Cash','','2023-04-12 18:49:32','','0','12','2023-04-12 18:49:32','','610','610','1','retail','0','610','1','0','0','0','0','0','0','printed',' ','','1','0','121681314518','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5676,'','Cash','','2023-04-12 19:27:52','','0','12','2023-04-12 19:27:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681314766','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5677,'','Cash','','2023-04-12 20:10:34','','0','12','2023-04-12 20:10:35','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121681316881','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5678,'','Cash','','2023-04-13 01:44:30','','0','12','2023-04-13 01:44:30','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681335463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5679,'','Cash','','2023-04-13 13:39:01','','0','12','2023-04-13 13:39:01','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121681382318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5680,'','Cash','','2023-04-13 16:39:46','','0','12','2023-04-13 16:39:46','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121681392752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5681,'','Cash','','2023-04-13 17:26:25','','0','12','2023-04-13 17:26:25','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121681393194','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5682,'','Cash','','2023-04-13 18:03:48','','0','12','2023-04-13 18:03:48','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121681395993','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5683,'','Cash','','2023-04-13 18:20:46','','0','12','2023-04-13 18:20:46','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681398233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5684,'','Cash','','2023-04-13 18:42:19','','0','12','2023-04-13 18:42:19','','5200','5200','1','retail','0','5200','1','0','0','0','0','0','0','printed',' ','','1','0','121681400530','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5685,'','Cash','','2023-04-13 18:47:36','','0','12','2023-04-13 18:47:36','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121681400841','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5686,'','Cash','','2023-04-13 19:10:23','','0','12','2023-04-13 19:10:23','','2290','2290','1','retail','0','2290','1','0','0','0','0','0','0','printed',' ','','1','0','121681402186','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5687,'','Cash','','2023-04-14 02:53:36','','0','12','2023-04-14 02:53:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681430001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5688,'','Cash','','2023-04-14 15:47:56','','0','12','2023-04-14 15:47:56','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed',' ','','1','0','121681476408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5689,'','Cash','','2023-04-14 16:15:26','','0','12','2023-04-14 16:15:26','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121681477928','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5690,'','Cash','','2023-04-14 16:16:09','','0','12','2023-04-14 16:16:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121681478135','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5691,'','Cash','','2023-04-14 16:19:04','','0','12','2023-04-14 16:19:04','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121681478179','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5692,'','Cash','','2023-04-14 16:28:02','','0','12','2023-04-14 16:28:02','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121681478353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5693,'','Cash','','2023-04-14 16:28:28','','0','12','2023-04-14 16:28:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681478886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5694,'','Cash','','2023-04-14 16:55:03','','0','12','2023-04-14 16:55:03','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121681478913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5695,'','Cash','','2023-04-14 18:43:11','','0','12','2023-04-14 18:43:11','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121681486969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5696,'','Cash','','2023-04-14 19:11:18','','0','12','2023-04-14 19:11:18','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121681487002','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5697,'','Cash','','2023-04-14 19:18:49','','0','12','2023-04-14 19:18:49','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121681489117','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5698,'','Cash','','2023-04-14 19:38:39','','0','12','2023-04-14 19:38:39','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','1','0','121681489134','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5699,'','Cash','','2023-04-14 20:54:57','','0','12','2023-04-14 20:54:57','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121681490323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5700,'','Cash','','2023-04-15 00:00:28','','0','12','2023-04-15 00:00:28','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121681499107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5701,'','Cash','','2023-04-15 15:33:56','','0','12','2023-04-15 15:33:56','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681558800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5702,'','Cash','','2023-04-15 18:05:04','','0','12','2023-04-15 18:05:04','','4200','4200','1','retail','0','4200','1','0','0','0','0','0','0','printed',' ','','1','0','121681570914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5703,'','Cash','','2023-04-15 18:07:39','','0','12','2023-04-15 18:07:39','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121681571172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5704,'','Cash','','2023-04-15 18:09:52','','0','12','2023-04-15 18:09:52','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681571382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5705,'','Cash','','2023-04-15 18:41:50','','0','12','2023-04-15 18:41:51','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121681571506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5706,'','Cash','','2023-04-15 19:31:46','','0','12','2023-04-15 19:31:46','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121681576298','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5707,'','Cash','','2023-04-15 20:24:14','','0','12','2023-04-15 20:24:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681576456','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5708,'','Cash','','2023-04-15 20:31:24','','0','12','2023-04-15 20:31:24','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121681579459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5709,'','Cash','','2023-04-15 20:53:12','','0','12','2023-04-15 20:53:12','','2930','2930','1','retail','0','2930','1','0','0','0','0','0','0','printed',' ','','1','0','121681579888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5710,'','Cash','','2023-04-15 22:16:08','','0','12','2023-04-15 22:16:08','','1430','1430','1','retail','0','1430','1','0','0','0','0','0','0','printed',' ','','1','0','121681582181','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5711,'','Cash','','2023-04-15 22:20:21','','0','12','2023-04-15 22:20:21','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121681586354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5712,'','Cash','','2023-04-15 23:46:55','','0','12','2023-04-15 23:46:55','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121681586426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5713,'','Cash','','2023-04-16 00:29:44','','0','12','2023-04-16 00:29:44','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121681591619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5714,'','Cash','','2023-04-16 20:44:11','','0','12','2023-04-16 20:44:11','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121681667029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5715,'','Cash','','2023-04-16 21:12:24','','0','12','2023-04-16 21:12:24','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681667059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5716,'','Cash','','2023-04-16 22:34:02','','0','12','2023-04-16 22:34:02','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121681668752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5717,'','Cash','','2023-04-16 23:28:26','','0','12','2023-04-16 23:28:26','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121681676874','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5718,'','Cash','','2023-04-16 23:51:41','','0','12','2023-04-16 23:51:41','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121681678293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5719,'','Cash','','2023-04-17 00:30:03','','0','12','2023-04-17 00:30:03','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121681678306','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5720,'','Cash','','2023-04-17 00:55:39','','0','12','2023-04-17 00:55:39','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121681680685','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5721,'','Cash','','2023-04-17 01:17:34','','0','12','2023-04-17 01:17:34','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121681682143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5722,'','Cash','','2023-04-17 01:27:07','','0','12','2023-04-17 01:27:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121681683458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5723,'','Cash','','2023-04-17 12:01:16','','0','12','2023-04-17 12:01:16','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121681721469','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5724,'','Cash','','2023-04-18 00:27:23','','0','12','2023-04-18 00:27:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681766833','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5725,'','Cash','','2023-04-18 00:49:08','','0','12','2023-04-18 00:49:08','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121681768012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5726,'','Cash','','2023-04-18 19:52:23','','0','12','2023-04-18 19:52:23','','2550','2550','1','retail','0','2550','1','0','0','0','0','0','0','printed',' ','','1','0','121681836585','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5727,'','Cash','','2023-04-18 20:13:30','','0','12','2023-04-18 20:13:30','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121681836750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5728,'','Cash','','2023-04-18 21:53:43','','0','12','2023-04-18 21:53:43','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121681838039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5729,'','Cash','','2023-04-18 22:37:52','','0','12','2023-04-18 22:37:52','','1710','1710','1','retail','0','1710','1','0','0','0','0','0','0','printed',' ','','1','0','121681844027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5730,'','Cash','','2023-04-19 04:23:00','','0','12','2023-04-19 04:23:00','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121681864105','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5731,'','Cash','','2023-04-19 18:00:23','','0','12','2023-04-19 18:00:23','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121681909290','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5732,'','Cash','','2023-04-19 18:31:13','','0','12','2023-04-19 18:31:13','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121681918258','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5733,'','Cash','','2023-04-19 19:00:29','','0','12','2023-04-19 19:00:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121681918284','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5734,'','Cash','','2023-04-19 19:55:27','','0','12','2023-04-19 19:55:27','','570','570','1','retail','0','570','1','0','0','0','0','0','0','printed',' ','','1','0','121681920053','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5735,'','Cash','','2023-04-19 20:17:03','','0','12','2023-04-19 20:17:03','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121681923417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5736,'','Cash','','2023-04-19 20:17:41','','0','12','2023-04-19 20:17:41','','670','670','1','retail','0','670','1','0','0','0','0','0','0','printed',' ','','1','0','121681924631','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5737,'','Cash','','2023-04-19 22:30:50','','0','12','2023-04-19 22:30:50','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','','1','0','121681925641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5738,'','Cash','','2023-04-19 22:33:02','','0','12','2023-04-19 22:33:02','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121681932763','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5739,'','Cash','','2023-04-19 22:58:01','','0','12','2023-04-19 22:58:01','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121681934270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5740,'','Cash','','2023-04-19 23:07:58','','0','12','2023-04-19 23:07:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681934349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5741,'','Cash','','2023-04-19 23:40:49','','0','12','2023-04-19 23:40:49','','4150','4150','1','retail','0','4150','1','0','0','0','0','0','0','printed',' ','','1','0','121681934884','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5742,'','Cash','','2023-04-20 00:35:57','','0','12','2023-04-20 00:35:57','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121681938300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5743,'','Cash','','2023-04-20 00:59:55','','0','12','2023-04-20 00:59:55','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121681941500','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5744,'','Cash','','2023-04-20 01:07:09','','0','12','2023-04-20 01:07:09','','2900','2900','1','retail','0','2900','1','0','0','0','0','0','0','printed',' ','','1','0','121681941663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5745,'','Cash','','2023-04-20 01:42:18','','0','12','2023-04-20 01:42:18','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121681942033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5746,'','Cash','','2023-04-20 02:30:07','','0','12','2023-04-20 02:30:07','','3650','3650','1','retail','0','3650','1','0','0','0','0','0','0','printed',' ','','1','0','121681944143','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5747,'','Cash','','2023-04-20 12:55:05','','0','12','2023-04-20 12:55:05','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121681984475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5748,'','Cash','','2023-04-20 13:55:10','','0','12','2023-04-20 13:55:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121681988103','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5749,'','Cash','','2023-04-20 18:02:27','','0','12','2023-04-20 18:02:28','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121682002895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5750,'','Cash','','2023-04-20 18:29:42','','0','12','2023-04-20 18:29:42','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682004576','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5751,'','Cash','','2023-04-20 19:08:45','','0','12','2023-04-20 19:08:45','','5480','5480','1','retail','0','5480','1','0','0','0','0','0','0','printed',' ','','1','0','121682005553','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5753,'','Cash','','2023-04-20 22:27:08','','0','12','2023-04-20 22:27:09','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682018770','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5754,'','Cash','','2023-04-20 22:27:54','','0','12','2023-04-20 22:27:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682018834','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5755,'','Cash','','2023-04-20 23:21:23','','0','12','2023-04-20 23:21:23','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682018879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5756,'','Cash','','2023-04-20 23:28:50','','0','12','2023-04-20 23:28:50','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121682022089','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5757,'','Cash','','2023-04-21 00:24:19','','0','12','2023-04-21 00:24:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682022534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5758,'','Cash','','2023-04-21 00:42:15','','0','12','2023-04-21 00:42:15','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121682026925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5759,'','Cash','','2023-04-21 01:18:06','','0','12','2023-04-21 01:18:06','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682026953','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5760,'','Cash','','2023-04-21 02:23:02','','0','12','2023-04-21 02:23:02','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121682029176','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5761,'','Cash','','2023-04-21 03:06:12','','0','12','2023-04-21 03:06:12','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682035556','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5762,'','Cash','','2023-04-21 03:37:56','','0','12','2023-04-21 03:37:56','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121682035577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5763,'','Cash','','2023-04-21 04:02:03','','0','12','2023-04-21 04:02:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682037711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5764,'','Cash','','2023-04-21 04:46:44','','0','12','2023-04-21 04:46:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682041569','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5765,'','Cash','','2023-04-21 05:04:59','','0','12','2023-04-21 05:04:59','','2750','2750','1','retail','0','2750','1','0','0','0','0','0','0','printed',' ','','1','0','121682042638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5766,'','Cash','','2023-04-21 05:10:56','','0','12','2023-04-21 05:10:56','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121682042730','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5767,'','Cash','','2023-04-21 20:09:44','','0','12','2023-04-21 20:09:44','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121682096961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5768,'','Cash','','2023-04-21 21:06:31','','0','12','2023-04-21 21:06:31','','3530','3530','1','retail','0','3530','1','0','0','0','0','0','0','printed',' ','','1','0','121682100172','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5769,'','Cash','','2023-04-21 22:43:51','','0','12','2023-04-21 22:43:51','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121682100402','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5770,'','Cash','','2023-04-21 22:50:36','','0','12','2023-04-21 22:50:36','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121682106237','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5771,'','Cash','','2023-04-21 23:03:26','','0','12','2023-04-21 23:03:26','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682106642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5772,'','Cash','','2023-04-21 23:17:42','','0','12','2023-04-21 23:17:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682107577','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5773,'','Cash','','2023-04-21 23:44:52','','0','12','2023-04-21 23:44:52','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121682108270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5774,'','Cash','','2023-04-22 00:22:58','','0','12','2023-04-22 00:22:58','','8150','8150','1','retail','0','8150','1','0','0','0','0','0','0','printed',' ','','1','0','121682110101','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5775,'','Cash','','2023-04-22 00:40:16','','0','12','2023-04-22 00:40:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682112244','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5776,'','Cash','','2023-04-22 02:06:32','','0','12','2023-04-22 02:06:32','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121682113221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5777,'','Cash','','2023-04-22 02:20:20','','0','12','2023-04-22 02:20:20','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121682118428','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5778,'','Cash','','2023-04-23 10:50:44','','0','12','2023-04-23 10:50:44','','4150','4150','1','retail','0','4150','1','0','0','0','0','0','0','printed',' ','','1','0','121682236146','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5779,'','Cash','','2023-04-23 15:26:57','','0','12','2023-04-23 15:26:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682251318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5780,'','Cash','','2023-04-23 17:32:58','','0','12','2023-04-23 17:32:58','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121682252822','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5781,'','Cash','','2023-04-23 19:53:08','','0','12','2023-04-23 19:53:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682268778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5782,'','Cash','','2023-04-23 20:18:49','','0','12','2023-04-23 20:18:49','','9000','9000','1','retail','0','9000','1','0','0','0','0','0','0','printed',' ','','1','0','121682268794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5783,'','Cash','','2023-04-23 21:01:20','','0','12','2023-04-23 21:01:20','','3600','3600','1','retail','0','3600','1','0','0','0','0','0','0','printed',' ','','1','0','121682272754','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5784,'','Cash','','2023-04-23 21:57:21','','0','12','2023-04-23 21:57:21','','2250','2250','1','retail','0','2250','1','0','0','0','0','0','0','printed',' ','','1','0','121682276024','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5785,'','Cash','','2023-04-23 21:59:49','','0','12','2023-04-23 21:59:50','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682276352','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5786,'','Cash','','2023-04-23 22:03:58','','0','12','2023-04-23 22:03:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121682276395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5787,'','Cash','','2023-04-23 22:14:08','','0','12','2023-04-23 22:14:08','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121682276642','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5788,'','Cash','','2023-04-23 22:32:30','','0','12','2023-04-23 22:32:30','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682277257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5789,'','Cash','','2023-04-23 22:39:59','','0','12','2023-04-23 22:39:59','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121682278408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5790,'','Cash','','2023-04-23 23:17:52','','0','12','2023-04-23 23:17:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121682279153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5791,'','Cash','','2023-04-23 23:22:29','','0','12','2023-04-23 23:22:29','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121682281317','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5792,'','Cash','','2023-04-23 23:49:55','','0','12','2023-04-23 23:49:55','','1660','1660','1','retail','0','1660','1','0','0','0','0','0','0','printed',' ','','1','0','121682282969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5793,'','Cash','','2023-04-24 00:26:00','','0','12','2023-04-24 00:26:00','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121682283003','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5794,'','Cash','','2023-04-24 01:30:05','','0','12','2023-04-24 01:30:05','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121682288114','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5795,'','Cash','','2023-04-24 17:33:02','','0','12','2023-04-24 17:33:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682344891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5796,'','Cash','','2023-04-24 18:21:42','','0','12','2023-04-24 18:21:42','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682346789','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5797,'','Cash','','2023-04-24 19:11:25','','0','12','2023-04-24 19:11:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682349708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5798,'','Cash','','2023-04-24 19:28:08','','0','12','2023-04-24 19:28:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682352694','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5799,'','Cash','','2023-04-24 19:29:36','','0','12','2023-04-24 19:29:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682353728','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5800,'','Cash','','2023-04-24 20:04:10','','0','12','2023-04-24 20:04:10','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682353883','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5801,'','Cash','','2023-04-24 20:06:19','','0','12','2023-04-24 20:06:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121682355936','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5802,'','Cash','','2023-04-24 20:38:04','','0','12','2023-04-24 20:38:04','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682355984','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5803,'','Cash','','2023-04-24 20:40:27','','0','12','2023-04-24 20:40:27','','2330','2330','1','retail','0','2330','1','0','0','0','0','0','0','printed',' ','','1','0','121682357961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5804,'','Cash','','2023-04-24 21:14:18','','0','12','2023-04-24 21:14:18','','1330','1330','1','retail','0','1330','1','0','0','0','0','0','0','printed',' ','','1','0','121682358309','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5805,'','Cash','','2023-04-24 22:09:37','','0','12','2023-04-24 22:09:37','','2180','2180','1','retail','0','2180','1','0','0','0','0','0','0','printed',' ','','1','0','121682363141','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5806,'','Cash','','2023-04-24 22:18:10','','0','12','2023-04-24 22:18:10','','1030','1030','1','retail','0','1030','1','0','0','0','0','0','0','printed',' ','','1','0','121682363466','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5807,'','Cash','','2023-04-24 22:22:16','','0','12','2023-04-24 22:22:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682363942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5808,'','Cash','','2023-04-24 22:53:10','','0','12','2023-04-24 22:53:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682364153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5809,'','Cash','','2023-04-24 23:10:39','','0','12','2023-04-24 23:10:39','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121682367004','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5810,'','Cash','','2023-04-24 23:34:48','','0','12','2023-04-24 23:34:48','','1390','1390','1','retail','0','1390','1','0','0','0','0','0','0','printed',' ','','1','0','121682368408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5811,'','Cash','','2023-04-24 23:52:32','','0','12','2023-04-24 23:52:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682368549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5812,'','Cash','','2023-04-25 01:59:22','','0','12','2023-04-25 01:59:22','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682377147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5813,'','Cash','','2023-04-25 13:24:33','','0','12','2023-04-25 13:24:33','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121682418227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5814,'','Cash','','2023-04-25 13:24:55','','0','12','2023-04-25 13:24:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682418278','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5815,'','Cash','','2023-04-25 21:38:51','','0','12','2023-04-25 21:38:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682447918','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5816,'','Cash','','2023-04-25 22:32:04','','0','12','2023-04-25 22:32:04','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121682451005','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5817,'','Cash','','2023-04-25 22:44:31','','0','12','2023-04-25 22:44:31','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682451857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5818,'','Cash','','2023-04-25 22:58:08','','0','12','2023-04-25 22:58:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682451877','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5819,'','Cash','','2023-04-25 23:15:49','','0','12','2023-04-25 23:15:49','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682453736','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5820,'','Cash','','2023-04-26 00:52:48','','0','12','2023-04-26 00:52:48','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121682453755','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5821,'','Cash','','2023-04-26 01:15:55','','0','12','2023-04-26 01:15:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682460232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5822,'','Cash','','2023-04-26 02:07:47','','0','12','2023-04-26 02:07:47','','13300','13300','1','retail','0','13300','1','0','0','0','0','0','0','printed',' ','','1','0','121682463809','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5823,'','Cash','','2023-04-26 17:52:11','','0','12','2023-04-26 17:52:11','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121682514760','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5824,'','Cash','','2023-04-26 17:56:34','','0','12','2023-04-26 17:56:34','','2380','2380','1','retail','0','2380','1','0','0','0','0','0','0','printed',' ','','1','0','121682520738','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5825,'','Cash','','2023-04-26 19:13:56','','0','12','2023-04-26 19:13:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682523162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5826,'','Cash','','2023-04-26 20:02:28','','0','12','2023-04-26 20:02:28','','3800','3800','1','retail','0','3800','1','0','0','0','0','0','0','printed',' ','','1','0','121682525640','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5827,'','Cash','','2023-04-26 20:41:27','','0','12','2023-04-26 20:41:27','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682528887','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5828,'','Cash','','2023-04-26 21:16:22','','0','12','2023-04-26 21:16:22','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121682532946','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5829,'','Cash','','2023-04-26 21:53:37','','0','12','2023-04-26 21:53:37','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed',' ','','1','0','121682533006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5830,'','Cash','','2023-04-26 21:56:59','','0','12','2023-04-26 21:56:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682535408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5831,'','Cash','','2023-04-26 22:17:43','','0','12','2023-04-26 22:17:43','','1540','1540','1','retail','0','1540','1','0','0','0','0','0','0','printed',' ','','1','0','121682535426','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5832,'','Cash','','2023-04-26 22:56:00','','0','12','2023-04-26 22:56:00','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121682537248','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5833,'','Cash','','2023-04-26 23:47:03','','0','12','2023-04-26 23:47:03','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121682539041','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5834,'','Cash','','2023-04-27 00:29:50','','0','12','2023-04-27 00:29:50','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121682544541','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5835,'','Cash','','2023-04-27 01:06:13','','0','12','2023-04-27 01:06:13','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682544632','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5836,'','Cash','','2023-04-27 01:10:57','','0','12','2023-04-27 01:10:57','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682546835','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5837,'','Cash','','2023-04-27 01:51:59','','0','12','2023-04-27 01:52:01','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682547068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5838,'','Cash','','2023-04-27 01:53:30','','0','12','2023-04-27 01:53:30','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121682549528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5839,'','Cash','','2023-04-27 02:14:20','','0','12','2023-04-27 02:14:20','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121682550855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5840,'','Cash','','2023-04-27 02:29:17','','0','12','2023-04-27 02:29:17','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682551044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5841,'','Cash','','2023-04-27 03:11:53','','0','12','2023-04-27 03:11:53','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682551866','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5842,'','Cash','','2023-04-27 03:55:02','','0','12','2023-04-27 03:55:02','','980','980','1','retail','0','980','1','0','0','0','0','0','0','printed',' ','','1','0','121682556879','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5843,'','Cash','','2023-04-27 09:45:11','','0','12','2023-04-27 09:45:11','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121682577895','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5844,'','Cash','','2023-04-27 11:50:13','','0','12','2023-04-27 11:50:13','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121682585395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5845,'','Cash','','2023-04-27 12:29:10','','0','12','2023-04-27 12:29:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682585421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5846,'','Cash','','2023-04-27 17:23:47','','0','12','2023-04-27 17:23:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682605413','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5847,'','Cash','','2023-04-27 18:09:44','','0','12','2023-04-27 18:09:44','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121682605434','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5848,'','Cash','','2023-04-27 22:11:40','','0','12','2023-04-27 22:11:40','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121682621624','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5849,'','Cash','','2023-04-27 22:33:42','','0','12','2023-04-27 22:33:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682622746','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5850,'','Cash','','2023-04-27 23:13:06','','0','12','2023-04-27 23:13:06','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121682626368','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5851,'','Cash','','2023-04-28 00:42:05','','0','12','2023-04-28 00:42:05','','11000','11000','1','retail','0','11000','1','0','0','0','0','0','0','printed',' ','','1','0','121682630908','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5852,'','Cash','','2023-04-28 01:55:20','','0','12','2023-04-28 01:55:20','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121682635997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5853,'','Cash','','2023-04-28 16:15:57','','0','12','2023-04-28 16:15:57','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682687743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5854,'','Cash','','2023-04-28 19:11:10','','0','12','2023-04-28 19:11:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682694891','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5855,'','Cash','','2023-04-28 19:19:58','','0','12','2023-04-28 19:19:58','','15240','15240','1','retail','0','15240','1','0','0','0','0','0','0','printed',' ','','1','0','121682698274','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5856,'','Cash','','2023-04-28 19:32:09','','0','12','2023-04-28 19:32:10','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682699017','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5857,'','Cash','','2023-04-28 19:59:09','','0','12','2023-04-28 19:59:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682699534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5858,'','Cash','','2023-04-28 20:03:23','','0','12','2023-04-28 20:03:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682701154','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5859,'','Cash','','2023-04-28 20:49:20','','0','12','2023-04-28 20:49:20','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121682701457','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5860,'','Cash','','2023-04-28 20:53:16','','0','12','2023-04-28 20:53:16','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682704180','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5861,'','Cash','','2023-04-28 20:53:42','','0','12','2023-04-28 20:53:42','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682704411','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5862,'','Cash','','2023-04-28 20:58:17','','0','12','2023-04-28 20:58:17','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121682704690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5863,'','Cash','','2023-04-28 20:59:17','','0','12','2023-04-28 20:59:17','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121682704748','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5864,'','Cash','','2023-04-28 21:22:02','','0','12','2023-04-28 21:22:02','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121682704762','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5865,'','Cash','','2023-04-28 22:25:38','','0','12','2023-04-28 22:25:38','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121682709901','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5866,'','Cash','','2023-04-28 22:49:39','','0','12','2023-04-28 22:49:39','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121682709943','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5867,'','Cash','','2023-04-28 23:46:13','','0','12','2023-04-28 23:46:13','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682714764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5868,'','Cash','','2023-04-28 23:52:11','','0','12','2023-04-28 23:52:11','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121682715118','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5869,'','Cash','','2023-04-29 00:12:32','','0','12','2023-04-29 00:12:32','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121682715142','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5870,'','Cash','','2023-04-29 00:19:21','','0','12','2023-04-29 00:19:21','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682716740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5871,'','Cash','','2023-04-29 00:19:54','','0','12','2023-04-29 00:19:54','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121682716767','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5872,'','Cash','','2023-04-29 00:39:44','','0','12','2023-04-29 00:39:44','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682716801','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5873,'','Cash','','2023-04-29 00:52:50','','0','12','2023-04-29 00:52:50','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121682717992','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5874,'','Cash','','2023-04-29 00:56:10','','0','12','2023-04-29 00:56:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682718774','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5875,'','Cash','','2023-04-29 02:20:17','','0','12','2023-04-29 02:20:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682723987','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5876,'','Cash','','2023-04-29 02:48:02','','0','12','2023-04-29 02:48:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682725641','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5877,'','Cash','','2023-04-29 02:55:31','','0','12','2023-04-29 02:55:31','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682725691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5878,'','Cash','','2023-04-29 04:21:24','','0','12','2023-04-29 04:21:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682731266','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5879,'','Cash','','2023-04-29 05:01:04','','0','12','2023-04-29 05:01:04','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682733655','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5880,'','Cash','','2023-04-29 13:28:59','','0','12','2023-04-29 13:28:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682760782','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5881,'','Cash','','2023-04-29 14:08:54','','0','12','2023-04-29 14:08:54','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682764145','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5882,'','Cash','','2023-04-29 14:21:25','','0','12','2023-04-29 14:21:25','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682766540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5883,'','Cash','','2023-04-29 17:09:03','','0','12','2023-04-29 17:09:03','','1020','1020','1','retail','0','1020','1','0','0','0','0','0','0','printed',' ','','1','0','121682777323','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5884,'','Cash','','2023-04-29 19:22:28','','0','12','2023-04-29 19:22:28','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121682777348','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5885,'','Cash','','2023-04-29 19:35:52','','0','12','2023-04-29 19:35:52','','2180','2180','1','retail','0','2180','1','0','0','0','0','0','0','printed',' ','','1','0','121682785362','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5886,'','Cash','','2023-04-29 21:27:28','','0','12','2023-04-29 21:27:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682786286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5887,'','Cash','','2023-04-29 21:38:52','','0','12','2023-04-29 21:38:52','','3300','3300','1','retail','0','3300','1','0','0','0','0','0','0','printed',' ','','1','0','121682792857','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5888,'','Cash','','2023-04-29 21:55:31','','0','12','2023-04-29 21:55:31','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121682793708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5889,'','Cash','','2023-04-29 22:52:07','','0','12','2023-04-29 22:52:07','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121682794535','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5890,'','Cash','','2023-04-29 22:57:34','','0','12','2023-04-29 22:57:34','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121682797962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5891,'','Cash','','2023-04-29 23:07:57','','0','12','2023-04-29 23:07:57','','1650','1650','1','retail','0','1650','1','0','0','0','0','0','0','printed',' ','','1','0','121682798261','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5892,'','Cash','','2023-04-29 23:16:09','','0','12','2023-04-29 23:16:09','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121682798885','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5893,'','Cash','','2023-04-29 23:17:18','','0','12','2023-04-29 23:17:18','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121682799374','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5894,'','Cash','','2023-04-30 00:06:27','','0','12','2023-04-30 00:06:27','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121682802351','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5895,'','Cash','','2023-04-30 00:29:51','','0','12','2023-04-30 00:29:51','','10680','10680','1','retail','0','10680','1','0','0','0','0','0','0','printed',' ','','1','0','121682802393','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5896,'','Cash','','2023-04-30 00:58:58','','0','12','2023-04-30 00:58:58','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121682803802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5897,'','Cash','','2023-04-30 01:38:20','','0','12','2023-04-30 01:38:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682807886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5898,'','Cash','','2023-04-30 01:40:31','','0','12','2023-04-30 01:40:31','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121682807949','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5899,'','Cash','','2023-04-30 02:27:50','','0','12','2023-04-30 02:27:50','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121682808107','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5900,'','Cash','','2023-04-30 02:29:13','','0','12','2023-04-30 02:29:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682810923','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5901,'','Cash','','2023-04-30 02:53:27','','0','12','2023-04-30 02:53:27','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121682812349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5902,'','Cash','','2023-04-30 03:03:52','','0','12','2023-04-30 03:03:52','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682812443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5903,'','Cash','','2023-04-30 03:07:41','','0','12','2023-04-30 03:07:41','','2780','2780','1','retail','0','2780','1','0','0','0','0','0','0','printed',' ','','1','0','121682813173','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5904,'','Cash','','2023-04-30 03:25:07','','0','12','2023-04-30 03:25:07','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121682813273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5905,'','Cash','','2023-04-30 03:40:16','','0','12','2023-04-30 03:40:16','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682815121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5906,'','Cash','','2023-04-30 04:08:35','','0','12','2023-04-30 04:08:35','','1530','1530','1','retail','0','1530','1','0','0','0','0','0','0','printed',' ','','1','0','121682815232','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5907,'','Cash','','2023-04-30 04:32:13','','0','12','2023-04-30 04:32:13','','12150','12150','1','retail','0','12150','1','0','0','0','0','0','0','printed',' ','','1','0','121682818200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5908,'','Cash','','2023-04-30 09:53:49','','0','12','2023-04-30 09:53:49','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121682837583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5909,'','Cash','','2023-04-30 09:54:09','','0','12','2023-04-30 09:54:09','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121682837636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5910,'','Cash','','2023-04-30 09:54:24','','0','12','2023-04-30 09:54:24','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121682837654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5911,'','Cash','','2023-04-30 09:54:46','','0','12','2023-04-30 09:54:46','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121682837669','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5912,'','Cash','','2023-04-30 09:55:16','','0','12','2023-04-30 09:55:16','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121682837701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5913,'','Cash','','2023-04-30 11:00:21','','0','12','2023-04-30 11:00:21','','1430','1430','1','retail','0','1430','1','0','0','0','0','0','0','printed',' ','','1','0','121682837720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5914,'','Cash','','2023-04-30 12:06:22','','0','12','2023-04-30 12:06:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682841693','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5915,'','Cash','','2023-04-30 12:06:45','','0','12','2023-04-30 12:06:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682845587','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5916,'','Cash','','2023-04-30 15:13:46','','0','12','2023-04-30 15:13:46','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121682856769','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5917,'','Cash','','2023-04-30 15:53:47','','0','12','2023-04-30 15:53:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121682856831','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5918,'','Cash','','2023-04-30 16:44:47','','0','12','2023-04-30 16:44:47','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121682859233','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5919,'','Cash','','2023-04-30 17:12:42','','0','12','2023-04-30 17:12:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682862297','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5920,'','Cash','','2023-04-30 17:54:51','','0','12','2023-04-30 17:54:51','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682863966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5921,'','Cash','','2023-04-30 18:13:49','','0','12','2023-04-30 18:13:49','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','printed',' ','','1','0','121682867606','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5922,'','Cash','','2023-04-30 19:18:40','','0','12','2023-04-30 19:18:40','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682871496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5923,'','Cash','','2023-04-30 19:50:11','','0','12','2023-04-30 19:50:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121682871582','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5924,'','Cash','','2023-04-30 19:53:39','','0','12','2023-04-30 19:53:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682873611','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5925,'','Cash','','2023-04-30 21:13:02','','0','12','2023-04-30 21:13:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121682873680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5926,'','Cash','','2023-04-30 21:23:50','','0','12','2023-04-30 21:23:50','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121682878412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5927,'','Cash','','2023-04-30 22:04:16','','0','12','2023-04-30 22:04:16','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682879106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5928,'','Cash','','2023-04-30 22:16:32','','0','12','2023-04-30 22:16:32','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121682881463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5929,'','Cash','','2023-04-30 22:56:53','','0','12','2023-04-30 22:56:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682882199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5930,'','Cash','','2023-04-30 23:03:38','','0','12','2023-04-30 23:03:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121682884690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5931,'','Cash','','2023-04-30 23:16:00','','0','12','2023-04-30 23:16:00','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121682885027','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5932,'','Cash','','2023-04-30 23:17:44','','0','12','2023-04-30 23:17:44','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682885856','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5933,'','Cash','','2023-05-01 00:08:08','','0','12','2023-05-01 00:08:08','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121682886216','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5934,'','Cash','','2023-05-01 00:27:47','','0','12','2023-05-01 00:27:47','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121682888916','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5935,'','Cash','','2023-05-01 00:30:08','','0','12','2023-05-01 00:30:08','','2240','2240','1','retail','0','2240','1','0','0','0','0','0','0','printed',' ','','1','0','121682890072','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5936,'','Cash','','2023-05-01 00:30:33','','0','12','2023-05-01 00:30:33','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121682890215','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5937,'','Cash','','2023-05-01 01:53:41','','0','12','2023-05-01 01:53:41','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121682890238','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5938,'','Cash','','2023-05-01 02:29:36','','0','12','2023-05-01 02:29:36','','1620','1620','1','retail','0','1620','1','0','0','0','0','0','0','printed',' ','','1','0','121682896195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5939,'','Cash','','2023-05-01 05:28:10','','0','12','2023-05-01 05:28:10','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121682908070','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5940,'','Cash','','2023-05-02 22:30:40','','0','12','2023-05-02 22:30:40','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121683055692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5941,'','Cash','','2023-05-02 22:58:06','','0','12','2023-05-02 22:58:06','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121683056196','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5942,'','Cash','','2023-05-02 23:30:16','','0','12','2023-05-02 23:30:16','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121683057490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5943,'','Cash','','2023-05-02 23:54:50','','0','12','2023-05-02 23:54:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683059458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5944,'','Cash','','2023-05-03 00:33:41','','0','12','2023-05-03 00:33:41','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121683060898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5945,'','Cash','','2023-05-03 01:38:51','','0','12','2023-05-03 01:38:51','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121683064371','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5946,'','Cash','','2023-05-03 01:48:04','','0','12','2023-05-03 01:48:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683067136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5947,'','Cash','','2023-05-03 03:02:07','','0','12','2023-05-03 03:02:07','','7750','7750','1','retail','0','7750','1','0','0','0','0','0','0','printed',' ','','1','0','121683072084','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5948,'','Cash','','2023-05-03 03:31:36','','0','12','2023-05-03 03:31:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683072247','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5949,'','Cash','','2023-05-03 04:04:41','','0','12','2023-05-03 04:04:41','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121683073903','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5950,'','Cash','','2023-05-03 10:05:08','','0','12','2023-05-03 10:05:08','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121683097382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5951,'','Cash','','2023-05-03 11:13:28','','0','12','2023-05-03 11:13:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683101489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5952,'','Cash','','2023-05-03 20:44:13','','0','12','2023-05-03 20:44:13','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683135273','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5953,'','Cash','','2023-05-03 20:48:32','','0','12','2023-05-03 20:48:32','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121683135858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5954,'','Cash','','2023-05-03 21:38:52','','0','12','2023-05-03 21:38:52','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683136125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5955,'','Cash','','2023-05-03 21:44:59','','0','12','2023-05-03 21:44:59','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121683139490','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5956,'','Cash','','2023-05-03 22:45:21','','0','12','2023-05-03 22:45:21','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121683143110','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5957,'','Cash','','2023-05-03 23:18:10','','0','12','2023-05-03 23:18:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121683143126','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5958,'','Cash','','2023-05-03 23:44:09','','0','12','2023-05-03 23:44:09','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','1','0','121683146635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5959,'','Cash','','2023-05-04 00:09:10','','0','12','2023-05-04 00:09:10','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121683146654','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5960,'','Cash','','2023-05-04 01:05:48','','0','12','2023-05-04 01:05:48','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683151524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5961,'','Cash','','2023-05-04 02:56:23','','0','12','2023-05-04 02:56:23','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683158170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5962,'','Cash','','2023-05-04 06:13:43','','0','12','2023-05-04 06:13:43','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121683170012','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5963,'','Cash','','2023-05-04 07:23:39','','0','12','2023-05-04 07:23:39','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121683170029','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5964,'','Cash','','2023-05-04 18:40:53','','0','12','2023-05-04 18:40:53','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121683214546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5965,'','Cash','','2023-05-04 18:42:30','','0','12','2023-05-04 18:42:30','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683214862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5966,'','Cash','','2023-05-04 18:43:29','','0','12','2023-05-04 18:43:29','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121683214958','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5967,'','Cash','','2023-05-04 18:53:59','','0','12','2023-05-04 18:53:59','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121683215018','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5968,'','Cash','','2023-05-04 19:53:01','','0','12','2023-05-04 19:53:01','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121683216627','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5969,'','Cash','','2023-05-04 20:13:10','','0','12','2023-05-04 20:13:10','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121683220358','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5970,'','Cash','','2023-05-04 20:33:48','','0','12','2023-05-04 20:33:48','','1600','1600','1','retail','0','1600','1','0','0','0','0','0','0','printed',' ','','1','0','121683220396','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5971,'','Cash','','2023-05-04 20:48:48','','0','12','2023-05-04 20:48:48','','3330','3330','1','retail','0','3330','1','0','0','0','0','0','0','printed',' ','','1','0','121683221635','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5972,'','Cash','','2023-05-04 23:04:47','','0','12','2023-05-04 23:04:47','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121683230670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5973,'','Cash','','2023-05-04 23:13:49','','0','12','2023-05-04 23:13:49','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683230693','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5974,'','Cash','','2023-05-05 00:37:31','','0','12','2023-05-05 00:37:31','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','','1','0','121683231236','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5975,'','Cash','','2023-05-05 01:09:24','','0','12','2023-05-05 01:09:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683236257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5976,'','Cash','','2023-05-05 02:27:21','','0','12','2023-05-05 02:27:21','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121683242826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5977,'','Cash','','2023-05-05 02:54:50','','0','12','2023-05-05 02:54:50','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121683244458','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5978,'','Cash','','2023-05-05 06:49:31','','0','12','2023-05-05 06:49:31','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121683258554','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5979,'','Cash','','2023-05-05 18:25:36','','0','12','2023-05-05 18:25:36','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121683300171','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5980,'','Cash','','2023-05-05 18:26:29','','0','12','2023-05-05 18:26:29','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121683300344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5981,'','Cash','','2023-05-05 18:27:16','','0','12','2023-05-05 18:27:16','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683300394','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5982,'','Cash','','2023-05-05 18:27:36','','0','12','2023-05-05 18:27:36','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121683300443','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5983,'','Cash','','2023-05-05 20:37:34','','0','12','2023-05-05 20:37:34','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121683308227','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5984,'','Cash','','2023-05-05 22:24:55','','0','12','2023-05-05 22:24:55','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','1','0','121683314658','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5985,'','Cash','','2023-05-05 22:33:26','','0','12','2023-05-05 22:33:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683315199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5986,'','Cash','','2023-05-05 23:24:41','','0','12','2023-05-05 23:24:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683315210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5987,'','Cash','','2023-05-05 23:50:10','','0','12','2023-05-05 23:50:10','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121683319794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5988,'','Cash','','2023-05-06 01:11:58','','0','12','2023-05-06 01:11:58','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121683319814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5989,'','Cash','','2023-05-06 01:23:39','','0','12','2023-05-06 01:23:39','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121683325411','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5990,'','Cash','','2023-05-06 01:49:41','','0','12','2023-05-06 01:49:41','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121683326969','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5991,'','Cash','','2023-05-06 02:00:57','','0','12','2023-05-06 02:00:57','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121683326987','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5992,'','Cash','','2023-05-06 02:48:09','','0','12','2023-05-06 02:48:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683327663','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5993,'','Cash','','2023-05-06 05:44:15','','0','12','2023-05-06 05:44:15','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121683341020','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5994,'','Cash','','2023-05-06 06:10:07','','0','12','2023-05-06 06:10:07','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed',' ','','1','0','121683342591','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5995,'','Cash','','2023-05-06 06:58:10','','0','12','2023-05-06 06:58:10','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121683342612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5996,'','Cash','','2023-05-06 07:17:00','','0','12','2023-05-06 07:17:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683345524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5997,'','Cash','','2023-05-06 08:14:06','','0','12','2023-05-06 08:14:06','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121683350016','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5998,'','Cash','','2023-05-06 16:22:46','','0','12','2023-05-06 16:22:46','','2300','2300','1','retail','0','2300','1','0','0','0','0','0','0','printed',' ','','1','0','121683379307','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5999,'','Cash','','2023-05-06 19:00:07','','0','12','2023-05-06 19:00:07','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683388796','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6000,'','Cash','','2023-05-06 20:50:56','','0','12','2023-05-06 20:50:56','','2960','2960','1','retail','0','2960','1','0','0','0','0','0','0','printed',' ','','1','0','121683388812','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6001,'','Cash','','2023-05-06 21:21:27','','0','12','2023-05-06 21:21:27','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121683397281','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6002,'','Cash','','2023-05-06 21:41:55','','0','12','2023-05-06 21:41:55','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683397293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6003,'','Cash','','2023-05-06 21:45:02','','0','12','2023-05-06 21:45:02','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121683398520','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6004,'','Cash','','2023-05-06 22:21:09','','0','12','2023-05-06 22:21:09','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683398708','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6005,'','Cash','','2023-05-06 22:28:58','','0','12','2023-05-06 22:28:58','','1910','1910','1','retail','0','1910','1','0','0','0','0','0','0','printed',' ','','1','0','121683400888','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6006,'','Cash','','2023-05-06 23:07:36','','0','12','2023-05-06 23:07:36','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121683403649','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6007,'','Cash','','2023-05-06 23:19:23','','0','12','2023-05-06 23:19:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683403660','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6008,'','Cash','','2023-05-06 23:35:53','','0','12','2023-05-06 23:35:53','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121683404367','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6009,'','Cash','','2023-05-06 23:43:43','','0','12','2023-05-06 23:43:43','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed',' ','','1','0','121683405357','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6010,'','Cash','','2023-05-06 23:46:29','','0','12','2023-05-06 23:46:29','','3900','3900','1','retail','0','3900','1','0','0','0','0','0','0','printed',' ','','1','0','121683405914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6011,'','Cash','','2023-05-07 00:09:05','','0','12','2023-05-07 00:09:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683407336','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6012,'','Cash','','2023-05-07 00:09:21','','0','12','2023-05-07 00:09:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683407349','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6013,'','Cash','','2023-05-07 00:18:06','','0','12','2023-05-07 00:18:06','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121683407365','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6014,'','Cash','','2023-05-07 00:27:55','','0','12','2023-05-07 00:27:55','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121683407914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6015,'','Cash','','2023-05-07 00:30:29','','0','12','2023-05-07 00:30:29','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed',' ','','1','0','121683408612','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6016,'','Cash','','2023-05-07 01:15:37','','0','12','2023-05-07 01:15:37','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121683408756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6017,'','Cash','','2023-05-07 05:46:09','','0','12','2023-05-07 05:46:09','','3050','3050','1','retail','0','3050','1','0','0','0','0','0','0','printed',' ','','1','0','121683427463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6018,'','Cash','','2023-05-07 05:48:11','','0','12','2023-05-07 05:48:11','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121683427667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6019,'','Cash','','2023-05-07 05:48:57','','0','12','2023-05-07 05:48:57','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121683427701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6020,'','Cash','','2023-05-07 06:01:41','','0','12','2023-05-07 06:01:41','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121683427743','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6021,'','Cash','','2023-05-07 08:54:39','','0','12','2023-05-07 08:54:39','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121683438858','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6022,'','Cash','','2023-05-07 14:15:51','','0','12','2023-05-07 14:15:51','','2600','2600','1','retail','0','2600','1','0','0','0','0','0','0','printed',' ','','1','0','121683458089','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6023,'','Cash','','2023-05-07 22:46:50','','0','12','2023-05-07 22:46:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683488794','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6024,'','Cash','','2023-05-07 23:03:37','','0','12','2023-05-07 23:03:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683488816','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6025,'','Cash','','2023-05-07 23:47:15','','0','12','2023-05-07 23:47:15','','2190','2190','1','retail','0','2190','1','0','0','0','0','0','0','printed',' ','','1','0','121683492394','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6026,'','Cash','','2023-05-07 23:50:32','','0','12','2023-05-07 23:50:32','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121683492605','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6027,'','Cash','','2023-05-08 00:22:53','','0','12','2023-05-08 00:22:54','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121683494544','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6028,'','Cash','','2023-05-08 02:24:37','','0','12','2023-05-08 02:24:37','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121683501870','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6029,'','Cash','','2023-05-09 20:23:29','','0','12','2023-05-09 20:23:29','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121683652978','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6030,'','Cash','','2023-05-09 20:58:37','','0','12','2023-05-09 20:58:37','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683653033','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6031,'','Cash','','2023-05-09 22:37:16','','0','12','2023-05-09 22:37:16','','5850','5850','1','retail','0','5850','1','0','0','0','0','0','0','printed',' ','','1','0','121683660624','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6032,'','Cash','','2023-05-10 20:51:05','','0','12','2023-05-10 20:51:05','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121683740788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6033,'','Cash','','2023-05-10 21:26:19','','0','12','2023-05-10 21:26:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121683742970','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6034,'','Cash','','2023-05-10 22:01:35','','0','12','2023-05-10 22:01:35','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121683743308','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6035,'','Cash','','2023-05-10 23:21:23','','0','12','2023-05-10 23:21:23','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121683750059','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6036,'','Cash','','2023-05-11 00:54:59','','0','12','2023-05-11 00:54:59','','3280','3280','1','retail','0','3280','1','0','0','0','0','0','0','printed',' ','','1','0','121683750090','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6037,'','Cash','','2023-05-11 03:08:22','','0','12','2023-05-11 03:08:22','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121683763694','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6038,'','Cash','','2023-05-11 05:36:10','','0','12','2023-05-11 05:36:10','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121683772546','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6039,'','Cash','','2023-05-11 21:14:23','','0','12','2023-05-11 21:14:23','','3400','3400','1','retail','0','3400','1','0','0','0','0','0','0','printed',' ','','1','0','121683828846','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6040,'','Cash','','2023-05-12 01:04:29','','0','12','2023-05-12 01:04:29','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121683842392','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6041,'','Cash','','2023-05-12 22:42:17','','0','12','2023-05-12 22:42:17','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121683915246','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6042,'','Cash','','2023-05-13 01:46:32','','0','12','2023-05-13 01:46:32','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121683928670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6043,'','Cash','','2023-05-13 03:05:35','','0','12','2023-05-13 03:05:35','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121683931598','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6044,'','Cash','','2023-05-13 07:55:13','','0','12','2023-05-13 07:55:13','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121683953690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6045,'','Cash','','2023-05-13 07:55:42','','0','12','2023-05-13 07:55:42','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683953718','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6046,'','Cash','','2023-05-13 07:56:07','','0','12','2023-05-13 07:56:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121683953749','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6047,'','Cash','','2023-05-13 07:57:51','','0','12','2023-05-13 07:57:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121683953772','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6048,'','Cash','','2023-05-13 08:00:12','','0','12','2023-05-13 08:00:12','','910','910','1','retail','0','910','1','0','0','0','0','0','0','printed',' ','','1','0','121683953961','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6049,'','Cash','','2023-05-13 22:40:09','','0','12','2023-05-13 22:40:09','','3100','3100','1','retail','0','3100','1','0','0','0','0','0','0','printed',' ','','1','0','121684003174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6050,'','Cash','','2023-05-13 22:46:47','','0','12','2023-05-13 22:46:47','','3850','3850','1','retail','0','3850','1','0','0','0','0','0','0','printed',' ','','1','0','121684006925','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6051,'','Cash','','2023-05-13 23:08:20','','0','12','2023-05-13 23:08:20','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121684007412','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6052,'','Cash','','2023-05-13 23:28:51','','0','12','2023-05-13 23:28:51','','2380','2380','1','retail','0','2380','1','0','0','0','0','0','0','printed',' ','','1','0','121684008512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6053,'','Cash','','2023-05-13 23:50:18','','0','12','2023-05-13 23:50:18','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121684009805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6054,'','Cash','','2023-05-14 00:15:22','','0','12','2023-05-14 00:15:22','','2330','2330','1','retail','0','2330','1','0','0','0','0','0','0','printed',' ','','1','0','121684011023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6055,'','Cash','','2023-05-14 00:17:59','','0','12','2023-05-14 00:17:59','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','','1','0','121684012659','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6056,'','Cash','','2023-05-14 02:44:21','','0','12','2023-05-14 02:44:21','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121684021430','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6057,'','Cash','','2023-05-14 02:46:00','','0','12','2023-05-14 02:46:00','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed',' ','','1','0','121684021524','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6058,'','Cash','','2023-05-14 03:40:55','','0','12','2023-05-14 03:40:55','','1730','1730','1','retail','0','1730','1','0','0','0','0','0','0','printed',' ','','1','0','121684024680','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6059,'','Cash','','2023-05-14 22:04:28','','0','12','2023-05-14 22:04:28','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121684090827','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6060,'','Cash','','2023-05-14 23:39:44','','0','12','2023-05-14 23:39:44','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed',' ','','1','0','121684093775','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6061,'','Cash','','2023-05-16 21:25:40','','0','12','2023-05-16 21:25:40','','3450','3450','1','retail','0','3450','1','0','0','0','0','0','0','printed',' ','','1','0','121684261140','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6062,'','Cash','','2023-05-16 21:26:53','','0','12','2023-05-16 21:26:53','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121684261555','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6063,'','Cash','','2023-05-16 21:56:20','','0','12','2023-05-16 21:56:20','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684263371','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6064,'','Cash','','2023-05-16 22:13:31','','0','12','2023-05-16 22:13:31','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684263384','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6065,'','Cash','','2023-05-16 22:22:52','','0','12','2023-05-16 22:22:52','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121684264417','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6066,'','Cash','','2023-05-16 22:56:24','','0','12','2023-05-16 22:56:24','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684265073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6067,'','Cash','','2023-05-17 01:23:51','','0','12','2023-05-17 01:23:51','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121684270997','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6068,'','Cash','','2023-05-17 03:34:58','','0','12','2023-05-17 03:34:58','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121684283690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6069,'','Cash','','2023-05-17 18:20:42','','0','12','2023-05-17 18:20:42','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121684336771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6070,'','Cash','','2023-05-17 18:21:38','','0','12','2023-05-17 18:21:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684336850','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6071,'','Cash','','2023-05-17 20:43:11','','0','12','2023-05-17 20:43:11','','7680','7680','1','retail','0','7680','1','0','0','0','0','0','0','printed',' ','','1','0','121684345276','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6072,'','Cash','','2023-05-17 21:50:52','','0','12','2023-05-17 21:50:52','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121684349395','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6073,'','Cash','','2023-05-17 22:04:47','','0','12','2023-05-17 22:04:47','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121684350249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6074,'','Cash','','2023-05-18 00:48:03','','0','12','2023-05-18 00:48:03','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121684350291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6075,'','Cash','','2023-05-18 01:24:03','','0','12','2023-05-18 01:24:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121684360094','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6076,'','Cash','','2023-05-18 02:05:46','','0','12','2023-05-18 02:05:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121684362257','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6077,'','Cash','','2023-05-18 02:17:00','','0','12','2023-05-18 02:17:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121684365003','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6078,'','Cash','','2023-05-18 04:13:13','','0','12','2023-05-18 04:13:13','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121684372369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6079,'','Cash','','2023-05-18 19:38:38','','0','12','2023-05-18 19:38:38','','1080','1080','1','retail','0','1080','1','0','0','0','0','0','0','printed',' ','','1','0','121684427886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6080,'','Cash','','2023-05-18 19:39:11','','0','12','2023-05-18 19:39:11','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121684427924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6081,'','Cash','','2023-05-18 19:39:34','','0','12','2023-05-18 19:39:34','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684427962','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6082,'','Cash','','2023-05-18 19:40:35','','0','12','2023-05-18 19:40:35','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684427982','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6083,'','Cash','','2023-05-19 21:29:42','','0','12','2023-05-19 21:29:42','','3080','3080','1','retail','0','3080','1','0','0','0','0','0','0','printed',' ','','1','0','121684520917','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6084,'','Cash','','2023-05-19 21:46:03','','0','12','2023-05-19 21:46:03','','650','650','1','retail','0','650','1','0','0','0','0','0','0','printed',' ','','1','0','121684520989','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6085,'','Cash','','2023-05-20 00:33:59','','0','12','2023-05-20 00:33:59','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684532026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6086,'','Cash','','2023-05-20 00:38:07','','0','12','2023-05-20 00:38:07','','410','410','1','retail','0','410','1','0','0','0','0','0','0','printed',' ','','1','0','121684532044','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6087,'','Cash','','2023-05-20 01:53:27','','0','12','2023-05-20 01:53:27','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684532293','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6088,'','Cash','','2023-05-20 02:38:39','','0','12','2023-05-20 02:38:39','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121684536813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6089,'','Cash','','2023-05-20 03:00:59','','0','12','2023-05-20 03:00:59','','4280','4280','1','retail','0','4280','1','0','0','0','0','0','0','printed',' ','','1','0','121684539592','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6090,'','Cash','','2023-05-20 04:05:05','','0','12','2023-05-20 04:05:05','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684540981','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6091,'','Cash','','2023-05-20 05:56:20','','0','12','2023-05-20 05:56:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121684544711','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6092,'','Cash','','2023-05-20 05:59:34','','0','12','2023-05-20 05:59:34','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121684551393','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6093,'','Cash','','2023-05-20 09:34:17','','0','12','2023-05-20 09:34:17','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121684564380','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6094,'','Cash','','2023-05-20 15:15:01','','0','12','2023-05-20 15:15:01','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121684584882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6095,'','Cash','','2023-05-20 17:02:54','','0','12','2023-05-20 17:02:54','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121684591363','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6096,'','Cash','','2023-05-20 19:47:17','','0','12','2023-05-20 19:47:17','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121684601223','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6097,'','Cash','','2023-05-20 20:30:08','','0','12','2023-05-20 20:30:08','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121684601243','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6098,'','Cash','','2023-05-20 21:46:58','','0','12','2023-05-20 21:46:58','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121684603814','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6099,'','Cash','','2023-05-20 21:49:31','','0','12','2023-05-20 21:49:31','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed',' ','','1','0','121684608424','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6100,'','Cash','','2023-05-20 22:49:14','','0','12','2023-05-20 22:49:14','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121684608676','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6101,'','Cash','','2023-05-20 23:09:10','','0','12','2023-05-20 23:09:10','','4850','4850','1','retail','0','4850','1','0','0','0','0','0','0','printed',' ','','1','0','121684612162','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6102,'','Cash','','2023-05-20 23:34:26','','0','12','2023-05-20 23:34:26','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121684613905','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6103,'','Cash','','2023-05-20 23:49:48','','0','12','2023-05-20 23:49:48','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121684614872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6104,'','Cash','','2023-05-20 23:57:52','','0','12','2023-05-20 23:57:52','','2850','2850','1','retail','0','2850','1','0','0','0','0','0','0','printed',' ','','1','0','121684615793','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6105,'','Cash','','2023-05-21 00:04:03','','0','12','2023-05-21 00:04:03','','3470','3470','1','retail','0','3470','1','0','0','0','0','0','0','printed',' ','','1','0','121684616278','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6106,'','Cash','','2023-05-21 00:25:29','','0','12','2023-05-21 00:25:29','','720','720','1','retail','0','720','1','0','0','0','0','0','0','printed',' ','','1','0','121684616773','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6107,'','Cash','','2023-05-21 00:32:29','','0','12','2023-05-21 00:32:29','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121684617983','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6108,'','Cash','','2023-05-21 00:50:38','','0','12','2023-05-21 00:50:38','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121684618354','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6109,'','Cash','','2023-05-21 01:03:13','','0','12','2023-05-21 01:03:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121684619511','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6110,'','Cash','','2023-05-21 01:12:21','','0','12','2023-05-21 01:12:21','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684620199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6111,'','Cash','','2023-05-21 01:32:30','','0','12','2023-05-21 01:32:30','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684620747','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6112,'','Cash','','2023-05-21 01:34:25','','0','12','2023-05-21 01:34:25','','990','990','1','retail','0','990','1','0','0','0','0','0','0','printed',' ','','1','0','121684621955','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6113,'','Cash','','2023-05-21 02:25:06','','0','12','2023-05-21 02:25:06','','540','540','1','retail','0','540','1','0','0','0','0','0','0','printed',' ','','1','0','121684622106','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6114,'','Cash','','2023-05-21 02:44:06','','0','12','2023-05-21 02:44:06','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121684625113','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6115,'','Cash','','2023-05-21 02:55:30','','0','12','2023-05-21 02:55:30','','770','770','1','retail','0','770','1','0','0','0','0','0','0','printed',' ','','1','0','121684626314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6116,'','Cash','','2023-05-21 05:41:44','','0','12','2023-05-21 05:41:44','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684636890','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6117,'','Cash','','2023-05-21 05:53:36','','0','12','2023-05-21 05:53:37','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684636913','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6118,'','Cash','','2023-05-21 19:12:25','','0','12','2023-05-21 19:12:25','','1770','1770','1','retail','0','1770','1','0','0','0','0','0','0','printed',' ','','1','0','121684685429','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6119,'','Cash','','2023-05-21 19:13:15','','0','12','2023-05-21 19:13:15','','520','520','1','retail','0','520','1','0','0','0','0','0','0','printed',' ','','1','0','121684685557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6120,'','Cash','','2023-05-21 21:38:09','','0','12','2023-05-21 21:38:09','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121684694185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6121,'','Cash','','2023-05-21 21:45:43','','0','12','2023-05-21 21:45:43','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121684694295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6122,'','Cash','','2023-05-22 00:12:23','','0','12','2023-05-22 00:12:23','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684703528','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6123,'','Cash','','2023-05-22 00:21:28','','0','12','2023-05-22 00:21:28','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121684703550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6124,'','Cash','','2023-05-22 07:17:03','','0','12','2023-05-22 07:17:03','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684728994','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6125,'','Cash','','2023-05-23 14:25:59','','0','12','2023-05-23 14:26:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121684841132','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6126,'','Cash','','2023-05-23 17:50:25','','0','12','2023-05-23 17:50:25','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121684853382','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6127,'','Cash','','2023-05-23 20:05:08','','0','12','2023-05-23 20:05:08','','1250','1250','1','retail','0','1250','1','0','0','0','0','0','0','printed',' ','','1','0','121684861475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6128,'','Cash','','2023-05-24 11:24:28','','0','12','2023-05-24 11:24:28','','420','420','1','retail','0','420','1','0','0','0','0','0','0','printed',' ','','1','0','121684909818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6129,'','Cash','','2023-05-24 13:39:39','','0','12','2023-05-24 13:39:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121684924749','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6130,'','Cash','','2023-05-24 16:12:47','','0','12','2023-05-24 16:12:47','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121684933093','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6131,'','Cash','','2023-05-24 17:47:00','','0','12','2023-05-24 17:47:00','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121684933974','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6132,'','Cash','','2023-05-24 18:23:32','','0','12','2023-05-24 18:23:32','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121684939626','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6133,'','Cash','','2023-05-24 18:23:48','','0','12','2023-05-24 18:23:48','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121684941817','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6134,'','Cash','','2023-05-24 19:29:37','','0','12','2023-05-24 19:29:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121684941832','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6135,'','Cash','','2023-05-24 19:36:47','','0','12','2023-05-24 19:36:47','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121684945784','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6136,'','Cash','','2023-05-24 22:12:38','','0','12','2023-05-24 22:12:38','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121684946213','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6137,'','Cash','','2023-05-25 02:31:39','','0','12','2023-05-25 02:31:39','','4100','4100','1','retail','0','4100','1','0','0','0','0','0','0','printed',' ','','1','0','121684971081','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6138,'','Cash','','2023-05-25 11:05:37','','0','12','2023-05-25 11:05:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685001924','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6139,'','Cash','','2023-05-25 21:13:29','','0','12','2023-05-25 21:13:29','','3500','3500','1','retail','0','3500','1','0','0','0','0','0','0','printed',' ','','1','0','121685037195','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6140,'','Cash','','2023-05-26 00:24:34','','0','12','2023-05-26 00:24:34','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685048860','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6141,'','Cash','','2023-05-26 01:23:00','','0','12','2023-05-26 01:23:00','','620','620','1','retail','0','620','1','0','0','0','0','0','0','printed',' ','','1','0','121685049914','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6142,'','Cash','','2023-05-26 09:31:33','','0','12','2023-05-26 09:31:33','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121685082506','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6143,'','Cash','','2023-05-26 13:23:29','','0','12','2023-05-26 13:23:29','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121685096593','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6144,'','Cash','','2023-05-26 13:38:12','','0','12','2023-05-26 13:38:12','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed',' ','','1','0','121685096616','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6145,'','Cash','','2023-05-26 20:30:33','','0','12','2023-05-26 20:30:33','','3070','3070','1','retail','0','3070','1','0','0','0','0','0','0','printed',' ','','1','0','121685116498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6146,'','Cash','','2023-05-26 20:32:02','','0','12','2023-05-26 20:32:02','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121685122291','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6147,'','Cash','','2023-05-26 20:32:20','','0','12','2023-05-26 20:32:20','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121685122331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6148,'','Cash','','2023-05-26 20:41:07','','0','12','2023-05-26 20:41:07','','50','50','1','retail','0','50','1','0','0','0','0','0','0','printed',' ','','1','0','121685122369','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6149,'','Cash','','2023-05-26 22:15:41','','0','12','2023-05-26 22:15:41','','920','920','1','retail','0','920','1','0','0','0','0','0','0','printed',' ','','1','0','121685122872','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6150,'','Cash','','2023-05-26 22:23:40','','0','12','2023-05-26 22:23:40','','3580','3580','1','retail','0','3580','1','0','0','0','0','0','0','printed',' ','','1','0','121685128829','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6151,'','Cash','','2023-05-26 23:14:33','','0','12','2023-05-26 23:07:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121685129142','Cleared','12','2023-05-26 23:14:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6152,'','Cash','','2023-05-26 23:44:17','','0','12','2023-05-26 23:44:17','','1680','1680','1','retail','0','1680','1','0','0','0','0','0','0','printed',' ','','1','0','121685133785','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6153,'','Cash','','2023-05-27 00:55:19','','0','12','2023-05-27 00:55:19','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121685133865','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6154,'','Cash','','2023-05-27 01:15:48','','0','12','2023-05-27 01:15:48','','5050','5050','1','retail','0','5050','1','0','0','0','0','0','0','printed',' ','','1','0','121685138124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6155,'','Cash','','2023-05-27 02:19:24','','0','12','2023-05-27 02:19:24','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121685140199','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6156,'','Cash','','2023-05-27 02:20:04','','0','12','2023-05-27 02:20:04','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121685143173','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6157,'','Cash','','2023-05-27 15:14:23','','0','12','2023-05-27 15:14:23','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121685189651','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6158,'','Cash','','2023-05-27 15:16:39','','0','12','2023-05-27 15:16:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685189670','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6159,'','Cash','','2023-05-27 15:55:40','','0','12','2023-05-27 15:55:40','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685189805','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6160,'','Cash','','2023-05-27 16:11:33','','0','12','2023-05-27 16:11:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685193082','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6161,'','Cash','','2023-05-27 16:32:53','','0','12','2023-05-27 16:32:53','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','1','0','121685193098','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6162,'','Cash','','2023-05-27 16:50:55','','0','12','2023-05-27 16:50:55','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685194377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6163,'','Cash','','2023-05-27 19:09:10','','0','12','2023-05-27 19:09:10','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685202085','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6164,'','Cash','','2023-05-27 19:09:48','','0','12','2023-05-27 19:09:48','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121685203771','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6165,'','Cash','','2023-05-27 20:11:17','','0','12','2023-05-27 20:11:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685203795','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6166,'','Cash','','2023-05-27 23:09:04','','0','12','2023-05-27 23:09:04','','3750','3750','1','retail','0','3750','1','0','0','0','0','0','0','printed',' ','','1','0','121685218085','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6167,'','Cash','','2023-05-28 01:04:51','','0','12','2023-05-28 01:04:51','','7570','7570','1','retail','0','7570','1','0','0','0','0','0','0','printed',' ','','1','0','121685218151','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6168,'','Cash','','2023-05-28 02:18:20','','0','12','2023-05-28 02:18:20','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121685225504','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6169,'','Cash','','2023-05-28 10:13:03','','0','12','2023-05-28 10:13:03','','4280','4280','1','retail','0','4280','1','0','0','0','0','0','0','printed',' ','','1','0','121685257938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6170,'','Cash','','2023-05-28 15:30:53','','0','12','2023-05-28 15:30:53','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685277043','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6171,'','Cash','','2023-05-28 15:31:36','','0','12','2023-05-28 15:31:36','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685277064','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6172,'','Cash','','2023-05-28 15:58:29','','0','12','2023-05-28 15:58:29','','4050','4050','1','retail','0','4050','1','0','0','0','0','0','0','printed',' ','','1','0','121685278647','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6173,'','Cash','','2023-05-28 18:42:14','','0','12','2023-05-28 18:42:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685287571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6174,'','Cash','','2023-05-28 19:15:00','','0','12','2023-05-28 19:15:00','','17400','17400','1','retail','0','17400','1','0','0','0','0','0','0','printed',' ','','1','0','121685288539','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6175,'','Cash','','2023-05-28 19:49:34','','0','12','2023-05-28 19:49:34','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685291461','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6176,'','Cash','','2023-05-28 22:04:04','','0','12','2023-05-28 22:04:04','','1170','1170','1','retail','0','1170','1','0','0','0','0','0','0','printed',' ','','1','0','121685300580','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6177,'','Cash','','2023-05-28 23:02:31','','0','12','2023-05-28 23:02:31','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed',' ','','1','0','121685302826','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6178,'','Cash','','2023-05-30 20:16:14','','0','12','2023-05-30 20:16:14','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685461208','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6179,'','Cash','','2023-05-30 21:13:31','','0','12','2023-05-30 21:13:31','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121685467000','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6180,'','Cash','','2023-05-30 21:52:11','','0','12','2023-05-30 21:52:11','','2500','2500','1','retail','0','2500','1','0','0','0','0','0','0','printed',' ','','1','0','121685470416','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6181,'','Cash','','2023-05-30 22:23:55','','0','12','2023-05-30 22:23:55','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121685473719','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6182,'','Cash','','2023-05-30 23:05:59','','0','12','2023-05-30 23:05:59','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121685474691','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6183,'','Cash','','2023-05-31 00:17:41','','0','12','2023-05-31 00:17:41','','1830','1830','1','retail','0','1830','1','0','0','0','0','0','0','printed',' ','','1','0','121685477170','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6184,'','Cash','','2023-05-31 00:46:13','','0','12','2023-05-31 00:46:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685481583','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6185,'','Cash','','2023-05-31 03:59:30','','0','12','2023-05-31 03:59:30','','80','80','1','retail','0','80','1','0','0','0','0','0','0','printed',' ','','1','0','121685494756','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6186,'','Cash','','2023-05-31 08:08:48','','0','12','2023-05-31 08:08:48','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685509690','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6187,'','Cash','','2023-05-31 11:52:29','','0','12','2023-05-31 11:52:29','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121685523127','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6188,'','Cash','','2023-05-31 18:56:58','','0','12','2023-05-31 18:56:58','','1350','1350','1','retail','0','1350','1','0','0','0','0','0','0','printed',' ','','1','0','121685548464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6189,'','Cash','','2023-05-31 19:37:16','','0','12','2023-05-31 19:37:16','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121685551023','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6190,'','Cash','','2023-05-31 21:59:07','','0','12','2023-05-31 21:59:08','','1400','1400','1','retail','0','1400','1','0','0','0','0','0','0','printed',' ','','1','0','121685559489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6191,'','Cash','','2023-05-31 22:15:17','','0','12','2023-05-31 22:15:17','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121685559607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6192,'','Cash','','2023-05-31 22:18:56','','0','12','2023-05-31 22:18:56','','2050','2050','1','retail','0','2050','1','0','0','0','0','0','0','printed',' ','','1','0','121685560596','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6193,'','Cash','','2023-05-31 22:22:30','','0','12','2023-05-31 22:22:30','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685560783','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6194,'','Cash','','2023-05-31 22:35:38','','0','12','2023-05-31 22:35:38','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685560957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6195,'','Cash','','2023-05-31 23:20:15','','0','12','2023-05-31 23:20:15','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685561936','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6196,'','Cash','','2023-05-31 23:43:17','','0','12','2023-05-31 23:43:17','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685564421','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6197,'','Cash','','2023-05-31 23:58:19','','0','12','2023-05-31 23:58:19','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121685566648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6198,'','Cash','','2023-06-01 00:13:16','','0','12','2023-06-01 00:13:16','','25150','25150','1','retail','0','25150','1','0','0','0','0','0','0','printed',' ','','1','0','121685566813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6199,'','Cash','','2023-06-01 00:16:38','','0','12','2023-06-01 00:16:38','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685567788','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6200,'','Cash','','2023-06-01 00:26:11','','0','12','2023-06-01 00:26:11','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121685567802','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6201,'','Cash','','2023-06-01 00:28:56','','0','12','2023-06-01 00:28:56','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121685568376','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6202,'','Cash','','2023-06-01 00:42:02','','0','12','2023-06-01 00:42:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685568540','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6203,'','Cash','','2023-06-01 00:43:23','','0','12','2023-06-01 00:43:23','','4000','4000','1','retail','0','4000','1','0','0','0','0','0','0','printed',' ','','1','0','121685569328','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6204,'','Cash','','2023-06-01 00:45:42','','0','12','2023-06-01 00:45:42','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','','1','0','121685569408','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6205,'','Cash','','2023-06-01 00:46:41','','0','12','2023-06-01 00:46:41','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685569549','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6206,'','Cash','','2023-06-01 00:53:11','','0','12','2023-06-01 00:53:11','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685569607','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6207,'','Cash','','2023-06-01 01:39:52','','0','12','2023-06-01 01:39:52','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685569998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6208,'','Cash','','2023-06-01 01:42:17','','0','12','2023-06-01 01:42:17','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121685572800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6209,'','Cash','','2023-06-01 01:46:09','','0','12','2023-06-01 01:46:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685572990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6210,'','Cash','','2023-06-01 02:13:59','','0','12','2023-06-01 02:13:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685573174','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6211,'','Cash','','2023-06-01 03:03:33','','0','12','2023-06-01 03:03:33','','2150','2150','1','retail','0','2150','1','0','0','0','0','0','0','printed',' ','','1','0','121685574845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6212,'','Cash','','2023-06-01 03:20:03','','0','12','2023-06-01 03:20:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685578125','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6213,'','Cash','','2023-06-01 04:08:08','','0','12','2023-06-01 04:08:08','','1800','1800','1','retail','0','1800','1','0','0','0','0','0','0','printed',' ','','1','0','121685578809','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6214,'','Cash','','2023-06-01 04:09:51','','0','12','2023-06-01 04:09:51','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685581699','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6215,'','Cash','','2023-06-01 04:46:55','','0','12','2023-06-01 04:46:55','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121685582115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6216,'','Cash','','2023-06-01 05:30:16','','0','12','2023-06-01 05:30:16','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121685584028','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6217,'','Cash','','2023-06-01 05:37:07','','0','12','2023-06-01 05:37:08','','70','70','1','retail','0','70','1','0','0','0','0','0','0','printed',' ','','1','0','121685586625','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6218,'','Cash','','2023-06-01 20:55:44','','0','12','2023-06-01 20:55:44','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685642120','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6219,'','Cash','','2023-06-01 21:34:13','','0','12','2023-06-01 21:34:13','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685642153','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6220,'','Cash','','2023-06-01 21:47:24','','0','12','2023-06-01 21:47:24','','170','170','1','retail','0','170','1','0','0','0','0','0','0','printed',' ','','1','0','121685644459','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6221,'','Cash','','2023-06-01 22:04:22','','0','12','2023-06-01 22:04:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685645249','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6222,'','Cash','','2023-06-01 22:11:47','','0','12','2023-06-01 22:11:47','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121685646270','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6223,'','Cash','','2023-06-01 23:25:10','','0','12','2023-06-01 23:25:10','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121685650985','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6224,'','Cash','','2023-06-02 00:34:48','','0','12','2023-06-02 00:34:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121685651175','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6225,'','Cash','','2023-06-02 01:30:32','','0','12','2023-06-02 01:30:32','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685658608','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6226,'','Cash','','2023-06-02 02:39:52','','0','12','2023-06-02 02:39:52','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121685658636','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6227,'','Cash','','2023-06-02 07:35:48','','0','12','2023-06-02 07:35:48','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121685680521','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6228,'','Cash','','2023-06-02 08:30:17','','0','12','2023-06-02 08:30:17','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685680557','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6229,'','Cash','','2023-06-02 21:10:13','','0','12','2023-06-02 21:10:13','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121685729332','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6230,'','Cash','','2023-06-02 21:12:46','','0','12','2023-06-02 21:12:46','','1850','1850','1','retail','0','1850','1','0','0','0','0','0','0','printed',' ','','1','0','121685729423','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6231,'','Cash','','2023-06-02 21:28:36','','0','12','2023-06-02 21:28:36','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed',' ','','1','0','121685729571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6232,'','Cash','','2023-06-02 21:32:03','','0','12','2023-06-02 21:32:03','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685730519','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6233,'','Cash','','2023-06-02 22:04:17','','0','12','2023-06-02 22:04:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685730729','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6234,'','Cash','','2023-06-02 22:13:21','','0','12','2023-06-02 22:13:21','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121685733181','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6235,'','Cash','','2023-06-02 22:29:24','','0','12','2023-06-02 22:29:24','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121685733286','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6236,'','Cash','','2023-06-02 22:41:32','','0','12','2023-06-02 22:41:33','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685734169','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6237,'','Cash','','2023-06-02 22:42:18','','0','12','2023-06-02 22:42:18','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121685734898','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6238,'','Cash','','2023-06-02 23:33:21','','0','12','2023-06-02 23:33:21','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121685735049','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6239,'','Cash','','2023-06-03 00:03:59','','0','12','2023-06-03 00:03:59','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121685738006','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6240,'','Cash','','2023-06-03 00:05:30','','0','12','2023-06-03 00:05:30','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685739844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6241,'','Cash','','2023-06-03 01:11:56','','0','12','2023-06-03 01:11:56','','930','930','1','retail','0','930','1','0','0','0','0','0','0','printed',' ','','1','0','121685739938','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6242,'','Cash','','2023-06-03 01:29:12','','0','12','2023-06-03 01:29:12','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121685744937','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6243,'','Cash','','2023-06-03 01:35:26','','0','12','2023-06-03 01:35:26','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685744957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6244,'','Cash','','2023-06-03 02:00:57','','0','12','2023-06-03 02:00:57','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121685745344','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6245,'','Cash','','2023-06-03 03:05:12','','0','12','2023-06-03 03:05:13','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121685746862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6246,'','Cash','','2023-06-03 03:12:14','','0','12','2023-06-03 03:12:14','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685750752','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6247,'','Cash','','2023-06-03 03:17:13','','0','12','2023-06-03 03:17:13','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685751182','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6248,'','Cash','','2023-06-03 04:06:20','','0','12','2023-06-03 04:06:20','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685751648','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6249,'','Cash','','2023-06-03 20:14:19','','0','12','2023-06-03 20:14:19','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685812439','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6250,'','Cash','','2023-06-03 20:21:00','','0','12','2023-06-03 20:21:00','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685812819','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6251,'','Cash','','2023-06-03 20:49:37','','0','12','2023-06-03 20:49:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121685814517','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6252,'','Cash','','2023-06-03 22:03:36','','0','12','2023-06-03 22:03:36','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121685814585','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6253,'','Cash','','2023-06-03 22:53:10','','0','12','2023-06-03 22:53:10','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121685819026','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6254,'','Cash','','2023-06-03 23:44:15','','0','12','2023-06-03 23:44:15','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121685821999','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6255,'','Cash','','2023-06-04 00:16:24','','0','12','2023-06-04 00:16:24','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685825190','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6256,'','Cash','','2023-06-04 00:20:12','','0','12','2023-06-04 00:20:12','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed',' ','','1','0','121685826998','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6257,'','Cash','','2023-06-04 00:21:08','','0','12','2023-06-04 00:21:08','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','','1','0','121685827262','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6258,'','Cash','','2023-06-04 00:26:39','','0','12','2023-06-04 00:26:39','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685827586','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6259,'','Cash','','2023-06-04 00:31:34','','0','12','2023-06-04 00:31:34','','1220','1220','1','retail','0','1220','1','0','0','0','0','0','0','printed',' ','','1','0','121685827873','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6260,'','Cash','','2023-06-04 00:41:08','','0','12','2023-06-04 00:41:08','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121685827950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6261,'','Cash','','2023-06-04 00:52:24','','0','12','2023-06-04 00:52:24','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121685829132','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6262,'','Cash','','2023-06-04 01:14:53','','0','12','2023-06-04 01:14:53','','950','950','1','retail','0','950','1','0','0','0','0','0','0','printed',' ','','1','0','121685829150','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6263,'','Cash','','2023-06-04 02:31:14','','0','12','2023-06-04 02:31:14','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121685831277','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6264,'','Cash','','2023-06-04 02:31:44','','0','12','2023-06-04 02:31:44','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121685835080','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6265,'','Cash','','2023-06-04 02:42:31','','0','12','2023-06-04 02:42:31','','810','810','1','retail','0','810','1','0','0','0','0','0','0','printed',' ','','1','0','121685835740','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6266,'','Cash','','2023-06-04 02:56:45','','0','12','2023-06-04 02:56:45','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685835759','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6267,'','Cash','','2023-06-04 20:50:17','','0','12','2023-06-04 20:50:17','','1500','1500','1','retail','0','1500','1','0','0','0','0','0','0','printed',' ','','1','0','121685901007','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6268,'','Cash','','2023-06-04 22:30:01','','0','12','2023-06-04 22:30:01','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121685901124','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6269,'','Cash','','2023-06-05 00:07:32','','0','12','2023-06-05 00:07:32','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685907040','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6270,'','Cash','','2023-06-05 00:11:35','','0','12','2023-06-05 00:11:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121685912862','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6271,'','Cash','','2023-06-05 03:14:22','','0','12','2023-06-05 03:14:22','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121685924032','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6272,'','Cash','','2023-06-06 17:25:05','','0','12','2023-06-06 17:25:05','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed',' ','','1','0','121686061482','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6273,'','Cash','','2023-06-06 17:46:36','','0','12','2023-06-06 17:46:36','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','1','0','121686061512','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6274,'','Cash','','2023-06-06 19:19:58','','0','12','2023-06-06 19:19:59','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121686068388','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6275,'','Cash','','2023-06-06 20:24:07','','0','12','2023-06-06 20:24:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121686072119','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6276,'','Cash','','2023-06-06 20:50:05','','0','12','2023-06-06 20:50:05','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','','1','0','121686073764','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6277,'','Cash','','2023-06-06 20:59:21','','0','12','2023-06-06 20:59:21','','1300','1300','1','retail','0','1300','1','0','0','0','0','0','0','printed',' ','','1','0','121686074001','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6278,'','Cash','','2023-06-06 21:18:04','','0','12','2023-06-06 21:18:04','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121686074377','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6279,'','Cash','','2023-06-06 21:41:11','','0','12','2023-06-06 21:41:11','','1980','1980','1','retail','0','1980','1','0','0','0','0','0','0','printed',' ','','1','0','121686076844','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6280,'','Cash','','2023-06-07 12:54:06','','0','12','2023-06-07 12:54:06','','640','640','1','retail','0','640','1','0','0','0','0','0','0','printed',' ','','1','0','121686131590','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6281,'','Cash','','2023-06-07 15:07:51','','0','12','2023-06-07 15:07:51','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','','1','0','121686139645','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6282,'','Cash','','2023-06-07 20:00:58','','0','12','2023-06-07 20:00:58','','7750','7750','1','retail','0','7750','1','0','0','0','0','0','0','printed',' ','','1','0','121686157214','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6283,'','Cash','','2023-06-07 20:27:25','','0','12','2023-06-07 20:27:25','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed',' ','','1','0','121686157324','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6284,'','Cash','','2023-06-07 21:28:41','','0','12','2023-06-07 21:28:41','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121686158950','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6285,'','Cash','','2023-06-07 22:08:12','','0','12','2023-06-07 22:08:12','','850','850','1','retail','0','850','1','0','0','0','0','0','0','printed',' ','','1','0','121686164496','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6286,'','Cash','','2023-06-07 22:29:47','','0','12','2023-06-07 22:29:47','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121686164896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6287,'','Cash','','2023-06-07 22:54:05','','0','12','2023-06-07 22:54:05','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121686166267','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6288,'','Cash','','2023-06-08 18:24:05','','0','12','2023-06-08 18:24:05','','1180','1180','1','retail','0','1180','1','0','0','0','0','0','0','printed',' ','','1','0','121686235688','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6289,'','Cash','','2023-06-09 00:08:09','','0','12','2023-06-09 00:08:09','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121686257666','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6290,'','Cash','','2023-06-09 00:17:40','','0','12','2023-06-09 00:17:40','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','1','0','121686258497','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6291,'','Cash','','2023-06-09 00:29:28','','0','12','2023-06-09 00:29:28','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','','1','0','121686259720','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6292,'','Cash','','2023-06-09 23:24:06','','0','12','2023-06-09 23:24:06','','2800','2800','1','retail','0','2800','1','0','0','0','0','0','0','printed',' ','','1','0','121686342068','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6293,'','Cash','','2023-06-09 23:28:04','','0','12','2023-06-09 23:28:04','','4250','4250','1','retail','0','4250','1','0','0','0','0','0','0','printed',' ','','1','0','121686342464','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6294,'','Cash','','2023-06-11 00:12:06','','0','12','2023-06-11 00:12:06','','2100','2100','1','retail','0','2100','1','0','0','0','0','0','0','printed',' ','','1','0','121686431435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6295,'','Cash','','2023-06-11 00:13:34','','0','12','2023-06-11 00:13:34','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','1','0','121686431547','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6296,'','Cash','','2023-06-11 00:22:24','','0','12','2023-06-11 00:22:24','','1100','1100','1','retail','0','1100','1','0','0','0','0','0','0','printed',' ','','1','0','121686431619','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6297,'','Cash','','2023-06-11 00:23:51','','0','12','2023-06-11 00:23:51','','3550','3550','1','retail','0','3550','1','0','0','0','0','0','0','printed',' ','','1','0','121686432154','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6298,'','Cash','','2023-06-11 08:36:49','','0','12','2023-06-11 08:36:49','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','','1','0','121686461783','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6299,'','Cash','','2023-06-14 00:21:56','','0','12','2023-06-14 00:21:57','','1000','1000','1','retail','0','1000','1','0','0','0','0','0','0','printed',' ','','1','0','121686691304','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6300,'','Cash','','2023-06-15 07:44:25','','0','12','2023-06-15 07:44:25','','4310','4310','1','retail','0','4310','1','0','0','0','0','0','0','printed',' ','','1','0','121686804121','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6301,'','Cash','','2023-06-16 13:36:59','','0','12','2023-06-16 13:36:59','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121686911750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6302,'','Cash','','2023-06-16 18:55:18','','0','12','2023-06-16 18:55:18','','2000','2000','1','retail','0','2000','1','0','0','0','0','0','0','printed',' ','','1','0','121686915187','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6303,'','Cash','','2023-06-17 18:15:38','','0','12','2023-06-17 18:15:38','','5600','5600','1','retail','0','5600','1','0','0','0','0','0','0','printed',' ','','1','0','121687014927','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6305,'','Cash','','2023-06-17 18:23:26','','0','12','2023-06-17 18:23:26','','1700','1700','1','retail','0','1700','1','0','0','0','0','0','0','printed',' ','','1','0','121687015390','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6306,'','Cash','','2023-06-18 20:54:54','','0','12','2023-06-18 20:54:54','','6000','6000','1','retail','0','6000','1','0','0','0','0','0','0','printed',' ','','1','0','121687110868','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6307,'','Cash','','2023-06-21 01:31:46','','0','12','2023-06-21 01:31:46','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','','1','0','121687300288','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6308,'','Cash','','2023-06-21 01:33:09','','0','12','2023-06-21 01:33:09','','1750','1750','1','retail','0','1750','1','0','0','0','0','0','0','printed',' ','','1','0','121687300314','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6309,'','Cash','','2023-06-21 01:33:53','','0','12','2023-06-21 01:33:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121687300410','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6310,'','Cash','','2023-06-21 01:34:11','','0','12','2023-06-21 01:34:11','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121687300437','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6311,'','Cash','','2023-06-21 02:56:38','','0','12','2023-06-21 02:56:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121687305387','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6312,'','Cash','','2023-06-22 23:47:16','','0','12','2023-06-22 23:47:17','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121687466813','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6313,'','Cash','','2023-06-23 01:55:10','','0','12','2023-06-23 01:55:10','','1900','1900','1','retail','0','1900','1','0','0','0','0','0','0','printed',' ','','1','0','121687474498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6314,'','Cash','','2023-06-25 01:50:20','','0','12','2023-06-25 01:50:20','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed',' ','','1','0','121687643295','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6315,'','Cash','','2023-06-25 01:54:45','','0','12','2023-06-25 01:54:45','','6850','6850','1','retail','0','6850','1','0','0','0','0','0','0','printed',' ','','1','0','121687647080','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6316,'','Cash','','2023-06-27 20:51:11','','0','12','2023-06-27 20:51:11','','2700','2700','1','retail','0','2700','1','0','0','0','0','0','0','printed',' ','','1','0','121687888147','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6317,'','Cash','','2023-06-29 00:20:32','','0','12','2023-06-29 00:20:32','','3250','3250','1','retail','0','3250','1','0','0','0','0','0','0','printed',' ','','1','0','121687987138','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6318,'','Cash','','2023-07-13 18:43:20','','0','12','2023-07-13 18:43:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','1','0','121689262929','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'','',0.00,0.00); /*!40000 ALTER TABLE `sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order` -- DROP TABLE IF EXISTS `sales_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB AUTO_INCREMENT=10931 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order` -- LOCK TABLES `sales_order` WRITE; /*!40000 ALTER TABLE `sales_order` DISABLE KEYS */; INSERT INTO `sales_order` VALUES ('1616566859623819253',1,'161656685955','5000267024011','1.00','3300','retail','0','2022-07-01 17:33:39','','','','2433','Cash',455.17,'3300','','','16','','1','2022-07-01 11:38:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616566859720336020',2,'161656685955','5011007003029','1.00','2700','retail','0','2022-07-01 17:33:39','','','','2000','Cash',372.41,'2700','','','16','','1','2022-07-01 11:38:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616566859800336020',3,'161656685955','5011013100132','1.00','2600','retail','0','2022-07-01 17:33:39','','','','1916','Cash',358.62,'2600','','','16','','1','2022-07-01 11:38:51','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616566860188636813',4,'161656685955','5000291020706','1.00','2800','retail','0','2022-07-01 17:33:39','','','','2070','Cash',386.21,'2800','','','16','','1','2022-07-01 11:38:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2413.79,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616566884703360320',5,'161656688456','6161101603324','1.00','200','retail','0','2022-07-01 18:18:28','','','','150.45','Cash',27.59,'200','','','16','','1','2022-07-01 12:18:32','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216566939413360320',6,'121656693922','6161101603324','1.00','200','retail','0','2022-07-01 19:45:41','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-01 13:45:57','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567637283617253',7,'161656763707','5018907197803','1.00','60','retail','0','2022-07-02 15:09:43','','','','44.58','Cash',8.28,'60','','','16','','1','2022-07-02 09:10:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567637836636613',8,'161656763707','6161101605458','1.00','250','retail','0','2022-07-02 15:09:43','','','','182','Cash',34.48,'250','','','16','','1','2022-07-02 09:10:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567640832033204',9,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567640866033625',10,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567640890336020',11,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567640950303223',12,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567640983610253',13,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567641003611253',14,'161656764026','6161101605199','1.00','220','retail','0','2022-07-02 15:15:45','','','','172.833','Cash',30.34,'220','','','16','','1','2022-07-02 09:16:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567760043370320',15,'161656775792','5000291020805','1.00','3750','retail','0','2022-07-02 20:08:04','','','','2760','Cash',517.24,'3750','','','16','','1','2022-07-02 14:14:14','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567769447636713',16,'161656775792','6161101603324','1.00','200','retail','0','2022-07-02 20:08:04','','','','150.45','Cash',27.59,'200','','','16','','1','2022-07-02 14:14:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567769922033225',17,'161656775792','8712000900663','1.00','200','retail','0','2022-07-02 20:08:04','','','','174','Cash',27.59,'200','','','16','','1','2022-07-02 14:14:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567783040303223',18,'161656775792','5000267024011','1.00','3300','retail','0','2022-07-02 20:08:04','','','','2433','Cash',455.17,'3300','','','16','','1','2022-07-02 14:14:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567783122033238',19,'161656775792','5018907194802','1.00','100','retail','0','2022-07-02 20:08:04','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 14:14:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','84.00','83','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567807346333603',20,'161656775792','8712000900663','1.00','200','retail','0','2022-07-02 20:08:04','','','','174','Cash',27.59,'200','','','16','','1','2022-07-02 14:14:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567815288636813',21,'161656775792','6161101603324','1.00','200','retail','0','2022-07-02 20:08:04','','','','150.45','Cash',27.59,'200','','','16','','1','2022-07-02 14:14:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567816833033325',22,'161656775792','6001108028044','1.00','250','retail','0','2022-07-02 20:08:04','','','','201','Cash',34.48,'250','','','16','','1','2022-07-02 14:14:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567820686363603',23,'161656782055','5011007003029','1.00','2700','retail','0','2022-07-02 20:14:34','','','','2000','Cash',372.41,'2700','','','16','','1','2022-07-02 14:15:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567820730303223',24,'161656782055','5000267125046','1.00','4300','retail','0','2022-07-02 20:14:34','','','','3164','Cash',593.10,'4300','','','16','','1','2022-07-02 14:15:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567912336333603',25,'161656786931','6001108028044','6.00','1500','retail','0','2022-07-02 22:47:59','','','','201','Cash',206.90,'250','','','16','','1','2022-07-02 16:48:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','23.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567912489636913',26,'161656786931','6161101602938','2.00','440','retail','0','2022-07-02 22:47:59','','','','198.45','Cash',60.69,'220','','','16','','1','2022-07-02 16:48:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','96.00','94','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567912613912253',27,'161656786931','6161101603324','2.00','400','retail','0','2022-07-02 22:47:59','','','','150.45','Cash',55.17,'200','','','16','','1','2022-07-02 16:48:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','44.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567912722033221',28,'161656786931','90162602','1.00','200','retail','0','2022-07-02 22:47:59','','','','147','Cash',27.59,'200','','','16','','1','2022-07-02 16:48:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567912782033221',29,'161656786931','5018907194802','1.00','100','retail','0','2022-07-02 22:47:59','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 16:48:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','83.00','82','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567914862033241',30,'161656791320','90162602','1.00','200','retail','0','2022-07-02 22:51:26','','','','147','Cash',27.59,'200','','','16','','1','2022-07-02 17:03:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567926160336020',31,'161656792234','5010103930628','1.00','1500','retail','0','2022-07-02 23:10:17','','','','1125','Cash',206.90,'1500','','','16','','1','2022-07-02 17:12:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567929866383603',32,'161656792725','6161101602372','1.00','220','retail','0','2022-07-02 23:16:27','','','','189.75','Cash',30.34,'220','','','16','','1','2022-07-02 17:16:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567948700303223',33,'161656792995','6001108028044','1.00','250','retail','0','2022-07-02 23:47:51','','','','201','Cash',34.48,'250','','','16','','1','2022-07-02 17:48:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567950288033825',34,'161656794902','90162602','1.00','200','retail','0','2022-07-02 23:50:57','','','','147','Cash',27.59,'200','','','16','','1','2022-07-02 17:51:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567950566033625',35,'161656794902','6001495062508','1.00','1700','retail','0','2022-07-02 23:50:57','','','','1257.93','Cash',234.48,'1700','','','16','','1','2022-07-02 17:51:43','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567960313330063',36,'161656795104','6161101603379','3.00','660','retail','0','2022-07-03 00:07:11','','','','190.375','Cash',91.03,'220','','','16','','1','2022-07-02 18:10:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','24.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567965003915253',37,'161656796213','5000267024011','1.00','3300','retail','0','2022-07-03 00:20:38','','','','2433','Cash',455.17,'3300','','','16','','1','2022-07-02 18:38:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567965063915253',38,'161656796213','5018907194802','1.00','100','retail','0','2022-07-03 00:20:38','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 18:38:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','82.00','81','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567965232033256',39,'161656796213','6001108028044','1.00','250','retail','0','2022-07-03 00:20:38','','','','201','Cash',34.48,'250','','','16','','1','2022-07-02 18:38:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567966990303223',40,'161656796213','5000267125046','1.00','4300','retail','0','2022-07-03 00:20:38','','','','3164','Cash',593.10,'4300','','','16','','1','2022-07-02 18:38:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567968376333603',41,'161656796213','5018907194802','1.00','100','retail','0','2022-07-03 00:20:38','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 18:38:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','81.00','80','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567982393370320',42,'161656797926','6161101601979','1.00','200','retail','0','2022-07-03 00:44:58','','','','172.75','Cash',27.59,'200','','','16','','1','2022-07-02 18:46:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567982843912253',43,'161656797926','6161101601979','2.00','400','retail','0','2022-07-03 00:44:58','','','','172.75','Cash',55.17,'200','','','16','','1','2022-07-02 18:46:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567982977033725',44,'161656797926','5018907194802','1.00','100','retail','0','2022-07-03 00:44:58','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 18:46:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','80.00','79','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567984603370320',45,'161656798392','5000267112077','1.00','6000','retail','0','2022-07-03 01:06:15','','','','4520','Cash',827.59,'6000','','','16','','1','2022-07-02 19:06:23','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567984666363603',46,'161656798392','5018907194802','1.00','100','retail','0','2022-07-03 01:06:15','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 19:06:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','79.00','78','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567984763914253',47,'161656798392','6001108028044','4.00','1000','retail','0','2022-07-03 01:06:15','','','','201','Cash',137.93,'250','','','16','','1','2022-07-02 19:06:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985286323603',48,'161656798392','6161101602938','2.00','440','retail','0','2022-07-03 01:06:15','','','','198.45','Cash',60.69,'220','','','16','','1','2022-07-02 19:06:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','94.00','92','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985376333603',49,'161656798392','6161101602525','2.00','240','retail','0','2022-07-03 01:06:15','','','','95.75','Cash',33.10,'120','','','16','','1','2022-07-02 19:06:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985470303223',50,'161656798392','50112265','1.00','70','retail','0','2022-07-03 01:06:15','','','','53.33','Cash',9.66,'70','','','16','','1','2022-07-02 19:06:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985563370320',51,'161656798392','6161101602921','6.00','1320','retail','0','2022-07-03 01:06:15','','','','198.45','Cash',182.07,'220','','','16','','1','2022-07-02 19:06:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1137.93,'','96.00','90','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985769636913',52,'161656798392','5018907194802','1.00','100','retail','0','2022-07-03 01:06:15','','','','74.58','Cash',13.79,'100','','','16','','1','2022-07-02 19:06:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','78.00','77','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567985833033325',53,'161656798392','5449000131836','1.00','70','retail','0','2022-07-03 01:06:15','','','','53.333','Cash',9.66,'70','','','16','','1','2022-07-02 19:06:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567995990303223',54,'161656799583','8712000900663','3.00','600','retail','0','2022-07-03 01:07:05','','','','174','Cash',82.76,'200','','','16','','1','2022-07-02 19:07:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'3','22.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616567996250303223',55,'161656799583','8712000900663','2.00','400','retail','0','2022-07-03 01:07:05','','','','174','Cash',55.17,'200','','','16','','1','2022-07-02 19:07:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616568025870336020',56,'161656799663','6001108028044','1.00','250','retail','0','2022-07-03 01:57:16','','','','201','Cash',34.48,'250','','','16','','1','2022-07-02 20:00:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616568026350336020',57,'161656799663','5011013100194','1.00','1350','retail','0','2022-07-03 01:57:16','','','','999','Cash',186.21,'1350','','','16','','1','2022-07-02 20:00:58','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616568037090636013',58,'161656803662','6161101602372','1.00','220','retail','0','2022-07-03 02:15:21','','','','189.75','Cash',30.34,'220','','','16','','1','2022-07-02 20:16:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616568037210636013',59,'161656803662','6161101602372','1.00','220','retail','0','2022-07-03 02:15:21','','','','189.75','Cash',30.34,'220','','','16','','1','2022-07-02 20:16:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568480738320026',60,'121656847960','5449000139030','1.00','70','retail','0','2022-07-03 14:40:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-03 09:41:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568480783380320',61,'121656847960','6161101605465','1.00','700','retail','0','2022-07-03 14:40:11','','','','501','Cash',96.55,'700','','','12','','1','2022-07-03 09:41:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568483840332020',62,'121656847960','90490224','1.00','90','retail','0','2022-07-03 14:40:11','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-03 09:41:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568520932033202',63,'121656852074','6161101604406','1.00','200','retail','0','2022-07-03 15:41:37','','','','181.708','Cash',27.59,'200','','','12','','1','2022-07-03 09:42:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568520960303223',64,'121656852074','6161101604406','1.00','200','retail','0','2022-07-03 15:41:37','','','','181.708','Cash',27.59,'200','','','12','','1','2022-07-03 09:42:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568569663519253',65,'121656854684','6161101605458','1.00','250','retail','0','2022-07-03 17:06:06','','','','182','Cash',34.48,'250','','','12','','1','2022-07-03 11:11:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568570811033125',66,'121656854684','5449000139030','1.00','70','retail','0','2022-07-03 17:06:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-03 11:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568571650303223',67,'121656854684','90490224','1.00','90','retail','0','2022-07-03 17:06:06','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-03 11:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568646520303223',68,'121656861624','5018907194802','1.00','100','retail','0','2022-07-03 19:10:52','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-03 13:11:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','77.00','76','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568647752033274',69,'121656864695','6161101604406','1.00','200','retail','0','2022-07-03 19:12:55','','','','181.708','Cash',27.59,'200','','','12','','1','2022-07-03 13:14:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568713893380320',70,'121656871310','6161101603379','1.00','220','retail','0','2022-07-03 21:03:18','','','','190.375','Cash',30.34,'220','','','12','','1','2022-07-03 15:04:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568713972033231',71,'121656871310','6001108028044','1.00','250','retail','0','2022-07-03 21:03:18','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 15:04:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568714803380320',72,'121656871455','6161101602372','1.00','220','retail','0','2022-07-03 21:04:43','','','','189.75','Cash',30.34,'220','','','12','','1','2022-07-03 15:05:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568714823714253',73,'121656871455','6161101602372','1.00','220','retail','0','2022-07-03 21:04:43','','','','189.75','Cash',30.34,'220','','','12','','1','2022-07-03 15:05:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568720463380320',74,'121656871551','6001108028044','1.00','250','retail','0','2022-07-03 21:14:09','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 15:14:19','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568720499033925',75,'121656871551','6001108028044','1.00','250','retail','0','2022-07-03 21:14:09','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 15:14:19','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568724010303223',76,'121656872061','6161101603379','1.00','220','retail','0','2022-07-03 21:20:02','','','','190.375','Cash',30.34,'220','','','12','','1','2022-07-03 15:33:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568746717636713',77,'121656873851','5000292001001','1.00','1600','retail','0','2022-07-03 21:58:13','','','','1141','Cash',220.69,'1600','','','12','','1','2022-07-03 15:58:31','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568746770332020',78,'121656873851','54493360','1.00','70','retail','0','2022-07-03 21:58:13','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-03 15:58:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568746842722224',79,'121656873851','54493360','1.00','70','retail','0','2022-07-03 21:58:13','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-03 15:58:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568746923716253',80,'121656873851','54493360','1.00','70','retail','0','2022-07-03 21:58:13','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-03 15:58:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568798016826531',81,'121656874712','6001108028044','1.00','250','retail','0','2022-07-03 23:25:06','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 17:25:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568798052033289',82,'121656874712','6001108028044','1.00','250','retail','0','2022-07-03 23:25:06','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 17:25:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568798152033289',83,'121656874712','6002039005753','1.00','1100','retail','0','2022-07-03 23:25:06','','','','790','Cash',151.72,'1100','','','12','','1','2022-07-03 17:25:29','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568798207636713',84,'121656874712','6002039005753','1.00','1100','retail','0','2022-07-03 23:25:06','','','','790','Cash',151.72,'1100','','','12','','1','2022-07-03 17:25:29','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568798953380320',85,'121656874712','6001108028044','1.00','250','retail','0','2022-07-03 23:25:06','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 17:25:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568799052033299',86,'121656874712','6001108028044','1.00','250','retail','0','2022-07-03 23:25:06','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 17:25:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216568799387636713',87,'121656879930','6001108028044','1.00','250','retail','0','2022-07-03 23:25:39','','','','201','Cash',34.48,'250','','','12','','1','2022-07-03 17:25:45','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569439772637299',88,'121656943954','6161101603379','1.00','220','retail','0','2022-07-04 17:12:58','','','','190.375','Cash',30.34,'220','','','12','','1','2022-07-04 11:13:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569506446343603',89,'121656950636','6161101602921','6.00','1500','retail','0','2022-07-04 19:17:35','','','','198.45','Cash',206.90,'250','','','12','','1','2022-07-04 13:17:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'','90.00','83','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569506500332020',90,'121656950636','6161101602921','6.00','1500','retail','0','2022-07-04 19:17:35','','','','198.45','Cash',206.90,'250','','','12','','1','2022-07-04 13:17:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'','89.00','78','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569508772033280',91,'121656950636','5000267014609','1.00','1100','retail','0','2022-07-04 19:17:35','','','','794','Cash',151.72,'1100','','','12','','1','2022-07-04 13:17:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569509212033290',92,'121656950636','6008165007784','1.00','370','retail','0','2022-07-04 19:17:35','','','','327.04','Cash',51.03,'370','','','12','','1','2022-07-04 13:17:58','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569530460303223',93,'121656951479','6161101601979','1.00','250','retail','0','2022-07-04 19:44:07','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-04 13:45:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569590812033209',94,'121656959016','90399480','1.00','90','retail','0','2022-07-04 21:30:54','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569593502033239',95,'121656959016','3245990987611','1.00','17500','retail','0','2022-07-04 21:30:54','','','','13000','Cash',2413.79,'17500','','','12','','1','2022-07-04 15:32:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',15086.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569594276323603',96,'121656959016','5449000131836','1.00','70','retail','0','2022-07-04 21:30:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569594292033249',97,'121656959016','5449000131836','1.00','70','retail','0','2022-07-04 21:30:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569594386333603',98,'121656959016','5018907194802','1.00','100','retail','0','2022-07-04 21:30:54','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','76.00','75','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569594415636513',99,'121656959016','5018907194802','1.00','100','retail','0','2022-07-04 21:30:54','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','75.00','74','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569594535636513',100,'121656959016','5018907194802','1.00','100','retail','0','2022-07-04 21:30:54','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-04 15:32:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','74.00','73','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569606650303223',101,'121656959547','6161101603515','1.00','250','retail','0','2022-07-04 21:51:06','','','','182','Cash',34.48,'250','','','12','','1','2022-07-04 15:51:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569616400033025',102,'121656960679','6161101605199','1.00','250','retail','0','2022-07-04 22:07:21','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-04 16:07:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569642513612253',103,'121656961654','6161101605458','1.00','250','retail','0','2022-07-04 22:50:52','','','','182','Cash',34.48,'250','','','12','','1','2022-07-04 16:50:54','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569677276636613',104,'121656964256','6161101603379','1.00','250','retail','0','2022-07-04 23:48:49','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-04 17:48:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569677283617253',105,'121656964256','6161101603379','1.00','250','retail','0','2022-07-04 23:48:49','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-04 17:48:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569738460303223',106,'121656967735','6161101602938','6.00','1500','retail','0','2022-07-05 01:33:17','','','','198.45','Cash',206.90,'250','','','12','','1','2022-07-04 19:33:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'','92.00','86','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569739167636713',107,'121656967735','6161101602938','1.00','250','retail','0','2022-07-05 01:33:17','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-04 19:33:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','86.00','85','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569739362033293',108,'121656967735','6161101603324','4.00','800','retail','0','2022-07-05 01:33:17','','','','150.45','Cash',110.34,'200','','','12','','1','2022-07-04 19:33:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'','42.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569739960303223',109,'121656967735','5018907194802','1.00','100','retail','0','2022-07-05 01:33:17','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-04 19:33:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','73.00','72','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569740703710253',110,'121656974011','8712000900045','5.00','1250','retail','0','2022-07-05 01:35:01','','','','182','Cash',172.41,'250','','','12','','1','2022-07-04 19:35:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1077.59,'','24.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569741290332020',111,'121656974114','6161101606011','3.00','660','retail','0','2022-07-05 01:36:22','','','','172.833','Cash',91.03,'220','','','12','','1','2022-07-04 19:36:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',568.97,'','24.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569741557636713',112,'121656974114','6161101603324','4.00','800','retail','0','2022-07-05 01:36:22','','','','150.45','Cash',110.34,'200','','','12','','1','2022-07-04 19:36:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'','38.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569741812033214',113,'121656974114','5018907194802','1.00','100','retail','0','2022-07-05 01:36:22','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-04 19:36:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','72.00','71','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569753580332020',114,'121656975350','6161101603324','2.00','400','retail','0','2022-07-05 01:56:10','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-04 19:56:12','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216569760580303223',115,'121656975374','6001108028044','3.00','750','retail','0','2022-07-05 02:07:50','','','','201','Cash',103.45,'250','','','12','','1','2022-07-04 20:07:53','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570241300303223',116,'121657022898','6161101602938','2.00','500','retail','0','2022-07-05 15:38:39','','','','198.45','Cash',68.97,'250','','','12','','1','2022-07-05 09:39:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','85.00','83','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570242403300320',117,'121657022898','6161101602372','2.00','500','retail','0','2022-07-05 15:38:39','','','','189.75','Cash',68.97,'250','','','12','','1','2022-07-05 09:39:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570247186313603',118,'121657022898','6161101603324','2.00','400','retail','0','2022-07-05 15:38:39','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-05 09:39:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570298253300320',119,'121657024751','6161101603324','4.00','800','retail','0','2022-07-05 17:04:21','','','','150.45','Cash',110.34,'200','','','12','','1','2022-07-05 11:04:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'','30.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570298600332020',120,'121657024751','90162602','1.00','200','retail','0','2022-07-05 17:04:21','','','','147','Cash',27.59,'200','','','12','','1','2022-07-05 11:04:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570369326333603',121,'121657029866','5010103930628','1.00','1500','retail','0','2022-07-05 19:02:23','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-05 13:04:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570369423300320',122,'121657029866','5018907194802','1.00','100','retail','0','2022-07-05 19:02:23','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-05 13:04:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','71.00','70','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570404510332020',123,'121657037086','6161101603379','4.00','1000','retail','0','2022-07-05 20:46:09','','','','190.375','Cash',137.93,'250','','','12','','1','2022-07-05 14:50:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570405274637413',124,'121657037086','6161101603324','2.00','400','retail','0','2022-07-05 20:46:09','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-05 14:50:01','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570405573415253',125,'121657037086','6161101602600','2.00','440','retail','0','2022-07-05 20:46:09','','','','154.95','Cash',60.69,'220','','','12','','1','2022-07-05 14:50:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',379.31,'','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570431444637413',126,'121657037086','6161101602600','1.00','220','retail','0','2022-07-05 20:46:09','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-05 14:50:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570431680332020',127,'121657037086','6161101603379','1.00','250','retail','0','2022-07-05 20:46:09','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-05 14:50:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570435644637413',128,'121657043403','6161101601979','1.00','250','retail','0','2022-07-05 20:52:44','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-05 14:52:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570436763300320',129,'121657043569','6161101603324','1.00','200','retail','0','2022-07-05 20:55:33','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570436836383603',130,'121657043569','6161101603324','1.00','200','retail','0','2022-07-05 20:55:33','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570436883300320',131,'121657043569','6161101603324','1.00','200','retail','0','2022-07-05 20:55:33','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570436933033325',132,'121657043569','6161101603324','1.00','200','retail','0','2022-07-05 20:55:33','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570436980303223',133,'121657043569','6161101602525','1.00','120','retail','0','2022-07-05 20:55:33','','','','95.75','Cash',16.55,'120','','','12','','1','2022-07-05 14:55:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570437093417253',134,'121657043569','6002039005753','1.00','1400','retail','0','2022-07-05 20:55:33','','','','790','Cash',193.10,'1400','','','12','','1','2022-07-05 14:55:40','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570437160303223',135,'121657043569','90162602','1.00','200','retail','0','2022-07-05 20:55:33','','','','147','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570437200303223',136,'121657043569','90162602','1.00','200','retail','0','2022-07-05 20:55:33','','','','147','Cash',27.59,'200','','','12','','1','2022-07-05 14:55:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570437332033273',137,'121657043569','6008165007784','1.00','370','retail','0','2022-07-05 20:55:33','','','','327.04','Cash',51.03,'370','','','12','','1','2022-07-05 14:55:40','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570437783300320',138,'121657043741','3086120600051','1.00','80','retail','0','2022-07-05 20:56:19','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-05 14:56:22','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570440433410253',139,'121657043784','6161101603515','1.00','250','retail','0','2022-07-05 21:00:44','','','','182','Cash',34.48,'250','','','12','','1','2022-07-05 15:00:45','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570487876383603',140,'121657044047','6161101603379','1.00','250','retail','0','2022-07-05 22:19:48','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-05 16:19:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570519163300320',141,'121657051904','6161101606561','1.00','1500','retail','0','2022-07-05 23:13:36','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-05 17:19:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570519380303223',142,'121657051904','5449000131836','2.00','140','retail','0','2022-07-05 23:13:36','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-05 17:19:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',120.69,'','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570520035637513',143,'121657051904','54493360','1.00','70','retail','0','2022-07-05 23:13:36','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-05 17:19:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570531803038233',144,'121657052376','5000289929417','1.00','2000','retail','0','2022-07-05 23:33:41','','','','1540','Cash',275.86,'2000','','','12','','1','2022-07-05 17:35:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570532212033223',145,'121657052376','024000150138','1.00','250','retail','0','2022-07-05 23:33:41','','','','205','Cash',34.48,'250','','','12','','1','2022-07-05 17:35:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570535720332020',146,'121657053353','6161101601979','2.00','500','retail','0','2022-07-05 23:40:22','','','','172.75','Cash',68.97,'250','','','12','','1','2022-07-05 17:41:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570535930303223',147,'121657053353','5018907194802','1.00','100','retail','0','2022-07-05 23:40:22','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-05 17:41:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','70.00','69','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570536044033425',148,'121657053353','90162602','1.00','200','retail','0','2022-07-05 23:40:22','','','','147','Cash',27.59,'200','','','12','','1','2022-07-05 17:41:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570536213262732',149,'121657053353','6161101602167','1.00','500','retail','0','2022-07-05 23:40:22','','','','388','Cash',68.97,'500','','','12','','1','2022-07-05 17:41:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570549977033725',150,'121657053706','6161101603324','3.00','600','retail','0','2022-07-06 00:03:57','','','','150.45','Cash',82.76,'200','','','12','','1','2022-07-05 18:03:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'','20.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570550266323603',151,'121657053706','6161101604703','2.00','400','retail','0','2022-07-06 00:03:57','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-05 18:03:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','48.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216570567206323603',152,'121657056718','5000267014609','1.00','1100','retail','0','2022-07-06 00:38:22','','','','794','Cash',151.72,'1100','','','12','','1','2022-07-05 18:38:28','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571227299033925',153,'121657122715','6161101603515','1.00','250','retail','0','2022-07-06 18:52:09','','','','182','Cash',34.48,'250','','','12','','1','2022-07-06 12:52:12','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571255582637213',154,'121657122734','5000289933292','1.00','950','retail','0','2022-07-06 19:39:25','','','','710','Cash',131.03,'950','','','12','','1','2022-07-06 13:40:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571255644033425',155,'121657122734','5018907194802','1.00','100','retail','0','2022-07-06 19:39:25','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-06 13:40:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','69.00','68','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571282392637213',156,'121657125627','6161101601979','1.00','250','retail','0','2022-07-06 20:24:00','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-06 14:24:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571292999033925',157,'121657128271','6161101605458','1.00','250','retail','0','2022-07-06 20:41:40','','','','182','Cash',34.48,'250','','','12','','1','2022-07-06 14:45:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571315653310320',158,'121657129546','5010103930666','1.00','750','retail','0','2022-07-06 21:19:26','','','','542','Cash',103.45,'750','','','12','','1','2022-07-06 15:24:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571333133033325',159,'121657131845','90399480','1.00','90','retail','0','2022-07-06 21:49:20','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-06 15:50:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571333603313253',160,'121657131845','6161101603324','1.00','200','retail','0','2022-07-06 21:49:20','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-06 15:50:45','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571351982033215',161,'121657133446','50112265','1.00','70','retail','0','2022-07-06 22:20:22','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-06 16:22:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571352080332020',162,'121657133446','6161101602167','1.00','500','retail','0','2022-07-06 22:20:22','','','','388','Cash',68.97,'500','','','12','','1','2022-07-06 16:22:05','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571352143637313',163,'121657133446','6161101603324','1.00','200','retail','0','2022-07-06 22:20:22','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-06 16:22:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571352211033125',164,'121657133446','6161101603324','1.00','200','retail','0','2022-07-06 22:20:22','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-06 16:22:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571354220303223',165,'121657135326','4058387001451','1.00','1400','retail','0','2022-07-06 22:23:48','','','','1050','Cash',193.10,'1400','','','12','','1','2022-07-06 16:24:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571354286323603',166,'121657135326','6161101606011','1.00','220','retail','0','2022-07-06 22:23:48','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-06 16:24:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571385403315253',167,'121657135446','3086120600051','1.00','80','retail','0','2022-07-06 23:15:41','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-06 17:15:47','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571400014637413',168,'121657138549','6161101605458','1.00','250','retail','0','2022-07-06 23:40:02','','','','182','Cash',34.48,'250','','','12','','1','2022-07-06 17:40:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571401670303223',169,'121657140026','5018907194802','1.00','100','retail','0','2022-07-06 23:42:57','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-06 17:43:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','68.00','67','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571401713310320',170,'121657140026','5018907197803','1.00','60','retail','0','2022-07-06 23:42:57','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-06 17:43:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571401763411253',171,'121657140026','5018907197803','1.00','60','retail','0','2022-07-06 23:42:57','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-06 17:43:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571407950303223',172,'121657140186','6161101602600','2.00','440','retail','0','2022-07-06 23:53:55','','','','154.95','Cash',60.69,'220','','','12','','1','2022-07-06 17:55:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',379.31,'','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571408146313603',173,'121657140186','6161101603379','2.00','500','retail','0','2022-07-06 23:53:55','','','','190.375','Cash',68.97,'250','','','12','','1','2022-07-06 17:55:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571408343310320',174,'121657140186','5449000188342','1.00','90','retail','0','2022-07-06 23:53:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-06 17:55:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571410302033201',175,'121657140905','6001108001436','1.00','1600','retail','0','2022-07-06 23:59:07','','','','1150','Cash',220.69,'1600','','','12','','1','2022-07-06 18:03:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571411290303223',176,'121657140905','6001452371506','2.00','3200','retail','0','2022-07-06 23:59:07','','','','1150','Cash',441.38,'1600','','','12','','1','2022-07-06 18:03:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',2758.62,'','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571431622033213',177,'121657141407','5010232953925','1.00','400','retail','0','2022-07-07 00:32:42','','','','315.787','Cash',55.17,'400','','','12','','1','2022-07-06 18:47:16','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216571440363410253',178,'121657141407','5018907197803','1.00','60','retail','0','2022-07-07 00:32:42','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-06 18:47:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1616571994562033249',179,'161657199453','5000289933292','1.00','950','retail','0','2022-07-07 16:10:57','','','','710','Cash',131.03,'950','','','16','','1','2022-07-07 10:12:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572172023112253',180,'121657217199','5000289933292','1.00','950','retail','0','2022-07-07 21:07:04','','','','710','Cash',131.03,'950','','','12','','1','2022-07-07 15:07:09','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572206786373603',181,'121657218432','6161101603324','1.00','200','retail','0','2022-07-07 22:04:39','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-07 16:05:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572207583217253',182,'121657220718','6161101604703','1.00','200','retail','0','2022-07-07 22:06:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-07 16:06:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572207652637213',183,'121657220718','6161101604703','1.00','200','retail','0','2022-07-07 22:06:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-07 16:06:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572241832637213',184,'121657224084','50196111','1.00','1200','retail','0','2022-07-07 23:03:45','','','','855','Cash',165.52,'1200','','','12','','1','2022-07-07 17:03:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572242140303223',185,'121657224084','5449000131836','1.00','70','retail','0','2022-07-07 23:03:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-07 17:03:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572242253320320',186,'121657224084','5018907194802','1.00','100','retail','0','2022-07-07 23:03:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-07 17:03:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','67.00','66','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572243846383603',187,'121657224239','6161101604406','1.00','250','retail','0','2022-07-07 23:06:24','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-07 17:07:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572263633213253',188,'121657226356','54491069','1.00','70','retail','0','2022-07-07 23:39:26','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-07 17:39:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572263656363603',189,'121657226356','54491069','1.00','70','retail','0','2022-07-07 23:39:26','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-07 17:39:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572291942033219',190,'121657226378','6161101602600','4.00','880','retail','0','2022-07-08 00:41:19','','','','154.95','Cash',121.38,'220','','','12','','1','2022-07-07 18:42:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',758.62,'','25.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572292300033025',191,'121657226378','6161101603379','2.00','500','retail','0','2022-07-08 00:41:19','','','','190.375','Cash',68.97,'250','','','12','','1','2022-07-07 18:42:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572306800332020',192,'121657230665','50196111','1.00','1200','retail','0','2022-07-08 00:51:20','','','','855','Cash',165.52,'1200','','','12','','1','2022-07-07 18:51:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216572307040332020',193,'121657230688','3155930006015','1.00','250','retail','0','2022-07-08 00:51:45','','','','188','Cash',34.48,'250','','','12','','1','2022-07-07 18:52:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573105181637113',194,'121657305716','90162602','1.00','200','retail','0','2022-07-08 23:01:59','','','','147','Cash',27.59,'200','','','12','','1','2022-07-08 17:02:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573120983110253',195,'121657310550','6164001199331','1.00','60','retail','0','2022-07-08 23:29:39','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-08 17:30:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573121610303223',196,'121657310550','3086120600020','1.00','120','retail','0','2022-07-08 23:29:39','','','','93.86','Cash',16.55,'120','','','12','','1','2022-07-08 17:30:56','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573122743112253',197,'121657312257','5010103930628','1.00','1500','retail','0','2022-07-08 23:32:16','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-08 18:10:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573123360332020',198,'121657312257','024000150138','1.00','250','retail','0','2022-07-08 23:32:16','','','','205','Cash',34.48,'250','','','12','','1','2022-07-08 18:10:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573148699033925',199,'121657314845','6161101605458','1.00','250','retail','0','2022-07-09 00:14:32','','','','182','Cash',34.48,'250','','','12','','1','2022-07-08 18:15:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573148726373603',200,'121657314845','6164001199331','1.00','60','retail','0','2022-07-09 00:14:32','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-08 18:15:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573153353330320',201,'121657314956','6161101605458','1.00','250','retail','0','2022-07-09 00:22:16','','','','182','Cash',34.48,'250','','','12','','1','2022-07-08 18:22:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573154620303223',202,'121657315353','6161101603379','4.00','1000','retail','0','2022-07-09 00:24:38','','','','190.375','Cash',137.93,'250','','','12','','1','2022-07-08 18:25:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','30.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573174300303223',203,'121657316483','6161101603379','2.00','500','retail','0','2022-07-09 00:57:47','','','','190.375','Cash',68.97,'250','','','12','','1','2022-07-08 19:02:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573174532033247',204,'121657316483','90162602','1.00','200','retail','0','2022-07-09 00:57:47','','','','147','Cash',27.59,'200','','','12','','1','2022-07-08 19:02:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573174672033247',205,'121657316483','6161101603324','1.00','200','retail','0','2022-07-09 00:57:47','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-08 19:02:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573766240303223',206,'121657369632','6161101605458','1.00','250','retail','0','2022-07-09 17:23:45','','','','182','Cash',34.48,'250','','','12','','1','2022-07-09 11:23:46','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573773047637713',207,'121657376628','90399480','1.00','90','retail','0','2022-07-09 17:35:04','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-09 11:35:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573898811033125',208,'121657383910','082184090442','1.00','4700','retail','0','2022-07-09 21:05:25','','','','3450','Cash',648.28,'4700','','','12','','1','2022-07-09 15:07:10','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4051.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573898938637813',209,'121657383910','5449000139030','2.00','140','retail','0','2022-07-09 21:05:25','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-09 15:07:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',120.69,'','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573899166033625',210,'121657383910','54493360','2.00','140','retail','0','2022-07-09 21:05:25','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-09 15:07:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',120.69,'','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573932011033125',211,'121657390032','5018907194802','1.00','100','retail','0','2022-07-09 22:00:02','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-09 16:00:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','66.00','65','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573952020303223',212,'121657393206','5018907194802','1.00','100','retail','0','2022-07-09 22:33:22','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-09 16:35:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','65.00','64','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216573972893912253',213,'121657397261','5010103930840','1.00','460','retail','0','2022-07-09 23:08:09','','','','335','Cash',63.45,'460','','','12','','1','2022-07-09 17:10:59','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',396.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574002811033125',214,'121657399711','6001496301705','1.00','1000','retail','0','2022-07-10 00:00:49','','','','729','Cash',137.93,'1000','','','12','','1','2022-07-09 18:03:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574002952033220',215,'121657399711','6161101603379','4.00','1000','retail','0','2022-07-10 00:00:49','','','','190.375','Cash',137.93,'250','','','12','','1','2022-07-09 18:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574004497427539',216,'121657399711','6001496301804','1.00','1000','retail','0','2022-07-10 00:00:49','','','','729','Cash',137.93,'1000','','','12','','1','2022-07-09 18:03:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574080540637013',217,'121657408045','5018907197803','1.00','60','retail','0','2022-07-10 02:07:47','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-09 20:07:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574080670303223',218,'121657408045','5449000131836','1.00','70','retail','0','2022-07-10 02:07:47','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-09 20:07:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574622806637613',219,'121657459520','5018907194802','4.00','400','retail','0','2022-07-10 17:12:55','','','','74.58','Cash',55.17,'100','','','12','','1','2022-07-10 11:13:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','64.00','60','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574623200303223',220,'121657459520','90162602','8.00','1600','retail','0','2022-07-10 17:12:55','','','','147','Cash',220.69,'200','','','12','','1','2022-07-10 11:13:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'','15.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574623743613253',221,'121657459520','3245990987611','1.00','17500','retail','0','2022-07-10 17:12:55','','','','13000','Cash',2413.79,'17500','','','12','','1','2022-07-10 11:13:47','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',15086.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574638982033283',222,'121657462428','3086120600051','1.00','80','retail','0','2022-07-10 17:38:19','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-10 11:38:27','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574700690303223',223,'121657470051','6161101601979','1.00','250','retail','0','2022-07-10 19:21:10','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-10 13:21:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574723836383603',224,'121657470075','6161101601979','1.00','250','retail','0','2022-07-10 19:59:44','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-10 14:00:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574727499033925',225,'121657472453','6001108049582','1.00','1000','retail','0','2022-07-10 20:06:36','','','','641','Cash',137.93,'1000','','','12','','1','2022-07-10 14:07:39','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574727953717253',226,'121657472453','5000289020701','1.00','2000','retail','0','2022-07-10 20:06:36','','','','1540','Cash',275.86,'2000','','','12','','1','2022-07-10 14:07:39','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574730760332020',227,'121657472860','5010103930628','1.00','1500','retail','0','2022-07-10 20:11:22','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-10 14:12:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574730822033225',228,'121657472860','6161101604703','1.00','200','retail','0','2022-07-10 20:11:22','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-10 14:12:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574732550332020',229,'121657473129','6161101606011','2.00','440','retail','0','2022-07-10 20:14:46','','','','172.833','Cash',60.69,'220','','','12','','1','2022-07-10 14:15:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',379.31,'','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574732780303223',230,'121657473129','6161101603324','2.00','400','retail','0','2022-07-10 20:14:46','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-10 14:15:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574733852033233',231,'121657473327','6161101604703','2.00','400','retail','0','2022-07-10 20:21:25','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-10 14:24:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','43.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574734456343603',232,'121657473327','6161101603379','2.00','500','retail','0','2022-07-10 20:21:25','','','','190.375','Cash',68.97,'250','','','12','','1','2022-07-10 14:24:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574734692033243',233,'121657473327','6161101604703','2.00','400','retail','0','2022-07-10 20:21:25','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-10 14:24:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','41.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574734977033725',234,'121657473327','6161101602372','2.00','500','retail','0','2022-07-10 20:21:25','','','','189.75','Cash',68.97,'250','','','12','','1','2022-07-10 14:24:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','41.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574735212033253',235,'121657473327','6161101602372','3.00','750','retail','0','2022-07-10 20:21:25','','','','189.75','Cash',103.45,'250','','','12','','1','2022-07-10 14:24:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','39.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574735455033525',236,'121657473327','6161101604703','4.00','800','retail','0','2022-07-10 20:21:25','','','','150.45','Cash',110.34,'200','','','12','','1','2022-07-10 14:24:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'','39.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574735853340320',237,'121657473327','6161101603379','1.00','250','retail','0','2022-07-10 20:21:25','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-10 14:24:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574736343340320',238,'121657473327','90162602','2.00','400','retail','0','2022-07-10 20:21:25','','','','147','Cash',55.17,'200','','','12','','1','2022-07-10 14:24:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574736707637713',239,'121657473327','6161101604703','1.00','200','retail','0','2022-07-10 20:21:25','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-10 14:24:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574736853716253',240,'121657473327','6008165007784','1.00','370','retail','0','2022-07-10 20:21:25','','','','327.04','Cash',51.03,'370','','','12','','1','2022-07-10 14:24:44','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574788777033725',241,'121657474366','6161101602921','12.00','3000','retail','0','2022-07-10 21:48:08','','','','198.45','Cash',413.79,'250','','','12','','1','2022-07-10 15:49:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',2586.21,'','78.00','66','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216574890273810253',242,'121657489015','6161101605458','1.00','250','retail','0','2022-07-11 00:37:07','','','','182','Cash',34.48,'250','','','12','','1','2022-07-10 18:37:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575447912033274',243,'121657543036','6161101603379','1.00','250','retail','0','2022-07-11 16:06:32','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-11 10:08:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575462580332020',244,'121657544908','6161100420083','1.00','800','retail','0','2022-07-11 16:30:59','','','','586','Cash',110.34,'800','','','12','','1','2022-07-11 10:31:39','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575501755033525',245,'121657546300','6161101604703','1.00','200','retail','0','2022-07-11 17:36:23','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-11 11:36:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575501823511253',246,'121657546300','6161101603324','1.00','200','retail','0','2022-07-11 17:36:23','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-11 11:36:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575519600332020',247,'121657550217','90399480','1.00','90','retail','0','2022-07-11 18:06:01','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-11 12:08:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575534852033243',248,'121657552090','6161101602938','1.00','250','retail','0','2022-07-11 18:33:31','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-11 12:40:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','83.00','82','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575535676363603',249,'121657552090','6161101601979','1.00','250','retail','0','2022-07-11 18:33:31','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-11 12:40:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575536113516253',250,'121657552090','6161101604406','1.00','250','retail','0','2022-07-11 18:33:31','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-11 12:40:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575577603350320',251,'121657554031','5011007003029','1.00','2700','retail','0','2022-07-11 19:42:41','','','','2000','Cash',372.41,'2700','','','12','','1','2022-07-11 13:44:24','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575640133033325',252,'121657557866','6161101603515','1.00','250','retail','0','2022-07-11 21:26:53','','','','182','Cash',34.48,'250','','','12','','1','2022-07-11 15:28:45','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575650230303223',253,'121657564449','90399480','1.00','90','retail','0','2022-07-11 21:43:44','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-11 15:45:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575667253350320',254,'121657565104','8712000900045','1.00','250','retail','0','2022-07-11 22:12:24','','','','182','Cash',34.48,'250','','','12','','1','2022-07-11 16:13:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575667320332020',255,'121657565104','6161101602372','1.00','250','retail','0','2022-07-11 22:12:24','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-11 16:13:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575667436637613',256,'121657565104','8712000900045','1.00','250','retail','0','2022-07-11 22:12:24','','','','182','Cash',34.48,'250','','','12','','1','2022-07-11 16:13:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575682763612253',257,'121657568253','5000267112077','1.00','6000','retail','0','2022-07-11 22:37:56','','','','4520','Cash',827.59,'6000','','','12','','1','2022-07-11 16:38:47','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575716317637713',258,'121657570346','5010103930628','1.00','1500','retail','0','2022-07-11 23:33:51','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-11 17:37:38','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575730190332020',259,'121657571859','40822938','1.00','70','retail','0','2022-07-11 23:58:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-11 18:00:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575730270332020',260,'121657571859','40822938','1.00','70','retail','0','2022-07-11 23:58:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-11 18:00:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575731166313603',261,'121657571859','8719327068540','1.00','300','retail','0','2022-07-11 23:58:45','','','','225','Cash',41.38,'300','','','12','','1','2022-07-11 18:00:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575731242622270',262,'121657571859','8719327068540','1.00','300','retail','0','2022-07-11 23:58:45','','','','225','Cash',41.38,'300','','','12','','1','2022-07-11 18:00:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575757880303223',263,'121657573213','6161101602372','1.00','250','retail','0','2022-07-12 00:44:16','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-11 18:46:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575757910332020',264,'121657573213','6161101602372','1.00','250','retail','0','2022-07-12 00:44:16','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-11 18:46:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575757947322532',265,'121657573213','6161101602372','1.00','250','retail','0','2022-07-12 00:44:16','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-11 18:46:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216575758550332020',266,'121657573213','6161101602372','1.00','250','retail','0','2022-07-12 00:44:16','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-11 18:46:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576229744033425',267,'121657622964','40822938','1.00','70','retail','0','2022-07-12 13:49:34','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 07:53:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576268930332020',268,'121657623193','5018907197803','1.00','60','retail','0','2022-07-12 14:54:54','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-12 08:56:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576342723360320',269,'121657634268','90399480','1.00','90','retail','0','2022-07-12 16:57:53','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-12 10:58:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576495183415253',270,'121657649505','5018907194802','4.00','400','retail','0','2022-07-12 21:13:42','','','','74.58','Cash',55.17,'100','','','12','','1','2022-07-12 15:17:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','60.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576495470332020',271,'121657649505','6164001199331','2.00','120','retail','0','2022-07-12 21:13:42','','','','37.08','Cash',16.55,'60','','','12','','1','2022-07-12 15:17:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576495899033925',272,'121657649505','6161101605465','1.00','700','retail','0','2022-07-12 21:13:42','','','','501','Cash',96.55,'700','','','12','','1','2022-07-12 15:17:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576501373511253',273,'121657649850','6161101604703','1.00','200','retail','0','2022-07-12 21:22:26','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-12 15:27:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576501465035123',274,'121657649850','6161101601979','1.00','250','retail','0','2022-07-12 21:22:26','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-12 15:27:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576524316333603',275,'121657650455','6161101604703','1.00','200','retail','0','2022-07-12 22:00:32','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-12 16:24:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576548130332020',276,'121657653849','6161101601979','4.00','1000','retail','0','2022-07-12 22:42:06','','','','172.75','Cash',137.93,'250','','','12','','1','2022-07-12 16:43:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','36.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576548353360320',277,'121657653849','6161101602167','1.00','500','retail','0','2022-07-12 22:42:06','','','','388','Cash',68.97,'500','','','12','','1','2022-07-12 16:43:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576548512200222',278,'121657653849','5060608740253','1.00','70','retail','0','2022-07-12 22:42:06','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-12 16:43:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576548920383332',279,'121657653849','3086120600051','1.00','80','retail','0','2022-07-12 22:42:06','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-12 16:43:49','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576549185637513',280,'121657653849','6008165007814','1.00','350','retail','0','2022-07-12 22:42:06','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-12 16:43:49','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576553010303223',281,'121657655030','5060608740253','1.00','70','retail','0','2022-07-12 22:48:22','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-12 16:48:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576562826383603',282,'121657656218','5449000131836','1.00','70','retail','0','2022-07-12 23:04:42','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 17:06:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576588692033288',283,'121657656373','6161101603515','1.00','250','retail','0','2022-07-12 23:47:49','','','','182','Cash',34.48,'250','','','12','','1','2022-07-12 17:49:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576600133360320',284,'121657658981','5449000139030','1.00','70','retail','0','2022-07-13 00:07:08','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 18:07:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576600170332020',285,'121657658981','5449000139030','1.00','70','retail','0','2022-07-13 00:07:08','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 18:07:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576600270332020',286,'121657658981','5449000139030','1.00','70','retail','0','2022-07-13 00:07:08','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 18:07:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603406343603',287,'121657660043','024000150053','1.00','250','retail','0','2022-07-13 00:13:44','','','','205','Cash',34.48,'250','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603503613253',288,'121657660043','087000006928','1.00','1800','retail','0','2022-07-13 00:13:44','','','','1320','Cash',248.28,'1800','','','12','','1','2022-07-12 18:15:24','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603643613253',289,'121657660043','54493360','1.00','70','retail','0','2022-07-13 00:13:44','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603756637613',290,'121657660043','54493360','1.00','70','retail','0','2022-07-13 00:13:44','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603844033425',291,'121657660043','50112265','1.00','70','retail','0','2022-07-13 00:13:44','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603882033230',292,'121657660043','50112265','1.00','70','retail','0','2022-07-13 00:13:44','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576603956393603',293,'121657660043','5018907194802','1.00','100','retail','0','2022-07-13 00:13:44','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216576604236323603',294,'121657660043','5449000188342','1.00','90','retail','0','2022-07-13 00:13:44','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-12 18:15:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577089752929333',295,'121657708281','90399480','1.00','90','retail','0','2022-07-13 13:42:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-13 07:43:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577214792637213',296,'121657720960','6161101604703','1.00','200','retail','0','2022-07-13 17:11:19','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-13 11:11:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577256822033225',297,'121657725667','90399480','1.00','90','retail','0','2022-07-13 18:21:23','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-13 12:21:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577271636363603',298,'121657727144','6164001199331','1.00','60','retail','0','2022-07-13 18:46:04','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-13 12:48:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577280373102223',299,'121657727296','6161101606011','1.00','220','retail','0','2022-07-13 19:00:38','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-13 13:00:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577288886383603',300,'121657728873','6161101604703','1.00','200','retail','0','2022-07-13 19:14:48','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-13 13:15:01','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577315033315253',301,'121657728902','6161101606011','1.00','220','retail','0','2022-07-13 19:58:45','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-13 14:01:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577315246323603',302,'121657728902','6161101604703','1.00','200','retail','0','2022-07-13 19:58:45','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-13 14:01:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577324220332020',303,'121657731765','6161101605458','1.00','250','retail','0','2022-07-13 20:13:42','','','','182','Cash',34.48,'250','','','12','','1','2022-07-13 14:15:14','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577336713370320',304,'121657732515','6161101604703','1.00','200','retail','0','2022-07-13 20:34:32','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-13 14:35:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577364980303223',305,'121657733707','6161101602372','1.00','250','retail','0','2022-07-13 21:21:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-13 15:22:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577365013315253',306,'121657733707','6161101602372','1.00','250','retail','0','2022-07-13 21:21:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-13 15:22:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577377873637313',307,'121657736571','6161101601979','1.00','250','retail','0','2022-07-13 21:43:08','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-13 15:43:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577393133313253',308,'121657737826','6001495201501','1.00','1000','retail','0','2022-07-13 22:11:02','','','','628','Cash',137.93,'1000','','','12','','1','2022-07-13 16:12:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577393250303223',309,'121657737826','5010103930666','1.00','750','retail','0','2022-07-13 22:11:02','','','','542','Cash',103.45,'750','','','12','','1','2022-07-13 16:12:05','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577394623370320',310,'121657737826','6001495201501','1.00','1000','retail','0','2022-07-13 22:11:02','','','','628','Cash',137.93,'1000','','','12','','1','2022-07-13 16:12:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577403917120327',311,'121657739526','5011013100132','1.00','2600','retail','0','2022-07-13 22:26:32','','','','1916','Cash',358.62,'2600','','','12','','1','2022-07-13 16:27:39','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577405232033250',312,'121657740461','5060608740253','1.00','70','retail','0','2022-07-13 22:29:05','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-13 16:29:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577405450323070',313,'121657740461','6161101604703','1.00','200','retail','0','2022-07-13 22:29:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-13 16:29:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577432800332020',314,'121657740587','4058387001451','1.00','1400','retail','0','2022-07-13 23:14:54','','','','1050','Cash',193.10,'1400','','','12','','1','2022-07-13 17:15:19','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577432933412253',315,'121657740587','54493360','1.00','70','retail','0','2022-07-13 23:14:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-13 17:15:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448072033284',316,'121657744232','5000267024011','1.00','3300','retail','0','2022-07-13 23:40:45','','','','2433','Cash',455.17,'3300','','','12','','1','2022-07-13 17:41:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448163418253',317,'121657744232','5018907194802','1.00','100','retail','0','2022-07-13 23:40:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-13 17:41:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448222033225',318,'121657744232','50112265','1.00','70','retail','0','2022-07-13 23:40:45','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-13 17:41:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448273370320',319,'121657744232','50112265','1.00','70','retail','0','2022-07-13 23:40:45','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-13 17:41:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448333033325',320,'121657744232','90162602','1.00','200','retail','0','2022-07-13 23:40:45','','','','147','Cash',27.59,'200','','','12','','1','2022-07-13 17:41:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577448453418253',321,'121657744232','6161101602938','1.00','250','retail','0','2022-07-13 23:40:45','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-13 17:41:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','82.00','81','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577493543413253',322,'121657744898','6161101602181','1.00','550','retail','0','2022-07-14 00:55:55','','','','388','Cash',75.86,'550','','','12','','1','2022-07-13 18:57:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216577953177033725',323,'121657795312','5018907197803','1.00','60','retail','0','2022-07-14 13:41:58','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-14 07:44:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578129832033292',324,'121657812924','6161101605458','1.00','250','retail','0','2022-07-14 18:36:29','','','','182','Cash',34.48,'250','','','12','','1','2022-07-14 12:37:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578129886383603',325,'121657812924','54491069','1.00','70','retail','0','2022-07-14 18:36:29','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 12:37:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578141931637113',326,'121657813033','6161101604406','1.00','250','retail','0','2022-07-14 18:56:34','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-14 12:57:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578146333033325',327,'121657814236','5018907197803','1.00','60','retail','0','2022-07-14 19:03:53','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-14 13:04:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578164288033825',328,'121657814690','6161101601979','8.00','2000','retail','0','2022-07-14 19:34:41','','','','172.75','Cash',275.86,'250','','','12','','1','2022-07-14 13:34:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'','31.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578203870332020',329,'121657820380','6161101600934','1.00','1500','retail','0','2022-07-14 20:40:11','','','','1144','Cash',206.90,'1500','','','12','','1','2022-07-14 14:42:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578204112033240',330,'121657820380','54493360','1.00','70','retail','0','2022-07-14 20:40:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 14:42:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578260111033125',331,'121657822768','6164001199331','1.00','60','retail','0','2022-07-14 22:16:34','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-14 16:17:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578260263210253',332,'121657822768','5060608740253','1.00','70','retail','0','2022-07-14 22:16:34','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-14 16:17:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578260432637213',333,'121657822768','54493360','2.00','140','retail','0','2022-07-14 22:16:34','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-14 16:17:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',120.69,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578261066033625',334,'121657822768','5010103800167','1.00','1000','retail','0','2022-07-14 22:16:34','','','','719','Cash',137.93,'1000','','','12','','1','2022-07-14 16:17:00','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578261942331237',335,'121657822768','5018907197803','1.00','60','retail','0','2022-07-14 22:16:34','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-14 16:17:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578292488033825',336,'121657826221','5449000139030','1.00','70','retail','0','2022-07-14 23:09:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 17:10:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578292520332020',337,'121657826221','50112265','1.00','70','retail','0','2022-07-14 23:09:11','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-14 17:10:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578292583380320',338,'121657826221','5000291021925','1.00','4500','retail','0','2022-07-14 23:09:11','','','','3381','Cash',620.69,'4500','','','12','','1','2022-07-14 17:10:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578292621222222',339,'121657826221','5449000139030','1.00','70','retail','0','2022-07-14 23:09:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 17:10:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578292686363603',340,'121657826221','5449000139030','1.00','70','retail','0','2022-07-14 23:09:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 17:10:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578293383213253',341,'121657826221','5010232953994','1.00','350','retail','0','2022-07-14 23:09:11','','','','263.157','Cash',48.28,'350','','','12','','1','2022-07-14 17:10:29','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578293410332020',342,'121657826221','5010232965096','1.00','350','retail','0','2022-07-14 23:09:11','','','','263.157','Cash',48.28,'350','','','12','','1','2022-07-14 17:10:29','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578293502033239',343,'121657826221','5449000131836','1.00','70','retail','0','2022-07-14 23:09:11','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-14 17:10:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578301833311253',344,'121657829430','6161101605458','1.00','250','retail','0','2022-07-14 23:25:34','','','','182','Cash',34.48,'250','','','12','','1','2022-07-14 17:25:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578301886383603',345,'121657829430','6161101605458','1.00','250','retail','0','2022-07-14 23:25:34','','','','182','Cash',34.48,'250','','','12','','1','2022-07-14 17:25:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578873090303223',346,'121657887302','6161101602372','1.00','250','retail','0','2022-07-15 15:15:09','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-15 09:16:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578980766373603',347,'121657898064','6161101601979','3.00','750','retail','0','2022-07-15 18:15:09','','','','172.75','Cash',103.45,'250','','','12','','1','2022-07-15 12:15:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','23.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578980966393603',348,'121657898064','6161101602372','1.00','250','retail','0','2022-07-15 18:15:09','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-15 12:15:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578981089637913',349,'121657898064','6161101604703','1.00','200','retail','0','2022-07-15 18:15:09','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-15 12:15:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216578988302033288',350,'121657898145','5099873089712','1.00','2300','retail','0','2022-07-15 18:27:11','','','','1650','Cash',317.24,'2300','','','12','','1','2022-07-15 12:28:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579038392033283',351,'121657903808','90162602','1.00','200','retail','0','2022-07-15 19:50:40','','','','147','Cash',27.59,'200','','','12','','1','2022-07-15 13:50:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579076710332020',352,'121657903850','6161101602167','1.00','500','retail','0','2022-07-15 20:55:30','','','','388','Cash',68.97,'500','','','12','','1','2022-07-15 14:59:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579076813016253',353,'121657903850','5018907197803','1.00','60','retail','0','2022-07-15 20:55:30','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-15 14:59:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579076920303223',354,'121657903850','8719327068540','1.00','300','retail','0','2022-07-15 20:55:30','','','','225','Cash',41.38,'300','','','12','','1','2022-07-15 14:59:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579077199033925',355,'121657903850','6161101604703','4.00','800','retail','0','2022-07-15 20:55:30','','','','150.45','Cash',110.34,'200','','','12','','1','2022-07-15 14:59:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'','25.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579139863390320',356,'121657907975','54491069','1.00','70','retail','0','2022-07-15 22:41:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-15 16:44:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579139932033293',357,'121657907975','5449000139030','1.00','70','retail','0','2022-07-15 22:41:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-15 16:44:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579139977033725',358,'121657907975','5449000139030','1.00','70','retail','0','2022-07-15 22:41:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-15 16:44:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579140336333603',359,'121657907975','6008165007814','1.00','350','retail','0','2022-07-15 22:41:57','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-15 16:44:41','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579140520332020',360,'121657907975','6161101600934','1.00','1500','retail','0','2022-07-15 22:41:57','','','','1144','Cash',206.90,'1500','','','12','','1','2022-07-15 16:44:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579164370303223',361,'121657914519','5018907197803','1.00','60','retail','0','2022-07-15 23:20:37','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-15 17:23:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579179850303223',362,'121657916622','6001496011796','2.00','3000','retail','0','2022-07-15 23:48:51','','','','1072','Cash',413.79,'1500','','','12','','1','2022-07-15 17:53:49','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',2586.21,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579180492033208',363,'121657916622','5010103930963','1.00','1500','retail','0','2022-07-15 23:48:51','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-15 17:53:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579180563390320',364,'121657916622','5010103930963','1.00','1500','retail','0','2022-07-15 23:48:51','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-15 17:53:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579180633110253',365,'121657916622','5000292001001','1.00','1600','retail','0','2022-07-15 23:48:51','','','','1141','Cash',220.69,'1600','','','12','','1','2022-07-15 17:53:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579180693110253',366,'121657916622','5000292001001','1.00','1600','retail','0','2022-07-15 23:48:51','','','','1141','Cash',220.69,'1600','','','12','','1','2022-07-15 17:53:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579181302281333',367,'121657916622','8712000900045','8.00','2000','retail','0','2022-07-15 23:48:51','','','','182','Cash',275.86,'250','','','12','','1','2022-07-15 17:53:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'8','41.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579201250332020',368,'121657918430','6161101603324','6.00','1200','retail','0','2022-07-16 00:22:20','','','','150.45','Cash',165.52,'200','','','12','','1','2022-07-15 18:24:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'','21.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579202583212253',369,'121657920250','6161101603324','1.00','200','retail','0','2022-07-16 00:24:34','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-15 18:27:19','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579202621222732',370,'121657920250','6161101603324','1.00','200','retail','0','2022-07-16 00:24:34','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-15 18:27:19','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579202696363603',371,'121657920250','6161101606011','1.00','220','retail','0','2022-07-16 00:24:34','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-15 18:27:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579202743212253',372,'121657920250','6161101606011','1.00','220','retail','0','2022-07-16 00:24:34','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-15 18:27:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579205272033250',373,'121657920440','5011013100194','1.00','1350','retail','0','2022-07-16 00:28:53','','','','999','Cash',186.21,'1350','','','12','','1','2022-07-15 18:30:21','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579205323215253',374,'121657920440','6008165007814','1.00','350','retail','0','2022-07-16 00:28:53','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-15 18:30:21','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579209223219253',375,'121657920622','6164001199331','1.00','60','retail','0','2022-07-16 00:35:22','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-15 18:36:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579725647637713',376,'121657972543','6164001199331','1.00','60','retail','0','2022-07-16 14:56:05','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-16 08:56:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579777727637713',377,'121657972591','6161101602167','1.00','500','retail','0','2022-07-16 16:22:53','','','','388','Cash',68.97,'500','','','12','','1','2022-07-16 10:24:10','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579796482033269',378,'121657978423','90162602','1.00','200','retail','0','2022-07-16 16:54:08','','','','147','Cash',27.59,'200','','','12','','1','2022-07-16 10:54:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579811500033025',379,'121657979696','5018907194802','1.00','100','retail','0','2022-07-16 17:26:36','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-16 11:34:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','54.00','53','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579815912033251',380,'121657979696','4058387001451','1.00','1400','retail','0','2022-07-16 17:26:36','','','','1050','Cash',193.10,'1400','','','12','','1','2022-07-16 11:34:20','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579815956393603',381,'121657979696','4058387001451','1.00','1400','retail','0','2022-07-16 17:26:36','','','','1050','Cash',193.10,'1400','','','12','','1','2022-07-16 11:34:20','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579849643390320',382,'121657982062','90162602','1.00','200','retail','0','2022-07-16 18:22:52','','','','147','Cash',27.59,'200','','','12','','1','2022-07-16 12:32:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579849710303223',383,'121657982062','90162602','1.00','200','retail','0','2022-07-16 18:22:52','','','','147','Cash',27.59,'200','','','12','','1','2022-07-16 12:32:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579913116313603',384,'121657985547','6161101602167','1.00','500','retail','0','2022-07-16 20:08:31','','','','388','Cash',68.97,'500','','','12','','1','2022-07-16 14:08:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579957376333603',385,'121657991328','6161101601979','1.00','250','retail','0','2022-07-16 21:22:18','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-16 15:22:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579989709637913',386,'121657996149','6161101605199','1.00','250','retail','0','2022-07-16 22:16:13','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-16 16:17:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216579989733033325',387,'121657996149','6161101605199','1.00','250','retail','0','2022-07-16 22:16:13','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-16 16:17:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580002663300320',388,'121658000198','6161101603515','1.00','250','retail','0','2022-07-16 22:37:55','','','','182','Cash',34.48,'250','','','12','','1','2022-07-16 16:39:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580002742033220',389,'121658000198','5449000131836','1.00','70','retail','0','2022-07-16 22:37:55','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-16 16:39:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580004620638013',390,'121658000360','6161101600941','1.00','750','retail','0','2022-07-16 22:43:16','','','','544','Cash',103.45,'750','','','12','','1','2022-07-16 16:43:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580004730332020',391,'121658000360','8719327068540','1.00','300','retail','0','2022-07-16 22:43:16','','','','225','Cash',41.38,'300','','','12','','1','2022-07-16 16:43:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580005144033425',392,'121658000360','6161101604703','2.00','400','retail','0','2022-07-16 22:43:16','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-16 16:43:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580005690303223',393,'121658000360','6161101602938','2.00','500','retail','0','2022-07-16 22:43:16','','','','198.45','Cash',68.97,'250','','','12','','1','2022-07-16 16:43:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','81.00','79','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580005953015253',394,'121658000360','5449000188342','1.00','90','retail','0','2022-07-16 22:43:16','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-16 16:43:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580008996393603',395,'121658000628','6161101602600','3.00','660','retail','0','2022-07-16 22:48:41','','','','154.95','Cash',91.03,'220','','','12','','1','2022-07-16 16:49:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580009210638013',396,'121658000628','6161101603379','2.00','500','retail','0','2022-07-16 22:48:41','','','','190.375','Cash',68.97,'250','','','12','','1','2022-07-16 16:49:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580010422033201',397,'121658000941','6161101605458','1.00','250','retail','0','2022-07-16 22:50:42','','','','182','Cash',34.48,'250','','','12','','1','2022-07-16 16:50:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580090703320000',398,'121658008374','6161101604703','6.00','1200','retail','0','2022-07-17 01:04:30','','','','150.45','Cash',165.52,'200','','','12','','1','2022-07-16 19:05:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580690430303223',399,'121658069037','6161101603522','1.00','700','retail','0','2022-07-17 17:47:16','','','','501','Cash',96.55,'700','','','12','','1','2022-07-17 11:47:37','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580690836638613',400,'121658069037','6164001199331','1.00','60','retail','0','2022-07-17 17:47:16','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-17 11:47:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580690878028537',401,'121658069037','6164001199331','1.00','60','retail','0','2022-07-17 17:47:16','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-17 11:47:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580691180303223',402,'121658069037','5018907194802','1.00','100','retail','0','2022-07-17 17:47:16','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-17 11:47:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','53.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580692362033229',403,'121658069037','5449000188342','1.00','90','retail','0','2022-07-17 17:47:16','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-17 11:47:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580836080332020',404,'121658083603','5060608740253','1.00','70','retail','0','2022-07-17 21:46:48','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-17 16:15:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580861382033216',405,'121658085327','8719327068540','1.00','300','retail','0','2022-07-17 22:37:41','','','','225','Cash',41.38,'300','','','12','','1','2022-07-17 16:37:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580861483300320',406,'121658085327','8719327068540','1.00','300','retail','0','2022-07-17 22:37:41','','','','225','Cash',41.38,'300','','','12','','1','2022-07-17 16:37:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580867650303223',407,'121658086664','8712000900045','1.00','250','retail','0','2022-07-17 22:39:26','','','','182','Cash',34.48,'250','','','12','','1','2022-07-17 16:40:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216580871683811253',408,'121658086845','4058387003585','1.00','1500','retail','0','2022-07-17 22:46:09','','','','1150','Cash',206.90,'1500','','','12','','1','2022-07-17 16:46:52','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581417810332020',409,'121658141778','6008165007814','1.00','350','retail','0','2022-07-18 13:56:21','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-18 08:01:43','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581423883413253',410,'121658142104','6161101604543','1.00','1100','retail','0','2022-07-18 14:06:29','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-18 08:07:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581540892033204',411,'121658153998','5060608740253','1.00','70','retail','0','2022-07-18 17:21:29','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-18 11:21:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581613176638613',412,'121658158352','6161101601979','1.00','250','retail','0','2022-07-18 19:21:57','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-18 13:22:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581620042033202',413,'121658161368','90399480','1.00','90','retail','0','2022-07-18 19:33:25','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-18 14:14:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581644650303223',414,'121658164460','6161101603324','1.00','200','retail','0','2022-07-18 20:17:02','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-18 14:17:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581644690332020',415,'121658164460','6161101606011','1.00','220','retail','0','2022-07-18 20:17:02','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-18 14:17:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581644742033244',416,'121658164460','6161101606011','1.00','220','retail','0','2022-07-18 20:17:02','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-18 14:17:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581644776373603',417,'121658164460','6161101603324','1.00','200','retail','0','2022-07-18 20:17:02','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-18 14:17:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581737163717253',418,'121658173709','5000289929417','1.00','2000','retail','0','2022-07-18 22:51:03','','','','1540','Cash',275.86,'2000','','','12','','1','2022-07-18 16:51:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581737543310320',419,'121658173709','6164001199331','1.00','60','retail','0','2022-07-18 22:51:03','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-18 16:51:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581738536353603',420,'121658173709','8712000900045','4.00','1000','retail','0','2022-07-18 22:51:03','','','','182','Cash',137.93,'250','','','12','','1','2022-07-18 16:51:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','32.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216581738620303223',421,'121658173709','5449000188342','1.00','90','retail','0','2022-07-18 22:51:03','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-18 16:51:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582196506353603',422,'121658219636','90399480','1.00','90','retail','0','2022-07-19 11:34:11','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-19 05:36:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582377202033277',423,'121658237699','6161101603515','1.00','250','retail','0','2022-07-19 16:35:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-19 10:37:10','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582497000033025',424,'121658249698','6161101130424','1.00','750','retail','0','2022-07-19 19:55:04','','','','642','Cash',103.45,'750','','','12','','1','2022-07-19 13:56:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582497043112332',425,'121658249698','5010103930628','1.00','1500','retail','0','2022-07-19 19:55:04','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-19 13:56:44','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582498533418253',426,'121658249846','6161100421363','1.00','400','retail','0','2022-07-19 19:57:34','','','','251','Cash',55.17,'400','','','12','','1','2022-07-19 13:58:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582523232262832',427,'121658249926','6161101601979','1.00','250','retail','0','2022-07-19 20:38:44','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-19 14:39:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582566573516253',428,'121658256593','5060608740253','1.00','70','retail','0','2022-07-19 21:50:58','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-19 15:51:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582583793513253',429,'121658256702','5018907194802','1.00','100','retail','0','2022-07-19 22:19:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-19 16:20:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','52.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582602196313603',430,'121658258409','6161101605458','1.00','250','retail','0','2022-07-19 22:50:25','','','','182','Cash',34.48,'250','','','12','','1','2022-07-19 16:50:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582629630303223',431,'121658260259','6161101602372','1.00','250','retail','0','2022-07-19 23:41:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-19 17:43:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216582632883612253',432,'121658260259','6161101602372','1.00','250','retail','0','2022-07-19 23:41:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-19 17:43:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583285990332020',433,'121658328591','5060608740253','1.00','70','retail','0','2022-07-20 17:49:59','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-20 11:51:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583378802033287',434,'121658336980','5010103930628','1.00','1500','retail','0','2022-07-20 20:24:57','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-20 14:27:38','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583424840303223',435,'121658338059','6161101603515','1.00','250','retail','0','2022-07-20 21:41:24','','','','182','Cash',34.48,'250','','','12','','1','2022-07-20 15:42:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583435060332020',436,'121658342543','6001108049582','1.00','1000','retail','0','2022-07-20 21:58:26','','','','641','Cash',137.93,'1000','','','12','','1','2022-07-20 15:59:35','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583436260303223',437,'121658343577','6161101601979','1.00','250','retail','0','2022-07-20 22:00:26','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-20 16:00:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583436733330320',438,'121658343638','6161101603379','1.00','250','retail','0','2022-07-20 22:01:53','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-20 16:02:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583436760303223',439,'121658343638','6161101603379','1.00','250','retail','0','2022-07-20 22:01:53','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-20 16:02:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583436799033925',440,'121658343638','6161101603379','1.00','250','retail','0','2022-07-20 22:01:53','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-20 16:02:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583436833320040',441,'121658343638','6161101603379','1.00','250','retail','0','2022-07-20 22:01:53','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-20 16:02:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583437124638413',442,'121658343638','6008165007982','1.00','350','retail','0','2022-07-20 22:01:53','','','','308.53','Cash',48.28,'350','','','12','','1','2022-07-20 16:02:50','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583446193102223',443,'121658343772','6008165007814','1.00','350','retail','0','2022-07-20 22:17:00','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-20 16:18:03','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583455990332020',444,'121658344684','6161101602372','1.00','250','retail','0','2022-07-20 22:33:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-20 16:34:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583456056303603',445,'121658344684','6161101602372','1.00','250','retail','0','2022-07-20 22:33:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-20 16:34:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583456088033825',446,'121658344684','5018907194802','1.00','100','retail','0','2022-07-20 22:33:28','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-20 16:34:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583470024638413',447,'121658345649','024000150121','1.00','250','retail','0','2022-07-20 22:56:43','','','','205','Cash',34.48,'250','','','12','','1','2022-07-20 16:59:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583481256323603',448,'121658347190','5011013100194','1.00','1350','retail','0','2022-07-20 23:16:12','','','','999','Cash',186.21,'1350','','','12','','1','2022-07-20 17:16:56','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583481712033218',449,'121658347190','6008165007814','1.00','350','retail','0','2022-07-20 23:16:12','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-20 17:16:56','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583485493415253',450,'121658348412','50196111','1.00','1200','retail','0','2022-07-20 23:22:54','','','','855','Cash',165.52,'1200','','','12','','1','2022-07-20 17:22:57','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216583485736373603',451,'121658348412','54491069','1.00','70','retail','0','2022-07-20 23:22:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-20 17:22:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584033386333603',452,'121658403330','6161101602167','1.00','500','retail','0','2022-07-21 14:35:38','','','','388','Cash',68.97,'500','','','12','','1','2022-07-21 08:36:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584052623012253',453,'121658403383','8712000900663','1.00','230','retail','0','2022-07-21 15:07:43','','','','174','Cash',31.72,'230','','','12','','1','2022-07-21 09:09:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584141712033214',454,'121658414168','5000267024011','1.00','3300','retail','0','2022-07-21 17:36:12','','','','2433','Cash',455.17,'3300','','','12','','1','2022-07-21 11:38:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584186432033268',455,'121658414168','5010103930628','1.00','1500','retail','0','2022-07-21 18:50:44','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-21 12:51:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584199980303223',456,'121658419694','5000267112077','1.00','6000','retail','0','2022-07-21 19:14:07','','','','4520','Cash',827.59,'6000','','','12','','1','2022-07-21 13:15:54','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584200076303603',457,'121658419694','5449000131836','1.00','70','retail','0','2022-07-21 19:14:07','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-21 13:15:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584200466033625',458,'121658419694','5449000131836','1.00','70','retail','0','2022-07-21 19:14:07','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-21 13:15:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584212420320242',459,'121658419694','6161101605199','1.00','250','retail','0','2022-07-21 19:34:09','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-21 13:36:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584212443340320',460,'121658419694','6161101605199','1.00','250','retail','0','2022-07-21 19:34:09','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-21 13:36:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584212460332020',461,'121658419694','6161101605199','1.00','250','retail','0','2022-07-21 19:34:09','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-21 13:36:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584212482033221',462,'121658419694','6161101605199','1.00','250','retail','0','2022-07-21 19:34:09','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-21 13:36:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584253742638213',463,'121658421402','6161101601979','1.00','250','retail','0','2022-07-21 20:42:55','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-21 14:43:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584806833033325',464,'121658480654','6161101605458','1.00','250','retail','0','2022-07-22 12:04:44','','','','182','Cash',34.48,'250','','','12','','1','2022-07-22 06:05:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584915393915253',465,'121658488527','5060608740253','1.00','70','retail','0','2022-07-22 15:05:40','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-22 09:06:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216584969823340320',466,'121658494707','5018907197803','1.00','60','retail','0','2022-07-22 16:36:22','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-22 10:37:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585000556353603',467,'121658497047','6161101604703','1.00','200','retail','0','2022-07-22 17:27:36','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-22 11:28:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585059540332020',468,'121658500098','6161100421363','1.00','400','retail','0','2022-07-22 19:06:56','','','','251','Cash',55.17,'400','','','12','','1','2022-07-22 13:10:55','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585062830638013',469,'121658506256','5449000131836','1.00','70','retail','0','2022-07-22 19:11:23','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-22 13:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585098940332020',470,'121658509884','3245990255215','1.00','12500','retail','0','2022-07-22 20:12:29','','','','9200','Cash',1724.14,'12500','','','12','','1','2022-07-22 14:13:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',10775.86,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585099256323603',471,'121658509884','5099873011737','1.00','4500','retail','0','2022-07-22 20:12:29','','','','3300','Cash',620.69,'4500','','','12','','1','2022-07-22 14:13:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585100988033825',472,'121658510027','5449000131836','2.00','140','retail','0','2022-07-22 20:14:58','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-22 14:15:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585137216323603',473,'121658510103','6161101601979','1.00','250','retail','0','2022-07-22 21:15:21','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-22 15:16:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585164943114253',474,'121658513781','6161101605458','1.00','250','retail','0','2022-07-22 22:01:35','','','','182','Cash',34.48,'250','','','12','','1','2022-07-22 16:03:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585208376333603',475,'121658513781','5010103930628','1.00','1500','retail','0','2022-07-22 23:14:25','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-22 17:16:40','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585208652033280',476,'121658513781','5060608740253','1.00','70','retail','0','2022-07-22 23:14:25','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-22 17:16:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585212142033221',477,'121658521197','6161101602433','6.00','1200','retail','0','2022-07-22 23:20:15','','','','150.45','Cash',165.52,'200','','','12','','1','2022-07-22 17:20:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585215803215253',478,'121658521569','6161101603515','1.00','250','retail','0','2022-07-22 23:26:41','','','','182','Cash',34.48,'250','','','12','','1','2022-07-22 17:29:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585216003216253',479,'121658521569','54491069','1.00','70','retail','0','2022-07-22 23:26:41','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-22 17:29:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585224720332020',480,'121658521771','6161101605199','1.00','250','retail','0','2022-07-22 23:41:26','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-22 17:42:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585224790303223',481,'121658521771','6161101602433','1.00','200','retail','0','2022-07-22 23:41:26','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-22 17:42:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585224823350320',482,'121658521771','6161101602433','1.00','200','retail','0','2022-07-22 23:41:26','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-22 17:42:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585224852033242',483,'121658521771','6161101605199','1.00','250','retail','0','2022-07-22 23:41:26','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-22 17:42:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585231622033213',484,'121658522527','3086120600051','1.00','80','retail','0','2022-07-22 23:53:02','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-22 17:54:06','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585231810332020',485,'121658522527','6161101605458','1.00','250','retail','0','2022-07-22 23:53:02','','','','182','Cash',34.48,'250','','','12','','1','2022-07-22 17:54:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585232596353603',486,'121658523248','5010103930628','1.00','1500','retail','0','2022-07-22 23:54:47','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-22 17:54:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585232872033223',487,'121658523248','6161101602433','6.00','1200','retail','0','2022-07-22 23:54:47','','','','150.45','Cash',165.52,'200','','','12','','1','2022-07-22 17:54:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585692599033925',488,'121658569256','4058387003585','1.00','1500','retail','0','2022-07-23 12:41:00','','','','1150','Cash',206.90,'1500','','','12','','1','2022-07-23 06:42:02','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585703676363603',489,'121658569323','90399480','1.00','90','retail','0','2022-07-23 12:59:28','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-23 06:59:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585715210303223',490,'121658570400','6161101605458','1.00','250','retail','0','2022-07-23 13:18:41','','','','182','Cash',34.48,'250','','','12','','1','2022-07-23 07:18:48','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585812043812253',491,'121658581196','8719327068540','1.00','300','retail','0','2022-07-23 16:00:05','','','','225','Cash',41.38,'300','','','12','','1','2022-07-23 10:01:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585814793033302',492,'121658581282','6161101602167','1.00','500','retail','0','2022-07-23 16:04:39','','','','388','Cash',68.97,'500','','','12','','1','2022-07-23 10:06:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585831982033213',493,'121658581565','6002039005753','1.00','1400','retail','0','2022-07-23 16:33:52','','','','790','Cash',193.10,'1400','','','12','','1','2022-07-23 10:35:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585832313812253',494,'121658581565','5018907194802','1.00','100','retail','0','2022-07-23 16:33:52','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-23 10:35:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585852718638813',495,'121658585267','6161100421363','1.00','400','retail','0','2022-07-23 17:07:52','','','','251','Cash',55.17,'400','','','12','','1','2022-07-23 11:09:18','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585885268638813',496,'121658585359','6161101606011','1.00','220','retail','0','2022-07-23 18:02:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-23 12:04:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585885612033258',497,'121658585359','6161101606011','1.00','220','retail','0','2022-07-23 18:02:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-23 12:04:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585885643815253',498,'121658585359','6161101606011','1.00','220','retail','0','2022-07-23 18:02:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-23 12:04:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585885672033258',499,'121658585359','6161101606011','1.00','220','retail','0','2022-07-23 18:02:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-23 12:04:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585908503350320',500,'121658585267','3155930006015','1.00','250','retail','0','2022-07-23 18:40:50','','','','188','Cash',34.48,'250','','','12','','1','2022-07-23 12:43:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585944896383603',501,'121658591115','6161101605199','1.00','250','retail','0','2022-07-23 19:41:30','','','','172.833','Cash',34.48,'250','','','12','','1','2022-07-23 13:43:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585949819638913',502,'121658594603','40822938','1.00','70','retail','0','2022-07-23 19:49:42','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 13:51:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585955820332020',503,'121658595094','6161101602167','1.00','500','retail','0','2022-07-23 19:59:42','','','','388','Cash',68.97,'500','','','12','','1','2022-07-23 14:01:41','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585964839638913',504,'121658595702','5010103930840','1.00','430','retail','0','2022-07-23 20:15:25','','','','335','Cash',59.31,'430','','','12','','1','2022-07-23 14:20:48','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',370.69,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216585965240332020',505,'121658595702','5449000139030','1.00','70','retail','0','2022-07-23 20:15:25','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 14:20:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586000882033200',506,'121658600004','5060608740253','1.00','70','retail','0','2022-07-23 21:14:49','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-23 15:14:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586019973360320',507,'121658601989','6161101605465','1.00','700','retail','0','2022-07-23 21:50:06','','','','501','Cash',96.55,'700','','','12','','1','2022-07-23 15:52:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586020002033202',508,'121658601989','6161101605465','1.00','700','retail','0','2022-07-23 21:50:06','','','','501','Cash',96.55,'700','','','12','','1','2022-07-23 15:52:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586020042033202',509,'121658601989','6161101605465','1.00','700','retail','0','2022-07-23 21:50:06','','','','501','Cash',96.55,'700','','','12','','1','2022-07-23 15:52:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586020072033202',510,'121658601989','6161101605465','1.00','700','retail','0','2022-07-23 21:50:06','','','','501','Cash',96.55,'700','','','12','','1','2022-07-23 15:52:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586020100638013',511,'121658601989','6161101605465','1.00','700','retail','0','2022-07-23 21:50:06','','','','501','Cash',96.55,'700','','','12','','1','2022-07-23 15:52:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021406343603',512,'121658601989','5449000139030','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021432033212',513,'121658601989','5449000139030','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021453360320',514,'121658601989','5449000139030','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021733011253',515,'121658601989','5449000139030','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021901322232',516,'121658601989','40822938','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021930303223',517,'121658601989','40822938','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586021943011253',518,'121658601989','40822938','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586022022033225',519,'121658601989','40822938','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586022053360320',520,'121658601989','40822938','1.00','70','retail','0','2022-07-23 21:50:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-23 15:52:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586028466343603',521,'121658602339','6161101601115','1.00','850','retail','0','2022-07-23 22:00:46','','','','635','Cash',117.24,'850','','','12','','1','2022-07-23 16:02:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',732.76,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586029443360320',522,'121658602925','6161101605458','1.00','250','retail','0','2022-07-23 22:02:33','','','','182','Cash',34.48,'250','','','12','','1','2022-07-23 16:02:46','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586029476343603',523,'121658602925','6161101605458','1.00','250','retail','0','2022-07-23 22:02:33','','','','182','Cash',34.48,'250','','','12','','1','2022-07-23 16:02:46','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586029523019253',524,'121658602925','5018907197803','1.00','60','retail','0','2022-07-23 22:02:33','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-23 16:02:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586031523551063',525,'121658602967','6161101604543','1.00','1100','retail','0','2022-07-23 22:06:47','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-23 16:09:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586031773360320',526,'121658602967','6161101604543','1.00','1100','retail','0','2022-07-23 22:06:47','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-23 16:09:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586031846383603',527,'121658602967','5010103930628','1.00','1500','retail','0','2022-07-23 22:06:47','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-23 16:09:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586032000033025',528,'121658602967','50112265','1.00','70','retail','0','2022-07-23 22:06:47','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-23 16:09:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586032063012253',529,'121658602967','50112265','1.00','70','retail','0','2022-07-23 22:06:47','','','','53.33','Cash',9.66,'70','','','12','','1','2022-07-23 16:09:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586037912033273',530,'121658603787','6161101602372','1.00','250','retail','0','2022-07-23 22:16:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-23 16:18:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586037933033325',531,'121658603787','6161101602372','1.00','250','retail','0','2022-07-23 22:16:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-23 16:18:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586037966393603',532,'121658603787','6161101602372','1.00','250','retail','0','2022-07-23 22:16:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-23 16:18:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586037990638013',533,'121658603787','6161101602372','1.00','250','retail','0','2022-07-23 22:16:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-23 16:18:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586038020332020',534,'121658603787','6161101602372','1.00','250','retail','0','2022-07-23 22:16:42','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-23 16:18:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586058600638013',535,'121658603891','6161101605458','1.00','250','retail','0','2022-07-23 22:51:11','','','','182','Cash',34.48,'250','','','12','','1','2022-07-23 17:00:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586058700303223',536,'121658603891','5060608740253','1.00','70','retail','0','2022-07-23 22:51:11','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-23 17:00:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586109803360320',537,'121658610976','5010103930628','1.00','1500','retail','0','2022-07-24 00:17:57','','','','1125','Cash',206.90,'1500','','','12','','1','2022-07-23 18:18:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586110772033201',538,'121658610976','5060608740253','1.00','70','retail','0','2022-07-24 00:17:57','','','','41.82','Cash',9.66,'70','','','12','','1','2022-07-23 18:18:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586611599033925',539,'121658661148','6161101605458','1.00','250','retail','0','2022-07-24 14:12:40','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 08:14:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586690730303223',540,'121658667313','3086120600020','1.00','120','retail','0','2022-07-24 16:25:29','','','','93.86','Cash',16.55,'120','','','12','','1','2022-07-24 10:25:35','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586691133033325',541,'121658667313','6161101604703','1.00','200','retail','0','2022-07-24 16:25:29','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 10:25:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586691293611253',542,'121658667313','5449000139030','1.00','70','retail','0','2022-07-24 16:25:29','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 10:25:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586704102033240',543,'121658669136','5018907194802','1.00','100','retail','0','2022-07-24 16:46:51','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-24 10:47:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586727530303223',544,'121658670424','6161101605458','1.00','250','retail','0','2022-07-24 17:26:02','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 11:28:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586727626222620',545,'121658670424','5449000139030','1.00','70','retail','0','2022-07-24 17:26:02','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 11:28:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586745530303223',546,'121658672889','6161101604406','1.00','250','retail','0','2022-07-24 17:55:56','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-24 11:56:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586745550303223',547,'121658672889','6161101604406','1.00','250','retail','0','2022-07-24 17:55:56','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-24 11:56:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586766320303223',548,'121658674620','6161101603522','1.00','700','retail','0','2022-07-24 18:30:32','','','','501','Cash',96.55,'700','','','12','','1','2022-07-24 13:34:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586833912033233',549,'121658683381','6161101603515','1.00','250','retail','0','2022-07-24 20:23:12','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 14:24:58','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586860596353603',550,'121658683499','5000289020701','1.00','2000','retail','0','2022-07-24 21:08:07','','','','1540','Cash',275.86,'2000','','','12','','1','2022-07-24 15:08:10','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586860870303223',551,'121658683499','54491069','2.00','140','retail','0','2022-07-24 21:08:07','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-24 15:08:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','30.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586863108638813',552,'121658686091','6161101602167','1.00','500','retail','0','2022-07-24 21:12:31','','','','388','Cash',68.97,'500','','','12','','1','2022-07-24 15:12:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586863203360320',553,'121658686091','6161101602433','1.00','200','retail','0','2022-07-24 21:12:31','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 15:12:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586863333360320',554,'121658686091','6161101604406','1.00','250','retail','0','2022-07-24 21:12:31','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-24 15:12:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586863506353603',555,'121658686091','6161101603324','2.00','400','retail','0','2022-07-24 21:12:31','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-24 15:12:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586867356333603',556,'121658686354','6161101603324','1.00','200','retail','0','2022-07-24 21:18:56','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 15:19:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586899903819253',557,'121658686748','6161101603324','1.00','200','retail','0','2022-07-24 22:13:17','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 16:15:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586899936393603',558,'121658686748','6161101603324','1.00','200','retail','0','2022-07-24 22:13:17','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 16:15:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586899973819253',559,'121658686748','5010752000420','1.00','750','retail','0','2022-07-24 22:13:17','','','','543','Cash',103.45,'750','','','12','','1','2022-07-24 16:15:17','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586905922033225',560,'121658690118','6161101605458','1.00','250','retail','0','2022-07-24 22:23:31','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 16:24:15','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586906022033260',561,'121658690118','90162602','1.00','200','retail','0','2022-07-24 22:23:31','','','','147','Cash',27.59,'200','','','12','','1','2022-07-24 16:24:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586906103360320',562,'121658690118','54491069','1.00','70','retail','0','2022-07-24 22:23:31','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 16:24:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586908562033280',563,'121658690680','6161101602167','1.00','500','retail','0','2022-07-24 22:27:55','','','','388','Cash',68.97,'500','','','12','','1','2022-07-24 16:27:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586908740303223',564,'121658690680','6161101604703','2.00','400','retail','0','2022-07-24 22:27:55','','','','150.45','Cash',55.17,'200','','','12','','1','2022-07-24 16:27:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586910443360320',565,'121658690879','6161101605458','1.00','250','retail','0','2022-07-24 22:30:45','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 16:31:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586919892202003',566,'121658691068','40822938','1.00','70','retail','0','2022-07-24 22:46:35','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 16:47:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586919923919253',567,'121658691068','40822938','1.00','70','retail','0','2022-07-24 22:46:35','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 16:47:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586919943360320',568,'121658691068','40822938','1.00','70','retail','0','2022-07-24 22:46:35','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-24 16:47:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586930883236306',569,'121658692081','6161101603515','1.00','250','retail','0','2022-07-24 23:04:48','','','','182','Cash',34.48,'250','','','12','','1','2022-07-24 17:06:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586938143918253',570,'121658693218','90399480','1.00','90','retail','0','2022-07-24 23:16:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-24 17:17:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586946093916253',571,'121658693826','6161101604703','1.00','200','retail','0','2022-07-24 23:30:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 17:34:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586946123360320',572,'121658693826','6161101604703','1.00','200','retail','0','2022-07-24 23:30:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 17:34:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586946156313603',573,'121658693826','6161101604703','1.00','200','retail','0','2022-07-24 23:30:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 17:34:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216586946189638913',574,'121658693826','6161101604703','1.00','200','retail','0','2022-07-24 23:30:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-24 17:34:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587373236323603',575,'121658736882','6161101602167','1.00','500','retail','0','2022-07-25 11:22:03','','','','388','Cash',68.97,'500','','','12','','1','2022-07-25 05:22:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587545602033254',576,'121658754544','6161101602372','1.00','250','retail','0','2022-07-25 16:09:23','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-25 10:09:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587545630332020',577,'121658754544','6161101602372','1.00','250','retail','0','2022-07-25 16:09:23','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-25 10:09:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587595563370320',578,'121658756022','6161101602372','1.00','250','retail','0','2022-07-25 17:32:36','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-25 11:32:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587627740303223',579,'121658756022','6161101602372','1.00','250','retail','0','2022-07-25 18:26:14','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-25 12:26:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587696803616253',580,'121658769148','6161101601979','1.00','250','retail','0','2022-07-25 20:21:21','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-25 14:22:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587735650303223',581,'121658769763','6161101605458','2.00','500','retail','0','2022-07-25 21:26:06','','','','182','Cash',68.97,'250','','','12','','1','2022-07-25 15:26:09','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587762392033226',582,'121658774045','6161101605458','1.00','250','retail','0','2022-07-25 22:10:52','','','','182','Cash',34.48,'250','','','12','','1','2022-07-25 16:12:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587762516353603',583,'121658774045','5018907197803','1.00','60','retail','0','2022-07-25 22:10:52','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-25 16:12:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587765023715253',584,'121658776353','8712000900663','1.00','230','retail','0','2022-07-25 22:15:21','','','','174','Cash',31.72,'230','','','12','','1','2022-07-25 16:16:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587765163715253',585,'121658776353','8712000900663','1.00','230','retail','0','2022-07-25 22:15:21','','','','174','Cash',31.72,'230','','','12','','1','2022-07-25 16:16:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587765182202003',586,'121658776353','8712000900663','1.00','230','retail','0','2022-07-25 22:15:21','','','','174','Cash',31.72,'230','','','12','','1','2022-07-25 16:16:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216587765210303223',587,'121658776353','8712000900663','1.00','230','retail','0','2022-07-25 22:15:21','','','','174','Cash',31.72,'230','','','12','','1','2022-07-25 16:16:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588243213380320',588,'121658824316','3086120600020','1.00','120','retail','0','2022-07-26 11:32:02','','','','93.86','Cash',16.55,'120','','','12','','1','2022-07-26 05:32:21','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396082033269',589,'121658836957','5449000131836','1.00','70','retail','0','2022-07-26 15:48:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-26 09:50:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396163380320',590,'121658836957','5018907197803','1.00','60','retail','0','2022-07-26 15:48:06','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-26 09:50:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396753380320',591,'121658836957','6161101606011','1.00','220','retail','0','2022-07-26 15:48:06','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-26 09:50:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396783380320',592,'121658836957','6161101606011','1.00','220','retail','0','2022-07-26 15:48:06','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-26 09:50:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396802033269',593,'121658836957','6161101606011','1.00','220','retail','0','2022-07-26 15:48:06','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-26 09:50:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396832302333',594,'121658836957','6161101606011','1.00','220','retail','0','2022-07-26 15:48:06','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-26 09:50:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588396853012223',595,'121658836957','6161101606011','1.00','220','retail','0','2022-07-26 15:48:06','','','','172.833','Cash',30.34,'220','','','12','','1','2022-07-26 09:50:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588462602033226',596,'121658846227','6161101605458','1.00','250','retail','0','2022-07-26 17:37:40','','','','182','Cash',34.48,'250','','','12','','1','2022-07-26 11:38:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588524220303223',597,'121658846227','6161101602938','1.00','250','retail','0','2022-07-26 19:21:26','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-26 13:22:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','79.00','78','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588524273514253',598,'121658846227','6161101602938','1.00','250','retail','0','2022-07-26 19:21:26','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-26 13:22:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','78.00','77','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588524292033242',599,'121658846227','6161101602938','1.00','250','retail','0','2022-07-26 19:21:26','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-26 13:22:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','77.00','76','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588524313380320',600,'121658846227','6161101602938','1.00','250','retail','0','2022-07-26 19:21:26','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-26 13:22:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','76.00','75','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588524863514253',601,'121658846227','5010103800167','1.00','1000','retail','0','2022-07-26 19:21:26','','','','719','Cash',137.93,'1000','','','12','','1','2022-07-26 13:22:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588526812628250',602,'121658852538','6161101605458','2.00','500','retail','0','2022-07-26 19:24:41','','','','182','Cash',68.97,'250','','','12','','1','2022-07-26 13:24:44','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588591966393603',603,'121658852685','8712000900663','1.00','230','retail','0','2022-07-26 21:13:22','','','','174','Cash',31.72,'230','','','12','','1','2022-07-26 15:13:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588591990332020',604,'121658852685','8712000900663','1.00','230','retail','0','2022-07-26 21:13:22','','','','174','Cash',31.72,'230','','','12','','1','2022-07-26 15:13:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588592016303603',605,'121658852685','8712000900663','1.00','230','retail','0','2022-07-26 21:13:22','','','','174','Cash',31.72,'230','','','12','','1','2022-07-26 15:13:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588592732033229',606,'121658859237','6001108001436','1.00','1600','retail','0','2022-07-26 21:15:17','','','','1150','Cash',220.69,'1600','','','12','','1','2022-07-26 15:16:37','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588593162033239',607,'121658859237','6001108001436','1.00','1600','retail','0','2022-07-26 21:15:17','','','','1150','Cash',220.69,'1600','','','12','','1','2022-07-26 15:16:37','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588596232033269',608,'121658859621','6161101603515','1.00','250','retail','0','2022-07-26 21:20:26','','','','182','Cash',34.48,'250','','','12','','1','2022-07-26 15:21:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588596266323603',609,'121658859621','6161101603515','1.00','250','retail','0','2022-07-26 21:20:26','','','','182','Cash',34.48,'250','','','12','','1','2022-07-26 15:21:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588597185638513',610,'121658859699','6161101603515','1.00','250','retail','0','2022-07-26 21:21:59','','','','182','Cash',34.48,'250','','','12','','1','2022-07-26 15:24:10','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588609916393603',611,'121658859699','5011013100194','1.00','1350','retail','0','2022-07-26 21:43:31','','','','999','Cash',186.21,'1350','','','12','','1','2022-07-26 15:44:59','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588609932033290',612,'121658859699','5011013100194','1.00','1350','retail','0','2022-07-26 21:43:31','','','','999','Cash',186.21,'1350','','','12','','1','2022-07-26 15:44:59','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588610088033825',613,'121658859699','6008165007814','1.00','350','retail','0','2022-07-26 21:43:31','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-26 15:44:59','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588610116313603',614,'121658859699','6008165007814','1.00','350','retail','0','2022-07-26 21:43:31','','','','317.26','Cash',48.28,'350','','','12','','1','2022-07-26 15:44:59','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588648553380320',615,'121658861252','6161101603324','1.00','200','retail','0','2022-07-26 22:47:36','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-26 16:47:54','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588669983380320',616,'121658864875','6161101603324','1.00','200','retail','0','2022-07-26 23:23:19','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-26 17:25:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588684940332020',617,'121658867139','6161101604703','1.00','200','retail','0','2022-07-26 23:48:17','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-26 17:49:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588684972033248',618,'121658867139','6161101604703','1.00','200','retail','0','2022-07-26 23:48:17','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-26 17:49:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216588690132621260',619,'121658868546','6001108016034','1.00','500','retail','0','2022-07-26 23:56:54','','','','352','Cash',68.97,'500','','','12','','1','2022-07-26 18:01:06','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589161276323603',620,'121658916118','6008165007968','1.00','350','retail','0','2022-07-27 13:03:01','','','','308.5','Cash',48.28,'350','','','12','','1','2022-07-27 07:05:20','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589161570303223',621,'121658916118','6008165007968','8.00','2800','retail','0','2022-07-27 13:03:01','','','','308.5','Cash',386.21,'350','','','12','','1','2022-07-27 07:05:20','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'8','9.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589161782033216',622,'121658916118','6161101604543','1.00','1100','retail','0','2022-07-27 13:03:01','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-27 07:05:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589161806383603',623,'121658916118','6161101604543','1.00','1100','retail','0','2022-07-27 13:03:01','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-27 07:05:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589203280303223',624,'121658916321','54491069','1.00','70','retail','0','2022-07-27 14:12:13','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-27 08:15:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589203330332020',625,'121658916321','6161101606547','1.00','500','retail','0','2022-07-27 14:12:13','','','','388','Cash',68.97,'500','','','12','','1','2022-07-27 08:15:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589205566033625',626,'121658920529','6161100421288','1.00','800','retail','0','2022-07-27 14:16:50','','','','586','Cash',110.34,'800','','','12','','1','2022-07-27 08:19:49','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589206103390320',627,'121658920529','6161100420083','1.00','800','retail','0','2022-07-27 14:16:50','','','','586','Cash',110.34,'800','','','12','','1','2022-07-27 08:19:49','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589386510303223',628,'121658938569','6161101604550','1.00','400','retail','0','2022-07-27 19:17:32','','','','284','Cash',55.17,'400','','','12','','1','2022-07-27 13:19:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589387663390320',629,'121658938761','6161101603379','1.00','250','retail','0','2022-07-27 19:19:26','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-27 13:20:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589391153311253',630,'121658938541','6161101602167','1.00','500','retail','0','2022-07-27 19:25:15','','','','388','Cash',68.97,'500','','','12','','1','2022-07-27 13:25:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589425382033252',631,'121658939123','6161101604703','1.00','200','retail','0','2022-07-27 20:22:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-27 14:22:28','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589532502033223',632,'121658948230','6161101603379','1.00','250','retail','0','2022-07-27 23:21:17','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-27 17:22:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589532743390320',633,'121658948230','6161101603379','1.00','250','retail','0','2022-07-27 23:21:17','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-27 17:22:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589532777033725',634,'121658948230','6161101603379','1.00','250','retail','0','2022-07-27 23:21:17','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-27 17:22:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589559213390320',635,'121658953377','6161101602433','1.00','200','retail','0','2022-07-28 00:05:46','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-27 18:06:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589559230303223',636,'121658953377','6161101602433','1.00','200','retail','0','2022-07-28 00:05:46','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-27 18:06:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589559415638513',637,'121658953377','3155930006015','1.00','250','retail','0','2022-07-28 00:05:46','','','','188','Cash',34.48,'250','','','12','','1','2022-07-27 18:06:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589559433519253',638,'121658953377','3155930006015','1.00','250','retail','0','2022-07-28 00:05:46','','','','188','Cash',34.48,'250','','','12','','1','2022-07-27 18:06:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216589559462033295',639,'121658953377','3155930006015','1.00','250','retail','0','2022-07-28 00:05:46','','','','188','Cash',34.48,'250','','','12','','1','2022-07-27 18:06:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590000710332020',640,'121658996523','50196111','1.00','1200','retail','0','2022-07-28 12:21:12','','','','855','Cash',165.52,'1200','','','12','','1','2022-07-28 06:25:03','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590088310052213',641,'121659008817','6161101601979','1.00','250','retail','0','2022-07-28 14:47:12','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-28 08:49:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590100881639113',642,'121659010081','6161101603515','1.00','250','retail','0','2022-07-28 15:08:27','','','','182','Cash',34.48,'250','','','12','','1','2022-07-28 09:11:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590101071290012',643,'121659010081','5018907194802','1.00','100','retail','0','2022-07-28 15:08:27','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-28 09:11:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590168361639113',644,'121659016829','5000291021925','1.00','4500','retail','0','2022-07-28 17:01:41','','','','3381','Cash',620.69,'4500','','','12','','1','2022-07-28 11:04:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590169013119253',645,'121659016829','6001108001436','1.00','1600','retail','0','2022-07-28 17:01:41','','','','1150','Cash',220.69,'1600','','','12','','1','2022-07-28 11:04:51','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590209183300320',646,'121659017996','6161101603515','1.00','250','retail','0','2022-07-28 18:08:38','','','','182','Cash',34.48,'250','','','12','','1','2022-07-28 12:11:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590214572639213',647,'121659021079','6161101602921','1.00','250','retail','0','2022-07-28 18:18:06','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-28 12:19:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','66.00','65','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590214603300320',648,'121659021079','6161101602921','1.00','250','retail','0','2022-07-28 18:18:06','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-28 12:19:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','65.00','64','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590214866033625',649,'121659021079','5449000188342','1.00','90','retail','0','2022-07-28 18:18:06','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-28 12:19:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590216743300320',650,'121659021577','6161101603522','1.00','700','retail','0','2022-07-28 18:22:15','','','','501','Cash',96.55,'700','','','12','','1','2022-07-28 12:24:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590217002639213',651,'121659021577','5018907194802','2.00','200','retail','0','2022-07-28 18:22:15','','','','74.58','Cash',27.59,'100','','','12','','1','2022-07-28 12:24:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','47.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590217193217253',652,'121659021577','6164001199331','2.00','120','retail','0','2022-07-28 18:22:15','','','','37.08','Cash',16.55,'60','','','12','','1','2022-07-28 12:24:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590217355033525',653,'121659021577','6161101604406','1.00','250','retail','0','2022-07-28 18:22:15','','','','181.708','Cash',34.48,'250','','','12','','1','2022-07-28 12:24:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590236050303223',654,'121659021857','6161101604703','1.00','200','retail','0','2022-07-28 18:53:28','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-28 12:59:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590236070332020',655,'121659021857','6161101604703','1.00','200','retail','0','2022-07-28 18:53:28','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-28 12:59:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590253830332020',656,'121659023983','6161101602921','1.00','250','retail','0','2022-07-28 19:23:17','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-28 13:52:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','64.00','63','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590253966033625',657,'121659023983','6161101602921','1.00','250','retail','0','2022-07-28 19:23:17','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-28 13:52:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','63.00','62','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590271463211253',658,'121659027134','8719327068540','1.00','300','retail','0','2022-07-28 19:52:26','','','','225','Cash',41.38,'300','','','12','','1','2022-07-28 13:53:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590316960303223',659,'121659027229','4058387003585','1.00','1500','retail','0','2022-07-28 21:08:20','','','','1150','Cash',206.90,'1500','','','12','','1','2022-07-28 15:09:24','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590316993300320',660,'121659027229','6002039006019','1.00','1400','retail','0','2022-07-28 21:08:20','','','','790','Cash',193.10,'1400','','','12','','1','2022-07-28 15:09:24','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590336673639313',661,'121659031765','8712000900045','1.00','250','retail','0','2022-07-28 21:41:08','','','','182','Cash',34.48,'250','','','12','','1','2022-07-28 15:43:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590340202033204',662,'121659033782','6161101601979','1.00','250','retail','0','2022-07-28 21:56:29','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-28 16:02:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590340313310253',663,'121659033782','6161101602938','1.00','250','retail','0','2022-07-28 21:56:29','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-28 16:02:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','75.00','74','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590340432033204',664,'121659033782','8712000900045','1.00','250','retail','0','2022-07-28 21:56:29','','','','182','Cash',34.48,'250','','','12','','1','2022-07-28 16:02:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590385200332020',665,'121659038437','6161101601979','1.00','250','retail','0','2022-07-28 23:02:00','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-28 17:03:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590388768290712',666,'121659038613','5000267134338','1.00','7300','retail','0','2022-07-28 23:09:27','','','','5458','Cash',1006.90,'7300','','','12','','1','2022-07-28 17:13:55','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',6293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590389199033925',667,'121659038613','5018907194802','1.00','100','retail','0','2022-07-28 23:09:27','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-28 17:13:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590389226323603',668,'121659038613','5018907194802','1.00','100','retail','0','2022-07-28 23:09:27','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-28 17:13:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590389672021301',669,'121659038613','5449000131836','2.00','140','retail','0','2022-07-28 23:09:27','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-28 17:13:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590405255033525',670,'121659040516','6161101602433','1.00','200','retail','0','2022-07-28 23:36:55','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-28 17:38:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590405283415253',671,'121659040516','6161101602433','1.00','200','retail','0','2022-07-28 23:36:55','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-28 17:38:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590406123300320',672,'121659040516','6161101603379','1.00','250','retail','0','2022-07-28 23:36:55','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-28 17:38:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590406156233005',673,'121659040516','6161101603379','1.00','250','retail','0','2022-07-28 23:36:55','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-28 17:38:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590907556353603',674,'121659090718','6001108016034','1.00','500','retail','0','2022-07-29 13:32:36','','','','352','Cash',68.97,'500','','','12','','1','2022-07-29 07:32:38','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590948003918253',675,'121659094444','6161101603379','1.00','250','retail','0','2022-07-29 14:41:28','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-29 08:43:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590948090303223',676,'121659094444','8719327068540','1.00','300','retail','0','2022-07-29 14:41:28','','','','225','Cash',41.38,'300','','','12','','1','2022-07-29 08:43:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590948260332020',677,'121659094444','6008165007784','1.00','370','retail','0','2022-07-29 14:41:28','','','','327.04','Cash',51.03,'370','','','12','','1','2022-07-29 08:43:24','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216590948422624290',678,'121659094444','5018907197803','1.00','60','retail','0','2022-07-29 14:41:28','','','','44.58','Cash',8.28,'60','','','12','','1','2022-07-29 08:43:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591000286323603',679,'121659099668','6009644549320','1.00','70','retail','0','2022-07-29 16:07:09','','','','31.25','Cash',9.66,'70','','','12','','1','2022-07-29 10:09:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591041420303223',680,'121659103298','5000267125046','1.00','4300','retail','0','2022-07-29 17:15:43','','','','3164','Cash',593.10,'4300','','','12','','1','2022-07-29 11:19:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591069250332020',681,'121659104369','6161101603379','1.00','250','retail','0','2022-07-29 18:02:05','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-29 12:03:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591077270303223',682,'121659107670','6161101602372','1.00','250','retail','0','2022-07-29 18:15:48','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-29 12:17:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591077320007213',683,'121659107670','6161101602372','1.00','250','retail','0','2022-07-29 18:15:48','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-29 12:17:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591077473017253',684,'121659107670','6161101602167','1.00','500','retail','0','2022-07-29 18:15:48','','','','388','Cash',68.97,'500','','','12','','1','2022-07-29 12:17:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591169803119253',685,'121659116369','5000267125046','1.00','4300','retail','0','2022-07-29 20:49:41','','','','3164','Cash',593.10,'4300','','','12','','1','2022-07-29 14:51:02','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591174720303223',686,'121659117064','6161101601979','1.00','250','retail','0','2022-07-29 20:57:53','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-29 14:58:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591193480303223',687,'121659117728','6161101602600','1.00','220','retail','0','2022-07-29 21:29:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 15:31:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591193500332020',688,'121659117728','6161101602600','1.00','220','retail','0','2022-07-29 21:29:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 15:31:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591193523310320',689,'121659117728','6161101602600','1.00','220','retail','0','2022-07-29 21:29:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 15:31:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591193806383603',690,'121659117728','6161101602600','1.00','220','retail','0','2022-07-29 21:29:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 15:31:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591210616363603',691,'121659119628','6161101601979','1.00','250','retail','0','2022-07-29 21:57:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-29 15:58:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591210630332020',692,'121659119628','6161101601979','1.00','250','retail','0','2022-07-29 21:57:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-29 15:58:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591210652639213',693,'121659119628','6161101601979','1.00','250','retail','0','2022-07-29 21:57:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-29 15:58:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591215172033251',694,'121659121138','6161101605458','1.00','250','retail','0','2022-07-29 22:06:14','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 16:06:50','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591215733033325',695,'121659121138','5449000139030','1.00','70','retail','0','2022-07-29 22:06:14','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-29 16:06:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591218477033725',696,'121659121835','6161101603515','1.00','250','retail','0','2022-07-29 22:10:48','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 16:12:33','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591246112639213',697,'121659124567','5000267125046','1.00','4300','retail','0','2022-07-29 22:59:36','','','','3164','Cash',593.10,'4300','','','12','','1','2022-07-29 17:01:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591270212033207',698,'121659124882','6161101600927','1.00','1900','retail','0','2022-07-29 23:37:13','','','','1417','Cash',262.07,'1900','','','12','','1','2022-07-29 17:38:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591270262639213',699,'121659124882','6161101602600','1.00','220','retail','0','2022-07-29 23:37:13','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 17:38:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591270292202003',700,'121659124882','6161101602600','1.00','220','retail','0','2022-07-29 23:37:13','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 17:38:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591270312639213',701,'121659124882','6161101602600','1.00','220','retail','0','2022-07-29 23:37:13','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 17:38:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591270320320012',702,'121659124882','6161101602600','1.00','220','retail','0','2022-07-29 23:37:13','','','','154.95','Cash',30.34,'220','','','12','','1','2022-07-29 17:38:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591291260303223',703,'121659127104','6164001199331','1.00','60','retail','0','2022-07-30 00:15:18','','','','37.08','Cash',8.28,'60','','','12','','1','2022-07-29 18:19:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591291432639213',704,'121659127104','6161101602167','1.00','550','retail','0','2022-07-30 00:15:18','','','','388','Cash',75.86,'550','','','12','','1','2022-07-29 18:19:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591293162033239',705,'121659127104','6161101603324','1.00','200','retail','0','2022-07-30 00:15:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-29 18:19:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591293183213253',706,'121659127104','6161101603324','1.00','200','retail','0','2022-07-30 00:15:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-29 18:19:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591315790303223',707,'121659129563','6161101602372','1.00','250','retail','0','2022-07-30 00:54:20','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591315844033425',708,'121659129563','8712000900045','1.00','250','retail','0','2022-07-30 00:54:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591315892033251',709,'121659129563','8712000900045','1.00','250','retail','0','2022-07-30 00:54:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591315953310320',710,'121659129563','5018907194802','1.00','100','retail','0','2022-07-30 00:54:20','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-29 18:56:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591316522033261',711,'121659129563','6161101602372','1.00','250','retail','0','2022-07-30 00:54:20','','','','189.75','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591316566353603',712,'121659129563','8712000900045','1.00','250','retail','0','2022-07-30 00:54:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591316606363603',713,'121659129563','8712000900045','1.00','250','retail','0','2022-07-30 00:54:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-29 18:56:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591328483318253',714,'121659131791','5010103930666','1.00','750','retail','0','2022-07-30 01:14:09','','','','542','Cash',103.45,'750','','','12','','1','2022-07-29 19:15:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591333072033233',715,'121659132912','6161101601979','1.00','250','retail','0','2022-07-30 01:21:58','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-29 19:22:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591333182302383',716,'121659132912','6161101604703','1.00','200','retail','0','2022-07-30 01:21:58','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-29 19:22:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591339146313603',717,'121659132912','5010103930628','1.00','1550','retail','0','2022-07-30 01:31:55','','','','1125','Cash',213.79,'1550','','','12','','1','2022-07-29 19:32:44','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591855223310320',718,'121659179709','6161101602167','1.00','550','retail','0','2022-07-30 15:52:08','','','','388','Cash',75.86,'550','','','12','','1','2022-07-30 09:55:53','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591859168639813',719,'121659185802','6001108028044','1.00','250','retail','0','2022-07-30 15:59:10','','','','201','Cash',34.48,'250','','','12','','1','2022-07-30 10:01:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591859188639813',720,'121659185802','6001108028044','1.00','250','retail','0','2022-07-30 15:59:10','','','','201','Cash',34.48,'250','','','12','','1','2022-07-30 10:01:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591859210303223',721,'121659185802','6001108028044','1.00','250','retail','0','2022-07-30 15:59:10','','','','201','Cash',34.48,'250','','','12','','1','2022-07-30 10:01:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591859238639813',722,'121659185802','6001108028044','1.00','250','retail','0','2022-07-30 15:59:10','','','','201','Cash',34.48,'250','','','12','','1','2022-07-30 10:01:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591865508639813',723,'121659186318','6161101600934','1.00','1500','retail','0','2022-07-30 16:09:10','','','','1144','Cash',206.90,'1500','','','12','','1','2022-07-30 10:10:49','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591871836383603',724,'121659186650','6161101603515','1.00','250','retail','0','2022-07-30 16:19:43','','','','182','Cash',34.48,'250','','','12','','1','2022-07-30 10:21:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591909923919253',725,'121659187267','5449000131836','2.00','140','retail','0','2022-07-30 17:23:12','','','','53.333','Cash',19.31,'70','','','12','','1','2022-07-30 11:25:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591948509639913',726,'121659191147','6161101605458','1.00','250','retail','0','2022-07-30 18:27:30','','','','182','Cash',34.48,'250','','','12','','1','2022-07-30 12:29:15','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216591984812033248',727,'121659198447','6161101602372','2.00','500','retail','0','2022-07-30 19:28:02','','','','189.75','Cash',68.97,'250','','','12','','1','2022-07-30 13:28:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005443320320',728,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','74.00','73','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005473320320',729,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','73.00','72','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005483320320',730,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','72.00','71','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005502033250',731,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','71.00','70','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005530303223',732,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','70.00','69','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592005580262932',733,'121659200388','6161101602938','1.00','250','retail','0','2022-07-30 20:02:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-07-30 14:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','69.00','68','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592042411033125',734,'121659200653','6161101601979','2.00','500','retail','0','2022-07-30 21:04:02','','','','172.75','Cash',68.97,'250','','','12','','1','2022-07-30 15:11:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','29.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592088850639013',735,'121659208883','6161101604703','1.00','200','retail','0','2022-07-30 22:21:30','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-30 16:23:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592088883320320',736,'121659208883','6161101604703','1.00','200','retail','0','2022-07-30 22:21:30','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-30 16:23:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592088900303223',737,'121659208883','6161101604703','1.00','200','retail','0','2022-07-30 22:21:30','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-30 16:23:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592090590332020',738,'121659209051','6161101603515','1.00','250','retail','0','2022-07-30 22:24:48','','','','182','Cash',34.48,'250','','','12','','1','2022-07-30 16:27:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592090883010253',739,'121659209051','6009644549320','1.00','70','retail','0','2022-07-30 22:24:48','','','','31.25','Cash',9.66,'70','','','12','','1','2022-07-30 16:27:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592093560332020',740,'121659209252','6161101603324','1.00','200','retail','0','2022-07-30 22:29:17','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-30 16:38:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592099532033299',741,'121659209916','6161101605458','1.00','250','retail','0','2022-07-30 22:39:14','','','','182','Cash',34.48,'250','','','12','','1','2022-07-30 16:39:19','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592104023114253',742,'121659209961','5010103930833','1.00','900','retail','0','2022-07-30 22:50:31','','','','653','Cash',124.14,'900','','','12','','1','2022-07-30 16:51:29','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',775.86,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592104850303223',743,'121659209961','6161101604543','1.00','1100','retail','0','2022-07-30 22:50:31','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-30 16:51:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592104883114253',744,'121659209961','6161101604543','1.00','1100','retail','0','2022-07-30 22:50:31','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-30 16:51:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592104903114253',745,'121659209961','6161101604543','1.00','1100','retail','0','2022-07-30 22:50:31','','','','788','Cash',151.72,'1100','','','12','','1','2022-07-30 16:51:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592106286323603',746,'121659209961','3086120600051','1.00','80','retail','0','2022-07-30 22:50:31','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-30 16:51:29','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592106303320320',747,'121659209961','3086120600051','1.00','80','retail','0','2022-07-30 22:50:31','','','','59.74','Cash',11.03,'80','','','12','','1','2022-07-30 16:51:29','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592133933320320',748,'121659210690','5011007003029','1.00','2700','retail','0','2022-07-30 23:36:34','','','','2000','Cash',372.41,'2700','','','12','','1','2022-07-30 17:37:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592135502033253',749,'121659213437','6161101603515','1.00','250','retail','0','2022-07-30 23:39:10','','','','182','Cash',34.48,'250','','','12','','1','2022-07-30 17:57:44','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592149780332020',750,'121659214860','5000289020800','1.00','2500','retail','0','2022-07-31 00:03:05','','','','1840','Cash',344.83,'2500','','','12','','1','2022-07-30 18:05:16','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592149822033294',751,'121659214860','5018907194802','1.00','100','retail','0','2022-07-31 00:03:05','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-30 18:05:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592149843119253',752,'121659214860','5018907194802','1.00','100','retail','0','2022-07-31 00:03:05','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-30 18:05:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592158910332020',753,'121659215117','6001108028044','1.00','250','retail','0','2022-07-31 00:18:24','','','','201','Cash',34.48,'250','','','12','','1','2022-07-30 18:18:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592159043119253',754,'121659215117','6161101601979','2.00','500','retail','0','2022-07-31 00:18:24','','','','172.75','Cash',68.97,'250','','','12','','1','2022-07-30 18:18:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592177882033277',755,'121659215919','6161101600941','1.00','750','retail','0','2022-07-31 00:49:49','','','','544','Cash',103.45,'750','','','12','','1','2022-07-30 18:51:34','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592182380303223',756,'121659217896','5000292263171','1.00','600','retail','0','2022-07-31 00:57:36','','','','430','Cash',82.76,'600','','','12','','1','2022-07-30 18:58:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592182455033525',757,'121659217896','90490224','1.00','90','retail','0','2022-07-31 00:57:36','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-30 18:58:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592182510303223',758,'121659217896','5449000188342','1.00','90','retail','0','2022-07-31 00:57:36','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-30 18:58:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592182552033228',759,'121659217896','54491069','1.00','70','retail','0','2022-07-31 00:57:36','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-30 18:58:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592188340303223',760,'121659218317','5010752000420','1.00','750','retail','0','2022-07-31 01:07:19','','','','543','Cash',103.45,'750','','','12','','1','2022-07-30 19:09:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592188383118253',761,'121659218317','54491069','1.00','70','retail','0','2022-07-31 01:07:19','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-30 19:09:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592647855033525',762,'121659258869','6161101601979','1.00','250','retail','0','2022-07-31 13:53:33','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-31 07:54:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592648113320320',763,'121659258869','6161101601979','1.00','250','retail','0','2022-07-31 13:53:33','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-31 07:54:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592648126639613',764,'121659258869','6161101603379','1.00','250','retail','0','2022-07-31 13:53:33','','','','190.375','Cash',34.48,'250','','','12','','1','2022-07-31 07:54:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592649302033294',765,'121659264884','5449000131836','1.00','70','retail','0','2022-07-31 13:55:31','','','','53.333','Cash',9.66,'70','','','12','','1','2022-07-31 07:56:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592809693819253',766,'121659278222','5449000188342','1.00','90','retail','0','2022-07-31 18:22:49','','','','59.666','Cash',12.41,'90','','','12','','1','2022-07-31 12:22:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592837353817253',767,'121659280975','6161100421271','1.00','800','retail','0','2022-07-31 19:08:55','','','','586','Cash',110.34,'800','','','12','','1','2022-07-31 13:10:36','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592855177033725',768,'121659283837','6161101601979','1.00','250','retail','0','2022-07-31 19:38:38','','','','172.75','Cash',34.48,'250','','','12','','1','2022-07-31 13:40:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592884740332020',769,'121659285643','6008165007982','1.00','350','retail','0','2022-07-31 20:27:54','','','','308.53','Cash',48.28,'350','','','12','','1','2022-07-31 14:29:41','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592913043913253',770,'121659288582','6161101605458','1.00','250','retail','0','2022-07-31 21:15:05','','','','182','Cash',34.48,'250','','','12','','1','2022-07-31 15:16:19','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592928200303223',771,'121659291380','6161101605458','1.00','250','retail','0','2022-07-31 21:40:20','','','','182','Cash',34.48,'250','','','12','','1','2022-07-31 15:40:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592970813112332',772,'121659292859','6161101604703','1.00','200','retail','0','2022-07-31 22:52:51','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-31 16:53:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592970832033207',773,'121659292859','6161101604703','1.00','200','retail','0','2022-07-31 22:52:51','','','','150.45','Cash',27.59,'200','','','12','','1','2022-07-31 16:53:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592971710303223',774,'121659292859','5018907194802','1.00','100','retail','0','2022-07-31 22:52:51','','','','74.58','Cash',13.79,'100','','','12','','1','2022-07-31 16:53:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216592983963913253',775,'121659298390','6161101603515','1.00','250','retail','0','2022-07-31 23:13:16','','','','182','Cash',34.48,'250','','','12','','1','2022-07-31 17:15:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593480150303223',776,'121659345633','5060608740253','1.00','70','retail','0','2022-08-01 13:00:16','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-01 07:02:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593611656639613',777,'121659361161','6161101602372','1.00','250','retail','0','2022-08-01 16:39:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-01 10:41:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593611683623231',778,'121659361161','6161101602372','1.00','250','retail','0','2022-08-01 16:39:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-01 10:41:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593681880332020',779,'121659361291','6001108028044','1.00','250','retail','0','2022-08-01 18:36:29','','','','201','Cash',34.48,'250','','','12','','1','2022-08-01 12:38:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593738653718253',780,'121659373701','6161101601979','1.00','250','retail','0','2022-08-01 20:11:05','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-01 14:11:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593805460303223',781,'121659380533','6161101602372','2.00','500','retail','0','2022-08-01 22:02:27','','','','189.75','Cash',68.97,'250','','','12','','1','2022-08-01 16:02:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593808096303603',782,'121659380550','6161101605458','1.00','250','retail','0','2022-08-01 22:06:50','','','','182','Cash',34.48,'250','','','12','','1','2022-08-01 16:07:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593808590303223',783,'121659380846','5010103930840','1.00','430','retail','0','2022-08-01 22:07:40','','','','335','Cash',59.31,'430','','','12','','1','2022-08-01 16:08:30','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',370.69,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593812813812253',784,'121659380911','6161101601979','1.00','250','retail','0','2022-08-01 22:14:42','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-01 16:14:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593818643330320',785,'121659381684','6009644549320','1.00','70','retail','0','2022-08-01 22:24:25','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-01 16:24:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593832930303223',786,'121659381873','6161101603324','1.00','200','retail','0','2022-08-01 22:48:20','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-01 16:48:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593833580303223',787,'121659383316','6161101601979','1.00','250','retail','0','2022-08-01 22:49:19','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-01 16:51:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593859036303603',788,'121659383467','6161101603515','1.00','250','retail','0','2022-08-01 23:31:44','','','','182','Cash',34.48,'250','','','12','','1','2022-08-01 17:32:49','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593865660303223',789,'121659385970','8712000900663','1.00','230','retail','0','2022-08-01 23:43:11','','','','174','Cash',31.72,'230','','','12','','1','2022-08-01 17:44:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593865683815253',790,'121659385970','8712000900663','1.00','230','retail','0','2022-08-01 23:43:11','','','','174','Cash',31.72,'230','','','12','','1','2022-08-01 17:44:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593865693815253',791,'121659385970','8712000900663','1.00','230','retail','0','2022-08-01 23:43:11','','','','174','Cash',31.72,'230','','','12','','1','2022-08-01 17:44:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593865790303223',792,'121659385970','8712000900663','1.00','230','retail','0','2022-08-01 23:43:11','','','','174','Cash',31.72,'230','','','12','','1','2022-08-01 17:44:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593865913815253',793,'121659385970','8712000900663','1.00','230','retail','0','2022-08-01 23:43:11','','','','174','Cash',31.72,'230','','','12','','1','2022-08-01 17:44:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216593877590303223',794,'121659386693','6009644549320','1.00','70','retail','0','2022-08-02 00:02:39','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-01 18:02:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594546423340320',795,'121659451926','6161101603324','1.00','200','retail','0','2022-08-02 18:37:23','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 12:37:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594563766033625',796,'121659456352','082184090442','1.00','4700','retail','0','2022-08-02 19:06:19','','','','3450','Cash',648.28,'4700','','','12','','1','2022-08-02 13:07:55','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4051.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594563788033825',797,'121659456352','4058387000317','1.00','1550','retail','0','2022-08-02 19:06:19','','','','1150','Cash',213.79,'1550','','','12','','1','2022-08-02 13:07:55','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594590322033209',798,'121659456476','6001452371506','1.00','1600','retail','0','2022-08-02 19:50:53','','','','1150','Cash',220.69,'1600','','','12','','1','2022-08-02 13:52:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594590363510253',799,'121659456476','5010103912976','1.00','5400','retail','0','2022-08-02 19:50:53','','','','4000','Cash',744.83,'5400','','','12','','1','2022-08-02 13:52:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',4655.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594590406343603',800,'121659456476','6002039008686','1.00','1900','retail','0','2022-08-02 19:50:53','','','','1400','Cash',262.07,'1900','','','12','','1','2022-08-02 13:52:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594590433510253',801,'121659456476','6002039005753','1.00','1400','retail','0','2022-08-02 19:50:53','','','','790','Cash',193.10,'1400','','','12','','1','2022-08-02 13:52:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594590533340320',802,'121659456476','5000291021925','1.00','4500','retail','0','2022-08-02 19:50:53','','','','3381','Cash',620.69,'4500','','','12','','1','2022-08-02 13:52:38','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594592335639513',803,'121659459159','6161101605458','1.00','250','retail','0','2022-08-02 19:53:59','','','','182','Cash',34.48,'250','','','12','','1','2022-08-02 13:55:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594592393512253',804,'121659459159','6161101603515','1.00','250','retail','0','2022-08-02 19:53:59','','','','182','Cash',34.48,'250','','','12','','1','2022-08-02 13:55:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594621230332020',805,'121659459323','3155930006015','1.00','250','retail','0','2022-08-02 20:42:03','','','','188','Cash',34.48,'250','','','12','','1','2022-08-02 14:44:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594654140303223',806,'121659462252','6161101600934','1.00','1500','retail','0','2022-08-02 21:38:04','','','','1144','Cash',206.90,'1500','','','12','','1','2022-08-02 15:41:46','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594654186313603',807,'121659462252','088544018941','1.00','2900','retail','0','2022-08-02 21:38:04','','','','2100','Cash',400.00,'2900','','','12','','1','2022-08-02 15:41:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2500.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594654816383603',808,'121659462252','6008165007784','1.00','370','retail','0','2022-08-02 21:38:04','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-02 15:41:46','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594654830332020',809,'121659462252','6008165007784','1.00','370','retail','0','2022-08-02 21:38:04','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-02 15:41:46','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594662546353603',810,'121659465708','6161101130424','1.00','750','retail','0','2022-08-02 21:50:54','','','','642','Cash',103.45,'750','','','12','','1','2022-08-02 15:51:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594664276639613',811,'121659466307','6161101601979','2.00','500','retail','0','2022-08-02 21:53:47','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-02 15:53:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594675933340320',812,'121659466433','5010103930628','1.00','1550','retail','0','2022-08-02 22:20:40','','','','1125','Cash',213.79,'1550','','','12','','1','2022-08-02 16:22:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594675966639613',813,'121659466433','6161101604406','1.00','250','retail','0','2022-08-02 22:20:40','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-02 16:22:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594675986393603',814,'121659466433','6161101604406','1.00','250','retail','0','2022-08-02 22:20:40','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-02 16:22:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594676232033267',815,'121659466433','6164001199331','1.00','60','retail','0','2022-08-02 22:20:40','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-02 16:22:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594676263223326',816,'121659466433','6164001199331','1.00','60','retail','0','2022-08-02 22:20:40','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-02 16:22:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594678413618253',817,'121659466433','6008165007814','1.00','350','retail','0','2022-08-02 22:20:40','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-02 16:22:22','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594680313610253',818,'121659466433','5010232953925','1.00','400','retail','0','2022-08-02 22:20:40','','','','315.787','Cash',55.17,'400','','','12','','1','2022-08-02 16:22:22','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594680403610253',819,'121659466433','5018907194802','1.00','100','retail','0','2022-08-02 22:20:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-02 16:22:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594682626363603',820,'121659468143','3086120600051','1.00','80','retail','0','2022-08-02 22:24:23','','','','59.74','Cash',11.03,'80','','','12','','1','2022-08-02 16:24:32','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594684083340320',821,'121659468363','6161101601979','2.00','500','retail','0','2022-08-02 22:27:00','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-02 16:31:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594684193340320',822,'121659468363','6161101602372','1.00','250','retail','0','2022-08-02 22:27:00','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-02 16:31:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594688333340320',823,'121659468718','6161101602938','1.00','250','retail','0','2022-08-02 22:34:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-02 16:34:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','68.00','67','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594688373340320',824,'121659468718','6161101602938','1.00','250','retail','0','2022-08-02 22:34:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-02 16:34:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','67.00','66','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594688426343603',825,'121659468718','6161101602938','1.00','250','retail','0','2022-08-02 22:34:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-02 16:34:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','66.00','65','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594688446639613',826,'121659468718','6161101602938','1.00','250','retail','0','2022-08-02 22:34:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-02 16:34:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','65.00','64','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594705263715253',827,'121659468859','6161101601979','2.00','500','retail','0','2022-08-02 23:02:19','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-02 17:02:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594705386333603',828,'121659468859','6161101603324','2.00','400','retail','0','2022-08-02 23:02:19','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-02 17:02:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594707688033825',829,'121659470554','6001495203055','1.00','1000','retail','0','2022-08-02 23:06:09','','','','628','Cash',137.93,'1000','','','12','','1','2022-08-02 17:06:20','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594713993713253',830,'121659471395','6161101603515','1.00','250','retail','0','2022-08-02 23:16:39','','','','182','Cash',34.48,'250','','','12','','1','2022-08-02 17:18:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594715250332020',831,'121659471519','6008165007685','1.00','270','retail','0','2022-08-02 23:18:46','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-02 17:19:20','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594720917639713',832,'121659471561','6161101601979','1.00','250','retail','0','2022-08-02 23:28:14','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-02 17:29:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594720944033425',833,'121659471561','6161101602372','1.00','250','retail','0','2022-08-02 23:28:14','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-02 17:29:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594728027639713',834,'121659472227','6161101602167','1.00','550','retail','0','2022-08-02 23:41:41','','','','388','Cash',75.86,'550','','','12','','1','2022-08-02 17:41:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594729230303223',835,'121659472904','5000267014609','1.00','1100','retail','0','2022-08-02 23:42:26','','','','794','Cash',151.72,'1100','','','12','','1','2022-08-02 17:43:44','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594729302033292',836,'121659472904','5011007003029','1.00','2700','retail','0','2022-08-02 23:42:26','','','','2000','Cash',372.41,'2700','','','12','','1','2022-08-02 17:43:44','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594729455033525',837,'121659472904','6161101604543','1.00','1100','retail','0','2022-08-02 23:42:26','','','','788','Cash',151.72,'1100','','','12','','1','2022-08-02 17:43:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742237639713',838,'121659474216','8712000900045','1.00','250','retail','0','2022-08-03 00:04:05','','','','182','Cash',34.48,'250','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742253712253',839,'121659474216','8712000900045','1.00','250','retail','0','2022-08-03 00:04:05','','','','182','Cash',34.48,'250','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742270332020',840,'121659474216','6161101602433','1.00','200','retail','0','2022-08-03 00:04:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742300332020',841,'121659474216','6161101602433','1.00','200','retail','0','2022-08-03 00:04:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742316333603',842,'121659474216','6161101602433','1.00','200','retail','0','2022-08-03 00:04:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742333712253',843,'121659474216','6161101602433','1.00','200','retail','0','2022-08-03 00:04:05','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742380332020',844,'121659474216','8712000900663','1.00','230','retail','0','2022-08-03 00:04:05','','','','174','Cash',31.72,'230','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742390332020',845,'121659474216','8712000900663','1.00','230','retail','0','2022-08-03 00:04:05','','','','174','Cash',31.72,'230','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742434262932',846,'121659474216','6161101604406','1.00','250','retail','0','2022-08-03 00:04:05','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594742450020306',847,'121659474216','6161101604406','1.00','250','retail','0','2022-08-03 00:04:05','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-02 18:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594743090303223',848,'121659474296','6973322691314','1.00','1750','retail','0','2022-08-03 00:05:10','','','','1000','Cash',241.38,'1750','','','12','','1','2022-08-02 18:05:29','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594745030303223',849,'121659474330','6161101602372','1.00','250','retail','0','2022-08-03 00:08:24','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-02 18:08:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216594745393715253',850,'121659474516','6161101603324','1.00','200','retail','0','2022-08-03 00:09:00','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-02 18:11:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595453366333603',851,'121659539843','5010103930628','1.00','1550','retail','0','2022-08-03 19:51:24','','','','1125','Cash',213.79,'1550','','','12','','1','2022-08-03 13:52:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595453790303223',852,'121659539843','6164001199331','1.00','60','retail','0','2022-08-03 19:51:24','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-03 13:52:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595453820332020',853,'121659539843','6164001199331','1.00','60','retail','0','2022-08-03 19:51:24','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-03 13:52:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595454833414253',854,'121659539843','3086120600020','1.00','120','retail','0','2022-08-03 19:51:24','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-03 13:52:08','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595456610332020',855,'121659545530','3155930006015','2.00','500','retail','0','2022-08-03 19:54:22','','','','188','Cash',68.97,'250','','','12','','1','2022-08-03 13:54:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595470646363603',856,'121659545691','6161101604406','1.00','250','retail','0','2022-08-03 20:18:13','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-03 14:18:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595470810332020',857,'121659545691','6161101603515','1.00','250','retail','0','2022-08-03 20:18:13','','','','182','Cash',34.48,'250','','','12','','1','2022-08-03 14:18:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595470936393603',858,'121659545691','6164001199331','1.00','60','retail','0','2022-08-03 20:18:13','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-03 14:18:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495756373603',859,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495813350320',860,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495854639413',861,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495873222235',862,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495893350320',863,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495919325065',864,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495930332020',865,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595495942629240',866,'121659547103','6161101603324','1.00','200','retail','0','2022-08-03 21:00:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-03 15:03:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595496155033525',867,'121659547103','6973322691314','1.00','1750','retail','0','2022-08-03 21:00:15','','','','1000','Cash',241.38,'1750','','','12','','1','2022-08-03 15:03:30','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595521090303223',868,'121659549811','6001496301705','1.00','1000','retail','0','2022-08-03 21:41:54','','','','729','Cash',137.93,'1000','','','12','','1','2022-08-03 15:43:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595521130303223',869,'121659549811','6001108028044','1.00','250','retail','0','2022-08-03 21:41:54','','','','201','Cash',34.48,'250','','','12','','1','2022-08-03 15:43:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595536912522223',870,'121659553680','6161101602372','12.00','3000','retail','0','2022-08-03 22:08:11','','','','189.75','Cash',413.79,'250','','','12','','1','2022-08-03 16:13:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'12','33.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595542696363603',871,'121659553981','6161101602372','1.00','250','retail','0','2022-08-03 22:17:49','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-03 16:18:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595564290332020',872,'121659554458','6001506003599','1.00','1200','retail','0','2022-08-03 22:53:52','','','','850','Cash',165.52,'1200','','','12','','1','2022-08-03 17:14:47','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595564311033125',873,'121659554458','6001506003599','1.00','1200','retail','0','2022-08-03 22:53:52','','','','850','Cash',165.52,'1200','','','12','','1','2022-08-03 17:14:47','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595613212033231',874,'121659557689','5449000139030','1.00','70','retail','0','2022-08-04 00:15:24','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-03 18:21:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216595613236639613',875,'121659557689','6161101603515','1.00','250','retail','0','2022-08-04 00:15:24','','','','182','Cash',34.48,'250','','','12','','1','2022-08-03 18:21:59','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596371350332020',876,'121659636933','6001496011772','1.00','750','retail','0','2022-08-04 21:19:38','','','','544','Cash',103.45,'750','','','12','','1','2022-08-04 15:19:50','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596371770303223',877,'121659636933','6008165007982','1.00','350','retail','0','2022-08-04 21:19:38','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-04 15:19:50','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596372111033125',878,'121659637192','6161101603515','1.00','250','retail','0','2022-08-04 21:20:12','','','','182','Cash',34.48,'250','','','12','','1','2022-08-04 15:20:14','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596373000303223',879,'121659637216','6161101601979','1.00','250','retail','0','2022-08-04 21:22:15','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-04 15:22:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596373122033237',880,'121659637216','6001108028044','1.00','250','retail','0','2022-08-04 21:22:15','','','','201','Cash',34.48,'250','','','12','','1','2022-08-04 15:22:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596373340303223',881,'121659637216','6161101604703','2.00','400','retail','0','2022-08-04 21:22:15','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-04 15:22:27','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596387342033278',882,'121659637348','6161101603324','1.00','200','retail','0','2022-08-04 21:46:14','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-04 15:46:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596387460332020',883,'121659637348','6161101601979','1.00','250','retail','0','2022-08-04 21:46:14','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-04 15:46:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596387733360320',884,'121659637348','6161101604703','2.00','400','retail','0','2022-08-04 21:46:14','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-04 15:46:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596402221152132',885,'121659638778','6161101603379','1.00','250','retail','0','2022-08-04 22:10:22','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-04 16:11:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596402843412253',886,'121659640261','6161101603324','1.00','200','retail','0','2022-08-04 22:11:25','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-04 16:11:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596403863360320',887,'121659640309','6974929192211','1.00','3250','retail','0','2022-08-04 22:13:07','','','','2500','Cash',448.28,'3250','','','12','','1','2022-08-04 16:16:21','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596437012033273',888,'121659640583','5011013100194','1.00','1350','retail','0','2022-08-04 23:08:22','','','','999','Cash',186.21,'1350','','','12','','1','2022-08-04 17:08:55','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596440730332020',889,'121659643736','5018907194802','1.00','100','retail','0','2022-08-04 23:14:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-04 17:17:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596440770303223',890,'121659643736','54491069','1.00','70','retail','0','2022-08-04 23:14:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-04 17:17:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596440823521021',891,'121659643736','54491069','1.00','70','retail','0','2022-08-04 23:14:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-04 17:17:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596440850332020',892,'121659643736','5000289020701','1.00','2000','retail','0','2022-08-04 23:14:45','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-04 17:17:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596452640303223',893,'121659645260','6161101603515','1.00','250','retail','0','2022-08-04 23:35:00','','','','182','Cash',34.48,'250','','','12','','1','2022-08-04 17:36:23','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596453000033025',894,'121659645260','8712000900045','4.00','1000','retail','0','2022-08-04 23:35:00','','','','182','Cash',137.93,'250','','','12','','1','2022-08-04 17:36:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','20.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596454016303603',895,'121659645384','6161101604703','4.00','800','retail','0','2022-08-04 23:36:42','','','','150.45','Cash',110.34,'200','','','12','','1','2022-08-04 17:37:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596462670452273',896,'121659645968','6974929190361','1.00','3250','retail','0','2022-08-04 23:51:21','','','','2500','Cash',448.28,'3250','','','12','','1','2022-08-04 17:56:45','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596462813412253',897,'121659645968','6161101601979','1.00','250','retail','0','2022-08-04 23:51:21','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-04 17:56:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596480066033625',898,'121659647327','6164001199331','1.00','60','retail','0','2022-08-05 00:20:07','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-04 18:20:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596497093417253',899,'121659648050','5018907194802','1.00','100','retail','0','2022-08-05 00:48:30','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-04 18:49:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596502970303223',900,'121659650288','6161101602372','1.00','250','retail','0','2022-08-05 00:58:17','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-04 18:58:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596503810136022',901,'121659650323','6009644549320','1.00','70','retail','0','2022-08-05 00:59:41','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-04 18:59:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596505862033250',902,'121659650384','5449000139030','1.00','70','retail','0','2022-08-05 01:03:30','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-04 19:05:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596505915639513',903,'121659650384','5018907194802','1.00','100','retail','0','2022-08-05 01:03:30','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-04 19:05:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216596516588033825',904,'121659650746','5000267125046','1.00','4300','retail','0','2022-08-05 01:20:59','','','','3164','Cash',593.10,'4300','','','12','','1','2022-08-04 19:21:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3706.90,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597140700033025',905,'121659644710','5449000188342','1.00','90','retail','0','2022-08-05 18:41:10','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-05 12:41:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597141413370320',906,'121659714082','6161101601979','1.00','250','retail','0','2022-08-05 18:42:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 12:43:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597141439729533',907,'121659714082','6161101601979','1.00','250','retail','0','2022-08-05 18:42:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 12:43:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597141483111253',908,'121659714082','6161101601979','1.00','250','retail','0','2022-08-05 18:42:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 12:43:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597141503111253',909,'121659714082','6161101601979','1.00','250','retail','0','2022-08-05 18:42:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 12:43:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597165622033225',910,'121659714195','5060608740253','1.00','70','retail','0','2022-08-05 19:22:42','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-05 13:22:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597228836383603',911,'121659716569','5010103930666','1.00','750','retail','0','2022-08-05 21:09:16','','','','542','Cash',103.45,'750','','','12','','1','2022-08-05 15:09:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597229553219253',912,'121659716569','6161101604550','1.00','400','retail','0','2022-08-05 21:09:16','','','','284','Cash',55.17,'400','','','12','','1','2022-08-05 15:09:27','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597241400303223',913,'121659722969','6161101604406','1.00','250','retail','0','2022-08-05 21:29:01','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-05 15:29:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597273230332020',914,'121659724197','8712000900045','1.00','250','retail','0','2022-08-05 22:22:04','','','','182','Cash',34.48,'250','','','12','','1','2022-08-05 16:22:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597303842033230',915,'121659730284','6008165007814','1.00','350','retail','0','2022-08-05 23:13:05','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-05 17:13:17','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597323953313253',916,'121659730398','5000196006652','1.00','400','retail','0','2022-08-05 23:46:36','','','','310','Cash',55.17,'400','','','12','','1','2022-08-05 17:48:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597336753316253',917,'121659732509','024000150121','1.00','250','retail','0','2022-08-06 00:07:56','','','','205','Cash',34.48,'250','','','12','','1','2022-08-05 18:09:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597367950332020',918,'121659733755','6161101601979','1.00','250','retail','0','2022-08-06 01:00:42','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 19:01:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597367970332020',919,'121659733755','6161101601979','1.00','250','retail','0','2022-08-06 01:00:42','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 19:01:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597367980303223',920,'121659733755','6161101601979','1.00','250','retail','0','2022-08-06 01:00:42','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 19:01:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597368036303603',921,'121659733755','6161101601979','1.00','250','retail','0','2022-08-06 01:00:42','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-05 19:01:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597368420303223',922,'121659733755','5010103930666','1.00','750','retail','0','2022-08-06 01:00:42','','','','542','Cash',103.45,'750','','','12','','1','2022-08-05 19:01:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597416013370320',923,'121659736917','6001108028044','1.00','250','retail','0','2022-08-06 02:20:04','','','','201','Cash',34.48,'250','','','12','','1','2022-08-05 20:20:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597416031262932',924,'121659736917','6001108028044','1.00','250','retail','0','2022-08-06 02:20:04','','','','201','Cash',34.48,'250','','','12','','1','2022-08-05 20:20:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597446112033264',925,'121659744570','100','1.00','250','retail','0','2022-08-06 03:10:12','','','','177','Cash',34.48,'250','','','12','','1','2022-08-05 21:12:15','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597449604639413',926,'121659744736','5000267112077','1.00','6000','retail','0','2022-08-06 03:18:40','','','','4520','Cash',827.59,'6000','','','12','','1','2022-08-05 21:19:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450211033125',927,'121659744736','5018907194802','1.00','100','retail','0','2022-08-06 03:18:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450243370320',928,'121659744736','5018907194802','1.00','100','retail','0','2022-08-06 03:18:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450583370320',929,'121659744736','5060608740253','1.00','70','retail','0','2022-08-06 03:18:40','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450610303223',930,'121659744736','5060608740253','1.00','70','retail','0','2022-08-06 03:18:40','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450640332020',931,'121659744736','5060608740253','1.00','70','retail','0','2022-08-06 03:18:40','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597450684639413',932,'121659744736','5060608740253','1.00','70','retail','0','2022-08-06 03:18:40','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597451196313603',933,'121659744736','5018907194802','1.00','100','retail','0','2022-08-06 03:18:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-05 21:19:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597459463370320',934,'121659745177','6001506011709','1.00','1200','retail','0','2022-08-06 03:32:26','','','','850','Cash',165.52,'1200','','','12','','1','2022-08-05 21:34:18','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597461903370320',935,'121659746059','8712000900045','2.00','500','retail','0','2022-08-06 03:36:31','','','','182','Cash',68.97,'250','','','12','','1','2022-08-05 21:36:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597462230332020',936,'121659746194','5018907194802','2.00','200','retail','0','2022-08-06 03:37:04','','','','74.58','Cash',27.59,'100','','','12','','1','2022-08-05 21:37:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597463683413253',937,'121659746356','90162602','1.00','200','retail','0','2022-08-06 03:39:28','','','','147','Cash',27.59,'200','','','12','','1','2022-08-05 21:39:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597855242033255',938,'121659780409','6161101602372','1.00','250','retail','0','2022-08-06 14:32:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-06 08:34:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597855273815253',939,'121659780409','6161101602372','1.00','250','retail','0','2022-08-06 14:32:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-06 08:34:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597855308639813',940,'121659780409','6161101602372','1.00','250','retail','0','2022-08-06 14:32:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-06 08:34:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597855313012223',941,'121659780409','6161101602372','1.00','250','retail','0','2022-08-06 14:32:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-06 08:34:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597868290332020',942,'121659785689','6161101603379','1.00','250','retail','0','2022-08-06 14:53:50','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-06 08:55:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216597882344033425',943,'121659786921','3086120600051','1.00','80','retail','0','2022-08-06 15:17:15','','','','59.74','Cash',11.03,'80','','','12','','1','2022-08-06 09:21:58','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598031170332020',944,'121659803114','6008165007784','1.00','370','retail','0','2022-08-06 19:46:53','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-06 13:48:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598031210300182',945,'121659803114','6008165007784','1.00','370','retail','0','2022-08-06 19:46:53','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-06 13:48:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598031242033213',946,'121659803114','6008165007784','1.00','370','retail','0','2022-08-06 19:46:53','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-06 13:48:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598031263011253',947,'121659803114','6008165007784','1.00','370','retail','0','2022-08-06 19:46:53','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-06 13:48:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598038553018253',948,'121659803114','8712000900663','18.00','4140','retail','0','2022-08-06 19:46:53','','','','174','Cash',571.03,'230','','','12','','1','2022-08-06 13:48:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'18','26.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598043950303223',949,'121659803114','5449000188342','1.00','90','retail','0','2022-08-06 19:46:53','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-06 13:48:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598043990303223',950,'121659803114','5449000188342','1.00','90','retail','0','2022-08-06 19:46:53','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-06 13:48:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598044103014253',951,'121659803114','90490224','1.00','90','retail','0','2022-08-06 19:46:53','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-06 13:48:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598044120639013',952,'121659803114','90490224','1.00','90','retail','0','2022-08-06 19:46:53','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-06 13:48:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598075103380320',953,'121659804495','5018907194802','1.00','100','retail','0','2022-08-06 20:38:30','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-06 14:38:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095572033259',954,'121659808054','6161101603324','1.00','200','retail','0','2022-08-06 21:12:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-06 15:13:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095606363603',955,'121659808054','6161101603324','1.00','200','retail','0','2022-08-06 21:12:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-06 15:13:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095653015253',956,'121659808054','6161101602938','1.00','250','retail','0','2022-08-06 21:12:53','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-06 15:13:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','64.00','63','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095673015253',957,'121659808054','6161101602938','1.00','250','retail','0','2022-08-06 21:12:53','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-06 15:13:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','63.00','62','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095693380320',958,'121659808054','6161101602938','1.00','250','retail','0','2022-08-06 21:12:53','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-06 15:13:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','62.00','61','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598095723015253',959,'121659808054','6161101602938','1.00','250','retail','0','2022-08-06 21:12:53','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-06 15:13:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','61.00','60','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598099960303223',960,'121659809592','6161101601979','1.00','250','retail','0','2022-08-06 21:19:56','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 15:20:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141060303223',961,'121659810002','6161101601979','1.00','250','retail','0','2022-08-06 22:28:59','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 16:29:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141099033925',962,'121659810002','6161101601979','1.00','250','retail','0','2022-08-06 22:28:59','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 16:29:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141111033125',963,'121659810002','6161101601979','1.00','250','retail','0','2022-08-06 22:28:59','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 16:29:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141133033325',964,'121659810002','6161101601979','1.00','250','retail','0','2022-08-06 22:28:59','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 16:29:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141199033925',965,'121659810002','6164001199331','1.00','60','retail','0','2022-08-06 22:28:59','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-06 16:29:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141230332020',966,'121659810002','90490224','1.00','90','retail','0','2022-08-06 22:28:59','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-06 16:29:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141266033625',967,'121659810002','5018907194802','1.00','100','retail','0','2022-08-06 22:28:59','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-06 16:29:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598141380332020',968,'121659810002','6008165007982','1.00','350','retail','0','2022-08-06 22:28:59','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-06 16:29:44','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598158341639113',969,'121659815789','6161101603324','1.00','200','retail','0','2022-08-06 22:58:04','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-06 16:58:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598158466033625',970,'121659815789','6161101603379','1.00','250','retail','0','2022-08-06 22:58:04','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-06 16:58:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598158533033325',971,'121659815789','5018907194802','1.00','100','retail','0','2022-08-06 22:58:04','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-06 16:58:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598158833118253',972,'121659815789','8712000900045','2.00','500','retail','0','2022-08-06 22:58:04','','','','182','Cash',68.97,'250','','','12','','1','2022-08-06 16:58:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598165360332020',973,'121659815892','5011013100194','1.00','1350','retail','0','2022-08-06 23:08:56','','','','999','Cash',186.21,'1350','','','12','','1','2022-08-06 17:09:10','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598175693115253',974,'121659816551','5060608740253','1.00','70','retail','0','2022-08-06 23:26:10','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-06 17:26:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598177990303223',975,'121659817580','8712000900663','1.00','230','retail','0','2022-08-06 23:30:33','','','','174','Cash',31.72,'230','','','12','','1','2022-08-06 17:31:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178046303603',976,'121659817580','8712000900663','1.00','230','retail','0','2022-08-06 23:30:33','','','','174','Cash',31.72,'230','','','12','','1','2022-08-06 17:31:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178056303603',977,'121659817580','8712000900663','1.00','230','retail','0','2022-08-06 23:30:33','','','','174','Cash',31.72,'230','','','12','','1','2022-08-06 17:31:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178066033625',978,'121659817580','8712000900663','1.00','230','retail','0','2022-08-06 23:30:33','','','','174','Cash',31.72,'230','','','12','','1','2022-08-06 17:31:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178150303223',979,'121659817580','6008165007685','1.00','270','retail','0','2022-08-06 23:30:33','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-06 17:31:40','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178190332020',980,'121659817580','6008165007968','1.00','350','retail','0','2022-08-06 23:30:33','','','','308.5','Cash',48.28,'350','','','12','','1','2022-08-06 17:31:40','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178253118253',981,'121659817580','90162602','1.00','200','retail','0','2022-08-06 23:30:33','','','','147','Cash',27.59,'200','','','12','','1','2022-08-06 17:31:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178272033287',982,'121659817580','90162602','1.00','200','retail','0','2022-08-06 23:30:33','','','','147','Cash',27.59,'200','','','12','','1','2022-08-06 17:31:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598178321639113',983,'121659817580','3086120600020','1.00','120','retail','0','2022-08-06 23:30:33','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-06 17:31:40','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598197491639113',984,'121659817902','90162602','1.00','200','retail','0','2022-08-07 00:02:30','','','','147','Cash',27.59,'200','','','12','','1','2022-08-06 18:03:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598207973217253',985,'121659819836','6161101603379','13.00','3250','retail','0','2022-08-07 00:27:06','','','','190.375','Cash',448.28,'250','','','12','','1','2022-08-06 18:27:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'','16.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598208220303223',986,'121659819836','6161101602938','4.00','1000','retail','0','2022-08-07 00:27:06','','','','198.45','Cash',137.93,'250','','','12','','1','2022-08-06 18:27:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','60.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598208322639213',987,'121659819836','5449000131836','1.00','70','retail','0','2022-08-07 00:27:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-06 18:27:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598208413380320',988,'121659819836','5018907194802','1.00','100','retail','0','2022-08-07 00:27:06','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-06 18:27:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598208603380320',989,'121659819836','5010103930666','1.00','750','retail','0','2022-08-07 00:27:06','','','','542','Cash',103.45,'750','','','12','','1','2022-08-06 18:27:18','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598208723218253',990,'121659819836','5000196006652','1.00','400','retail','0','2022-08-07 00:27:06','','','','310','Cash',55.17,'400','','','12','','1','2022-08-06 18:27:18','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598209380303223',991,'121659819836','6008165007814','1.00','350','retail','0','2022-08-07 00:27:06','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-06 18:27:18','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598209532033290',992,'121659819836','5018907194802','3.00','300','retail','0','2022-08-07 00:27:06','','','','74.58','Cash',41.38,'100','','','12','','1','2022-08-06 18:27:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'','26.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598209693380320',993,'121659819836','8712000900045','3.00','750','retail','0','2022-08-07 00:27:06','','','','182','Cash',103.45,'250','','','12','','1','2022-08-06 18:27:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598209810303223',994,'121659819836','6161101603324','2.00','400','retail','0','2022-08-07 00:27:06','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-06 18:27:18','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598210677033725',995,'121659819836','6161101602372','4.00','1000','retail','0','2022-08-07 00:27:06','','','','189.75','Cash',137.93,'250','','','12','','1','2022-08-06 18:27:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598210962639213',996,'121659819836','50196166','1.00','600','retail','0','2022-08-07 00:27:06','','','','443','Cash',82.76,'600','','','12','','1','2022-08-06 18:27:18','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598211462033211',997,'121659819836','6008165007968','1.00','350','retail','0','2022-08-07 00:27:06','','','','308.5','Cash',48.28,'350','','','12','','1','2022-08-06 18:27:18','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598212577033725',998,'121659821239','5018907194802','1.00','100','retail','0','2022-08-07 00:31:01','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-06 18:31:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598214312033241',999,'121659821239','8712000900045','2.00','500','retail','0','2022-08-07 00:31:01','','','','182','Cash',68.97,'250','','','12','','1','2022-08-06 18:31:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598214413380320',1000,'121659821239','6161101603324','1.00','200','retail','0','2022-08-07 00:31:01','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-06 18:31:18','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598214610303223',1001,'121659821239','6161101603379','1.00','250','retail','0','2022-08-07 00:31:01','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-06 18:31:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598215963380320',1002,'121659821479','6161101603379','1.00','250','retail','0','2022-08-07 00:33:16','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-06 18:33:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598231680332020',1003,'121659822203','90162602','8.00','1600','retail','0','2022-08-07 00:59:29','','','','147','Cash',220.69,'200','','','12','','1','2022-08-06 18:59:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'8','8.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598264873380320',1004,'121659823176','6161101602600','1.00','220','retail','0','2022-08-07 01:54:58','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-06 19:55:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598264982639213',1005,'121659823176','6161101601979','1.00','250','retail','0','2022-08-07 01:54:58','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-06 19:55:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728622033225',1006,'121659872346','5010232953994','1.00','350','retail','0','2022-08-07 14:48:10','','','','263.157','Cash',48.28,'350','','','12','','1','2022-08-07 08:52:10','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728666363603',1007,'121659872346','5010232953994','1.00','350','retail','0','2022-08-07 14:48:10','','','','263.157','Cash',48.28,'350','','','12','','1','2022-08-07 08:52:10','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728693718253',1008,'121659872346','6161101604406','1.00','250','retail','0','2022-08-07 14:48:10','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-07 08:52:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728766373603',1009,'121659872346','6973322691314','1.00','1750','retail','0','2022-08-07 14:48:10','','','','1000','Cash',241.38,'1750','','','12','','1','2022-08-07 08:52:10','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728797639713',1010,'121659872346','6001108049599','1.00','1000','retail','0','2022-08-07 14:48:10','','','','641','Cash',137.93,'1000','','','12','','1','2022-08-07 08:52:10','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598728897639713',1011,'121659872346','5060608740253','1.00','70','retail','0','2022-08-07 14:48:10','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-07 08:52:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598839803819253',1012,'121659877426','5000267014005','1.00','1800','retail','0','2022-08-07 17:53:01','','','','1304','Cash',248.28,'1800','','','12','','1','2022-08-07 11:53:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598862566033625',1013,'121659885659','3086120600020','1.00','120','retail','0','2022-08-07 18:30:56','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-07 12:31:47','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598879455033525',1014,'121659886339','6161101602600','6.00','1320','retail','0','2022-08-07 18:59:06','','','','154.95','Cash',182.07,'220','','','12','','1','2022-08-07 13:01:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598914519639913',1015,'121659891446','4067700014559','1.00','2500','retail','0','2022-08-07 19:57:38','','','','1850','Cash',344.83,'2500','','','12','','1','2022-08-07 14:01:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598914572033241',1016,'121659891446','5000289020800','1.00','2500','retail','0','2022-08-07 19:57:38','','','','1840','Cash',344.83,'2500','','','12','','1','2022-08-07 14:01:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598927343917253',1017,'121659891902','5018907194802','1.00','100','retail','0','2022-08-07 20:18:55','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-07 14:21:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598931499639913',1018,'121659892907','6161101603515','1.00','250','retail','0','2022-08-07 20:26:44','','','','182','Cash',34.48,'250','','','12','','1','2022-08-07 14:29:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598931590332020',1019,'121659892907','6009644549320','1.00','70','retail','0','2022-08-07 20:26:44','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-07 14:29:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598932039639913',1020,'121659892907','5018907197803','1.00','60','retail','0','2022-08-07 20:26:44','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-07 14:29:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598954660303223',1021,'121659894656','6161101605465','1.00','700','retail','0','2022-08-07 21:04:26','','','','501','Cash',96.55,'700','','','12','','1','2022-08-07 15:06:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598959340332020',1022,'121659895610','6161101603515','1.00','250','retail','0','2022-08-07 21:12:14','','','','182','Cash',34.48,'250','','','12','','1','2022-08-07 15:12:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598978169639913',1023,'121659896451','6001495062508','1.00','1700','retail','0','2022-08-07 21:43:36','','','','1257.93','Cash',234.48,'1700','','','12','','1','2022-08-07 15:45:50','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598983123913253',1024,'121659897951','8712000900045','1.00','250','retail','0','2022-08-07 21:51:53','','','','182','Cash',34.48,'250','','','12','','1','2022-08-07 15:53:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216598994511033125',1025,'121659899437','6161101603515','1.00','250','retail','0','2022-08-07 22:10:52','','','','182','Cash',34.48,'250','','','12','','1','2022-08-07 16:10:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599026390303223',1026,'121659901071','6161101605465','2.00','1400','retail','0','2022-08-07 23:20:57','','','','501','Cash',193.10,'700','','','12','','1','2022-08-07 17:22:01','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599026513016253',1027,'121659901071','6164001199331','1.00','60','retail','0','2022-08-07 23:20:57','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-07 17:22:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599026610303223',1028,'121659901071','54491069','1.00','70','retail','0','2022-08-07 23:20:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-07 17:22:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599037403390320',1029,'121659903722','54491069','1.00','70','retail','0','2022-08-07 23:22:21','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-07 17:22:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599055073015253',1030,'121659903745','6161101605465','1.00','700','retail','0','2022-08-07 23:51:48','','','','501','Cash',96.55,'700','','','12','','1','2022-08-07 17:51:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599060186313603',1031,'121659905514','54491069','1.00','70','retail','0','2022-08-08 00:00:22','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-07 18:01:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599060220639013',1032,'121659905514','5060608740253','1.00','70','retail','0','2022-08-08 00:00:22','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-07 18:01:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599068520639013',1033,'121659906845','6161101600941','1.00','750','retail','0','2022-08-08 00:15:57','','','','544','Cash',103.45,'750','','','12','','1','2022-08-07 18:17:51','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599069560639013',1034,'121659906845','6009644549320','1.00','70','retail','0','2022-08-08 00:15:57','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-07 18:17:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599071213390320',1035,'121659907089','6002039008686','1.00','1900','retail','0','2022-08-08 00:18:41','','','','1400','Cash',262.07,'1900','','','12','','1','2022-08-07 18:19:24','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599673130303223',1036,'121659966731','6161101602433','1.00','200','retail','0','2022-08-08 17:01:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-08 11:01:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599674006303603',1037,'121659967318','6161101603515','2.00','500','retail','0','2022-08-08 17:04:53','','','','182','Cash',68.97,'250','','','12','','1','2022-08-08 11:05:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599674270303223',1038,'121659967318','5018907197803','2.00','120','retail','0','2022-08-08 17:04:53','','','','44.58','Cash',16.55,'60','','','12','','1','2022-08-08 11:05:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599674363390320',1039,'121659967318','6161101604406','1.00','250','retail','0','2022-08-08 17:04:53','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-08 11:05:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599674543614253',1040,'121659967318','024000150053','1.00','250','retail','0','2022-08-08 17:04:53','','','','205','Cash',34.48,'250','','','12','','1','2022-08-08 11:05:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599674920332020',1041,'121659967318','6161101604703','1.00','200','retail','0','2022-08-08 17:04:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-08 11:05:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599688303618253',1042,'121659968043','50196081','1.00','1550','retail','0','2022-08-08 17:27:36','','','','1130','Cash',213.79,'1550','','','12','','1','2022-08-08 11:35:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599688452033288',1043,'121659968043','5449000131836','1.00','70','retail','0','2022-08-08 17:27:36','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-08 11:35:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599688566033625',1044,'121659968043','5018907197803','1.00','60','retail','0','2022-08-08 17:27:36','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-08 11:35:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599729910332020',1045,'121659969337','5000267024011','1.00','3300','retail','0','2022-08-08 18:42:11','','','','2433','Cash',455.17,'3300','','','12','','1','2022-08-08 12:43:05','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599730076303603',1046,'121659969337','6974929190361','1.00','3250','retail','0','2022-08-08 18:42:11','','','','2500','Cash',448.28,'3250','','','12','','1','2022-08-08 12:43:05','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599731353711253',1047,'121659969337','5018907194802','1.00','100','retail','0','2022-08-08 18:42:11','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-08 12:43:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599732663712253',1048,'121659969337','5060608740253','1.00','70','retail','0','2022-08-08 18:42:11','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-08 12:43:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599735986393603',1049,'121659973386','6161101604406','1.00','250','retail','0','2022-08-08 18:46:39','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-08 12:47:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599756510332020',1050,'121659973668','6009644549320','1.00','70','retail','0','2022-08-08 19:20:51','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-08 13:21:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599829196313603',1051,'121659982916','6008165007982','1.00','350','retail','0','2022-08-08 21:21:59','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-08 15:22:08','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599846608639813',1052,'121659982929','6161101603515','1.00','250','retail','0','2022-08-08 21:51:08','','','','182','Cash',34.48,'250','','','12','','1','2022-08-08 15:55:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216599846683816253',1053,'121659982929','5060608740253','1.00','70','retail','0','2022-08-08 21:51:08','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-08 15:55:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601275332033257',1054,'121660127505','5011013100194','1.00','1350','retail','0','2022-08-10 13:32:14','','','','999','Cash',186.21,'1350','','','12','','1','2022-08-10 07:32:42','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601458188033826',1055,'121660138057','5010103912976','1.00','5400','retail','0','2022-08-10 18:36:59','','','','4000','Cash',744.83,'5400','','','12','','1','2022-08-10 12:38:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',4655.17,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601477823310320',1056,'121660145894','5060608740253','1.00','70','retail','0','2022-08-10 19:09:43','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-10 13:09:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601550705630513',1057,'121660154976','6161101602051','1.00','550','retail','0','2022-08-10 21:11:32','','','','392','Cash',75.86,'550','','','12','','1','2022-08-10 15:11:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601550910332020',1058,'121660154976','5018907194802','1.00','100','retail','0','2022-08-10 21:11:32','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-10 15:11:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601556772603372',1059,'121660155102','5000267013602','1.00','2200','retail','0','2022-08-10 21:22:26','','','','1612','Cash',303.45,'2200','','','12','','1','2022-08-10 15:22:34','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601557110332020',1060,'121660155102','5018907194802','1.00','100','retail','0','2022-08-10 21:22:26','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-10 15:22:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601557460303223',1061,'121660155102','3086120600020','1.00','120','retail','0','2022-08-10 21:22:26','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-10 15:22:34','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601557662033275',1062,'121660155755','4067700014559','1.00','2500','retail','0','2022-08-10 21:22:47','','','','1850','Cash',344.83,'2500','','','12','','1','2022-08-10 15:23:37','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601558385630513',1063,'121660155818','6008165007982','1.00','350','retail','0','2022-08-10 21:23:58','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-10 15:24:07','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601578870332020',1064,'121660155848','6009644549320','1.00','70','retail','0','2022-08-10 21:58:08','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-10 16:00:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601583305630513',1065,'121660158006','6161101605199','1.00','250','retail','0','2022-08-10 22:05:31','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-10 16:05:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601608810303223',1066,'121660158360','6161101602167','1.00','550','retail','0','2022-08-10 22:48:30','','','','388','Cash',75.86,'550','','','12','','1','2022-08-10 16:50:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601609063310320',1067,'121660158360','54491069','1.00','70','retail','0','2022-08-10 22:48:30','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-10 16:50:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601609100033026',1068,'121660158360','54491069','1.00','70','retail','0','2022-08-10 22:48:30','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-10 16:50:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601616130360612',1069,'121660161027','5018907194802','1.00','100','retail','0','2022-08-10 23:01:04','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-10 17:01:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601616240303223',1070,'121660161027','6009644549320','1.00','70','retail','0','2022-08-10 23:01:04','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-10 17:01:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601616640303223',1071,'121660161027','082184090442','1.00','4700','retail','0','2022-08-10 23:01:04','','','','3450','Cash',648.28,'4700','','','12','','1','2022-08-10 17:01:29','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4051.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216601620856630613',1072,'121660162069','5060608740253','2.00','140','retail','0','2022-08-10 23:08:05','','','','41.82','Cash',19.31,'70','','','12','','1','2022-08-10 17:08:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602295992033259',1073,'121660229587','6161101602143','1.00','550','retail','0','2022-08-11 17:53:58','','','','388','Cash',75.86,'550','','','12','','1','2022-08-11 11:55:32','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602296380303223',1074,'121660229587','5449000131836','1.00','70','retail','0','2022-08-11 17:53:58','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-11 11:55:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602306672033260',1075,'121660229734','6161101605465','1.00','700','retail','0','2022-08-11 18:11:08','','','','501','Cash',96.55,'700','','','12','','1','2022-08-11 12:12:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602342910303223',1076,'121660230774','5449000139030','1.00','70','retail','0','2022-08-11 19:11:32','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-11 13:12:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602343593630313',1077,'121660234333','5010103930666','1.00','750','retail','0','2022-08-11 19:12:39','','','','542','Cash',103.45,'750','','','12','','1','2022-08-11 13:13:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602387200332020',1078,'121660234416','5000196006652','1.00','400','retail','0','2022-08-11 20:25:21','','','','310','Cash',55.17,'400','','','12','','1','2022-08-11 14:27:09','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602460404630413',1079,'121660246010','100','1.00','250','retail','0','2022-08-11 22:27:35','','','','177','Cash',34.48,'250','','','12','','1','2022-08-11 16:27:40','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602460554630413',1080,'121660246010','5449000131836','1.00','70','retail','0','2022-08-11 22:27:35','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-11 16:27:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602460850303223',1081,'121660246061','6161101602938','12.00','3000','retail','0','2022-08-11 22:28:06','','','','198.45','Cash',413.79,'250','','','12','','1','2022-08-11 16:28:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'12','56.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602464120303223',1082,'121660246091','6001495203055','1.00','1000','retail','0','2022-08-11 22:33:33','','','','628','Cash',137.93,'1000','','','12','','1','2022-08-11 16:34:54','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602467750303223',1083,'121660246495','6008165007685','1.00','270','retail','0','2022-08-11 22:39:41','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-11 16:40:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602467771222032',1084,'121660246495','6008165007685','1.00','270','retail','0','2022-08-11 22:39:41','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-11 16:40:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602467800033026',1085,'121660246495','3086120600020','1.00','120','retail','0','2022-08-11 22:39:41','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-11 16:40:32','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602472950303223',1086,'121660246833','5060608740253','1.00','70','retail','0','2022-08-11 22:48:15','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-11 16:49:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602485746373603',1087,'121660247378','6161101605199','1.00','250','retail','0','2022-08-11 23:09:34','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-11 17:11:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602499004630413',1088,'121660248703','6161101602167','1.00','550','retail','0','2022-08-11 23:33:59','','','','388','Cash',75.86,'550','','','12','','1','2022-08-11 17:35:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602500390303223',1089,'121660248703','5018907194802','1.00','100','retail','0','2022-08-11 23:33:59','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-11 17:35:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602516490332020',1090,'121660250105','6161101604550','1.00','400','retail','0','2022-08-12 00:00:50','','','','284','Cash',55.17,'400','','','12','','1','2022-08-11 18:05:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602519911132122',1091,'121660251957','90490224','1.00','90','retail','0','2022-08-12 00:06:31','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-11 18:06:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216602985352136222',1092,'121660298525','90490224','1.00','90','retail','0','2022-08-12 13:02:15','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-12 07:02:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603152730332020',1093,'121660315150','6001812011912','1.00','1100','retail','0','2022-08-12 17:41:27','','','','815','Cash',151.72,'1100','','','12','','1','2022-08-12 11:42:16','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603152811033126',1094,'121660315150','5060608740253','1.00','70','retail','0','2022-08-12 17:41:27','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-12 11:42:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603152844033426',1095,'121660315150','5060608740253','1.00','70','retail','0','2022-08-12 17:41:27','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-12 11:42:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603152863112263',1096,'121660315150','5060608740253','1.00','70','retail','0','2022-08-12 17:41:27','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-12 11:42:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603176661630113',1097,'121660315150','6161101602051','1.00','550','retail','0','2022-08-12 18:22:11','','','','392','Cash',75.86,'550','','','12','','1','2022-08-12 12:22:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603177077133722',1098,'121660315150','5018907197803','1.00','60','retail','0','2022-08-12 18:22:11','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-12 12:22:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603177313330320',1099,'121660315150','5060608740253','1.00','70','retail','0','2022-08-12 18:22:11','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-12 12:22:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603181910332020',1100,'121660318125','6161101602051','1.00','550','retail','0','2022-08-12 18:30:38','','','','392','Cash',75.86,'550','','','12','','1','2022-08-12 12:30:44','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603182186313603',1101,'121660318125','5018907197803','1.00','60','retail','0','2022-08-12 18:30:38','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-12 12:30:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603182380332020',1102,'121660318125','5060608740253','1.00','70','retail','0','2022-08-12 18:30:38','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-12 12:30:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603228490303223',1103,'121660318245','5000267013602','1.00','2200','retail','0','2022-08-12 19:48:43','','','','1612','Cash',303.45,'2200','','','12','','1','2022-08-12 13:48:50','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603228923218263',1104,'121660318245','5018907197803','1.00','60','retail','0','2022-08-12 19:48:43','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-12 13:48:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603229233219263',1105,'121660318245','5018907197803','1.00','60','retail','0','2022-08-12 19:48:43','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-12 13:48:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603294000332020',1106,'121660322932','5010103930970','1.00','750','retail','0','2022-08-12 21:42:12','','','','542','Cash',103.45,'750','','','12','','1','2022-08-12 15:42:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603294273330320',1107,'121660322932','5010103930970','1.00','750','retail','0','2022-08-12 21:42:12','','','','542','Cash',103.45,'750','','','12','','1','2022-08-12 15:42:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603294610332020',1108,'121660322932','6009644549320','1.00','70','retail','0','2022-08-12 21:42:12','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-12 15:42:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603296433216263',1109,'121660322932','54491069','1.00','70','retail','0','2022-08-12 21:42:12','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-12 15:42:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603331780332020',1110,'121660329768','50196166','1.00','600','retail','0','2022-08-12 22:39:39','','','','443','Cash',82.76,'600','','','12','','1','2022-08-12 16:40:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603349142033294',1111,'121660334900','6161101606561','1.00','1550','retail','0','2022-08-12 23:10:29','','','','1125','Cash',213.79,'1550','','','12','','1','2022-08-12 17:14:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603349273630313',1112,'121660334900','3086120600051','1.00','80','retail','0','2022-08-12 23:10:29','','','','59.74','Cash',11.03,'80','','','12','','1','2022-08-12 17:14:06','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603349713630313',1113,'121660334900','5449000131836','1.00','70','retail','0','2022-08-12 23:10:29','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-12 17:14:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603352580332020',1114,'121660335247','5011013100194','1.00','1350','retail','0','2022-08-12 23:14:18','','','','999','Cash',186.21,'1350','','','12','','1','2022-08-12 17:14:22','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603365633630313',1115,'121660335263','6001108049599','1.00','1000','retail','0','2022-08-12 23:36:04','','','','641','Cash',137.93,'1000','','','12','','1','2022-08-12 17:36:25','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603372070332020',1116,'121660337105','6002039005753','1.00','1400','retail','0','2022-08-12 23:46:47','','','','790','Cash',193.10,'1400','','','12','','1','2022-08-12 17:47:20','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603373013330320',1117,'121660337241','4067700014559','1.00','2500','retail','0','2022-08-12 23:48:21','','','','1850','Cash',344.83,'2500','','','12','','1','2022-08-12 17:50:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603872823812263',1118,'121660387223','5099873089712','1.00','2300','retail','0','2022-08-13 13:41:48','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-13 07:47:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216603873076303603',1119,'121660387223','5449000131836','1.00','70','retail','0','2022-08-13 13:41:48','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-13 07:47:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604068955033526',1120,'121660406774','6161101601979','13.00','3250','retail','0','2022-08-13 19:08:16','','','','172.75','Cash',448.28,'250','','','12','','1','2022-08-13 13:08:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'13','30.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604083173340320',1121,'121660408314','5000289020701','1.00','2000','retail','0','2022-08-13 19:31:57','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-13 13:32:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604084643014263',1122,'121660408454','8712000900663','1.00','230','retail','0','2022-08-13 19:34:24','','','','174','Cash',31.72,'230','','','12','','1','2022-08-13 13:34:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604089910303223',1123,'121660408973','50112265','3.00','210','retail','0','2022-08-13 19:43:11','','','','53.33','Cash',28.97,'70','','','12','','1','2022-08-13 13:43:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604128996393603',1124,'121660411462','6008165007982','1.00','350','retail','0','2022-08-13 20:48:20','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-13 14:49:16','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604151510332020',1125,'121660412957','6001496011772','1.00','750','retail','0','2022-08-13 21:26:47','','','','544','Cash',103.45,'750','','','12','','1','2022-08-13 15:28:18','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604152071630113',1126,'121660412957','6164001199331','1.00','60','retail','0','2022-08-13 21:26:47','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-13 15:28:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604161222033226',1127,'121660415299','082184090442','1.00','4700','retail','0','2022-08-13 21:42:03','','','','3450','Cash',648.28,'4700','','','12','','1','2022-08-13 15:48:05','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4051.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604168533340320',1128,'121660416486','1000','1.00','250','retail','0','2022-08-13 21:55:09','','','','192','Cash',34.48,'250','','','12','','1','2022-08-13 15:56:14','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604169088033826',1129,'121660416486','5449000131836','1.00','70','retail','0','2022-08-13 21:55:09','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-13 15:56:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604171072033217',1130,'121660416975','6161101604703','1.00','200','retail','0','2022-08-13 21:58:28','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-13 15:58:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604181992033218',1131,'121660417111','6973322691345','1.00','1750','retail','0','2022-08-13 22:16:39','','','','1000','Cash',241.38,'1750','','','12','','1','2022-08-13 16:17:09','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604208392630213',1132,'121660418230','6161101603324','1.00','200','retail','0','2022-08-13 23:00:39','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-13 17:01:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604231860303223',1133,'121660420891','1000','1.00','250','retail','0','2022-08-13 23:39:47','','','','192','Cash',34.48,'250','','','12','','1','2022-08-13 17:39:49','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604239383340320',1134,'121660423190','50196166','1.00','600','retail','0','2022-08-13 23:52:18','','','','443','Cash',82.76,'600','','','12','','1','2022-08-13 17:52:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604240643340320',1135,'121660423966','6164001199331','1.00','60','retail','0','2022-08-13 23:56:26','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-13 17:56:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604241860332020',1136,'121660423966','3086120600051','1.00','80','retail','0','2022-08-13 23:56:26','','','','59.74','Cash',11.03,'80','','','12','','1','2022-08-13 17:56:56','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604246710303223',1137,'121660424217','6161101606011','1.00','220','retail','0','2022-08-14 00:06:21','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-13 18:06:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604246783340320',1138,'121660424217','5011013100194','1.00','1350','retail','0','2022-08-14 00:06:21','','','','999','Cash',186.21,'1350','','','12','','1','2022-08-13 18:06:23','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604246813340320',1139,'121660424217','6161101606011','1.00','220','retail','0','2022-08-14 00:06:21','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-13 18:06:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604247872033274',1140,'121660424785','5010103930666','1.00','750','retail','0','2022-08-14 00:06:42','','','','542','Cash',103.45,'750','','','12','','1','2022-08-13 18:07:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604247912033274',1141,'121660424785','3086120600020','1.00','120','retail','0','2022-08-14 00:06:42','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-13 18:07:30','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604248011033126',1142,'121660424785','6164001199331','1.00','60','retail','0','2022-08-14 00:06:42','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-13 18:07:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604252290332020',1143,'121660424851','50196166','1.00','600','retail','0','2022-08-14 00:13:54','','','','443','Cash',82.76,'600','','','12','','1','2022-08-13 18:15:28','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604252330303223',1144,'121660424851','5060608740253','1.00','70','retail','0','2022-08-14 00:13:54','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-13 18:15:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604783463713263',1145,'121660478316','5060608740253','1.00','70','retail','0','2022-08-14 14:59:07','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-14 08:59:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604891853340320',1146,'121660489180','6161101602051','1.00','550','retail','0','2022-08-14 17:59:45','','','','392','Cash',75.86,'550','','','12','','1','2022-08-14 12:00:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604923483913263',1147,'121660492326','6161101606011','2.00','440','retail','0','2022-08-14 18:52:28','','','','172.833','Cash',60.69,'220','','','12','','1','2022-08-14 12:52:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604942855033526',1148,'121660493921','5018907194802','1.00','100','retail','0','2022-08-14 19:24:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-14 13:28:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604965793340320',1149,'121660494534','5000267112077','1.00','6000','retail','0','2022-08-14 20:02:59','','','','4520','Cash',827.59,'6000','','','12','','1','2022-08-14 14:04:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604983680332020',1150,'121660496800','5018907194802','1.00','100','retail','0','2022-08-14 20:32:48','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-14 14:32:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604992672033229',1151,'121660498373','5099873089712','1.00','2300','retail','0','2022-08-14 20:48:02','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-14 14:49:57','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604992750332020',1152,'121660498373','6161101604406','1.00','250','retail','0','2022-08-14 20:48:02','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-14 14:49:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604992810332020',1153,'121660498373','6161101601979','1.00','250','retail','0','2022-08-14 20:48:02','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-14 14:49:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604997955033526',1154,'121660499398','6161101602938','2.00','500','retail','0','2022-08-14 20:56:35','','','','198.45','Cash',68.97,'250','','','12','','1','2022-08-14 14:57:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','44.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216604999855033526',1155,'121660499876','6161101601979','1.00','250','retail','0','2022-08-14 20:59:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-14 14:59:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216605028370303223',1156,'121660499989','1000','1.00','250','retail','0','2022-08-14 21:47:17','','','','192','Cash',34.48,'250','','','12','','1','2022-08-14 15:50:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216605039893350320',1157,'121660503043','6161101604550','1.00','400','retail','0','2022-08-14 22:06:30','','','','284','Cash',55.17,'400','','','12','','1','2022-08-14 16:06:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216605085983015263',1158,'121660503995','6161101605465','1.00','700','retail','0','2022-08-14 23:23:19','','','','501','Cash',96.55,'700','','','12','','1','2022-08-14 17:26:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216605102432033220',1159,'121660508782','3086120600051','1.00','80','retail','0','2022-08-14 23:50:43','','','','59.74','Cash',11.03,'80','','','12','','1','2022-08-14 17:50:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606598281230183',1160,'121660659824','8719327068540','1.00','300','retail','0','2022-08-16 17:23:48','','','','225','Cash',41.38,'300','','','12','','1','2022-08-16 11:26:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606619296630613',1161,'121660660009','6002039006019','1.00','1400','retail','0','2022-08-16 17:58:50','','','','790','Cash',193.10,'1400','','','12','','1','2022-08-16 11:59:51','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606643260332020',1162,'121660662110','6001108001436','1.00','1600','retail','0','2022-08-16 18:38:47','','','','1150','Cash',220.69,'1600','','','12','','1','2022-08-16 12:41:00','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606702177630713',1163,'121660664695','6161101601979','1.00','250','retail','0','2022-08-16 20:16:57','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-16 14:17:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606725833360320',1164,'121660670221','4058387000317','1.00','1550','retail','0','2022-08-16 20:57:25','','','','1150','Cash',213.79,'1550','','','12','','1','2022-08-16 14:58:06','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726102033262',1165,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726120332020',1166,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726157630713',1167,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726170303223',1168,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726202033262',1169,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606726442624270',1170,'121660670221','6161101606011','1.00','220','retail','0','2022-08-16 20:57:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-16 14:58:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606740883710263',1171,'121660672688','6161101602211','1.00','350','retail','0','2022-08-16 21:21:28','','','','247','Cash',48.28,'350','','','12','','1','2022-08-16 15:23:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606807936393603',1172,'121660674192','1000','1.00','250','retail','0','2022-08-16 23:13:14','','','','192','Cash',34.48,'250','','','12','','1','2022-08-16 17:17:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606813700033026',1173,'121660681051','4058387003585','1.00','1500','retail','0','2022-08-16 23:23:52','','','','1150','Cash',206.90,'1500','','','12','','1','2022-08-16 17:25:11','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606813863813263',1174,'121660681051','5000267014609','1.00','1100','retail','0','2022-08-16 23:23:52','','','','794','Cash',151.72,'1100','','','12','','1','2022-08-16 17:25:11','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606814310303223',1175,'121660681051','5018907197803','1.00','60','retail','0','2022-08-16 23:23:52','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-16 17:25:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606818566136123',1176,'121660681637','5060639129003','4.00','800','retail','0','2022-08-16 23:30:57','','','','153','Cash',110.34,'200','','','12','','1','2022-08-16 17:31:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'4','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606823163320080',1177,'121660681900','8712000900045','1.00','250','retail','0','2022-08-16 23:40:46','','','','182','Cash',34.48,'250','','','12','','1','2022-08-16 17:42:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606823182033232',1178,'121660681900','8712000900045','1.00','250','retail','0','2022-08-16 23:40:46','','','','182','Cash',34.48,'250','','','12','','1','2022-08-16 17:42:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606825960332020',1179,'121660682551','5000267014005','1.00','1800','retail','0','2022-08-16 23:43:17','','','','1304','Cash',248.28,'1800','','','12','','1','2022-08-16 17:43:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606826263360320',1180,'121660682604','5000267024011','1.00','3300','retail','0','2022-08-16 23:44:37','','','','2433','Cash',455.17,'3300','','','12','','1','2022-08-16 17:44:42','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606826613816263',1181,'121660682604','6001452301862','1.00','1600','retail','0','2022-08-16 23:44:37','','','','1150','Cash',220.69,'1600','','','12','','1','2022-08-16 17:44:42','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606826770303223',1182,'121660682604','5060639129003','1.00','200','retail','0','2022-08-16 23:44:37','','','','153','Cash',27.59,'200','','','12','','1','2022-08-16 17:44:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216606829538630813',1183,'121660682938','1000','1.00','250','retail','0','2022-08-16 23:49:13','','','','192','Cash',34.48,'250','','','12','','1','2022-08-16 17:51:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607364962033246',1184,'121660736399','6161101604550','1.00','400','retail','0','2022-08-17 14:44:36','','','','284','Cash',55.17,'400','','','12','','1','2022-08-17 08:44:48','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607365292033256',1185,'121660736399','5060639129003','1.00','200','retail','0','2022-08-17 14:44:36','','','','153','Cash',27.59,'200','','','12','','1','2022-08-17 08:44:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607366560332020',1186,'121660736399','5060639129003','1.00','200','retail','0','2022-08-17 14:44:36','','','','153','Cash',27.59,'200','','','12','','1','2022-08-17 08:44:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607366663630313',1187,'121660736399','5449000131836','1.00','70','retail','0','2022-08-17 14:44:36','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-17 08:44:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607366756373603',1188,'121660736399','3086120600020','1.00','120','retail','0','2022-08-17 14:44:36','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-17 08:44:48','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607367646363603',1189,'121660736690','6008165007685','1.00','270','retail','0','2022-08-17 14:46:04','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-17 08:46:11','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607374750303223',1190,'121660736690','6161101602600','1.00','220','retail','0','2022-08-17 15:00:47','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-17 09:05:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607374860023732',1191,'121660736690','6161101602600','1.00','220','retail','0','2022-08-17 15:00:47','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-17 09:05:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607374892033247',1192,'121660736690','6161101602600','1.00','220','retail','0','2022-08-17 15:00:47','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-17 09:05:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607376010362213',1193,'121660736690','6161101602372','1.00','250','retail','0','2022-08-17 15:00:47','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-17 09:05:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607376033370320',1194,'121660736690','6161101602372','1.00','250','retail','0','2022-08-17 15:00:47','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-17 09:05:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607376123316263',1195,'121660736690','3155930006015','1.00','250','retail','0','2022-08-17 15:00:47','','','','188','Cash',34.48,'250','','','12','','1','2022-08-17 09:05:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607376203630313',1196,'121660736690','3086120600020','1.00','120','retail','0','2022-08-17 15:00:47','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-17 09:05:04','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607376460332020',1197,'121660736690','3155930006015','1.00','250','retail','0','2022-08-17 15:00:47','','','','188','Cash',34.48,'250','','','12','','1','2022-08-17 09:05:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607518044033426',1198,'121660751791','6161101603324','1.00','200','retail','0','2022-08-17 18:56:44','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-17 12:56:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607637196630613',1199,'121660763715','6001495062669','1.00','2600','retail','0','2022-08-17 22:15:20','','','','1960','Cash',358.62,'2600','','','12','','1','2022-08-17 16:17:41','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607640750332020',1200,'121660763862','8712000900045','2.00','500','retail','0','2022-08-17 22:21:28','','','','182','Cash',68.97,'250','','','12','','1','2022-08-17 16:22:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607640873610263',1201,'121660763862','4067700014535','1.00','3400','retail','0','2022-08-17 22:21:28','','','','2520','Cash',468.97,'3400','','','12','','1','2022-08-17 16:22:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607644263614263',1202,'121660763862','5010103930666','1.00','750','retail','0','2022-08-17 22:27:14','','','','542','Cash',103.45,'750','','','12','','1','2022-08-17 16:28:50','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607644346333603',1203,'121660763862','50112265','1.00','70','retail','0','2022-08-17 22:27:14','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-17 16:28:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607662756630613',1204,'121660766270','6001495062508','1.00','1700','retail','0','2022-08-17 22:57:55','','','','1257.93','Cash',234.48,'1700','','','12','','1','2022-08-17 17:00:11','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607671833611263',1205,'121660766412','6161101604703','18.00','3600','retail','0','2022-08-17 23:14:25','','','','150.45','Cash',496.55,'200','','','12','','1','2022-08-17 17:17:19','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'18','23.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607672622033226',1206,'121660766412','8712000900045','1.00','250','retail','0','2022-08-17 23:14:25','','','','182','Cash',34.48,'250','','','12','','1','2022-08-17 17:17:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607672642033227',1207,'121660766412','8712000900045','1.00','250','retail','0','2022-08-17 23:14:25','','','','182','Cash',34.48,'250','','','12','','1','2022-08-17 17:17:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607675156313603',1208,'121660767440','5000267013602','1.00','2200','retail','0','2022-08-17 23:20:39','','','','1612','Cash',303.45,'2200','','','12','','1','2022-08-17 17:20:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607675293370320',1209,'121660767440','6161101601979','2.00','500','retail','0','2022-08-17 23:20:39','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-17 17:20:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607675450303223',1210,'121660767440','5018907194802','1.00','100','retail','0','2022-08-17 23:20:39','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-17 17:20:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607676122033267',1211,'121660767440','6008165007982','1.00','350','retail','0','2022-08-17 23:20:39','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-17 17:20:46','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607676213616263',1212,'121660767440','8712000900663','1.00','230','retail','0','2022-08-17 23:20:39','','','','174','Cash',31.72,'230','','','12','','1','2022-08-17 17:20:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607676360303223',1213,'121660767440','5060608740253','1.00','70','retail','0','2022-08-17 23:20:39','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-17 17:20:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','54.00','53','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607676399033926',1214,'121660767440','5060608740253','1.00','70','retail','0','2022-08-17 23:20:39','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-17 17:20:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','53.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216607676803370320',1215,'121660767647','5060639129003','1.00','200','retail','0','2022-08-17 23:21:21','','','','153','Cash',27.59,'200','','','12','','1','2022-08-17 17:21:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608250593210263',1216,'121660825050','1000','1.00','250','retail','0','2022-08-18 15:17:47','','','','192','Cash',34.48,'250','','','12','','1','2022-08-18 09:18:53','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608250663380320',1217,'121660825050','5018907197803','1.00','60','retail','0','2022-08-18 15:17:47','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-18 09:18:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608369466343603',1218,'121660832293','082184090442','1.00','4700','retail','0','2022-08-18 18:36:18','','','','3450','Cash',648.28,'4700','','','12','','1','2022-08-18 12:37:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4051.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608369603380320',1219,'121660832293','5000289020701','1.00','2000','retail','0','2022-08-18 18:36:18','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-18 12:37:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608369733033326',1220,'121660832293','50112265','1.00','70','retail','0','2022-08-18 18:36:18','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-18 12:37:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608369783837233',1221,'121660832293','50112265','1.00','70','retail','0','2022-08-18 18:36:18','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-18 12:37:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608393852033239',1222,'121660839374','6161101602600','1.00','220','retail','0','2022-08-18 19:16:36','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-18 13:17:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608393966033626',1223,'121660839374','6161101601979','1.00','250','retail','0','2022-08-18 19:16:36','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-18 13:17:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608394377033726',1224,'121660839432','8712000900663','1.00','230','retail','0','2022-08-18 19:17:24','','','','174','Cash',31.72,'230','','','12','','1','2022-08-18 13:18:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608394399033926',1225,'121660839432','8712000900663','1.00','230','retail','0','2022-08-18 19:17:24','','','','174','Cash',31.72,'230','','','12','','1','2022-08-18 13:18:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608394426343603',1226,'121660839432','8712000900663','1.00','230','retail','0','2022-08-18 19:17:24','','','','174','Cash',31.72,'230','','','12','','1','2022-08-18 13:18:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608394443380320',1227,'121660839432','8712000900663','1.00','230','retail','0','2022-08-18 19:17:24','','','','174','Cash',31.72,'230','','','12','','1','2022-08-18 13:18:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608442063412263',1228,'121660839680','6161101601979','1.00','250','retail','0','2022-08-18 20:36:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-18 14:36:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608464240303223',1229,'121660844210','8712000900045','6.00','1500','retail','0','2022-08-18 21:16:22','','','','182','Cash',206.90,'250','','','12','','1','2022-08-18 15:17:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608465510332020',1230,'121660844210','6161101601979','6.00','1500','retail','0','2022-08-18 21:16:22','','','','172.75','Cash',206.90,'250','','','12','','1','2022-08-18 15:17:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608465692033256',1231,'121660844210','6161101603324','6.00','1200','retail','0','2022-08-18 21:16:22','','','','150.45','Cash',165.52,'200','','','12','','1','2022-08-18 15:17:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','25.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608465813415263',1232,'121660844210','6161101604703','6.00','1200','retail','0','2022-08-18 21:16:22','','','','150.45','Cash',165.52,'200','','','12','','1','2022-08-18 15:17:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608487750303223',1233,'121660846629','4058387001451','1.00','1400','retail','0','2022-08-18 21:52:56','','','','1050','Cash',193.10,'1400','','','12','','1','2022-08-18 15:53:23','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608492503380320',1234,'121660848805','5060639129003','1.00','200','retail','0','2022-08-18 22:00:50','','','','153','Cash',27.59,'200','','','12','','1','2022-08-18 16:01:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608507250303223',1235,'121660849265','5060639129003','1.00','200','retail','0','2022-08-18 22:25:37','','','','153','Cash',27.59,'200','','','12','','1','2022-08-18 16:27:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608507365630513',1236,'121660849265','90162602','1.00','230','retail','0','2022-08-18 22:25:37','','','','147','Cash',31.72,'230','','','12','','1','2022-08-18 16:27:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608527450332020',1237,'121660850831','5010103930666','1.00','750','retail','0','2022-08-18 22:59:16','','','','542','Cash',103.45,'750','','','12','','1','2022-08-18 17:00:15','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216608527550303223',1238,'121660850831','50112265','1.00','70','retail','0','2022-08-18 22:59:16','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-18 17:00:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609152342033225',1239,'121660909937','5060639129003','1.00','200','retail','0','2022-08-19 16:21:22','','','','153','Cash',27.59,'200','','','12','','1','2022-08-19 10:21:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609152813390320',1240,'121660909937','5060639129003','1.00','200','retail','0','2022-08-19 16:21:22','','','','153','Cash',27.59,'200','','','12','','1','2022-08-19 10:21:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609271573211263',1241,'121660927153','1210000100511','1.00','2300','retail','0','2022-08-19 19:39:17','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-19 13:40:01','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609295112033259',1242,'121660927202','6161101602372','1.00','250','retail','0','2022-08-19 20:18:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-19 14:20:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609295132630213',1243,'121660927202','6161101602372','1.00','250','retail','0','2022-08-19 20:18:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-19 14:20:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609295152630213',1244,'121660927202','6161101602372','1.00','250','retail','0','2022-08-19 20:18:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-19 14:20:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609295172630213',1245,'121660927202','6161101602372','1.00','250','retail','0','2022-08-19 20:18:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-19 14:20:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609327606363603',1246,'121660929627','6161101603379','1.00','250','retail','0','2022-08-19 21:12:50','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-19 15:14:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609327650303223',1247,'121660929627','6161101603379','1.00','250','retail','0','2022-08-19 21:12:50','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-19 15:14:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609327700332020',1248,'121660929627','6161101603379','1.00','250','retail','0','2022-08-19 21:12:50','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-19 15:14:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609331520332020',1249,'121660933117','6161101604550','1.00','400','retail','0','2022-08-19 21:22:26','','','','284','Cash',55.17,'400','','','12','','1','2022-08-19 15:36:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609331986393603',1250,'121660933117','5449000131836','1.00','70','retail','0','2022-08-19 21:22:26','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-19 15:36:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609333460332020',1251,'121660933117','90490224','1.00','90','retail','0','2022-08-19 21:22:26','','','','59.666','Cash',12.41,'90','','','12','','1','2022-08-19 15:36:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609342513312263',1252,'121660934182','6161101606011','3.00','660','retail','0','2022-08-19 21:38:40','','','','172.833','Cash',91.03,'220','','','12','','1','2022-08-19 15:39:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',568.97,'','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609407372033270',1253,'121660940256','6161101603522','1.00','700','retail','0','2022-08-19 23:27:01','','','','501','Cash',96.55,'700','','','12','','1','2022-08-19 17:30:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609407463417263',1254,'121660940256','1000','1.00','250','retail','0','2022-08-19 23:27:01','','','','192','Cash',34.48,'250','','','12','','1','2022-08-19 17:30:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609407666363603',1255,'121660940256','5060608740253','2.00','140','retail','0','2022-08-19 23:27:01','','','','41.82','Cash',19.31,'70','','','12','','1','2022-08-19 17:30:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','52.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609407970332020',1256,'121660940256','5018907194802','3.00','300','retail','0','2022-08-19 23:27:01','','','','74.58','Cash',41.38,'100','','','12','','1','2022-08-19 17:30:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3.00','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609408203390320',1257,'121660940256','6164001199331','3.00','180','retail','0','2022-08-19 23:27:01','','','','37.08','Cash',24.83,'60','','','12','','1','2022-08-19 17:30:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609411533390320',1258,'121660941040','3024482270123','1.00','9700','retail','0','2022-08-19 23:32:33','','','','7200','Cash',1337.93,'9700','','','12','','1','2022-08-19 17:33:49','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',8362.07,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609416744630413',1259,'121660941230','5000289020701','1.00','2000','retail','0','2022-08-19 23:41:24','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-19 17:44:40','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609416816383603',1260,'121660941230','54491069','1.00','70','retail','0','2022-08-19 23:41:24','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-19 17:44:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609416843416263',1261,'121660941230','54491069','1.00','70','retail','0','2022-08-19 23:41:24','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-19 17:44:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609420573390320',1262,'121660941881','5011013100132','1.00','2600','retail','0','2022-08-19 23:47:38','','','','1916','Cash',358.62,'2600','','','12','','1','2022-08-19 17:48:10','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609421814630413',1263,'121660942091','5010103930666','1.00','750','retail','0','2022-08-19 23:49:49','','','','542','Cash',103.45,'750','','','12','','1','2022-08-19 17:52:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609421888033826',1264,'121660942091','50112265','1.00','70','retail','0','2022-08-19 23:49:49','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-19 17:52:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609424626363603',1265,'121660942349','1000','1.00','250','retail','0','2022-08-19 23:54:22','','','','192','Cash',34.48,'250','','','12','','1','2022-08-19 17:54:27','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609434983390320',1266,'121660942468','5000289020701','1.00','2000','retail','0','2022-08-20 00:14:43','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-19 18:19:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609435154630413',1267,'121660942468','5000289020701','1.00','2000','retail','0','2022-08-20 00:14:43','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-19 18:19:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609435643415263',1268,'121660942468','5000289020701','1.00','2000','retail','0','2022-08-20 00:14:43','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-19 18:19:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609436044630413',1269,'121660942468','6161101130424','1.00','750','retail','0','2022-08-20 00:14:43','','','','642','Cash',103.45,'750','','','12','','1','2022-08-19 18:19:55','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609436714630413',1270,'121660942468','6164001199331','1.00','60','retail','0','2022-08-20 00:14:43','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-19 18:19:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609436763416263',1271,'121660942468','6164001199331','1.00','60','retail','0','2022-08-20 00:14:43','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-19 18:19:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609436803416263',1272,'121660942468','6164001199331','1.00','60','retail','0','2022-08-20 00:14:43','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-19 18:19:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609436836383603',1273,'121660942468','6164001199331','1.00','60','retail','0','2022-08-20 00:14:43','','','','37.08','Cash',8.28,'60','','','12','','1','2022-08-19 18:19:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609440646293060',1274,'121660943996','5060608740253','1.00','70','retail','0','2022-08-20 00:21:04','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-19 18:21:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609441014630413',1275,'121660944068','5018907194802','1.00','100','retail','0','2022-08-20 00:21:42','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-19 18:21:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609472483390320',1276,'121660944108','5011007003029','1.00','2700','retail','0','2022-08-20 01:14:08','','','','2000','Cash',372.41,'2700','','','12','','1','2022-08-19 19:14:42','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609498743112332',1277,'121660947284','5060608740253','1.00','70','retail','0','2022-08-20 01:58:04','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-19 19:59:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609498833418263',1278,'121660947284','5018907194802','1.00','100','retail','0','2022-08-20 01:58:04','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-19 19:59:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609502433390320',1279,'121660950234','1000','1.00','250','retail','0','2022-08-20 02:04:03','','','','192','Cash',34.48,'250','','','12','','1','2022-08-19 20:04:20','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609524413390320',1280,'121660950262','6161101602167','1.00','550','retail','0','2022-08-20 02:40:53','','','','388','Cash',75.86,'550','','','12','','1','2022-08-19 20:41:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609524532033242',1281,'121660950262','5060639129003','1.00','200','retail','0','2022-08-20 02:40:53','','','','153','Cash',27.59,'200','','','12','','1','2022-08-19 20:41:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216609938553918263',1282,'121660993769','5018907194802','1.00','100','retail','0','2022-08-20 14:10:56','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-20 08:19:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610148462033284',1283,'121661009478','6161101602600','1.00','220','retail','0','2022-08-20 20:00:46','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-20 14:06:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610158381631113',1284,'121661015181','1000','1.00','250','retail','0','2022-08-20 20:17:18','','','','192','Cash',34.48,'250','','','12','','1','2022-08-20 14:18:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610254486343603',1285,'121661025432','50196166','1.00','600','retail','0','2022-08-20 23:01:28','','','','443','Cash',82.76,'600','','','12','','1','2022-08-20 17:01:48','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610256870303223',1286,'121661025432','5018907197803','1.00','60','retail','0','2022-08-20 23:01:28','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-20 17:01:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610271010303223',1287,'121661026147','6001452371506','1.00','1600','retail','0','2022-08-20 23:26:38','','','','1150','Cash',220.69,'1600','','','12','','1','2022-08-20 17:32:58','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610271562033217',1288,'121661026147','90162602','2.00','460','retail','0','2022-08-20 23:26:38','','','','147','Cash',63.45,'230','','','12','','1','2022-08-20 17:32:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',396.55,'','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610271982631213',1289,'121661026147','100','1.00','250','retail','0','2022-08-20 23:26:38','','','','177','Cash',34.48,'250','','','12','','1','2022-08-20 17:32:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610281940303223',1290,'121661027579','1000','1.00','250','retail','0','2022-08-20 23:43:14','','','','192','Cash',34.48,'250','','','12','','1','2022-08-20 17:45:40','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610283803213263',1291,'121661028341','6161101603379','2.00','500','retail','0','2022-08-20 23:46:42','','','','190.375','Cash',68.97,'250','','','12','','1','2022-08-20 17:48:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610283910332020',1292,'121661028341','5010103930666','1.00','750','retail','0','2022-08-20 23:46:42','','','','542','Cash',103.45,'750','','','12','','1','2022-08-20 17:48:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610284012033248',1293,'121661028341','50112265','1.00','70','retail','0','2022-08-20 23:46:42','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-20 17:48:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610292443300320',1294,'121661029222','8712000900663','1.00','230','retail','0','2022-08-21 00:00:45','','','','174','Cash',31.72,'230','','','12','','1','2022-08-20 18:02:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610307992033270',1295,'121661029580','6161101601979','1.00','250','retail','0','2022-08-21 00:26:40','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-20 18:32:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610317486343603',1296,'121661031135','5099873089712','1.00','2300','retail','0','2022-08-21 00:42:57','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-20 18:44:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610317530303223',1297,'121661031135','5099873089712','1.00','2300','retail','0','2022-08-21 00:42:57','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-20 18:44:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610317773300320',1298,'121661031135','54491069','3.00','210','retail','0','2022-08-21 00:42:57','','','','53.333','Cash',28.97,'70','','','12','','1','2022-08-20 18:44:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610337266323603',1299,'121661033376','8712000900663','1.00','230','retail','0','2022-08-21 01:15:27','','','','174','Cash',31.72,'230','','','12','','1','2022-08-20 19:16:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610342153300320',1300,'121661033786','6008165007982','1.00','350','retail','0','2022-08-21 01:23:36','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-20 19:23:42','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610346844033426',1301,'121661034668','1000','1.00','250','retail','0','2022-08-21 01:31:24','','','','192','Cash',34.48,'250','','','12','','1','2022-08-20 19:31:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610366763631313',1302,'121661035785','5018907197803','1.00','60','retail','0','2022-08-21 02:05:05','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-20 20:05:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610366830303223',1303,'121661035785','8712000900045','1.00','250','retail','0','2022-08-21 02:05:05','','','','182','Cash',34.48,'250','','','12','','1','2022-08-20 20:05:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610367043317263',1304,'121661035785','6161101602938','1.00','250','retail','0','2022-08-21 02:05:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-08-20 20:05:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610373980303223',1305,'121661037384','5060608740253','1.00','70','retail','0','2022-08-21 02:16:39','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-20 20:16:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610845773815263',1306,'121661081596','6161101600934','1.00','1500','retail','0','2022-08-21 15:22:57','','','','1144','Cash',206.90,'1500','','','12','','1','2022-08-21 09:23:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610878930332020',1307,'121661086321','6161101602372','1.00','250','retail','0','2022-08-21 16:18:13','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-21 10:18:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610960302033206',1308,'121661095830','6161101601979','1.00','250','retail','0','2022-08-21 18:33:51','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-21 12:33:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216610991088033826',1309,'121661096034','088544018941','1.00','2900','retail','0','2022-08-21 19:25:09','','','','2100','Cash',400.00,'2900','','','12','','1','2022-08-21 13:28:12','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2500.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611007510303223',1310,'121661099293','1000','1.00','250','retail','0','2022-08-21 19:52:32','','','','192','Cash',34.48,'250','','','12','','1','2022-08-21 13:54:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611047822033226',1311,'121661100859','6001496011772','1.00','750','retail','0','2022-08-21 20:59:43','','','','544','Cash',103.45,'750','','','12','','1','2022-08-21 15:01:05','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611059700033026',1312,'121661104866','6008165007982','1.00','350','retail','0','2022-08-21 21:19:30','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-21 15:23:59','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611070120303223',1313,'121661106240','6161101603379','1.00','250','retail','0','2022-08-21 21:36:53','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-21 15:38:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611127162033272',1314,'121661107115','6974929190378','1.00','3250','retail','0','2022-08-21 23:12:47','','','','2500','Cash',448.28,'3250','','','12','','1','2022-08-21 17:19:10','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611127433033326',1315,'121661107115','6161101604703','2.00','400','retail','0','2022-08-21 23:12:47','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-21 17:19:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2.00','36.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611127677033726',1316,'121661107115','5060639129003','1.00','200','retail','0','2022-08-21 23:12:47','','','','153','Cash',27.59,'200','','','12','','1','2022-08-21 17:19:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','69.00','68','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611622286631613',1317,'121661159996','5060639129003','1.00','200','retail','0','2022-08-22 12:57:09','','','','153','Cash',27.59,'200','','','12','','1','2022-08-22 06:57:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','68.00','67','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611710940303223',1318,'121661171093','6161101605465','1.00','700','retail','0','2022-08-22 15:24:55','','','','501','Cash',96.55,'700','','','12','','1','2022-08-22 09:27:24','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611755757631713',1319,'121661171246','6161101604550','1.00','400','retail','0','2022-08-22 16:39:36','','','','284','Cash',55.17,'400','','','12','','1','2022-08-22 10:41:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611774040303223',1320,'121661175686','6161101601979','6.00','1500','retail','0','2022-08-22 17:10:17','','','','172.75','Cash',206.90,'250','','','12','','1','2022-08-22 11:12:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'','26.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611870590332020',1321,'121661185771','1000','1.00','250','retail','0','2022-08-22 19:51:00','','','','192','Cash',34.48,'250','','','12','','1','2022-08-22 13:53:59','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611875833112332',1322,'121661187240','6161101601979','6.00','1500','retail','0','2022-08-22 20:01:13','','','','172.75','Cash',206.90,'250','','','12','','1','2022-08-22 14:02:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6.00','20.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611875953310320',1323,'121661187240','5018907194802','1.00','100','retail','0','2022-08-22 20:01:13','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-22 14:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611876218631813',1324,'121661187240','5060639129003','2.00','400','retail','0','2022-08-22 20:01:13','','','','153','Cash',55.17,'200','','','12','','1','2022-08-22 14:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2.00','67.00','65','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611876628631813',1325,'121661187240','5000267013602','1.00','2200','retail','0','2022-08-22 20:01:13','','','','1612','Cash',303.45,'2200','','','12','','1','2022-08-22 14:02:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611876722033267',1326,'121661187240','6009644549320','1.00','70','retail','0','2022-08-22 20:01:13','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-22 14:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611886948631813',1327,'121661187757','6161101604703','2.00','400','retail','0','2022-08-22 20:18:15','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-22 14:20:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611893046303603',1328,'121661188806','1000','1.00','250','retail','0','2022-08-22 20:28:25','','','','192','Cash',34.48,'250','','','12','','1','2022-08-22 14:28:33','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611900340332020',1329,'121661189314','1000','1.00','250','retail','0','2022-08-22 20:40:35','','','','192','Cash',34.48,'250','','','12','','1','2022-08-22 14:40:42','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611903659631913',1330,'121661190044','1000','1.00','250','retail','0','2022-08-22 20:46:16','','','','192','Cash',34.48,'250','','','12','','1','2022-08-22 14:46:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611903756373603',1331,'121661190044','6161101601979','1.00','250','retail','0','2022-08-22 20:46:16','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-22 14:46:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611904936393603',1332,'121661190479','6161101603324','2.00','400','retail','0','2022-08-22 20:48:14','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-22 14:48:28','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611905444033426',1333,'121661190509','5060639129003','1.00','200','retail','0','2022-08-22 20:49:05','','','','153','Cash',27.59,'200','','','12','','1','2022-08-22 14:49:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','65.00','64','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611930677033726',1334,'121661190549','1000','2.00','500','retail','0','2022-08-22 21:34:44','','','','192','Cash',68.97,'250','','','12','','1','2022-08-22 15:35:10','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611931053911263',1335,'121661190549','5018907194802','2.00','200','retail','0','2022-08-22 21:34:44','','','','74.58','Cash',27.59,'100','','','12','','1','2022-08-22 15:35:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611932830303223',1336,'121661190549','6164001199331','2.00','120','retail','0','2022-08-22 21:34:44','','','','37.08','Cash',16.55,'60','','','12','','1','2022-08-22 15:35:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216611937063917263',1337,'121661193311','6161101601979','1.00','250','retail','0','2022-08-22 21:41:47','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-22 15:41:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612034443320320',1338,'121661203425','6161101602372','2.00','500','retail','0','2022-08-23 00:24:04','','','','189.75','Cash',68.97,'250','','','12','','1','2022-08-22 18:24:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612602306631613',1339,'121661259299','5060608740253','1.00','70','retail','0','2022-08-23 16:10:38','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-23 10:10:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612602376631613',1340,'121661259299','5060608740253','1.00','70','retail','0','2022-08-23 16:10:38','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-23 10:10:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612665211033126',1341,'121661260260','1000','1.00','250','retail','0','2022-08-23 17:55:44','','','','192','Cash',34.48,'250','','','12','','1','2022-08-23 11:56:45','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612665433320320',1342,'121661260260','5060639129003','1.00','200','retail','0','2022-08-23 17:55:44','','','','153','Cash',27.59,'200','','','12','','1','2022-08-23 11:56:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','64.00','63','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612808352520821',1343,'121661280831','6161101602600','1.00','220','retail','0','2022-08-23 21:53:56','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-23 15:54:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612813630303223',1344,'121661280892','1000','1.00','250','retail','0','2022-08-23 22:03:02','','','','192','Cash',34.48,'250','','','12','','1','2022-08-23 16:03:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612813823320320',1345,'121661280892','1000','1.00','250','retail','0','2022-08-23 22:03:02','','','','192','Cash',34.48,'250','','','12','','1','2022-08-23 16:03:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612817822033226',1346,'121661281388','5010103930666','1.00','750','retail','0','2022-08-23 22:09:47','','','','542','Cash',103.45,'750','','','12','','1','2022-08-23 16:10:01','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612817863817263',1347,'121661281388','50112265','1.00','70','retail','0','2022-08-23 22:09:47','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-23 16:10:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612839198631813',1348,'121661281802','5060608740253','2.00','140','retail','0','2022-08-23 22:45:29','','','','41.82','Cash',19.31,'70','','','12','','1','2022-08-23 16:45:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',120.69,'','45.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216612879680332020',1349,'121661287945','5060608740253','2.00','140','retail','0','2022-08-23 23:52:49','','','','41.82','Cash',19.31,'70','','','12','','1','2022-08-23 17:55:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2.00','43.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613410713330320',1350,'121661334819','6161101606011','2.00','440','retail','0','2022-08-24 14:37:52','','','','172.833','Cash',60.69,'220','','','12','','1','2022-08-24 08:38:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2.00','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613507300373332',1351,'121661350711','5010103930628','1.00','1550','retail','0','2022-08-24 17:20:32','','','','1125','Cash',213.79,'1550','','','12','','1','2022-08-24 11:20:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613507666363603',1352,'121661350711','90162602','1.00','230','retail','0','2022-08-24 17:20:32','','','','147','Cash',31.72,'230','','','12','','1','2022-08-24 11:20:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613507706373603',1353,'121661350711','90162602','1.00','230','retail','0','2022-08-24 17:20:32','','','','147','Cash',31.72,'230','','','12','','1','2022-08-24 11:20:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613508312033280',1354,'121661350711','3086120600020','1.00','120','retail','0','2022-08-24 17:20:32','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-24 11:20:56','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613516872033261',1355,'121661351171','5010232953994','1.00','350','retail','0','2022-08-24 17:34:56','','','','263.157','Cash',48.28,'350','','','12','','1','2022-08-24 11:35:59','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613516950303223',1356,'121661351171','6161101603324','1.00','200','retail','0','2022-08-24 17:34:56','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-24 11:35:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613569103519263',1357,'121661351761','1000','1.00','250','retail','0','2022-08-24 19:01:51','','','','192','Cash',34.48,'250','','','12','','1','2022-08-24 13:01:58','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613616510332020',1358,'121661356919','5060608740253','12.00','840','retail','0','2022-08-24 20:23:53','','','','41.82','Cash',115.86,'70','','','12','','1','2022-08-24 14:25:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'12.00','41.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613617970332020',1359,'121661356919','6161101602372','6.00','1500','retail','0','2022-08-24 20:23:53','','','','189.75','Cash',206.90,'250','','','12','','1','2022-08-24 14:25:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6.00','26.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613618323618263',1360,'121661356919','5000267014005','1.00','1800','retail','0','2022-08-24 20:23:53','','','','1304','Cash',248.28,'1800','','','12','','1','2022-08-24 14:25:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613643670332020',1361,'121661363587','6161101602921','6.00','1500','retail','0','2022-08-24 21:07:32','','','','198.45','Cash',206.90,'250','','','12','','1','2022-08-24 15:10:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6.00','62.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613643743233406',1362,'121661363587','4058387004605','1.00','1400','retail','0','2022-08-24 21:07:32','','','','1050','Cash',193.10,'1400','','','12','','1','2022-08-24 15:10:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613644513614263',1363,'121661363587','6161101603324','6.00','1200','retail','0','2022-08-24 21:07:32','','','','150.45','Cash',165.52,'200','','','12','','1','2022-08-24 15:10:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6.00','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613650770332020',1364,'121661365030','5060639129003','2.00','400','retail','0','2022-08-24 21:18:43','','','','153','Cash',55.17,'200','','','12','','1','2022-08-24 15:18:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','63.00','61','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613650990303223',1365,'121661365030','5449000131836','1.00','70','retail','0','2022-08-24 21:18:43','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-24 15:18:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613651220303223',1366,'121661365030','1000','1.00','250','retail','0','2022-08-24 21:18:43','','','','192','Cash',34.48,'250','','','12','','1','2022-08-24 15:18:48','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613671696631613',1367,'121661365130','6161101602372','1.00','250','retail','0','2022-08-24 21:52:50','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-24 15:53:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613673226631613',1368,'121661367195','50112265','1.00','70','retail','0','2022-08-24 21:55:48','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-24 15:55:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613673486631613',1369,'121661367195','5010103930666','1.00','750','retail','0','2022-08-24 21:55:48','','','','542','Cash',103.45,'750','','','12','','1','2022-08-24 15:55:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613685802033258',1370,'121661367353','6008165007982','1.00','350','retail','0','2022-08-24 22:16:21','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-24 16:16:30','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613725113330320',1371,'121661368591','6008165007814','1.00','350','retail','0','2022-08-24 23:23:45','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-24 17:25:12','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613726240303223',1372,'121661368591','8712000900663','4.00','920','retail','0','2022-08-24 23:23:45','','','','174','Cash',126.90,'230','','','12','','1','2022-08-24 17:25:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'4.00','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613731517631713',1373,'121661372713','5099873011737','1.00','4500','retail','0','2022-08-24 23:32:31','','','','3300','Cash',620.69,'4500','','','12','','1','2022-08-24 17:32:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613732667631713',1374,'121661373165','6008165007784','1.00','370','retail','0','2022-08-24 23:34:27','','','','327.04','Cash',51.03,'370','','','12','','1','2022-08-24 17:34:54','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613733080303223',1375,'121661373295','6161101604550','1.00','400','retail','0','2022-08-24 23:35:09','','','','284','Cash',55.17,'400','','','12','','1','2022-08-24 17:35:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613734260332020',1376,'121661373348','8712000900663','4.00','920','retail','0','2022-08-24 23:37:58','','','','174','Cash',126.90,'230','','','12','','1','2022-08-24 17:39:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',793.10,'','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613734743714263',1377,'121661373348','54491069','1.00','70','retail','0','2022-08-24 23:37:58','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-24 17:39:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216613734777033726',1378,'121661373348','54491069','1.00','70','retail','0','2022-08-24 23:37:58','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-24 17:39:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614237122631213',1379,'121661423707','6008165007982','1.00','350','retail','0','2022-08-25 13:36:47','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-25 07:40:11','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614237188033826',1380,'121661423707','6161101602372','1.00','250','retail','0','2022-08-25 13:36:47','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-25 07:40:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614237203217263',1381,'121661423707','6161101602372','1.00','250','retail','0','2022-08-25 13:36:47','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-25 07:40:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614237240332020',1382,'121661423707','6161101601979','1.00','250','retail','0','2022-08-25 13:36:47','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-25 07:40:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614238060320842',1383,'121661423707','6161101601979','1.00','250','retail','0','2022-08-25 13:36:47','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-25 07:40:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614240355033526',1384,'121661424012','6161101603324','2.00','400','retail','0','2022-08-25 13:40:35','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-25 07:40:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2.00','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614250192631213',1385,'121661424039','6161101605199','1.00','250','retail','0','2022-08-25 13:57:03','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-25 07:57:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614250223340320',1386,'121661424039','6161101605199','1.00','250','retail','0','2022-08-25 13:57:03','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-25 07:57:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614251483340320',1387,'121661425030','6161101605199','1.00','250','retail','0','2022-08-25 13:59:08','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-25 07:59:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614393973631313',1388,'121661434976','6161101606011','1.00','220','retail','0','2022-08-25 17:59:51','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-25 12:00:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614394000332020',1389,'121661434976','6161101606011','1.00','220','retail','0','2022-08-25 17:59:51','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-25 12:00:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614395872033259',1390,'121661434976','6161101602600','1.00','220','retail','0','2022-08-25 17:59:51','','','','154.95','Cash',30.34,'220','','','12','','1','2022-08-25 12:00:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614398450303223',1391,'121661439652','6008165007982','1.00','350','retail','0','2022-08-25 18:04:06','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-25 12:04:14','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614508370332020',1392,'121661450831','5060608740253','1.00','70','retail','0','2022-08-25 21:07:18','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-25 15:07:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614518810332020',1393,'121661450865','6161101606011','2.00','440','retail','0','2022-08-25 21:24:41','','','','172.833','Cash',60.69,'220','','','12','','1','2022-08-25 15:26:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2.00','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614571583511263',1394,'121661451965','6161101602372','6.00','1500','retail','0','2022-08-25 22:54:57','','','','189.75','Cash',206.90,'250','','','12','','1','2022-08-25 16:55:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6.00','17.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614575770303223',1395,'121661457309','5010103930666','1.00','750','retail','0','2022-08-25 23:00:25','','','','542','Cash',103.45,'750','','','12','','1','2022-08-25 17:02:05','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614576250332020',1396,'121661457309','50112265','1.00','70','retail','0','2022-08-25 23:00:25','','','','53.33','Cash',9.66,'70','','','12','','1','2022-08-25 17:02:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614577290303223',1397,'121661457726','6161101604550','1.00','400','retail','0','2022-08-25 23:02:25','','','','284','Cash',55.17,'400','','','12','','1','2022-08-25 17:03:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216614577443340320',1398,'121661457726','5060639129003','1.00','200','retail','0','2022-08-25 23:02:25','','','','153','Cash',27.59,'200','','','12','','1','2022-08-25 17:03:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','61.00','60','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615125396333603',1399,'121661510403','6161101603324','1.00','200','retail','0','2022-08-26 14:16:07','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-26 08:16:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615125570303223',1400,'121661510403','5060639129003','1.00','200','retail','0','2022-08-26 14:16:07','','','','153','Cash',27.59,'200','','','12','','1','2022-08-26 08:16:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','60.00','59','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615125673350320',1401,'121661510403','5060608740253','1.00','70','retail','0','2022-08-26 14:16:07','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-26 08:16:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615128910303223',1402,'121661512576','6008165007814','1.00','350','retail','0','2022-08-26 14:21:34','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-26 08:22:14','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615128941631113',1403,'121661512576','6008165007814','1.00','350','retail','0','2022-08-26 14:21:34','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-26 08:22:14','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615229172631213',1404,'121661522898','6161101602211','1.00','350','retail','0','2022-08-26 17:08:37','','','','247','Cash',48.28,'350','','','12','','1','2022-08-26 11:14:45','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615233583350320',1405,'121661523286','5018907197803','1.00','60','retail','0','2022-08-26 17:15:59','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-26 11:17:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615278450083224',1406,'121661527842','6008165007982','1.00','350','retail','0','2022-08-26 18:30:45','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-26 12:31:56','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615321292033212',1407,'121661527918','6161101606011','1.00','220','retail','0','2022-08-26 19:42:10','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-26 13:44:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615460206323603',1408,'121661546018','5010103930666','1.00','750','retail','0','2022-08-26 23:33:45','','','','542','Cash',103.45,'750','','','12','','1','2022-08-26 17:34:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615467472033276',1409,'121661546090','024000150053','1.00','250','retail','0','2022-08-26 23:45:48','','','','205','Cash',34.48,'250','','','12','','1','2022-08-26 17:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615467906393603',1410,'121661546782','8712000900045','1.00','250','retail','0','2022-08-26 23:46:38','','','','182','Cash',34.48,'250','','','12','','1','2022-08-26 18:19:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615467986393603',1411,'121661546782','8712000900045','1.00','250','retail','0','2022-08-26 23:46:38','','','','182','Cash',34.48,'250','','','12','','1','2022-08-26 18:19:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615528225631513',1412,'121661548766','024000150152','1.00','250','retail','0','2022-08-27 01:27:02','','','','205','Cash',34.48,'250','','','12','','1','2022-08-26 19:27:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545130332020',1413,'121661554269','5018907194802','1.00','100','retail','0','2022-08-27 01:55:46','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-26 19:58:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545155631513',1414,'121661554269','5018907194802','1.00','100','retail','0','2022-08-27 01:55:46','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-26 19:58:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545203515263',1415,'121661554269','6161101604543','1.00','1100','retail','0','2022-08-27 01:55:46','','','','788','Cash',151.72,'1100','','','12','','1','2022-08-26 19:58:48','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545333033326',1416,'121661554269','6161101603379','1.00','250','retail','0','2022-08-27 01:55:46','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-26 19:58:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545412033254',1417,'121661554269','6161101604406','1.00','250','retail','0','2022-08-27 01:55:46','','','','181.708','Cash',34.48,'250','','','12','','1','2022-08-26 19:58:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216615545463515263',1418,'121661554269','6161101603379','1.00','250','retail','0','2022-08-27 01:55:46','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-26 19:58:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616002660631013',1419,'121661600248','6161101602211','1.00','350','retail','0','2022-08-27 14:37:46','','','','247','Cash',48.28,'350','','','12','','1','2022-08-27 08:38:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616158610332020',1420,'121661615859','5010103930840','1.00','450','retail','0','2022-08-27 18:57:42','','','','335','Cash',62.07,'450','','','12','','1','2022-08-27 12:59:10','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',387.93,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616231606363603',1421,'121661623156','6008165007814','1.00','350','retail','0','2022-08-27 20:59:24','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-27 15:00:03','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616231643636233',1422,'121661623156','6008165007814','1.00','350','retail','0','2022-08-27 20:59:24','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-27 15:00:03','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616298044033426',1423,'121661623204','5000292001001','1.00','1600','retail','0','2022-08-27 22:50:05','','','','1141','Cash',220.69,'1600','','','12','','1','2022-08-27 16:52:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616300030332020',1424,'121661629926','6161101601979','2.00','500','retail','0','2022-08-27 22:53:23','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-27 16:53:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2.00','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616306962033260',1425,'121661630008','50196111','1.00','1200','retail','0','2022-08-27 23:04:56','','','','855','Cash',165.52,'1200','','','12','','1','2022-08-27 17:06:19','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616322000033026',1426,'121661630780','5010103930666','1.00','750','retail','0','2022-08-27 23:30:00','','','','542','Cash',103.45,'750','','','12','','1','2022-08-27 17:31:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616344193314263',1427,'121661634268','5060639129003','1.00','200','retail','0','2022-08-28 00:07:00','','','','153','Cash',27.59,'200','','','12','','1','2022-08-27 18:07:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','59.00','58','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616374500332020',1428,'121661637447','5010103930840','1.00','450','retail','0','2022-08-28 00:57:31','','','','335','Cash',62.07,'450','','','12','','1','2022-08-27 19:03:14','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',387.93,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616378503360320',1429,'121661637795','6161101602211','1.00','350','retail','0','2022-08-28 01:04:10','','','','247','Cash',48.28,'350','','','12','','1','2022-08-27 19:05:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616390666363603',1430,'121661637914','6161101605199','1.00','250','retail','0','2022-08-28 01:26:37','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-27 19:26:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616390696363603',1431,'121661637914','6161101605199','1.00','250','retail','0','2022-08-28 01:26:37','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-27 19:26:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616390722033209',1432,'121661637914','6161101605199','1.00','250','retail','0','2022-08-28 01:26:37','','','','172.833','Cash',34.48,'250','','','12','','1','2022-08-27 19:26:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616420733033326',1433,'121661639206','6161101605465','1.00','700','retail','0','2022-08-28 02:17:58','','','','501','Cash',96.55,'700','','','12','','1','2022-08-27 20:18:42','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616420932033202',1434,'121661639206','6009644549320','1.00','70','retail','0','2022-08-28 02:17:58','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-27 20:18:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616439422033226',1435,'121661642323','5099873089712','1.00','2300','retail','0','2022-08-28 02:46:13','','','','1650','Cash',317.24,'2300','','','12','','1','2022-08-27 20:48:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616439612033293',1436,'121661642323','54491069','1.00','70','retail','0','2022-08-28 02:46:13','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-27 20:48:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616439730303223',1437,'121661642323','5449000131836','2.00','140','retail','0','2022-08-28 02:46:13','','','','53.333','Cash',19.31,'70','','','12','','1','2022-08-27 20:48:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616830428631813',1438,'121661681871','6161101602372','1.00','250','retail','0','2022-08-28 13:37:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-28 07:38:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616957803917263',1439,'121661695761','6161101604703','1.00','200','retail','0','2022-08-28 17:09:44','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-28 11:09:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216616957843360320',1440,'121661695761','6161101604703','1.00','200','retail','0','2022-08-28 17:09:44','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-28 11:09:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617036870631013',1441,'121661703675','6008165007814','1.00','350','retail','0','2022-08-28 19:21:30','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-28 13:22:39','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617036890631013',1442,'121661703675','6008165007814','1.00','350','retail','0','2022-08-28 19:21:30','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-28 13:22:39','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617053853370320',1443,'121661705101','6002039005746','1.00','1400','retail','0','2022-08-28 19:49:45','','','','790','Cash',193.10,'1400','','','12','','1','2022-08-28 13:50:31','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617079544033426',1444,'121661705432','90162602','1.00','230','retail','0','2022-08-28 20:32:35','','','','147','Cash',31.72,'230','','','12','','1','2022-08-28 14:32:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617104703114263',1445,'121661707959','6161101603379','1.00','250','retail','0','2022-08-28 21:14:39','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-28 15:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617104730332020',1446,'121661707959','6161101603379','1.00','250','retail','0','2022-08-28 21:14:39','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-28 15:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617104760332020',1447,'121661707959','6161101602372','1.00','250','retail','0','2022-08-28 21:14:39','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-28 15:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617104786373603',1448,'121661707959','6161101602372','1.00','250','retail','0','2022-08-28 21:14:39','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-28 15:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617116993116263',1449,'121661710574','6161101605465','2.00','1400','retail','0','2022-08-28 21:36:13','','','','501','Cash',193.10,'700','','','12','','1','2022-08-28 15:36:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'2.00','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617117432273332',1450,'121661710574','5018907194802','3.00','300','retail','0','2022-08-28 21:36:13','','','','74.58','Cash',41.38,'100','','','12','','1','2022-08-28 15:36:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3.00','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617117600303223',1451,'121661710574','6161101604550','1.00','400','retail','0','2022-08-28 21:36:13','','','','284','Cash',55.17,'400','','','12','','1','2022-08-28 15:36:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617117731631113',1452,'121661710574','5060608740253','1.00','70','retail','0','2022-08-28 21:36:13','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-28 15:36:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617131353111263',1453,'121661712840','5010103930666','1.00','750','retail','0','2022-08-28 21:58:56','','','','542','Cash',103.45,'750','','','12','','1','2022-08-28 16:00:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617158693118263',1454,'121661715865','6008165007814','1.00','350','retail','0','2022-08-28 22:44:36','','','','317.26','Cash',48.28,'350','','','12','','1','2022-08-28 16:49:25','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617162070303223',1455,'121661716167','6161101605465','1.00','700','retail','0','2022-08-28 22:50:08','','','','501','Cash',96.55,'700','','','12','','1','2022-08-28 16:50:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617173701631113',1456,'121661716212','5060639129003','1.00','200','retail','0','2022-08-28 23:09:30','','','','153','Cash',27.59,'200','','','12','','1','2022-08-28 17:09:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','58.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617208100303223',1457,'121661717380','5010103930666','1.00','750','retail','0','2022-08-29 00:08:24','','','','542','Cash',103.45,'750','','','12','','1','2022-08-28 18:09:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617208823218263',1458,'121661717380','54491069','1.00','70','retail','0','2022-08-29 00:08:24','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-28 18:09:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617209032202003',1459,'121661717380','6008165007685','1.00','270','retail','0','2022-08-29 00:08:24','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-28 18:09:43','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617219060332020',1460,'121661720984','6161101600941','1.00','750','retail','0','2022-08-29 00:25:07','','','','544','Cash',103.45,'750','','','12','','1','2022-08-28 18:26:05','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617219882033291',1461,'121661721967','5000292262716','1.00','1700','retail','0','2022-08-29 00:28:16','','','','1250','Cash',234.48,'1700','','','12','','1','2022-08-28 18:31:54','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617220463370320',1462,'121661721967','6161101601979','3.00','750','retail','0','2022-08-29 00:28:16','','','','172.75','Cash',103.45,'250','','','12','','1','2022-08-28 18:31:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617220956393603',1463,'121661721967','6973322691314','1.00','1750','retail','0','2022-08-29 00:28:16','','','','1000','Cash',241.38,'1750','','','12','','1','2022-08-28 18:31:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617224322033242',1464,'121661717380','6161101600927','1.00','1900','retail','0','2022-08-29 00:34:21','','','','1417','Cash',262.07,'1900','','','12','','1','2022-08-28 18:34:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617224582631213',1465,'121661717380','8712000900045','1.00','250','retail','0','2022-08-29 00:34:21','','','','182','Cash',34.48,'250','','','12','','1','2022-08-28 18:34:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617224616363603',1466,'121661717380','8712000900045','1.00','250','retail','0','2022-08-29 00:34:21','','','','182','Cash',34.48,'250','','','12','','1','2022-08-28 18:34:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617232333033326',1467,'121661722488','5010103930666','1.00','750','retail','0','2022-08-29 00:47:14','','','','542','Cash',103.45,'750','','','12','','1','2022-08-28 18:47:54','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617233552033233',1468,'121661723275','5000196006652','1.00','400','retail','0','2022-08-29 00:49:28','','','','310','Cash',55.17,'400','','','12','','1','2022-08-28 18:49:42','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617233677033726',1469,'121661723275','5060608740253','1.00','70','retail','0','2022-08-29 00:49:28','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-28 18:49:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617242631222132',1470,'121661723383','8712000900045','1.00','250','retail','0','2022-08-29 01:04:46','','','','182','Cash',34.48,'250','','','12','','1','2022-08-28 19:07:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617242723212263',1471,'121661723383','6161101603324','1.00','200','retail','0','2022-08-29 01:04:46','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-28 19:07:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617249003370320',1472,'121661724444','6161101600934','1.00','1500','retail','0','2022-08-29 01:15:46','','','','1144','Cash',206.90,'1500','','','12','','1','2022-08-28 19:17:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617249166033626',1473,'121661724444','6008165007982','1.00','350','retail','0','2022-08-29 01:15:46','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-28 19:17:54','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617249252631213',1474,'121661724444','54491069','1.00','70','retail','0','2022-08-29 01:15:46','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-28 19:17:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617249453219263',1475,'121661724444','3086120600020','1.00','120','retail','0','2022-08-29 01:15:46','','','','93.86','Cash',16.55,'120','','','12','','1','2022-08-28 19:17:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617302220303223',1476,'121661725075','5010103930840','1.00','450','retail','0','2022-08-29 02:43:43','','','','335','Cash',62.07,'450','','','12','','1','2022-08-28 20:44:49','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',387.93,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617304400303223',1477,'121661730291','6161101602211','1.00','350','retail','0','2022-08-29 02:47:21','','','','247','Cash',48.28,'350','','','12','','1','2022-08-28 20:47:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617326500303223',1478,'121661732587','6161101603379','3.00','750','retail','0','2022-08-29 03:25:08','','','','190.375','Cash',103.45,'250','','','12','','1','2022-08-28 21:27:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3.00','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617327080332020',1479,'121661732587','6161101604703','2.00','400','retail','0','2022-08-29 03:25:08','','','','150.45','Cash',55.17,'200','','','12','','1','2022-08-28 21:27:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2.00','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617830803370320',1480,'121661781764','5060639129003','1.00','200','retail','0','2022-08-29 17:24:40','','','','153','Cash',27.59,'200','','','12','','1','2022-08-29 11:26:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','57.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617960597920021',1481,'121661796048','3155930006015','1.00','250','retail','0','2022-08-29 21:01:02','','','','188','Cash',34.48,'250','','','12','','1','2022-08-29 15:01:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617960629631913',1482,'121661796048','3155930006015','1.00','250','retail','0','2022-08-29 21:01:02','','','','188','Cash',34.48,'250','','','12','','1','2022-08-29 15:01:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617968570332020',1483,'121661796071','6161101603324','1.00','200','retail','0','2022-08-29 21:14:18','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-29 15:14:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617979110332020',1484,'121661796867','5060608740253','1.00','70','retail','0','2022-08-29 21:31:51','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-29 15:32:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617984000303223',1485,'121661798277','8712000900663','1.00','230','retail','0','2022-08-29 21:40:13','','','','174','Cash',31.72,'230','','','12','','1','2022-08-29 15:41:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617984120303223',1486,'121661798277','8712000900663','1.00','230','retail','0','2022-08-29 21:40:13','','','','174','Cash',31.72,'230','','','12','','1','2022-08-29 15:41:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617989820303223',1487,'121661798481','6161101602372','1.00','250','retail','0','2022-08-29 21:49:44','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-29 15:49:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617989833919263',1488,'121661798481','6161101602372','1.00','250','retail','0','2022-08-29 21:49:44','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-29 15:49:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216617994259631913',1489,'121661798998','54491069','1.00','70','retail','0','2022-08-29 21:57:06','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-29 15:58:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618011340332020',1490,'121661799499','6161101602167','1.00','550','retail','0','2022-08-29 22:25:34','','','','388','Cash',75.86,'550','','','12','','1','2022-08-29 16:25:42','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618021750303223',1491,'121661801144','6002039006019','1.00','1400','retail','0','2022-08-29 22:42:55','','','','790','Cash',193.10,'1400','','','12','','1','2022-08-29 16:44:11','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618044722033244',1492,'121661802252','6161101601979','2.00','500','retail','0','2022-08-29 23:21:12','','','','172.75','Cash',68.97,'250','','','12','','1','2022-08-29 17:21:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2.00','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618044833033326',1493,'121661804476','5000289929417','1.00','2000','retail','0','2022-08-29 23:21:58','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-29 17:23:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618044893014263',1494,'121661804476','6161101603379','1.00','250','retail','0','2022-08-29 23:21:58','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-29 17:23:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618045176313603',1495,'121661804476','5018907194802','1.00','100','retail','0','2022-08-29 23:21:58','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-29 17:23:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618050871332283',1496,'121661804618','6161101605465','1.00','700','retail','0','2022-08-29 23:31:54','','','','501','Cash',96.55,'700','','','12','','1','2022-08-29 17:32:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618051140631013',1497,'121661804618','5018907194802','3.00','300','retail','0','2022-08-29 23:31:54','','','','74.58','Cash',41.38,'100','','','12','','1','2022-08-29 17:32:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3.00','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618052470303223',1498,'121661805125','5018907194802','2.00','200','retail','0','2022-08-29 23:34:08','','','','74.58','Cash',27.59,'100','','','12','','1','2022-08-29 17:34:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618056800033026',1499,'121661805253','6161101601979','1.00','250','retail','0','2022-08-29 23:41:21','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-29 17:41:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618069010332020',1500,'121661805686','6008165007685','1.00','270','retail','0','2022-08-30 00:02:00','','','','251.5','Cash',37.24,'270','','','12','','1','2022-08-29 18:03:38','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618069066033626',1501,'121661805686','6161101603379','1.00','250','retail','0','2022-08-30 00:02:00','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-29 18:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618069090631013',1502,'121661805686','6161101603379','1.00','250','retail','0','2022-08-30 00:02:00','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-29 18:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618069143380320',1503,'121661805686','6161101602372','1.00','250','retail','0','2022-08-30 00:02:00','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-29 18:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618069190303223',1504,'121661805686','6161101602372','1.00','250','retail','0','2022-08-30 00:02:00','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-29 18:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618071800631013',1505,'121661807019','6161101601979','1.00','250','retail','0','2022-08-30 00:06:21','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-29 18:06:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618111296323603',1506,'121661807185','8712000900663','1.00','230','retail','0','2022-08-30 01:12:17','','','','174','Cash',31.72,'230','','','12','','1','2022-08-29 19:13:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618111310303223',1507,'121661807185','8712000900663','1.00','230','retail','0','2022-08-30 01:12:17','','','','174','Cash',31.72,'230','','','12','','1','2022-08-29 19:13:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618111353331063',1508,'121661807185','6161101603379','1.00','250','retail','0','2022-08-30 01:12:17','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-29 19:13:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618111373380320',1509,'121661807185','6161101603379','1.00','250','retail','0','2022-08-30 01:12:17','','','','190.375','Cash',34.48,'250','','','12','','1','2022-08-29 19:13:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618114091631113',1510,'121661807019','6161101601979','1.00','250','retail','0','2022-08-30 01:16:50','','','','172.75','Cash',34.48,'250','','','12','','1','2022-08-29 19:16:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618114570303223',1511,'121661811416','6161101602372','1.00','250','retail','0','2022-08-30 01:18:07','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-29 19:18:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618114713114263',1512,'121661811416','6009644549320','1.00','70','retail','0','2022-08-30 01:18:07','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-29 19:18:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618707817631713',1513,'121661870765','6161101602372','1.00','250','retail','0','2022-08-30 17:46:22','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-30 11:46:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618743933380320',1514,'121661870789','6161101602938','4.00','1000','retail','0','2022-08-30 18:46:34','','','','198.45','Cash',137.93,'250','','','12','','1','2022-08-30 12:48:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','41.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618801372033210',1515,'121661879890','5060608740253','1.00','70','retail','0','2022-08-30 20:22:22','','','','41.82','Cash',9.66,'70','','','12','','1','2022-08-30 14:24:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618846568631813',1516,'121661880288','5000267024011','1.00','3300','retail','0','2022-08-30 21:37:36','','','','2433','Cash',455.17,'3300','','','12','','1','2022-08-30 15:38:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618853906393603',1517,'121661884795','6001812011912','1.00','1100','retail','0','2022-08-30 21:49:51','','','','815','Cash',151.72,'1100','','','12','','1','2022-08-30 15:50:09','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618890413380320',1518,'121661889032','5000267024011','1.00','3300','retail','0','2022-08-30 22:50:42','','','','2433','Cash',455.17,'3300','','','12','','1','2022-08-30 16:50:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895106313603',1519,'121661889047','5000267024011','1.00','3300','retail','0','2022-08-30 22:58:57','','','','2433','Cash',455.17,'3300','','','12','','1','2022-08-30 16:59:35','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895266033626',1520,'121661889047','54491069','2.00','140','retail','0','2022-08-30 22:58:57','','','','53.333','Cash',19.31,'70','','','12','','1','2022-08-30 16:59:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2.00','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895370332020',1521,'121661889047','5018907194802','1.00','100','retail','0','2022-08-30 22:58:57','','','','74.58','Cash',13.79,'100','','','12','','1','2022-08-30 16:59:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895890303223',1522,'121661889576','5018907197803','1.00','60','retail','0','2022-08-30 22:59:59','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-30 17:01:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895922033259',1523,'121661889576','5018907197803','1.00','60','retail','0','2022-08-30 22:59:59','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-30 17:01:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895946393603',1524,'121661889576','5018907197803','1.00','60','retail','0','2022-08-30 22:59:59','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-30 17:01:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618895990303223',1525,'121661889576','5018907197803','1.00','60','retail','0','2022-08-30 22:59:59','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-30 17:01:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618907323380320',1526,'121661889714','5010106111451','1.00','2200','retail','0','2022-08-30 23:18:53','','','','1600','Cash',303.45,'2200','','','12','','1','2022-08-30 17:19:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618945260332020',1527,'121661890800','5010103930666','1.00','750','retail','0','2022-08-31 00:22:14','','','','542','Cash',103.45,'750','','','12','','1','2022-08-30 18:22:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618945333380320',1528,'121661890800','54491069','1.00','70','retail','0','2022-08-31 00:22:14','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-30 18:22:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618959643641021',1529,'121661894548','6161101602372','1.00','250','retail','0','2022-08-31 00:46:05','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-30 18:46:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618980440332020',1530,'121661895976','6008165007982','1.00','350','retail','0','2022-08-31 01:23:52','','','','308.53','Cash',48.28,'350','','','12','','1','2022-08-30 19:59:42','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618981489631913',1531,'121661895976','90162602','1.00','230','retail','0','2022-08-31 01:23:52','','','','147','Cash',31.72,'230','','','12','','1','2022-08-30 19:59:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618981766033626',1532,'121661895976','6161101604703','1.00','200','retail','0','2022-08-31 01:23:52','','','','150.45','Cash',27.59,'200','','','12','','1','2022-08-30 19:59:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618982223912263',1533,'121661895976','5018907197803','1.00','60','retail','0','2022-08-31 01:23:52','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-30 19:59:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216618982310303223',1534,'121661895976','5060639129003','1.00','200','retail','0','2022-08-31 01:23:52','','','','153','Cash',27.59,'200','','','12','','1','2022-08-30 19:59:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619419763390320',1535,'121661941972','6161101602372','1.00','250','retail','0','2022-08-31 13:33:08','','','','189.75','Cash',34.48,'250','','','12','','1','2022-08-31 07:34:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619419813419263',1536,'121661941972','6161101606011','1.00','220','retail','0','2022-08-31 13:33:08','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 07:34:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619419834631413',1537,'121661941972','6161101606011','1.00','220','retail','0','2022-08-31 13:33:08','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 07:34:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619419855033526',1538,'121661941972','6161101606011','1.00','220','retail','0','2022-08-31 13:33:08','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 07:34:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619419880303223',1539,'121661941972','6161101606011','1.00','220','retail','0','2022-08-31 13:33:08','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 07:34:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619562220332020',1540,'121661956214','6161101606011','1.00','220','retail','0','2022-08-31 17:30:30','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 11:31:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619562293390320',1541,'121661956214','6161101602211','1.00','350','retail','0','2022-08-31 17:30:30','','','','247','Cash',48.28,'350','','','12','','1','2022-08-31 11:31:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619696866383603',1542,'121661965509','6001495201501','1.00','1000','retail','0','2022-08-31 21:18:21','','','','628','Cash',137.93,'1000','','','12','','1','2022-08-31 15:18:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619699222033299',1543,'121661969907','6001108028044','2.00','500','retail','0','2022-08-31 21:18:42','','','','201','Cash',68.97,'250','','','12','','1','2022-08-31 15:18:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619703190303223',1544,'121661969927','5010103930628','1.00','1550','retail','0','2022-08-31 21:25:19','','','','1125','Cash',213.79,'1550','','','12','','1','2022-08-31 15:28:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619706127631713',1545,'121661970526','6161100421370','1.00','700','retail','0','2022-08-31 21:30:12','','','','502','Cash',96.55,'700','','','12','','1','2022-08-31 15:31:53','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619714423714263',1546,'121661970715','5010103930666','1.00','750','retail','0','2022-08-31 21:44:02','','','','542','Cash',103.45,'750','','','12','','1','2022-08-31 15:45:23','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619720042033202',1547,'121661971524','5018907197803','1.00','60','retail','0','2022-08-31 21:53:25','','','','44.58','Cash',8.28,'60','','','12','','1','2022-08-31 15:53:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619753816383603',1548,'121661972009','6161101605465','1.00','700','retail','0','2022-08-31 22:49:42','','','','501','Cash',96.55,'700','','','12','','1','2022-08-31 16:50:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619757053390320',1549,'121661975435','5000267014005','1.00','1800','retail','0','2022-08-31 22:55:05','','','','1304','Cash',248.28,'1800','','','12','','1','2022-08-31 16:56:06','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619766587631713',1550,'121661975767','6161101606011','1.00','220','retail','0','2022-08-31 23:10:58','','','','172.833','Cash',30.34,'220','','','12','','1','2022-08-31 17:11:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619776899033926',1551,'121661976697','50196166','1.00','600','retail','0','2022-08-31 23:28:19','','','','443','Cash',82.76,'600','','','12','','1','2022-08-31 17:30:34','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619776983716263',1552,'121661976697','6009644549320','1.00','70','retail','0','2022-08-31 23:28:19','','','','31.25','Cash',9.66,'70','','','12','','1','2022-08-31 17:30:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619779444033426',1553,'121661977835','8712000900045','4.00','1000','retail','0','2022-08-31 23:32:25','','','','182','Cash',137.93,'250','','','12','','1','2022-08-31 17:34:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4.00','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619782176313603',1554,'121661978054','5000289020701','1.00','2000','retail','0','2022-08-31 23:36:57','','','','1540','Cash',275.86,'2000','','','12','','1','2022-08-31 17:38:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619800933810263',1555,'121661978324','6161101602167','1.00','550','retail','0','2022-09-01 00:08:21','','','','388','Cash',75.86,'550','','','12','','1','2022-08-31 18:12:44','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216619801008631813',1556,'121661978324','54491069','1.00','70','retail','0','2022-09-01 00:08:21','','','','53.333','Cash',9.66,'70','','','12','','1','2022-08-31 18:12:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620228423218263',1557,'121662022644','5018907197803','1.00','60','retail','0','2022-09-01 12:00:43','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-01 06:00:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620243855033526',1558,'121662024381','4058387002267','1.00','1500','retail','0','2022-09-01 12:26:26','','','','1150','Cash',206.90,'1500','','','12','','1','2022-09-01 06:31:06','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620290400033026',1559,'121662024667','5010232953994','1.00','350','retail','0','2022-09-01 13:44:24','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-01 07:44:28','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620290640332020',1560,'121662024667','90162602','1.00','230','retail','0','2022-09-01 13:44:24','','','','147','Cash',31.72,'230','','','12','','1','2022-09-01 07:44:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620298423218263',1561,'121662029069','8712000900045','1.00','250','retail','0','2022-09-01 13:57:54','','','','182','Cash',34.48,'250','','','12','','1','2022-09-01 07:57:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620298473218263',1562,'121662029069','8712000900045','1.00','250','retail','0','2022-09-01 13:57:54','','','','182','Cash',34.48,'250','','','12','','1','2022-09-01 07:57:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620298676363603',1563,'121662029069','6161101603324','1.00','200','retail','0','2022-09-01 13:57:54','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-01 07:57:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620298733300320',1564,'121662029069','6161101604703','1.00','200','retail','0','2022-09-01 13:57:54','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-01 07:57:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620358662033285',1565,'121662035854','6161101602167','1.00','550','retail','0','2022-09-01 15:38:07','','','','388','Cash',75.86,'550','','','12','','1','2022-09-01 09:38:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620358790332020',1566,'121662035854','5018907197803','1.00','60','retail','0','2022-09-01 15:38:07','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-01 09:38:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620358863632313',1567,'121662035854','6009644549320','1.00','70','retail','0','2022-09-01 15:38:07','','','','31.25','Cash',9.66,'70','','','12','','1','2022-09-01 09:38:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620367183317263',1568,'121662035939','90162602','1.00','230','retail','0','2022-09-01 15:51:59','','','','147','Cash',31.72,'230','','','12','','1','2022-09-01 09:53:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620499622033299',1569,'121662049952','6161101602167','1.00','550','retail','0','2022-09-01 19:32:42','','','','388','Cash',75.86,'550','','','12','','1','2022-09-01 13:34:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620504100303223',1570,'121662050058','8712000900663','1.00','230','retail','0','2022-09-01 19:40:11','','','','174','Cash',31.72,'230','','','12','','1','2022-09-01 13:41:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620612362033221',1571,'121662061222','1210000100511','1.00','2300','retail','0','2022-09-01 22:40:37','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-01 16:41:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620618090303223',1572,'121662061315','6009644549320','2.00','140','retail','0','2022-09-01 22:50:09','','','','31.25','Cash',19.31,'70','','','12','','1','2022-09-01 16:50:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2.00','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620620622033226',1573,'121662061813','90162602','1.00','230','retail','0','2022-09-01 22:54:22','','','','147','Cash',31.72,'230','','','12','','1','2022-09-01 16:54:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620665416343603',1574,'121662062079','6161101604703','1.00','200','retail','0','2022-09-02 00:09:01','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-01 18:10:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620669723300320',1575,'121662066642','6001812011936','1.00','950','retail','0','2022-09-02 00:16:13','','','','700','Cash',131.03,'950','','','12','','1','2022-09-01 18:17:12','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620722727632713',1576,'121662072250','6161101603324','2.00','400','retail','0','2022-09-02 01:44:32','','','','150.45','Cash',55.17,'200','','','12','','1','2022-09-01 19:44:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620723000332020',1577,'121662072275','6161101600934','1.00','1500','retail','0','2022-09-02 01:47:22','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-01 19:48:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620723155033526',1578,'121662072275','6161101600941','1.00','750','retail','0','2022-09-02 01:47:22','','','','544','Cash',103.45,'750','','','12','','1','2022-09-01 19:48:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620724193300320',1579,'121662072275','6164001199331','3.00','180','retail','0','2022-09-02 01:47:22','','','','37.08','Cash',24.83,'60','','','12','','1','2022-09-01 19:48:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620724299033926',1580,'121662072275','5018907194802','3.00','300','retail','0','2022-09-02 01:47:22','','','','74.58','Cash',41.38,'100','','','12','','1','2022-09-01 19:48:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620724423714263',1581,'121662072275','6009644549320','1.00','70','retail','0','2022-09-02 01:47:22','','','','31.25','Cash',9.66,'70','','','12','','1','2022-09-01 19:48:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620725160303223',1582,'121662072513','5000267014005','1.00','1800','retail','0','2022-09-02 01:48:37','','','','1304','Cash',248.28,'1800','','','12','','1','2022-09-01 19:48:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620732200332020',1583,'121662072524','5000267013602','1.00','2200','retail','0','2022-09-02 02:01:46','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-01 20:02:36','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620732556353603',1584,'121662072524','6001812011936','1.00','950','retail','0','2022-09-02 02:01:46','','','','700','Cash',131.03,'950','','','12','','1','2022-09-01 20:02:36','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620732590303223',1585,'121662072524','6001812011936','1.00','950','retail','0','2022-09-02 02:01:46','','','','700','Cash',131.03,'950','','','12','','1','2022-09-01 20:02:36','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620736253716263',1586,'121662073599','6161101600934','1.00','1500','retail','0','2022-09-02 02:16:31','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-01 20:20:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620736970006219',1587,'121662073599','5018907194802','1.00','100','retail','0','2022-09-02 02:16:31','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-01 20:20:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620741902241333',1588,'121662073599','6164001199331','1.00','60','retail','0','2022-09-02 02:16:31','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-01 20:20:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216620775517632713',1589,'121662077539','6161101601979','3.00','750','retail','0','2022-09-02 03:12:32','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-01 21:27:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622125811033126',1590,'121662212570','5060639129003','1.00','200','retail','0','2022-09-03 16:43:02','','','','153','Cash',27.59,'200','','','12','','1','2022-09-03 10:43:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622138206323603',1591,'121662213813','8712000900663','1.00','230','retail','0','2022-09-03 17:03:41','','','','174','Cash',31.72,'230','','','12','','1','2022-09-03 11:03:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622213592632213',1592,'121662221352','5010103930840','1.00','450','retail','0','2022-09-03 19:09:19','','','','335','Cash',62.07,'450','','','12','','1','2022-09-03 13:11:39','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',387.93,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622269413320320',1593,'121662226938','5010103930666','1.00','750','retail','0','2022-09-03 20:42:21','','','','542','Cash',103.45,'750','','','12','','1','2022-09-03 14:42:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622299712033299',1594,'121662229946','6161101601979','3.00','750','retail','0','2022-09-03 21:35:59','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-03 15:37:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','22.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622299933219263',1595,'121662229946','6161101602921','1.00','250','retail','0','2022-09-03 21:35:59','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-03 15:37:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622300082033200',1596,'121662229946','5060639129003','2.00','400','retail','0','2022-09-03 21:35:59','','','','153','Cash',55.17,'200','','','12','','1','2022-09-03 15:37:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2.00','54.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622300280332020',1597,'121662229946','5018907194802','2.00','200','retail','0','2022-09-03 21:35:59','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-03 15:37:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2.00','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622300583632313',1598,'121662229946','082184090473','1.00','3500','retail','0','2022-09-03 21:35:59','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-03 15:37:10','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622320144033426',1599,'121662231261','90162602','1.00','230','retail','0','2022-09-03 22:06:55','','','','147','Cash',31.72,'230','','','12','','1','2022-09-03 16:06:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622327330303223',1600,'121662232020','6161101606011','2.00','440','retail','0','2022-09-03 22:18:53','','','','172.833','Cash',60.69,'220','','','12','','1','2022-09-03 16:19:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622336176313603',1601,'121662232782','082184087008','1.00','8000','retail','0','2022-09-03 22:35:16','','','','5900','Cash',1103.45,'8000','','','12','','1','2022-09-03 16:37:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',6896.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622336840332020',1602,'121662232782','90162602','2.00','460','retail','0','2022-09-03 22:35:16','','','','147','Cash',63.45,'230','','','12','','1','2022-09-03 16:37:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622336963632313',1603,'121662232782','5060639129003','1.00','200','retail','0','2022-09-03 22:35:16','','','','153','Cash',27.59,'200','','','12','','1','2022-09-03 16:37:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','52.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622337163632313',1604,'121662232782','6161101606011','2.00','440','retail','0','2022-09-03 22:35:16','','','','172.833','Cash',60.69,'220','','','12','','1','2022-09-03 16:37:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622344388033826',1605,'121662234417','6008165007982','2.00','700','retail','0','2022-09-03 22:47:28','','','','308.53','Cash',96.55,'350','','','12','','1','2022-09-03 16:47:53','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622344473320320',1606,'121662234417','3086120600020','1.00','120','retail','0','2022-09-03 22:47:28','','','','93.86','Cash',16.55,'120','','','12','','1','2022-09-03 16:47:53','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622362883320320',1607,'121662234474','6161101605465','1.00','700','retail','0','2022-09-03 23:18:08','','','','501','Cash',96.55,'700','','','12','','1','2022-09-03 17:18:10','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622364190332020',1608,'121662236291','6008165007685','1.00','270','retail','0','2022-09-03 23:20:20','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-03 17:20:22','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622370220332020',1609,'121662236423','5010103930666','1.00','750','retail','0','2022-09-03 23:30:22','','','','542','Cash',103.45,'750','','','12','','1','2022-09-03 17:33:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622378963320320',1610,'121662237188','6161101602372','1.00','250','retail','0','2022-09-03 23:45:46','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-03 17:45:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622379013320320',1611,'121662237188','6161101601979','1.00','250','retail','0','2022-09-03 23:45:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-03 17:45:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622379463632313',1612,'121662237188','6161101601979','1.00','250','retail','0','2022-09-03 23:45:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-03 17:45:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622397673320320',1613,'121662239354','5010103930628','1.00','1550','retail','0','2022-09-04 00:16:07','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-03 18:16:38','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622413700033026',1614,'121662239799','6001496011796','1.00','1550','retail','0','2022-09-04 00:44:20','','','','1072','Cash',213.79,'1550','','','12','','1','2022-09-03 18:44:35','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622413846383603',1615,'121662239799','5018907194802','4.00','400','retail','0','2022-09-04 00:44:20','','','','74.58','Cash',55.17,'100','','','12','','1','2022-09-03 18:44:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'4','25.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622414003414263',1616,'121662239799','6164001199331','1.00','60','retail','0','2022-09-04 00:44:20','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-03 18:44:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622414460303223',1617,'121662239799','6161101601979','3.00','750','retail','0','2022-09-04 00:44:20','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-03 18:44:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622414593320320',1618,'121662239799','6161101602372','1.00','250','retail','0','2022-09-04 00:44:20','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-03 18:44:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622430336333603',1619,'121662242068','6161101603324','4.00','800','retail','0','2022-09-04 01:10:34','','','','150.45','Cash',110.34,'200','','','12','','1','2022-09-03 19:11:37','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622432704632413',1620,'121662243098','6161101604550','1.00','400','retail','0','2022-09-04 01:14:31','','','','284','Cash',55.17,'400','','','12','','1','2022-09-03 19:17:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622443280332020',1621,'121662243429','6161101603324','6.00','1200','retail','0','2022-09-04 01:32:09','','','','150.45','Cash',165.52,'200','','','12','','1','2022-09-03 19:33:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622446377033726',1622,'121662244381','6161101603379','1.00','250','retail','0','2022-09-04 01:37:23','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-03 19:38:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622446390303223',1623,'121662244381','6161101603379','1.00','250','retail','0','2022-09-04 01:37:23','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-03 19:38:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622446416343603',1624,'121662244381','6161101603379','1.00','250','retail','0','2022-09-04 01:37:23','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-03 19:38:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622446432033264',1625,'121662244381','6161101603379','1.00','250','retail','0','2022-09-04 01:37:23','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-03 19:38:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622459833033326',1626,'121662244718','8908006354191','1.00','1300','retail','0','2022-09-04 02:00:34','','','','920','Cash',179.31,'1300','','','12','','1','2022-09-03 20:09:50','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622466904632413',1627,'121662246591','6164001199331','1.00','60','retail','0','2022-09-04 02:11:30','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-03 20:11:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622467182033276',1628,'121662246694','6161101601979','3.00','750','retail','0','2022-09-04 02:12:12','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-03 20:12:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622467310303223',1629,'121662246694','6161101602372','1.00','250','retail','0','2022-09-04 02:12:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-03 20:12:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622883582033238',1630,'121662288340','6161101606011','1.00','220','retail','0','2022-09-04 13:46:03','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-04 07:46:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622883592033238',1631,'121662288340','6161101606011','1.00','220','retail','0','2022-09-04 13:46:03','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-04 07:46:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622883611033126',1632,'121662288340','6161101606011','1.00','220','retail','0','2022-09-04 13:46:03','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-04 07:46:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622883630332020',1633,'121662288340','6161101606011','1.00','220','retail','0','2022-09-04 13:46:03','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-04 07:46:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622891613320320',1634,'121662288976','6161101601979','11.00','2750','retail','0','2022-09-04 13:59:22','','','','172.75','Cash',379.31,'250','','','12','','1','2022-09-04 07:59:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'11','11.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622891958632813',1635,'121662289166','6164001199331','15.00','900','retail','0','2022-09-04 14:00:10','','','','37.08','Cash',124.14,'60','','','12','','1','2022-09-04 08:00:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',775.86,'','15.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622893466033626',1636,'121662289214','082184090473','2.00','7000','retail','0','2022-09-04 14:02:26','','','','2600','Cash',965.52,'3500','','','12','','1','2022-09-04 08:02:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622894582033249',1637,'121662289351','082184087008','1.00','8000','retail','0','2022-09-04 14:04:18','','','','5900','Cash',1103.45,'8000','','','12','','1','2022-09-04 08:04:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',6896.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622900823008330',1638,'121662289462','4058387000317','2.00','3100','retail','0','2022-09-04 14:14:42','','','','1150','Cash',427.59,'1550','','','12','','1','2022-09-04 08:14:44','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622901339632913',1639,'121662290086','6161101602372','3.00','750','retail','0','2022-09-04 14:16:51','','','','189.75','Cash',103.45,'250','','','12','','1','2022-09-04 08:16:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3.00','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622901513911263',1640,'121662290086','90162602','1.00','230','retail','0','2022-09-04 14:16:51','','','','147','Cash',31.72,'230','','','12','','1','2022-09-04 08:16:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216622902103320320',1641,'121662290086','024000150152','1.00','250','retail','0','2022-09-04 14:16:51','','','','205','Cash',34.48,'250','','','12','','1','2022-09-04 08:16:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623007480332020',1642,'121662300717','6001496301804','2.00','2000','retail','0','2022-09-04 17:12:29','','','','729','Cash',275.86,'1000','','','12','','1','2022-09-04 11:12:32','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623178343118263',1643,'121662313086','6161101602372','1.00','250','retail','0','2022-09-04 21:57:14','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-04 15:58:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623271244033426',1644,'121662326249','6161101602051','1.00','550','retail','0','2022-09-05 00:32:31','','','','392','Cash',75.86,'550','','','12','','1','2022-09-04 18:32:45','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623271500303223',1645,'121662326249','6008165007982','1.00','350','retail','0','2022-09-05 00:32:31','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-04 18:32:45','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623273730303223',1646,'121662327167','5000267013602','1.00','2200','retail','0','2022-09-05 00:36:14','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-04 18:37:39','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623290844033426',1647,'121662327460','50196166','1.00','600','retail','0','2022-09-05 01:04:54','','','','443','Cash',82.76,'600','','','12','','1','2022-09-04 19:04:57','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623290943210263',1648,'121662327460','6009644549320','1.00','70','retail','0','2022-09-05 01:04:54','','','','31.25','Cash',9.66,'70','','','12','','1','2022-09-04 19:04:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623315903632313',1649,'121662329099','5099873089712','1.00','2300','retail','0','2022-09-05 01:47:33','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-04 19:47:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623315923315263',1650,'121662329099','5099873089712','1.00','2300','retail','0','2022-09-05 01:47:33','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-04 19:47:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623316136313603',1651,'121662329099','5018907194802','2.00','200','retail','0','2022-09-05 01:47:33','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-04 19:47:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623316262620322',1652,'121662329099','6001108028044','2.00','500','retail','0','2022-09-05 01:47:33','','','','201','Cash',68.97,'250','','','12','','1','2022-09-04 19:47:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623316396333603',1653,'121662329099','6161101602938','1.00','250','retail','0','2022-09-05 01:47:33','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-04 19:47:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623316520332020',1654,'121662329099','6161101603324','1.00','200','retail','0','2022-09-05 01:47:33','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-04 19:47:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623878338632813',1655,'121662387236','6161101130424','1.00','750','retail','0','2022-09-05 17:23:53','','','','642','Cash',103.45,'750','','','12','','1','2022-09-05 11:26:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623931252033213',1656,'121662387991','6008165007685','1.00','270','retail','0','2022-09-05 18:52:09','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-05 12:53:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623931289632913',1657,'121662387991','5010103930666','1.00','750','retail','0','2022-09-05 18:52:09','','','','542','Cash',103.45,'750','','','12','','1','2022-09-05 12:53:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623993000962203',1658,'121662387991','6001108028044','1.00','250','retail','0','2022-09-05 20:40:24','','','','201','Cash',34.48,'250','','','12','','1','2022-09-05 14:41:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623993053330320',1659,'121662387991','6001108028044','1.00','250','retail','0','2022-09-05 20:40:24','','','','201','Cash',34.48,'250','','','12','','1','2022-09-05 14:41:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623993893913263',1660,'121662387991','5010103930840','1.00','450','retail','0','2022-09-05 20:40:24','','','','335','Cash',62.07,'450','','','12','','1','2022-09-05 14:41:43','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',387.93,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623994116313603',1661,'121662387991','6001108028044','1.00','250','retail','0','2022-09-05 20:40:24','','','','201','Cash',34.48,'250','','','12','','1','2022-09-05 14:41:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216623996244033426',1662,'121662387991','6161101606547','1.00','550','retail','0','2022-09-05 20:40:24','','','','388','Cash',75.86,'550','','','12','','1','2022-09-05 14:41:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624001712033210',1663,'121662399704','100','1.00','250','retail','0','2022-09-05 20:49:32','','','','177','Cash',34.48,'250','','','12','','1','2022-09-05 14:49:35','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624022936393603',1664,'121662400176','6161101602372','1.00','250','retail','0','2022-09-05 21:24:54','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-05 15:28:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624025890632013',1665,'121662402505','6161101602051','1.00','550','retail','0','2022-09-05 21:29:49','','','','392','Cash',75.86,'550','','','12','','1','2022-09-05 15:31:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624117451632113',1666,'121662400176','5060608740253','2.00','140','retail','0','2022-09-06 00:02:26','','','','41.82','Cash',19.31,'70','','','12','','1','2022-09-05 18:02:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624158980332020',1667,'121662411751','6161101602372','1.00','250','retail','0','2022-09-06 01:11:38','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-05 19:11:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624707699033926',1668,'121662470763','6008165007982','1.00','350','retail','0','2022-09-06 16:26:10','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-06 10:27:34','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624835238632813',1669,'121662482715','6161101602372','1.00','250','retail','0','2022-09-06 19:58:43','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-06 13:59:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624868513818263',1670,'121662483599','5018907194802','1.00','100','retail','0','2022-09-06 20:54:11','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-06 14:54:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624882158632813',1671,'121662486858','5060608740253','1.00','70','retail','0','2022-09-06 21:18:00','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-06 15:22:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624882792033228',1672,'121662486858','4067700014559','1.00','2500','retail','0','2022-09-06 21:18:00','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-06 15:22:41','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624885902033258',1673,'121662488562','6008165007982','1.00','350','retail','0','2022-09-06 21:23:11','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-06 15:26:00','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624887858324067',1674,'121662488762','5099873038758','1.00','8500','retail','0','2022-09-06 21:27:29','','','','3920','Cash',1172.41,'8500','','','12','','1','2022-09-06 15:27:38','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624887988632813',1675,'121662488762','5018907194802','1.00','100','retail','0','2022-09-06 21:27:29','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-06 15:27:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624888312033288',1676,'121662488762','90162602','2.00','460','retail','0','2022-09-06 21:27:29','','','','147','Cash',63.45,'230','','','12','','1','2022-09-06 15:27:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2.00','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624888480332020',1677,'121662488762','6161101602938','1.00','250','retail','0','2022-09-06 21:27:29','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-06 15:27:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624901403340320',1678,'121662490133','6161101605465','1.00','700','retail','0','2022-09-06 21:49:01','','','','501','Cash',96.55,'700','','','12','','1','2022-09-06 15:51:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624911846383603',1679,'121662490309','8712000900045','1.00','250','retail','0','2022-09-06 22:06:42','','','','182','Cash',34.48,'250','','','12','','1','2022-09-06 16:08:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624912013340320',1680,'121662490309','6161101603379','1.00','250','retail','0','2022-09-06 22:06:42','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-06 16:08:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624923273340320',1681,'121662491330','5010103930666','1.00','750','retail','0','2022-09-06 22:25:27','','','','542','Cash',103.45,'750','','','12','','1','2022-09-06 16:28:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624927972033272',1682,'121662492485','5060639129003','1.00','200','retail','0','2022-09-06 22:33:29','','','','153','Cash',27.59,'200','','','12','','1','2022-09-06 16:33:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624928099033926',1683,'121662492485','5060608740253','1.00','70','retail','0','2022-09-06 22:33:29','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-06 16:33:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624931266323603',1684,'121662492815','6161101603324','1.00','200','retail','0','2022-09-06 22:38:47','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-06 16:43:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624938270303223',1685,'121662493690','6161101602921','4.00','1000','retail','0','2022-09-06 22:50:28','','','','198.45','Cash',137.93,'250','','','12','','1','2022-09-06 16:50:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','55.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624965619632913',1686,'121662493921','6161101600941','1.00','750','retail','0','2022-09-06 23:36:06','','','','544','Cash',103.45,'750','','','12','','1','2022-09-06 18:03:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216624965650303223',1687,'121662493921','6008165007982','1.00','350','retail','0','2022-09-06 23:36:06','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-06 18:03:11','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625010496343603',1688,'121662498193','5099873089712','1.00','2300','retail','0','2022-09-07 00:52:24','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-06 18:52:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625010542230202',1689,'121662498193','5099873089712','1.00','2300','retail','0','2022-09-07 00:52:24','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-06 18:52:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625011122033211',1690,'121662498193','5018907194802','2.00','200','retail','0','2022-09-07 00:52:24','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-06 18:52:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625011330062233',1691,'121662498193','90162602','1.00','230','retail','0','2022-09-07 00:52:24','','','','147','Cash',31.72,'230','','','12','','1','2022-09-06 18:52:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625011436343603',1692,'121662498193','5060639129003','1.00','200','retail','0','2022-09-07 00:52:24','','','','153','Cash',27.59,'200','','','12','','1','2022-09-06 18:52:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625022340303223',1693,'121662501159','5000267014005','1.00','1800','retail','0','2022-09-07 01:10:47','','','','1304','Cash',248.28,'1800','','','12','','1','2022-09-06 19:12:40','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625022399033926',1694,'121662501159','5060608740253','1.00','70','retail','0','2022-09-07 01:10:47','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-06 19:12:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625022440303223',1695,'121662501159','5060608740253','1.00','70','retail','0','2022-09-07 01:10:47','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-06 19:12:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625022466033626',1696,'121662501159','5060608740253','1.00','70','retail','0','2022-09-07 01:10:47','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-06 19:12:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625572160332020',1697,'121662557206','6164001199331','1.00','60','retail','0','2022-09-07 16:26:56','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 10:27:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625700977033726',1698,'121662570087','5060608740253','1.00','70','retail','0','2022-09-07 20:01:38','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 14:01:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625701857632713',1699,'121662570102','5060608740253','1.00','70','retail','0','2022-09-07 20:03:05','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 14:03:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625711967632713',1700,'121662571122','5060608740253','1.00','70','retail','0','2022-09-07 20:20:24','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 14:20:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625712233350320',1701,'121662571122','1000','1.00','250','retail','0','2022-09-07 20:20:24','','','','192','Cash',34.48,'250','','','12','','1','2022-09-07 14:20:40','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625744790332020',1702,'121662571242','5018907194802','1.00','100','retail','0','2022-09-07 21:14:39','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-07 15:14:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625754113714263',1703,'121662574484','6001496011772','1.00','750','retail','0','2022-09-07 21:30:11','','','','544','Cash',103.45,'750','','','12','','1','2022-09-07 15:31:55','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625765066303603',1704,'121662575516','5010103930628','1.00','1550','retail','0','2022-09-07 21:48:26','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-07 15:51:42','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625777643350320',1705,'121662576703','6161101602372','1.00','250','retail','0','2022-09-07 22:09:27','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-07 16:09:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625777667262232',1706,'121662576703','6161101602372','1.00','250','retail','0','2022-09-07 22:09:27','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-07 16:09:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625796440332020',1707,'121662577786','082184090473','1.00','3500','retail','0','2022-09-07 22:46:12','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-07 16:46:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625796655033526',1708,'121662577786','90162602','1.00','230','retail','0','2022-09-07 22:46:12','','','','147','Cash',31.72,'230','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625796752033269',1709,'121662577786','90162602','1.00','230','retail','0','2022-09-07 22:46:12','','','','147','Cash',31.72,'230','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625797113717263',1710,'121662577786','5000267112077','1.00','6000','retail','0','2022-09-07 22:46:12','','','','4520','Cash',827.59,'6000','','','12','','1','2022-09-07 16:46:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625797516353603',1711,'121662577786','6161101606011','6.00','1320','retail','0','2022-09-07 22:46:12','','','','172.833','Cash',182.07,'220','','','12','','1','2022-09-07 16:46:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6.00','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625798420332020',1712,'121662577786','5018907194802','1.00','100','retail','0','2022-09-07 22:46:12','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625798440303223',1713,'121662577786','5018907194802','1.00','100','retail','0','2022-09-07 22:46:12','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625798467632713',1714,'121662577786','5018907194802','3.00','300','retail','0','2022-09-07 22:46:12','','','','74.58','Cash',41.38,'100','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625798637632713',1715,'121662577786','6164001199331','1.00','60','retail','0','2022-09-07 22:46:12','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625799173222235',1716,'121662577786','6164001199331','1.00','60','retail','0','2022-09-07 22:46:12','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625799220303223',1717,'121662577786','6164001199331','1.00','60','retail','0','2022-09-07 22:46:12','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625799340303223',1718,'121662577786','6164001199331','1.00','60','retail','0','2022-09-07 22:46:12','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625799377632713',1719,'121662577786','6164001199331','1.00','60','retail','0','2022-09-07 22:46:12','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-07 16:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625800680303223',1720,'121662579982','90162602','1.00','230','retail','0','2022-09-07 22:48:34','','','','147','Cash',31.72,'230','','','12','','1','2022-09-07 16:49:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625800853350320',1721,'121662579982','6161101601979','5.00','1250','retail','0','2022-09-07 22:48:34','','','','172.75','Cash',172.41,'250','','','12','','1','2022-09-07 16:49:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5.00','23.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625800966393603',1722,'121662579982','6161101602372','1.00','250','retail','0','2022-09-07 22:48:34','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-07 16:49:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625801136313603',1723,'121662579982','6161101602372','1.00','250','retail','0','2022-09-07 22:48:34','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-07 16:49:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625806072033260',1724,'121662580385','6161101604703','6.00','1200','retail','0','2022-09-07 22:56:47','','','','150.45','Cash',165.52,'200','','','12','','1','2022-09-07 16:56:50','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6.00','27.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625811458632813',1725,'121662580612','5010103930666','1.00','750','retail','0','2022-09-07 23:05:46','','','','542','Cash',103.45,'750','','','12','','1','2022-09-07 17:07:16','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625816738632813',1726,'121662581634','4067700014559','1.00','2500','retail','0','2022-09-07 23:14:33','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-07 17:14:36','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625840163350320',1727,'121662581677','6161101603379','6.00','1500','retail','0','2022-09-07 23:53:47','','','','190.375','Cash',206.90,'250','','','12','','1','2022-09-07 17:58:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6.00','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625840260303223',1728,'121662581677','6161101602921','3.00','750','retail','0','2022-09-07 23:53:47','','','','198.45','Cash',103.45,'250','','','12','','1','2022-09-07 17:58:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','51.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625846542033264',1729,'121662584302','5060608740253','1.00','70','retail','0','2022-09-08 00:04:19','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 18:04:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625846566033626',1730,'121662584302','5060608740253','1.00','70','retail','0','2022-09-08 00:04:19','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 18:04:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625846590332020',1731,'121662584302','5060608740253','1.00','70','retail','0','2022-09-08 00:04:19','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 18:04:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625872810303223',1732,'121662584665','5000267024011','1.00','3300','retail','0','2022-09-08 00:49:11','','','','2433','Cash',455.17,'3300','','','12','','1','2022-09-07 18:52:24','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2844.83,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625873483322732',1733,'121662584665','90162602','1.00','230','retail','0','2022-09-08 00:49:11','','','','147','Cash',31.72,'230','','','12','','1','2022-09-07 18:52:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625873503813263',1734,'121662584665','90162602','1.00','230','retail','0','2022-09-08 00:49:11','','','','147','Cash',31.72,'230','','','12','','1','2022-09-07 18:52:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625880660303223',1735,'121662587926','6002039006019','1.00','1400','retail','0','2022-09-08 01:01:07','','','','790','Cash',193.10,'1400','','','12','','1','2022-09-07 19:01:14','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625895998632813',1736,'121662588075','50196081','1.00','1550','retail','0','2022-09-08 01:28:11','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-07 19:28:44','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625896366033626',1737,'121662588075','6164001199331','3.00','180','retail','0','2022-09-08 01:28:11','','','','37.08','Cash',24.83,'60','','','12','','1','2022-09-07 19:28:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625896570303223',1738,'121662588075','5018907194802','3.00','300','retail','0','2022-09-08 01:28:11','','','','74.58','Cash',41.38,'100','','','12','','1','2022-09-07 19:28:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625896750303223',1739,'121662588075','5060608740253','1.00','70','retail','0','2022-09-08 01:28:11','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-07 19:28:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625896911033126',1740,'121662588075','6161101602372','2.00','500','retail','0','2022-09-08 01:28:11','','','','189.75','Cash',68.97,'250','','','12','','1','2022-09-07 19:28:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625922336333603',1741,'121662592224','6002039006019','1.00','1400','retail','0','2022-09-08 02:10:34','','','','790','Cash',193.10,'1400','','','12','','1','2022-09-07 20:11:35','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216625925683915263',1742,'121662592296','50196166','1.00','600','retail','0','2022-09-08 02:16:09','','','','443','Cash',82.76,'600','','','12','','1','2022-09-07 20:16:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626457723360320',1743,'121662645757','5018907197803','2.00','120','retail','0','2022-09-08 17:03:13','','','','44.58','Cash',16.55,'60','','','12','','1','2022-09-08 11:03:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','43.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626457922033275',1744,'121662645757','6164001199331','1.00','60','retail','0','2022-09-08 17:03:13','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-08 11:03:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626535525632513',1745,'121662653542','8712000900045','1.00','250','retail','0','2022-09-08 19:12:33','','','','182','Cash',34.48,'250','','','12','','1','2022-09-08 13:12:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626573133513263',1746,'121662653557','6161101602372','1.00','250','retail','0','2022-09-08 20:15:13','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-08 14:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626574572033247',1747,'121662657374','6161101602167','1.00','550','retail','0','2022-09-08 20:17:48','','','','388','Cash',75.86,'550','','','12','','1','2022-09-08 14:17:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626574676363603',1748,'121662657374','6161101603379','1.00','250','retail','0','2022-09-08 20:17:48','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-08 14:17:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626583488033826',1749,'121662657472','1000','1.00','250','retail','0','2022-09-08 20:32:28','','','','192','Cash',34.48,'250','','','12','','1','2022-09-08 14:32:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626584643360320',1750,'121662658359','6161101602938','1.00','250','retail','0','2022-09-08 20:34:24','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-08 14:34:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626607960360762',1751,'121662658468','50196166','1.00','600','retail','0','2022-09-08 21:13:33','','','','443','Cash',82.76,'600','','','12','','1','2022-09-08 15:15:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626608136313603',1752,'121662658468','5060608740253','1.00','70','retail','0','2022-09-08 21:13:33','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-08 15:15:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626613703360320',1753,'121662660931','1000','1.00','250','retail','0','2022-09-08 21:22:50','','','','192','Cash',34.48,'250','','','12','','1','2022-09-08 15:22:53','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626614423360320',1754,'121662661374','6164001199331','1.00','60','retail','0','2022-09-08 21:24:02','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-08 15:24:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626655142033255',1755,'121662661449','6161101602372','1.00','250','retail','0','2022-09-08 22:32:05','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-08 16:32:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626655166313603',1756,'121662661449','6161101602372','1.00','250','retail','0','2022-09-08 22:32:05','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-08 16:32:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626655190303223',1757,'121662661449','6161101602372','1.00','250','retail','0','2022-09-08 22:32:05','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-08 16:32:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626655256323603',1758,'121662661449','6161101603379','1.00','250','retail','0','2022-09-08 22:32:05','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-08 16:32:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626657588033826',1759,'121662665575','5060639129003','1.00','200','retail','0','2022-09-08 22:35:59','','','','153','Cash',27.59,'200','','','12','','1','2022-09-08 16:36:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626675950332020',1760,'121662665575','6161101130424','1.00','750','retail','0','2022-09-08 23:07:01','','','','642','Cash',103.45,'750','','','12','','1','2022-09-08 17:07:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626676210303223',1761,'121662665575','6161101601979','1.00','250','retail','0','2022-09-08 23:07:01','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-08 17:07:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626701793711263',1762,'121662667645','6161101602372','6.00','1500','retail','0','2022-09-08 23:50:02','','','','189.75','Cash',206.90,'250','','','12','','1','2022-09-08 17:52:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','26.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626702023712263',1763,'121662667645','5000267013602','1.00','2200','retail','0','2022-09-08 23:50:02','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-08 17:52:01','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626715737632713',1764,'121662670323','6161101603379','2.00','500','retail','0','2022-09-09 00:13:16','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-08 18:13:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626715956393603',1765,'121662670323','5060639129003','1.00','200','retail','0','2022-09-09 00:13:16','','','','153','Cash',27.59,'200','','','12','','1','2022-09-08 18:13:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626763770332020',1766,'121662672611','6161101603379','1.00','250','retail','0','2022-09-09 01:33:10','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-08 19:33:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216626763893713263',1767,'121662672611','6161101601979','1.00','250','retail','0','2022-09-09 01:33:10','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-08 19:33:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627256160303223',1768,'121662725599','5060639129003','1.00','200','retail','0','2022-09-09 15:13:36','','','','153','Cash',27.59,'200','','','12','','1','2022-09-09 09:13:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627300402624230',1769,'121662727620','5060639129003','1.00','200','retail','0','2022-09-09 16:27:36','','','','153','Cash',27.59,'200','','','12','','1','2022-09-09 10:30:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627300563310263',1770,'121662727620','1000','1.00','250','retail','0','2022-09-09 16:27:36','','','','192','Cash',34.48,'250','','','12','','1','2022-09-09 10:30:23','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627309476343603',1771,'121662730225','6161101601979','4.00','1000','retail','0','2022-09-09 16:42:41','','','','172.75','Cash',137.93,'250','','','12','','1','2022-09-09 10:45:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627309600332020',1772,'121662730225','8712000900045','2.00','500','retail','0','2022-09-09 16:42:41','','','','182','Cash',68.97,'250','','','12','','1','2022-09-09 10:45:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627322173312263',1773,'121662732207','6001495062669','1.00','2600','retail','0','2022-09-09 17:03:37','','','','1960','Cash',358.62,'2600','','','12','','1','2022-09-09 11:04:26','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627323502033232',1774,'121662732268','4067700014535','1.00','3400','retail','0','2022-09-09 17:05:51','','','','2520','Cash',468.97,'3400','','','12','','1','2022-09-09 11:06:36','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627334803370320',1775,'121662732397','8712000900045','1.00','250','retail','0','2022-09-09 17:24:45','','','','182','Cash',34.48,'250','','','12','','1','2022-09-09 11:25:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627334853632313',1776,'121662732397','5018907194802','1.00','100','retail','0','2022-09-09 17:24:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-09 11:25:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627377403317263',1777,'121662733540','6008165007982','1.00','350','retail','0','2022-09-09 18:35:41','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-09 12:36:04','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627438252033283',1778,'121662737766','6161101600941','1.00','750','retail','0','2022-09-09 20:17:06','','','','544','Cash',103.45,'750','','','12','','1','2022-09-09 14:18:32','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627444994632413',1779,'121662743913','1000','1.00','250','retail','0','2022-09-09 20:28:20','','','','192','Cash',34.48,'250','','','12','','1','2022-09-09 14:28:28','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627459550303223',1780,'121662744509','8712000900045','6.00','1500','retail','0','2022-09-09 20:52:36','','','','182','Cash',206.90,'250','','','12','','1','2022-09-09 14:52:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','13.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627504640303223',1781,'121662745960','5010103930666','1.00','750','retail','0','2022-09-09 22:07:45','','','','542','Cash',103.45,'750','','','12','','1','2022-09-09 16:07:48','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627506862033260',1782,'121662750469','1000','1.00','250','retail','0','2022-09-09 22:11:27','','','','192','Cash',34.48,'250','','','12','','1','2022-09-09 16:11:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627531053511263',1783,'121662750691','5018907194802','1.00','100','retail','0','2022-09-09 22:51:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-09 16:51:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627538703370320',1784,'121662753813','5010103930666','1.00','750','retail','0','2022-09-09 23:04:30','','','','542','Cash',103.45,'750','','','12','','1','2022-09-09 17:05:24','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627539423519263',1785,'121662753925','5000292001001','1.00','1600','retail','0','2022-09-09 23:05:42','','','','1141','Cash',220.69,'1600','','','12','','1','2022-09-09 17:06:33','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627564136313603',1786,'121662753994','6161101605458','1.00','250','retail','0','2022-09-09 23:46:53','','','','182','Cash',34.48,'250','','','12','','1','2022-09-09 17:46:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627589713519263',1787,'121662756418','6164001199331','1.00','60','retail','0','2022-09-10 00:30:23','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-09 18:31:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627589733033326',1788,'121662756418','6164001199331','1.00','60','retail','0','2022-09-10 00:30:23','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-09 18:31:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627589986393603',1789,'121662756418','5010103930666','1.00','750','retail','0','2022-09-10 00:30:23','','','','542','Cash',103.45,'750','','','12','','1','2022-09-09 18:31:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627590235632513',1790,'121662756418','6161101604550','1.00','400','retail','0','2022-09-10 00:30:23','','','','284','Cash',55.17,'400','','','12','','1','2022-09-09 18:31:13','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627594530303223',1791,'121662759075','6161101601979','6.00','1500','retail','0','2022-09-10 00:39:11','','','','172.75','Cash',206.90,'250','','','12','','1','2022-09-09 18:39:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627594811033126',1792,'121662759075','5018907194802','3.00','300','retail','0','2022-09-10 00:39:11','','','','74.58','Cash',41.38,'100','','','12','','1','2022-09-09 18:39:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627595290332020',1793,'121662759075','1000','1.00','250','retail','0','2022-09-10 00:39:11','','','','192','Cash',34.48,'250','','','12','','1','2022-09-09 18:39:14','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627595400033026',1794,'121662759075','6161101602372','1.00','250','retail','0','2022-09-10 00:39:11','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-09 18:39:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627595513515263',1795,'121662759075','6161101604703','1.00','200','retail','0','2022-09-10 00:39:11','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-09 18:39:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627598156313603',1796,'121662759555','6161101602372','1.00','250','retail','0','2022-09-10 00:43:36','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-09 18:45:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627610582033201',1797,'121662760098','6161101604703','1.00','200','retail','0','2022-09-10 01:04:19','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-09 19:10:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627627344033426',1798,'121662761460','6161101601979','2.00','500','retail','0','2022-09-10 01:32:14','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-09 19:32:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627653136313603',1799,'121662765275','5000289020800','1.00','2500','retail','0','2022-09-10 02:16:30','','','','1840','Cash',344.83,'2500','','','12','','1','2022-09-09 20:23:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627653890003218',1800,'121662765275','6161101603379','2.00','500','retail','0','2022-09-10 02:16:30','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-09 20:23:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627659166632613',1801,'121662765907','6161101602600','1.00','220','retail','0','2022-09-10 02:25:16','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-09 20:25:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627661926632613',1802,'121662765919','1000','1.00','250','retail','0','2022-09-10 02:29:53','','','','192','Cash',34.48,'250','','','12','','1','2022-09-09 20:29:58','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627665156313603',1803,'121662766200','6161101605458','1.00','250','retail','0','2022-09-10 02:35:26','','','','182','Cash',34.48,'250','','','12','','1','2022-09-09 20:37:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627665253615263',1804,'121662766200','6164001199331','1.00','60','retail','0','2022-09-10 02:35:26','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-09 20:37:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627679716632613',1805,'121662766672','5099873089712','1.00','2300','retail','0','2022-09-10 02:59:31','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-09 21:08:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627716797632713',1806,'121662768524','6161101604406','1.00','250','retail','0','2022-09-10 04:01:46','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-09 22:01:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216627717063222207',1807,'121662768524','6161101601979','1.00','250','retail','0','2022-09-10 04:01:46','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-09 22:01:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628235946393603',1808,'121662821338','6161101601979','1.00','250','retail','0','2022-09-10 18:26:37','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-10 12:30:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628235972325221',1809,'121662821338','6161101601979','1.00','250','retail','0','2022-09-10 18:26:37','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-10 12:30:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628287112033278',1810,'121662824864','5018907194802','1.00','100','retail','0','2022-09-10 19:52:05','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-10 13:52:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628287242632213',1811,'121662824864','6161101605465','1.00','700','retail','0','2022-09-10 19:52:05','','','','501','Cash',96.55,'700','','','12','','1','2022-09-10 13:52:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628308760303223',1812,'121662829129','6161101601979','1.00','250','retail','0','2022-09-10 20:28:40','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-10 14:32:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628308810332020',1813,'121662829129','6161101603379','1.00','250','retail','0','2022-09-10 20:28:40','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-10 14:32:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628309196313603',1814,'121662829129','6161101605458','1.00','250','retail','0','2022-09-10 20:28:40','','','','182','Cash',34.48,'250','','','12','','1','2022-09-10 14:32:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628333899033926',1815,'121662831134','5018907197803','1.00','60','retail','0','2022-09-10 21:10:21','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-10 15:10:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628334210303223',1816,'121662831134','50196166','1.00','600','retail','0','2022-09-10 21:10:21','','','','443','Cash',82.76,'600','','','12','','1','2022-09-10 15:10:24','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628350940332020',1817,'121662835090','8908006354207','1.00','650','retail','0','2022-09-10 21:38:15','','','','445','Cash',89.66,'650','','','12','','1','2022-09-10 15:41:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',560.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628353080303223',1818,'121662835299','6161101602372','6.00','1500','retail','0','2022-09-10 21:41:49','','','','189.75','Cash',206.90,'250','','','12','','1','2022-09-10 15:42:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628381192033218',1819,'121662835344','90162602','1.00','230','retail','0','2022-09-10 22:28:39','','','','147','Cash',31.72,'230','','','12','','1','2022-09-10 16:28:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628383743380320',1820,'121662838122','6161101605458','1.00','250','retail','0','2022-09-10 22:32:55','','','','182','Cash',34.48,'250','','','12','','1','2022-09-10 16:33:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628384860362263',1821,'121662838417','5060639129003','1.00','200','retail','0','2022-09-10 22:34:47','','','','153','Cash',27.59,'200','','','12','','1','2022-09-10 16:34:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628393853380320',1822,'121662838505','8712000900045','3.00','750','retail','0','2022-09-10 22:50:00','','','','182','Cash',103.45,'250','','','12','','1','2022-09-10 16:50:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628394003314263',1823,'121662838505','6161101603379','3.00','750','retail','0','2022-09-10 22:50:00','','','','190.375','Cash',103.45,'250','','','12','','1','2022-09-10 16:50:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628436290332020',1824,'121662839409','6161101602167','1.00','550','retail','0','2022-09-11 00:07:25','','','','388','Cash',75.86,'550','','','12','','1','2022-09-10 18:07:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628436440332020',1825,'121662839409','6161101602167','1.00','550','retail','0','2022-09-11 00:07:25','','','','388','Cash',75.86,'550','','','12','','1','2022-09-10 18:07:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628436512033263',1826,'121662839409','6164001199331','1.00','60','retail','0','2022-09-11 00:07:25','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-10 18:07:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628436753380320',1827,'121662839409','6164001199331','1.00','60','retail','0','2022-09-11 00:07:25','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-10 18:07:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628437722033226',1828,'121662839409','6161101604543','1.00','1100','retail','0','2022-09-11 00:07:25','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-10 18:07:49','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628439802033293',1829,'121662839409','5018907194802','1.00','100','retail','0','2022-09-11 00:07:25','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-10 18:07:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628440143380320',1830,'121662839409','6164001199331','1.00','60','retail','0','2022-09-11 00:07:25','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-10 18:07:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628440455033526',1831,'121662839409','5060608740253','1.00','70','retail','0','2022-09-11 00:07:25','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-10 18:07:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628444660332020',1832,'121662844071','5060608740253','1.00','70','retail','0','2022-09-11 00:14:51','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-10 18:18:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628444736373603',1833,'121662844071','6164001199331','1.00','60','retail','0','2022-09-11 00:14:51','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-10 18:18:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628444906393603',1834,'121662844071','50196111','1.00','1200','retail','0','2022-09-11 00:14:51','','','','855','Cash',165.52,'1200','','','12','','1','2022-09-10 18:18:48','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628455426343603',1835,'121662844729','6161101602372','1.00','250','retail','0','2022-09-11 00:32:23','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-10 18:32:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628470490332020',1836,'121662845546','6164001199331','1.00','60','retail','0','2022-09-11 00:57:47','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-10 18:57:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628470574632413',1837,'121662845546','5018907194802','1.00','100','retail','0','2022-09-11 00:57:47','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-10 18:57:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628470660303223',1838,'121662845546','5060608740253','1.00','70','retail','0','2022-09-11 00:57:47','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-10 18:57:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628472103412263',1839,'121662847166','6161101605458','1.00','250','retail','0','2022-09-11 01:00:10','','','','182','Cash',34.48,'250','','','12','','1','2022-09-10 19:00:14','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628473516353603',1840,'121662847215','6161100421561','1.00','950','retail','0','2022-09-11 01:02:32','','','','645','Cash',131.03,'950','','','12','','1','2022-09-10 19:02:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628474332033247',1841,'121662847372','6161101604703','1.00','200','retail','0','2022-09-11 01:03:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-10 19:03:55','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628519886383603',1842,'121662847437','6161101605458','1.00','250','retail','0','2022-09-11 02:19:48','','','','182','Cash',34.48,'250','','','12','','1','2022-09-10 20:19:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628540200303223',1843,'121662851992','6008165007814','1.00','350','retail','0','2022-09-11 02:53:40','','','','317.26','Cash',48.28,'350','','','12','','1','2022-09-10 20:53:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628558212033285',1844,'121662854029','6161101604406','4.00','1000','retail','0','2022-09-11 03:23:42','','','','181.708','Cash',137.93,'250','','','12','','1','2022-09-10 21:23:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628559590332020',1845,'121662855826','5018907197803','1.00','60','retail','0','2022-09-11 03:26:00','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-10 21:26:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628561615632513',1846,'121662855963','6161101602372','2.00','500','retail','0','2022-09-11 03:29:21','','','','189.75','Cash',68.97,'250','','','12','','1','2022-09-10 21:29:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628575980303223',1847,'121662857432','5010232953925','1.00','400','retail','0','2022-09-11 03:53:31','','','','315.787','Cash',55.17,'400','','','12','','1','2022-09-10 21:53:39','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628576105632513',1848,'121662857432','5010232953925','1.00','400','retail','0','2022-09-11 03:53:31','','','','315.787','Cash',55.17,'400','','','12','','1','2022-09-10 21:53:39','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216628577042033277',1849,'121662857621','5060608740253','1.00','70','retail','0','2022-09-11 03:55:04','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-10 21:55:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629073432033237',1850,'121662907330','1000','1.00','250','retail','0','2022-09-11 17:42:24','','','','192','Cash',34.48,'250','','','12','','1','2022-09-11 11:43:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629075430303223',1851,'121662907421','6008165007814','9.00','3150','retail','0','2022-09-11 17:48:22','','','','317.26','Cash',434.48,'350','','','12','','1','2022-09-11 11:48:29','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629076190303223',1852,'121662907421','6008165007784','3.00','1110','retail','0','2022-09-11 17:48:22','','','','327.04','Cash',153.10,'370','','','12','','1','2022-09-11 11:48:29','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629076300632013',1853,'121662907421','5060639129003','1.00','200','retail','0','2022-09-11 17:48:22','','','','153','Cash',27.59,'200','','','12','','1','2022-09-11 11:48:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629076870632013',1854,'121662907421','6164001199331','2.00','120','retail','0','2022-09-11 17:48:22','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-11 11:48:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629077016303603',1855,'121662907421','1000','2.00','500','retail','0','2022-09-11 17:48:22','','','','192','Cash',68.97,'250','','','12','','1','2022-09-11 11:48:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629077844033426',1856,'121662907770','8712000900663','6.00','1380','retail','0','2022-09-11 17:49:45','','','','174','Cash',190.34,'230','','','12','','1','2022-09-11 11:49:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'6','13.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629115326333603',1857,'121662907789','024000150152','1.00','250','retail','0','2022-09-11 18:52:20','','','','205','Cash',34.48,'250','','','12','','1','2022-09-11 12:54:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629115393390320',1858,'121662907789','6161101605458','1.00','250','retail','0','2022-09-11 18:52:20','','','','182','Cash',34.48,'250','','','12','','1','2022-09-11 12:54:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629129761632113',1859,'121662911686','6008165007685','1.00','270','retail','0','2022-09-11 19:17:51','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-11 13:18:26','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629130702033203',1860,'121662911686','3086120600051','1.00','80','retail','0','2022-09-11 19:17:51','','','','59.74','Cash',11.03,'80','','','12','','1','2022-09-11 13:18:26','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629161863111263',1861,'121662914033','6161101603379','1.00','250','retail','0','2022-09-11 20:09:46','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-11 14:09:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629194983390320',1862,'121662919113','6161101601979','1.00','250','retail','0','2022-09-11 21:05:02','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-11 15:10:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629195022503302',1863,'121662919113','6161101601979','1.00','250','retail','0','2022-09-11 21:05:02','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-11 15:10:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629221602033212',1864,'121662919824','6161101605465','1.00','700','retail','0','2022-09-11 21:50:48','','','','501','Cash',96.55,'700','','','12','','1','2022-09-11 15:50:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629221783390320',1865,'121662919824','5018907194802','2.00','200','retail','0','2022-09-11 21:50:48','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-11 15:50:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629221923211263',1866,'121662919824','6161101604406','1.00','250','retail','0','2022-09-11 21:50:48','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-11 15:50:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629222322033226',1867,'121662919824','6164001199331','2.00','120','retail','0','2022-09-11 21:50:48','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-11 15:50:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629222482033222',1868,'121662919824','5060608740253','1.00','70','retail','0','2022-09-11 21:50:48','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-11 15:50:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629253033213263',1869,'121662922259','6008165007685','1.00','270','retail','0','2022-09-11 22:41:43','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-11 16:44:07','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629288523218263',1870,'121662925449','6161101603324','1.00','200','retail','0','2022-09-11 23:41:04','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-11 17:41:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629288643390320',1871,'121662925449','6161101604703','5.00','1000','retail','0','2022-09-11 23:41:04','','','','150.45','Cash',137.93,'200','','','12','','1','2022-09-11 17:41:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'5','18.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629290910332020',1872,'121662928902','5060639129003','3.00','600','retail','0','2022-09-11 23:44:51','','','','153','Cash',82.76,'200','','','12','','1','2022-09-11 17:44:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'3','43.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629314906393603',1873,'121662929096','5010103930628','1.00','1550','retail','0','2022-09-12 00:24:51','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-11 18:25:19','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629319640303223',1874,'121662931520','5010103930628','1.00','1550','retail','0','2022-09-12 00:36:54','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-11 20:02:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629321500033026',1875,'121662931520','6164001199331','1.00','60','retail','0','2022-09-12 00:36:54','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-11 20:02:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629322133033326',1876,'121662931520','5000289932479','1.00','2000','retail','0','2022-09-12 00:36:54','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-11 20:02:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629373846383603',1877,'121662937368','6161101605458','1.00','250','retail','0','2022-09-12 02:03:16','','','','182','Cash',34.48,'250','','','12','','1','2022-09-11 20:05:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629373963390320',1878,'121662937368','5018907197803','1.00','60','retail','0','2022-09-12 02:03:16','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-11 20:05:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629382193312263',1879,'121662937530','5010103930628','1.00','1550','retail','0','2022-09-12 02:16:59','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-11 20:17:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629432143390320',1880,'121662938254','5000289932479','1.00','2000','retail','0','2022-09-12 03:40:14','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-11 21:41:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629443093413263',1881,'121662943311','5060639129003','1.00','200','retail','0','2022-09-12 03:58:30','','','','153','Cash',27.59,'200','','','12','','1','2022-09-11 21:58:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629462299033926',1882,'121662944747','6161101603379','1.00','250','retail','0','2022-09-12 04:30:32','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-11 22:31:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629462326333603',1883,'121662944747','6161101603379','1.00','250','retail','0','2022-09-12 04:30:32','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-11 22:31:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629980046303603',1884,'121662997983','1000','1.00','250','retail','0','2022-09-12 18:53:25','','','','192','Cash',34.48,'250','','','12','','1','2022-09-12 12:54:40','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629981209632913',1885,'121662998082','6164001199331','3.00','180','retail','0','2022-09-12 18:55:52','','','','37.08','Cash',24.83,'60','','','12','','1','2022-09-12 12:55:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629981389632913',1886,'121662998082','5018907197803','1.00','60','retail','0','2022-09-12 18:55:52','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-12 12:55:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629981511033126',1887,'121662998082','5060639129003','1.00','200','retail','0','2022-09-12 18:55:52','','','','153','Cash',27.59,'200','','','12','','1','2022-09-12 12:55:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216629994853914263',1888,'121662998156','100','1.00','250','retail','0','2022-09-12 19:18:06','','','','177','Cash',34.48,'250','','','12','','1','2022-09-12 13:19:23','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630027050633013',1889,'121662999564','6161101601979','4.00','1000','retail','0','2022-09-12 20:12:19','','','','172.75','Cash',137.93,'250','','','12','','1','2022-09-12 14:13:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','33.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630027126313603',1890,'121662999564','6161101602372','1.00','250','retail','0','2022-09-12 20:12:19','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-12 14:13:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630027203300320',1891,'121662999564','5060639129003','1.00','200','retail','0','2022-09-12 20:12:19','','','','153','Cash',27.59,'200','','','12','','1','2022-09-12 14:13:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630027380633013',1892,'121662999564','1000','1.00','250','retail','0','2022-09-12 20:12:19','','','','192','Cash',34.48,'250','','','12','','1','2022-09-12 14:13:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630034888033826',1893,'121663002800','6161101603324','1.00','200','retail','0','2022-09-12 20:24:48','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-12 14:24:51','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630051923300320',1894,'121663003492','1000','1.00','250','retail','0','2022-09-12 20:53:12','','','','192','Cash',34.48,'250','','','12','','1','2022-09-12 14:53:15','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630062783012263',1895,'121663005196','50196166','1.00','600','retail','0','2022-09-12 21:11:52','','','','443','Cash',82.76,'600','','','12','','1','2022-09-12 15:11:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630063122033226',1896,'121663005196','6161101603324','1.00','200','retail','0','2022-09-12 21:11:52','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-12 15:11:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630079540633013',1897,'121663007940','6161101601979','3.00','750','retail','0','2022-09-12 21:39:14','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-12 15:39:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','29.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630081292033218',1898,'121663007982','5000196006652','1.00','400','retail','0','2022-09-12 21:42:10','','','','310','Cash',55.17,'400','','','12','','1','2022-09-12 15:42:12','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630087602033278',1899,'121663008134','5060608740253','2.00','140','retail','0','2022-09-12 21:52:41','','','','41.82','Cash',19.31,'70','','','12','','1','2022-09-12 15:52:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630112980332020',1900,'121663008776','6001108049582','1.00','1000','retail','0','2022-09-12 22:40:35','','','','641','Cash',137.93,'1000','','','12','','1','2022-09-12 16:45:17','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113822033226',1901,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113855033526',1902,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113871633113',1903,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113911633113',1904,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113953300320',1905,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630113971633113',1906,'121663008776','8712000900045','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630116351633113',1907,'121663008776','6161101605458','1.00','250','retail','0','2022-09-12 22:40:35','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 16:45:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630119266033626',1908,'121663011918','6161101603379','1.00','250','retail','0','2022-09-12 22:45:39','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-12 16:47:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630119396333603',1909,'121663011918','6164001199331','1.00','60','retail','0','2022-09-12 22:45:39','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-12 16:47:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630148286323603',1910,'121663014303','5000289020701','1.00','2000','retail','0','2022-09-12 23:33:52','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-12 17:34:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630148310332020',1911,'121663014303','5000289020701','1.00','2000','retail','0','2022-09-12 23:33:52','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-12 17:34:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630148923118263',1912,'121663014872','5018907197803','1.00','60','retail','0','2022-09-12 23:34:53','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-12 17:36:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630152133033326',1913,'121663015020','50196166','1.00','600','retail','0','2022-09-12 23:40:36','','','','443','Cash',82.76,'600','','','12','','1','2022-09-12 17:40:39','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630152255033526',1914,'121663015020','5060608740253','1.00','70','retail','0','2022-09-12 23:40:36','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-12 17:40:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630152360332020',1915,'121663015020','5060639129003','1.00','200','retail','0','2022-09-12 23:40:36','','','','153','Cash',27.59,'200','','','12','','1','2022-09-12 17:40:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630157488033826',1916,'121663015240','4058387000317','1.00','1550','retail','0','2022-09-12 23:49:09','','','','1150','Cash',213.79,'1550','','','12','','1','2022-09-12 17:59:25','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630184300033026',1917,'121663016366','6161101603379','6.00','1500','retail','0','2022-09-13 00:33:51','','','','190.375','Cash',206.90,'250','','','12','','1','2022-09-12 18:34:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630185555033526',1918,'121663018492','6008165007784','1.00','370','retail','0','2022-09-13 00:36:03','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-12 18:36:57','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630185631633113',1919,'121663018492','5011013100194','1.00','1350','retail','0','2022-09-13 00:36:03','','','','999','Cash',186.21,'1350','','','12','','1','2022-09-12 18:36:57','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630187050332020',1920,'121663018618','6008165007685','1.00','270','retail','0','2022-09-13 00:38:25','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-12 18:38:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630191770332020',1921,'121663018713','6161101605458','1.00','250','retail','0','2022-09-13 00:46:18','','','','182','Cash',34.48,'250','','','12','','1','2022-09-12 18:47:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630216760303223',1922,'121663019249','6001495201501','1.00','1000','retail','0','2022-09-13 01:27:56','','','','628','Cash',137.93,'1000','','','12','','1','2022-09-12 19:28:01','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630239932033293',1923,'121663021683','6161101601979','2.00','500','retail','0','2022-09-13 02:07:54','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-12 20:09:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2.00','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630240743210263',1924,'121663021683','6161101603324','1.00','200','retail','0','2022-09-13 02:07:54','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-12 20:09:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630242188033826',1925,'121663024181','6164001199331','1.00','60','retail','0','2022-09-13 02:10:18','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-12 20:10:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630271110303223',1926,'121663027097','6161101606561','1.00','1550','retail','0','2022-09-13 02:58:32','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-12 21:00:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630804743814263',1927,'121663080464','6161101603324','1.00','200','retail','0','2022-09-13 17:47:55','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-13 11:48:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630812468633813',1928,'121663080482','1000','1.00','250','retail','0','2022-09-13 18:00:47','','','','192','Cash',34.48,'250','','','12','','1','2022-09-13 12:04:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630820010303223',1929,'121663081458','1000','1.00','250','retail','0','2022-09-13 18:13:22','','','','192','Cash',34.48,'250','','','12','','1','2022-09-13 12:13:24','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630856643300320',1930,'121663082005','1000','1.00','250','retail','0','2022-09-13 19:14:24','','','','192','Cash',34.48,'250','','','12','','1','2022-09-13 13:14:28','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630891703300320',1931,'121663085669','5060608740253','1.00','70','retail','0','2022-09-13 20:12:51','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-13 14:13:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630908480303223',1932,'121663089197','6161101604406','1.00','250','retail','0','2022-09-13 20:40:51','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-13 14:41:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630908503300320',1933,'121663089197','6161101604406','1.00','250','retail','0','2022-09-13 20:40:51','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-13 14:41:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630955102033255',1934,'121663093960','6008165007784','1.00','370','retail','0','2022-09-13 21:58:30','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-13 15:58:34','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630957988033826',1935,'121663095795','6161101603379','1.00','250','retail','0','2022-09-13 22:03:23','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-13 16:04:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630958030332020',1936,'121663095795','6161101606011','1.00','220','retail','0','2022-09-13 22:03:23','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-13 16:04:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630970880303223',1937,'121663095873','6161101603324','2.00','400','retail','0','2022-09-13 22:25:14','','','','150.45','Cash',55.17,'200','','','12','','1','2022-09-13 16:26:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630970993910263',1938,'121663095873','5010103930628','1.00','1550','retail','0','2022-09-13 22:25:14','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-13 16:26:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630971130303223',1939,'121663095873','6161101604406','2.00','500','retail','0','2022-09-13 22:25:14','','','','181.708','Cash',68.97,'250','','','12','','1','2022-09-13 16:26:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630989359633913',1940,'121663097187','5000267013602','1.00','2200','retail','0','2022-09-13 22:57:33','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-13 17:10:06','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630990140303223',1941,'121663097187','6161101602372','2.00','500','retail','0','2022-09-13 22:57:33','','','','189.75','Cash',68.97,'250','','','12','','1','2022-09-13 17:10:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630990410303223',1942,'121663097187','5018907197803','6.00','360','retail','0','2022-09-13 22:57:33','','','','44.58','Cash',49.66,'60','','','12','','1','2022-09-13 17:10:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'6','36.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630990533300320',1943,'121663097187','90162602','1.00','230','retail','0','2022-09-13 22:57:33','','','','147','Cash',31.72,'230','','','12','','1','2022-09-13 17:10:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630998566033626',1944,'121663099807','6161101602372','1.00','250','retail','0','2022-09-13 23:11:30','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-13 17:13:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630998596353603',1945,'121663099807','6161101602372','1.00','250','retail','0','2022-09-13 23:11:30','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-13 17:13:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630998643300320',1946,'121663099807','6161101601979','1.00','250','retail','0','2022-09-13 23:11:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-13 17:13:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630998700303223',1947,'121663099807','6161101601979','1.00','250','retail','0','2022-09-13 23:11:30','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-13 17:13:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216630998900033026',1948,'121663099807','6002039006019','1.00','1400','retail','0','2022-09-13 23:11:30','','','','790','Cash',193.10,'1400','','','12','','1','2022-09-13 17:13:28','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631040760332020',1949,'121663103193','6161101604406','1.00','250','retail','0','2022-09-14 00:21:38','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-13 18:21:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631040900332020',1950,'121663103193','6161101603324','4.00','800','retail','0','2022-09-14 00:21:38','','','','150.45','Cash',110.34,'200','','','12','','1','2022-09-13 18:21:49','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631040977033726',1951,'121663103193','5060639129003','1.00','200','retail','0','2022-09-14 00:21:38','','','','153','Cash',27.59,'200','','','12','','1','2022-09-13 18:21:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631053280633013',1952,'121663104111','6161101601979','1.00','250','retail','0','2022-09-14 00:42:09','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-13 18:42:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631538743310320',1953,'121663151791','5060608740253','2.00','140','retail','0','2022-09-14 14:11:14','','','','41.82','Cash',19.31,'70','','','12','','1','2022-09-14 08:11:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631608190332020',1954,'121663151791','50196166','1.00','600','retail','0','2022-09-14 16:06:59','','','','443','Cash',82.76,'600','','','12','','1','2022-09-14 10:08:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631624973614263',1955,'121663160924','5060608740253','1.00','70','retail','0','2022-09-14 16:34:58','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-14 10:36:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631636186633613',1956,'121663162590','6161101606011','1.00','220','retail','0','2022-09-14 16:53:40','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-14 10:54:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631636193616263',1957,'121663162590','6161101606011','1.00','220','retail','0','2022-09-14 16:53:40','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-14 10:54:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631712650303223',1958,'121663171257','1000','1.00','250','retail','0','2022-09-14 19:01:06','','','','192','Cash',34.48,'250','','','12','','1','2022-09-14 13:02:09','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631714447633713',1959,'121663171330','6008165007784','10.00','3700','retail','0','2022-09-14 19:04:04','','','','327.04','Cash',510.34,'370','','','12','','1','2022-09-14 13:04:38','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'10','20.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631778650332020',1960,'121663171699','6008165007685','1.00','270','retail','0','2022-09-14 20:51:06','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-14 14:52:04','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631785470132303',1961,'121663177925','6008165007982','1.00','350','retail','0','2022-09-14 21:04:21','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-14 15:04:24','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631786733310320',1962,'121663178665','6161101602938','1.00','250','retail','0','2022-09-14 21:04:33','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-14 15:04:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631813853813263',1963,'121663178678','6161101603324','2.00','400','retail','0','2022-09-14 21:49:58','','','','150.45','Cash',55.17,'200','','','12','','1','2022-09-14 15:50:01','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631813976393603',1964,'121663178678','5060639129003','1.00','200','retail','0','2022-09-14 21:49:58','','','','153','Cash',27.59,'200','','','12','','1','2022-09-14 15:50:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631814188033826',1965,'121663181402','6164001199331','1.00','60','retail','0','2022-09-14 21:50:18','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-14 15:50:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631819136313603',1966,'121663181422','6161101606561','1.00','1550','retail','0','2022-09-14 21:58:33','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-14 15:59:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631820230332020',1967,'121663181952','6161101602921','6.00','1500','retail','0','2022-09-14 22:04:40','','','','198.45','Cash',206.90,'250','','','12','','1','2022-09-14 16:06:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','48.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631822793812263',1968,'121663181952','5018907194802','1.00','100','retail','0','2022-09-14 22:04:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-14 16:06:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631833700033026',1969,'121663182417','6161101600934','1.00','1500','retail','0','2022-09-14 22:22:51','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-14 16:24:03','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631838166313603',1970,'121663183444','6164001199331','2.00','120','retail','0','2022-09-14 22:30:40','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-14 16:30:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631838283818263',1971,'121663183444','5018907194802','2.00','200','retail','0','2022-09-14 22:30:40','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-14 16:30:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631838392033283',1972,'121663183444','6161101605465','1.00','700','retail','0','2022-09-14 22:30:40','','','','501','Cash',96.55,'700','','','12','','1','2022-09-14 16:30:54','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631907599033926',1973,'121663184273','8908006354191','1.00','1300','retail','0','2022-09-15 00:28:00','','','','920','Cash',179.31,'1300','','','12','','1','2022-09-14 18:28:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631908312033280',1974,'121663184273','6164001199331','1.00','60','retail','0','2022-09-15 00:28:00','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-14 18:28:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631908343310320',1975,'121663184273','6164001199331','1.00','60','retail','0','2022-09-15 00:28:00','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-14 18:28:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631908800332020',1976,'121663184273','6164001199331','1.00','60','retail','0','2022-09-15 00:28:00','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-14 18:28:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216631916900390612',1977,'121663190933','6001495201501','1.00','1000','retail','0','2022-09-15 00:41:31','','','','628','Cash',137.93,'1000','','','12','','1','2022-09-14 18:42:29','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632499162033299',1978,'121663249912','6161101602051','1.00','550','retail','0','2022-09-15 16:51:57','','','','392','Cash',75.86,'550','','','12','','1','2022-09-15 10:53:35','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632593555033526',1979,'121663256792','6161101603324','1.00','200','retail','0','2022-09-15 19:34:02','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-15 13:34:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632593573320320',1980,'121663256792','6161101603324','1.00','200','retail','0','2022-09-15 19:34:02','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-15 13:34:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632596412033269',1981,'121663256792','1000','1.00','250','retail','0','2022-09-15 19:34:02','','','','192','Cash',34.48,'250','','','12','','1','2022-09-15 13:34:09','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632612836383603',1982,'121663259651','6161101603379','2.00','500','retail','0','2022-09-15 20:01:23','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-15 14:01:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632615063615263',1983,'121663261288','1000','1.00','250','retail','0','2022-09-15 20:05:07','','','','192','Cash',34.48,'250','','','12','','1','2022-09-15 14:06:57','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632638746633613',1984,'121663261618','1000','1.00','250','retail','0','2022-09-15 20:44:35','','','','192','Cash',34.48,'250','','','12','','1','2022-09-15 14:44:37','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632656977033726',1985,'121663263878','6161101603379','1.00','250','retail','0','2022-09-15 21:15:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 15:16:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632657016303603',1986,'121663263878','6161101603379','1.00','250','retail','0','2022-09-15 21:15:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 15:16:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632657033033326',1987,'121663263878','6161101603379','1.00','250','retail','0','2022-09-15 21:15:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 15:16:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632657050303223',1988,'121663263878','6161101603379','1.00','250','retail','0','2022-09-15 21:15:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 15:16:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632677833033326',1989,'121663266542','6008165007685','1.00','270','retail','0','2022-09-15 21:49:44','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-15 15:50:31','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632680473320320',1990,'121663267832','6164001199331','2.00','120','retail','0','2022-09-15 21:54:29','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-15 15:54:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632680562003352',1991,'121663267832','6161101603522','1.00','700','retail','0','2022-09-15 21:54:29','','','','501','Cash',96.55,'700','','','12','','1','2022-09-15 15:54:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632680690332020',1992,'121663267832','5018907194802','2.00','200','retail','0','2022-09-15 21:54:29','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-15 15:54:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632698226323603',1993,'121663268079','5010232965096','1.00','350','retail','0','2022-09-15 22:27:46','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-15 16:27:57','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632719787633713',1994,'121663270079','6161101602372','1.00','250','retail','0','2022-09-15 22:59:38','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-15 17:03:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632728672033282',1995,'121663272197','5010103930628','1.00','1550','retail','0','2022-09-15 23:14:28','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-15 17:15:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632730110303223',1996,'121663272954','6161101603324','3.00','600','retail','0','2022-09-15 23:17:54','','','','150.45','Cash',82.76,'200','','','12','','1','2022-09-15 17:32:50','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632730611033126',1997,'121663272954','90399480','1.00','90','retail','0','2022-09-15 23:17:54','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-15 17:32:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632730746373603',1998,'121663272954','6161101602938','2.00','500','retail','0','2022-09-15 23:17:54','','','','198.45','Cash',68.97,'250','','','12','','1','2022-09-15 17:32:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632739780332020',1999,'121663273971','6161101603324','1.00','200','retail','0','2022-09-15 23:33:39','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-15 17:33:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632739811033126',2000,'121663273971','6161101603324','1.00','200','retail','0','2022-09-15 23:33:39','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-15 17:33:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632740166033626',2001,'121663273971','54491069','1.00','70','retail','0','2022-09-15 23:33:39','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-15 17:33:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632740183320320',2002,'121663273971','54491069','1.00','70','retail','0','2022-09-15 23:33:39','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-15 17:33:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632752217633713',2003,'121663274040','90399480','1.00','90','retail','0','2022-09-15 23:53:42','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-15 17:53:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632754500303223',2004,'121663275225','5000289929417','1.00','2000','retail','0','2022-09-15 23:57:31','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-15 17:58:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632759413719263',2005,'121663275486','6161101603379','1.00','250','retail','0','2022-09-16 00:05:42','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 18:06:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632775426343603',2006,'121663275986','6161101604543','1.00','1100','retail','0','2022-09-16 00:34:24','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-15 18:36:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632776232033267',2007,'121663275986','5449000131836','1.00','70','retail','0','2022-09-16 00:34:24','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-15 18:36:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632776633320320',2008,'121663275986','6161101603379','1.00','250','retail','0','2022-09-16 00:34:24','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-15 18:36:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632782257633713',2009,'121663277775','90162602','1.00','230','retail','0','2022-09-16 00:43:45','','','','147','Cash',31.72,'230','','','12','','1','2022-09-15 18:44:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216632794647633713',2010,'121663278299','5060608740253','1.00','70','retail','0','2022-09-16 01:04:25','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-15 19:04:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633167880332020',2011,'121663316773','90399480','1.00','90','retail','0','2022-09-16 11:26:29','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-16 05:26:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633241082633213',2012,'121663324099','90162602','1.00','230','retail','0','2022-09-16 13:28:28','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 07:28:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633358044033426',2013,'121663329132','6164001199331','2.00','120','retail','0','2022-09-16 16:43:25','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-16 10:43:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633362193312263',2014,'121663336206','6161101605458','1.00','250','retail','0','2022-09-16 16:50:19','','','','182','Cash',34.48,'250','','','12','','1','2022-09-16 10:50:59','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633446073330320',2015,'121663338618','6008165007982','2.00','700','retail','0','2022-09-16 19:10:48','','','','308.53','Cash',96.55,'350','','','12','','1','2022-09-16 13:11:21','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633503333330320',2016,'121663350316','8712000900045','5.00','1250','retail','0','2022-09-16 20:48:13','','','','182','Cash',172.41,'250','','','12','','1','2022-09-16 14:48:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','15.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633503773513263',2017,'121663350316','6161101601979','1.00','250','retail','0','2022-09-16 20:48:13','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-16 14:48:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633503980303223',2018,'121663350316','6161101603324','1.00','200','retail','0','2022-09-16 20:48:13','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 14:48:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633504200033026',2019,'121663350316','6161101602372','1.00','250','retail','0','2022-09-16 20:48:13','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-16 14:48:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633504922033226',2020,'121663350316','6161101603324','1.00','200','retail','0','2022-09-16 20:48:13','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 14:48:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633507393517263',2021,'121663350528','6161101603324','2.00','400','retail','0','2022-09-16 20:58:23','','','','150.45','Cash',55.17,'200','','','12','','1','2022-09-16 14:58:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633507570303223',2022,'121663350528','8712000900663','4.00','920','retail','0','2022-09-16 20:58:23','','','','174','Cash',126.90,'230','','','12','','1','2022-09-16 14:58:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633507721222332',2023,'121663350528','6161101602372','3.00','750','retail','0','2022-09-16 20:58:23','','','','189.75','Cash',103.45,'250','','','12','','1','2022-09-16 14:58:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','27.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633511026303603',2024,'121663350528','6161101601979','2.00','500','retail','0','2022-09-16 20:58:23','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-16 14:58:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633514242033241',2025,'121663351107','6161101603324','1.00','200','retail','0','2022-09-16 21:04:15','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 15:04:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633514543330320',2026,'121663351107','90162602','1.00','230','retail','0','2022-09-16 21:04:15','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 15:04:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633517145633513',2027,'121663351480','5010103930666','1.00','750','retail','0','2022-09-16 21:08:35','','','','542','Cash',103.45,'750','','','12','','1','2022-09-16 15:10:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633541613511263',2028,'121663354150','6001108028044','3.00','750','retail','0','2022-09-16 21:49:22','','','','201','Cash',103.45,'250','','','12','','1','2022-09-16 15:49:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633542025633513',2029,'121663354166','1000','1.00','250','retail','0','2022-09-16 21:50:08','','','','192','Cash',34.48,'250','','','12','','1','2022-09-16 15:50:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633542075633513',2030,'121663354166','6164001199331','1.00','60','retail','0','2022-09-16 21:50:08','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-16 15:50:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633545812033254',2031,'121663354215','6161101601979','3.00','750','retail','0','2022-09-16 21:56:43','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-16 15:56:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','30.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633545920562223',2032,'121663354215','6161101602372','1.00','250','retail','0','2022-09-16 21:56:43','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-16 15:56:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633546020562223',2033,'121663354215','5018907197803','1.00','60','retail','0','2022-09-16 21:56:43','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-16 15:56:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','54.00','53','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633549083330320',2034,'121663354612','6161101601979','2.00','500','retail','0','2022-09-16 22:02:26','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-16 16:02:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633549188033826',2035,'121663354612','6161101602372','1.00','250','retail','0','2022-09-16 22:02:26','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-16 16:02:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633549266323603',2036,'121663354612','6164001199331','1.00','60','retail','0','2022-09-16 22:02:26','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-16 16:02:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633549463332332',2037,'121663354612','5010103930666','1.00','750','retail','0','2022-09-16 22:02:26','','','','542','Cash',103.45,'750','','','12','','1','2022-09-16 16:02:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633553810332020',2038,'121663354951','4067700014559','1.00','2500','retail','0','2022-09-16 22:09:42','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-16 16:09:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633577277033726',2039,'121663355400','50196111','1.00','1200','retail','0','2022-09-16 22:49:05','','','','855','Cash',165.52,'1200','','','12','','1','2022-09-16 16:49:09','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633577444033426',2040,'121663355400','6008165007784','1.00','370','retail','0','2022-09-16 22:49:05','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-16 16:49:09','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633595280332020',2041,'121663357750','6161101603324','1.00','200','retail','0','2022-09-16 23:18:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 17:19:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633595300033026',2042,'121663357750','6161101603324','1.00','200','retail','0','2022-09-16 23:18:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 17:19:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633595322033226',2043,'121663357750','6161101603324','1.00','200','retail','0','2022-09-16 23:18:53','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-16 17:19:09','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633628333330320',2044,'121663359550','5010103912976','1.00','5400','retail','0','2022-09-17 00:14:45','','','','4000','Cash',744.83,'5400','','','12','','1','2022-09-16 18:15:15','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',4655.17,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633628412033282',2045,'121663359550','90490224','1.00','90','retail','0','2022-09-17 00:14:45','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-16 18:15:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633628846633613',2046,'121663359550','90490224','1.00','90','retail','0','2022-09-17 00:14:45','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-16 18:15:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633630783070000',2047,'121663363032','5010232953925','1.00','400','retail','0','2022-09-17 00:18:09','','','','315.787','Cash',55.17,'400','','','12','','1','2022-09-16 18:20:22','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633630800332020',2048,'121663363032','5010232953925','1.00','400','retail','0','2022-09-17 00:18:09','','','','315.787','Cash',55.17,'400','','','12','','1','2022-09-16 18:20:22','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633630873330320',2049,'121663363032','90162602','1.00','230','retail','0','2022-09-17 00:18:09','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:20:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633630890332020',2050,'121663363032','90162602','1.00','230','retail','0','2022-09-17 00:18:09','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:20:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633636296633613',2051,'121663363224','6161101604543','1.00','1100','retail','0','2022-09-17 00:27:50','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-16 18:27:58','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633636703023332',2052,'121663363224','5449000131836','2.00','140','retail','0','2022-09-17 00:27:50','','','','53.333','Cash',19.31,'70','','','12','','1','2022-09-16 18:27:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633639820303223',2053,'121663363680','4067700014559','1.00','2500','retail','0','2022-09-17 00:33:32','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-16 18:33:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640116633613',2054,'121663363680','082184090473','1.00','3500','retail','0','2022-09-17 00:33:32','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-16 18:33:38','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640599033926',2055,'121663364019','90162602','1.00','230','retail','0','2022-09-17 00:34:38','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:34:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640636633613',2056,'121663364019','90162602','1.00','230','retail','0','2022-09-17 00:34:38','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:34:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640666633613',2057,'121663364019','90162602','1.00','230','retail','0','2022-09-17 00:34:38','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:34:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640703330320',2058,'121663364019','90162602','1.00','230','retail','0','2022-09-17 00:34:38','','','','147','Cash',31.72,'230','','','12','','1','2022-09-16 18:34:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633640770303223',2059,'121663364019','5018907194802','1.00','100','retail','0','2022-09-17 00:34:38','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-16 18:34:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633642923330320',2060,'121663364282','6001495062669','1.00','2600','retail','0','2022-09-17 00:40:12','','','','1960','Cash',358.62,'2600','','','12','','1','2022-09-16 18:41:22','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633644110303223',2061,'121663364282','8712000900045','1.00','250','retail','0','2022-09-17 00:40:12','','','','182','Cash',34.48,'250','','','12','','1','2022-09-16 18:41:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633645666363603',2062,'121663364483','6161101605465','1.00','700','retail','0','2022-09-17 00:42:47','','','','501','Cash',96.55,'700','','','12','','1','2022-09-16 18:42:50','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633646613112332',2063,'121663364572','5060608740253','1.00','70','retail','0','2022-09-17 00:44:21','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-16 18:44:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633668226323603',2064,'121663366783','6002039005746','1.00','1400','retail','0','2022-09-17 01:20:22','','','','790','Cash',193.10,'1400','','','12','','1','2022-09-16 19:20:24','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633669716633613',2065,'121663366947','5010677025003','1.00','1750','retail','0','2022-09-17 01:22:51','','','','1270','Cash',241.38,'1750','','','12','','1','2022-09-16 19:25:04','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633671643330320',2066,'121663367105','5000289929417','1.00','2000','retail','0','2022-09-17 01:28:46','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-16 19:29:24','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633673256633613',2067,'121663367105','8712000900045','1.00','250','retail','0','2022-09-17 01:28:46','','','','182','Cash',34.48,'250','','','12','','1','2022-09-16 19:29:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633677456633613',2068,'121663367432','5010103930666','1.00','750','retail','0','2022-09-17 01:37:22','','','','542','Cash',103.45,'750','','','12','','1','2022-09-16 19:38:19','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633677893330320',2069,'121663367432','5018907194802','1.00','100','retail','0','2022-09-17 01:37:22','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-16 19:38:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633678423618263',2070,'121663367432','5010232965096','1.00','350','retail','0','2022-09-17 01:37:22','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-16 19:38:19','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633690612033209',2071,'121663367900','6001496301804','1.00','1000','retail','0','2022-09-17 01:57:42','','','','729','Cash',137.93,'1000','','','12','','1','2022-09-16 20:03:11','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216633735270303223',2072,'121663369392','5018907197803','1.00','60','retail','0','2022-09-17 03:12:08','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-16 21:12:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','53.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634095092033259',2073,'121663409506','8000530800462','1.00','1600','retail','0','2022-09-17 13:11:54','','','','1050','Cash',220.69,'1600','','','12','','1','2022-09-17 07:15:09','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634095140303223',2074,'121663409506','8000530800783','1.00','1600','retail','0','2022-09-17 13:11:54','','','','1050','Cash',220.69,'1600','','','12','','1','2022-09-17 07:15:09','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634109161633113',2075,'121663409711','6008165007814','1.00','350','retail','0','2022-09-17 13:38:44','','','','317.26','Cash',48.28,'350','','','12','','1','2022-09-17 07:39:31','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634111233340320',2076,'121663409711','3086120600051','1.00','80','retail','0','2022-09-17 13:38:44','','','','59.74','Cash',11.03,'80','','','12','','1','2022-09-17 07:39:31','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634122230332020',2077,'121663411172','5018907194802','1.00','100','retail','0','2022-09-17 13:57:04','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-17 07:57:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634126083340320',2078,'121663412241','90162602','1.00','230','retail','0','2022-09-17 14:03:28','','','','147','Cash',31.72,'230','','','12','','1','2022-09-17 08:03:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634146200332020',2079,'121663412613','40822938','1.00','70','retail','0','2022-09-17 14:37:01','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-17 08:37:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634165142621210',2080,'121663414625','6161101602372','1.00','250','retail','0','2022-09-17 15:08:35','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-17 09:08:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634231853112332',2081,'121663416518','6161101603522','1.00','700','retail','0','2022-09-17 16:59:57','','','','501','Cash',96.55,'700','','','12','','1','2022-09-17 11:01:19','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634231946393603',2082,'121663416518','6164001199331','1.00','60','retail','0','2022-09-17 16:59:57','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-17 11:01:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634231960332020',2083,'121663416518','6164001199331','1.00','60','retail','0','2022-09-17 16:59:57','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-17 11:01:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634239106313603',2084,'121663423280','5449000188342','1.00','90','retail','0','2022-09-17 17:11:51','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-17 11:11:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634262312033226',2085,'121663423915','1000','1.00','250','retail','0','2022-09-17 17:50:32','','','','192','Cash',34.48,'250','','','12','','1','2022-09-17 11:51:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634273622633213',2086,'121663426272','6008165007982','1.00','350','retail','0','2022-09-17 18:09:34','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-17 12:12:44','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634273656363603',2087,'121663426272','6008165007982','1.00','350','retail','0','2022-09-17 18:09:34','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-17 12:12:44','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634273733340320',2088,'121663426272','3086120600020','1.00','120','retail','0','2022-09-17 18:09:34','','','','93.86','Cash',16.55,'120','','','12','','1','2022-09-17 12:12:44','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634281033340320',2089,'121663427566','5449000000286','1.00','250','retail','0','2022-09-17 18:22:07','','','','158','Cash',34.48,'250','','','12','','1','2022-09-17 12:22:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634281266033626',2090,'121663427566','3245990255215','1.00','12500','retail','0','2022-09-17 18:22:07','','','','9200','Cash',1724.14,'12500','','','12','','1','2022-09-17 12:22:56','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',10775.86,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634300300033026',2091,'121663428178','1000','1.00','250','retail','0','2022-09-17 18:53:51','','','','192','Cash',34.48,'250','','','12','','1','2022-09-17 12:53:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634375020303223',2092,'121663437475','6161101603379','2.00','500','retail','0','2022-09-17 20:58:51','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-17 15:07:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','35.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634375083340320',2093,'121663437475','3086120600020','1.00','120','retail','0','2022-09-17 20:58:51','','','','93.86','Cash',16.55,'120','','','12','','1','2022-09-17 15:07:41','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634375306333603',2094,'121663437475','5018907194802','1.00','100','retail','0','2022-09-17 20:58:51','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-17 15:07:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634394326333603',2095,'121663438063','6008165007784','1.00','370','retail','0','2022-09-17 21:30:59','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-17 15:31:05','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634394483633313',2096,'121663438063','6161101603379','2.00','500','retail','0','2022-09-17 21:30:59','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-17 15:31:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634394582033249',2097,'121663438063','6161101602372','1.00','250','retail','0','2022-09-17 21:30:59','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-17 15:31:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634419686363603',2098,'121663439466','6161101606561','1.00','1550','retail','0','2022-09-17 22:16:56','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-17 16:17:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634420202033202',2099,'121663439466','5449000004864','1.00','250','retail','0','2022-09-17 22:16:56','','','','158','Cash',34.48,'250','','','12','','1','2022-09-17 16:17:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634422150332020',2100,'121663439466','5010232965096','1.00','350','retail','0','2022-09-17 22:16:56','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-17 16:17:30','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634424863414263',2101,'121663442484','6161101604543','1.00','1100','retail','0','2022-09-17 22:21:27','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-17 16:27:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634460786373603',2102,'121663442826','5010327302201','1.00','8500','retail','0','2022-09-17 23:21:18','','','','6800','Cash',1172.41,'8500','','','12','','1','2022-09-17 17:21:42','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634481306333603',2103,'121663446104','6161101602938','1.00','250','retail','0','2022-09-17 23:55:36','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-17 17:57:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634481310332020',2104,'121663446104','6161101602938','1.00','250','retail','0','2022-09-17 23:55:36','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-17 17:57:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634481336333603',2105,'121663446104','6161101602938','1.00','250','retail','0','2022-09-17 23:55:36','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-17 17:57:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634481353340320',2106,'121663446104','6161101602938','1.00','250','retail','0','2022-09-17 23:55:36','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-17 17:57:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634491123411263',2107,'121663448337','6161101605458','1.00','250','retail','0','2022-09-18 00:11:52','','','','182','Cash',34.48,'250','','','12','','1','2022-09-17 18:12:01','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634492722033229',2108,'121663449122','6164001199331','1.00','60','retail','0','2022-09-18 00:14:33','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-17 18:14:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634499273419263',2109,'121663449279','1000','1.00','250','retail','0','2022-09-18 00:25:47','','','','192','Cash',34.48,'250','','','12','','1','2022-09-17 18:25:51','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634499360020306',2110,'121663449279','6164001199331','1.00','60','retail','0','2022-09-18 00:25:47','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-17 18:25:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634499477033726',2111,'121663449279','5060639129003','1.00','200','retail','0','2022-09-18 00:25:47','','','','153','Cash',27.59,'200','','','12','','1','2022-09-17 18:25:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634506966393603',2112,'121663449952','5018907194802','1.00','100','retail','0','2022-09-18 00:38:20','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-17 18:39:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634506995633513',2113,'121663449952','5010232965096','1.00','350','retail','0','2022-09-18 00:38:20','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-17 18:39:50','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634509853519263',2114,'121663450967','1000','1.00','250','retail','0','2022-09-18 00:43:05','','','','192','Cash',34.48,'250','','','12','','1','2022-09-17 18:45:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634541863511263',2115,'121663451119','6161101606561','1.00','1550','retail','0','2022-09-18 01:38:05','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-17 19:40:00','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634542842033224',2116,'121663451119','5449000004864','1.00','250','retail','0','2022-09-18 01:38:05','','','','158','Cash',34.48,'250','','','12','','1','2022-09-17 19:40:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634558880332020',2117,'121663454402','5449000188342','1.00','90','retail','0','2022-09-18 02:05:17','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-17 20:05:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634558920332020',2118,'121663454402','5449000188342','1.00','90','retail','0','2022-09-18 02:05:17','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-17 20:05:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634559163340320',2119,'121663454402','6164001199331','1.00','60','retail','0','2022-09-18 02:05:17','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-17 20:05:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634564102033246',2120,'121663455924','6161101604406','1.00','250','retail','0','2022-09-18 02:13:40','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-17 20:13:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634564199033926',2121,'121663455924','6161101601979','1.00','250','retail','0','2022-09-18 02:13:40','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-17 20:13:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634575912033257',2122,'121663456424','8712000900045','1.00','250','retail','0','2022-09-18 02:33:12','','','','182','Cash',34.48,'250','','','12','','1','2022-09-17 20:33:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634585510303223',2123,'121663457596','6008165007784','1.00','370','retail','0','2022-09-18 02:49:11','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-17 20:49:14','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634585736373603',2124,'121663458556','6008165007814','18.00','6300','retail','0','2022-09-18 02:49:34','','','','317.26','Cash',868.97,'350','','','12','','1','2022-09-17 20:49:37','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'18','19.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634585933340320',2125,'121663458578','6008165007814','1.00','350','retail','0','2022-09-18 02:49:54','','','','317.26','Cash',48.28,'350','','','12','','1','2022-09-17 20:49:56','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634586611033126',2126,'121663458597','1000','1.00','250','retail','0','2022-09-18 02:51:01','','','','192','Cash',34.48,'250','','','12','','1','2022-09-17 20:51:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634621913611263',2127,'121663458665','6161101603324','1.00','200','retail','0','2022-09-18 03:49:57','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-17 21:54:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634621943611263',2128,'121663458665','6161101602372','1.00','250','retail','0','2022-09-18 03:49:57','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-17 21:54:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634621963340320',2129,'121663458665','6161101602372','1.00','250','retail','0','2022-09-18 03:49:57','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-17 21:54:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216634624873614263',2130,'121663462479','8712000900045','1.00','250','retail','0','2022-09-18 03:54:48','','','','182','Cash',34.48,'250','','','12','','1','2022-09-17 21:54:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635060633350320',2131,'121663506045','6161101603324','1.00','200','retail','0','2022-09-18 16:01:32','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-18 10:04:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635060670633013',2132,'121663506045','6161101603324','1.00','200','retail','0','2022-09-18 16:01:32','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-18 10:04:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635060892033206',2133,'121663506045','6161101603379','1.00','250','retail','0','2022-09-18 16:01:32','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-18 10:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635060926393603',2134,'121663506045','6161101603379','1.00','250','retail','0','2022-09-18 16:01:32','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-18 10:04:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635063610303223',2135,'121663506252','6161101604703','13.00','2600','retail','0','2022-09-18 16:06:02','','','','150.45','Cash',358.62,'200','','','12','','1','2022-09-18 10:06:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'13','13.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635066760332020',2136,'121663506252','6161101604703','4.00','800','retail','0','2022-09-18 16:11:17','','','','150.45','Cash',110.34,'200','','','12','','1','2022-09-18 10:11:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635149500303223',2137,'121663514899','1000','1.00','250','retail','0','2022-09-18 18:29:11','','','','192','Cash',34.48,'250','','','12','','1','2022-09-18 12:29:55','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635260120303223',2138,'121663526011','4067700014559','1.00','2500','retail','0','2022-09-18 21:36:43','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-18 15:38:01','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635262020303223',2139,'121663526011','1000','1.00','250','retail','0','2022-09-18 21:36:43','','','','192','Cash',34.48,'250','','','12','','1','2022-09-18 15:38:01','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635263040303223',2140,'121663526282','6161101602938','1.00','250','retail','0','2022-09-18 21:38:24','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-18 15:39:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635264022633213',2141,'121663526367','40822938','1.00','70','retail','0','2022-09-18 21:40:03','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-18 15:40:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635265042633213',2142,'121663526442','5449000131836','1.00','70','retail','0','2022-09-18 21:41:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-18 15:41:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635311963311263',2143,'121663526509','90399480','1.00','90','retail','0','2022-09-18 22:59:56','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-18 16:59:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635315050332020',2144,'121663531200','6161101603379','1.00','250','retail','0','2022-09-18 23:05:13','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-18 17:05:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635315073633313',2145,'121663531200','6161101601979','1.00','250','retail','0','2022-09-18 23:05:13','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-18 17:05:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635315100033026',2146,'121663531200','6161101601979','1.00','250','retail','0','2022-09-18 23:05:13','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-18 17:05:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635315126313603',2147,'121663531200','6161101601979','1.00','250','retail','0','2022-09-18 23:05:13','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-18 17:05:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635339946393603',2148,'121663531561','50196111','1.00','1200','retail','0','2022-09-18 23:46:54','','','','855','Cash',165.52,'1200','','','12','','1','2022-09-18 17:50:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635340066436123',2149,'121663531561','54491069','1.00','70','retail','0','2022-09-18 23:46:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-18 17:50:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635340133350320',2150,'121663531561','5449000131836','1.00','70','retail','0','2022-09-18 23:46:54','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-18 17:50:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635351826383603',2151,'121663534253','6161101600927','1.00','1900','retail','0','2022-09-19 00:06:56','','','','1417','Cash',262.07,'1900','','','12','','1','2022-09-18 18:08:35','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635351893311263',2152,'121663534253','5018907194802','1.00','100','retail','0','2022-09-19 00:06:56','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-18 18:08:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635352163633313',2153,'121663534253','90490224','1.00','90','retail','0','2022-09-19 00:06:56','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-18 18:08:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635355043633313',2154,'121663535316','6161101600934','1.00','1500','retail','0','2022-09-19 00:11:44','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-18 18:11:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635358793318263',2155,'121663535508','5010103930628','1.00','1550','retail','0','2022-09-19 00:18:10','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-18 18:20:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635358892033285',2156,'121663535508','54491069','2.00','140','retail','0','2022-09-19 00:18:10','','','','53.333','Cash',19.31,'70','','','12','','1','2022-09-18 18:20:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635363902033236',2157,'121663536048','6164001199331','1.00','60','retail','0','2022-09-19 00:26:42','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-18 18:27:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635364010332020',2158,'121663536048','5449000131836','1.00','70','retail','0','2022-09-19 00:26:42','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-18 18:27:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635367193633313',2159,'121663536451','6161101602938','1.00','250','retail','0','2022-09-19 00:32:02','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-18 18:32:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635367211033126',2160,'121663536451','6161101602938','1.00','250','retail','0','2022-09-19 00:32:02','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-18 18:32:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635394710303223',2161,'121663536760','5000196006652','1.00','400','retail','0','2022-09-19 01:17:51','','','','310','Cash',55.17,'400','','','12','','1','2022-09-18 19:17:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635443630332020',2162,'121663539508','6973322693936','1.00','1750','retail','0','2022-09-19 02:39:23','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-18 20:39:27','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216635485910332020',2163,'121663544368','5000196006652','1.00','400','retail','0','2022-09-19 03:49:51','','','','310','Cash',55.17,'400','','','12','','1','2022-09-18 21:50:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636031240332020',2164,'121663603116','6161101600927','1.00','1900','retail','0','2022-09-19 18:58:45','','','','1417','Cash',262.07,'1900','','','12','','1','2022-09-19 13:04:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636035363015263',2165,'121663603482','5449000188342','2.00','180','retail','0','2022-09-19 19:05:37','','','','59.666','Cash',24.83,'90','','','12','','1','2022-09-19 13:06:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636052863012263',2166,'121663603569','6161101603379','6.00','1500','retail','0','2022-09-19 19:34:47','','','','190.375','Cash',206.90,'250','','','12','','1','2022-09-19 13:35:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','28.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636064783360320',2167,'121663605349','100','4.00','1000','retail','0','2022-09-19 19:54:38','','','','177','Cash',137.93,'250','','','12','','1','2022-09-19 13:54:41','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636064930633013',2168,'121663606482','6161101604406','1.00','250','retail','0','2022-09-19 19:54:54','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-19 13:54:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636070553010263',2169,'121663606498','6001108001436','1.00','1600','retail','0','2022-09-19 20:05:23','','','','1150','Cash',220.69,'1600','','','12','','1','2022-09-19 14:05:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636070613360320',2170,'121663606498','90162602','1.00','230','retail','0','2022-09-19 20:05:23','','','','147','Cash',31.72,'230','','','12','','1','2022-09-19 14:05:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636070722033226',2171,'121663606498','90162602','1.00','230','retail','0','2022-09-19 20:05:23','','','','147','Cash',31.72,'230','','','12','','1','2022-09-19 14:05:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636071222033226',2172,'121663606498','5449000131836','2.00','140','retail','0','2022-09-19 20:05:23','','','','53.333','Cash',19.31,'70','','','12','','1','2022-09-19 14:05:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636116270323061',2173,'121663607840','6008165007784','1.00','370','retail','0','2022-09-19 21:22:14','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-19 15:24:07','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636117023360320',2174,'121663607840','6002039005746','1.00','1400','retail','0','2022-09-19 21:22:14','','','','790','Cash',193.10,'1400','','','12','','1','2022-09-19 15:24:07','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636117340332020',2175,'121663607840','3086120600051','1.00','80','retail','0','2022-09-19 21:22:14','','','','59.74','Cash',11.03,'80','','','12','','1','2022-09-19 15:24:07','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636119186313603',2176,'121663611849','1000','1.00','250','retail','0','2022-09-19 21:25:19','','','','192','Cash',34.48,'250','','','12','','1','2022-09-19 15:25:21','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636124442033242',2177,'121663611922','5010103930970','2.00','1500','retail','0','2022-09-19 21:37:42','','','','542','Cash',206.90,'750','','','12','','1','2022-09-19 15:37:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636124571633113',2178,'121663611922','6164001199331','2.00','120','retail','0','2022-09-19 21:37:42','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-19 15:37:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636124700033026',2179,'121663611922','5018907194802','2.00','200','retail','0','2022-09-19 21:37:42','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-19 15:37:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636126610332020',2180,'121663611922','90399480','1.00','90','retail','0','2022-09-19 21:37:42','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-19 15:37:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636133400303223',2181,'121663612666','1000','1.00','250','retail','0','2022-09-19 21:49:00','','','','192','Cash',34.48,'250','','','12','','1','2022-09-19 15:49:03','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636163820332020',2182,'121663613344','8712000900045','1.00','250','retail','0','2022-09-19 22:39:45','','','','182','Cash',34.48,'250','','','12','','1','2022-09-19 16:40:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636163840332020',2183,'121663613344','8712000900045','1.00','250','retail','0','2022-09-19 22:39:45','','','','182','Cash',34.48,'250','','','12','','1','2022-09-19 16:40:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636220532033202',2184,'121663616413','6161101602372','1.00','250','retail','0','2022-09-20 00:14:40','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-19 18:16:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636220563360320',2185,'121663616413','6161101601979','1.00','250','retail','0','2022-09-20 00:14:40','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-19 18:16:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636220600332020',2186,'121663616413','6161101602167','1.00','550','retail','0','2022-09-20 00:14:40','','','','388','Cash',75.86,'550','','','12','','1','2022-09-19 18:16:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636220792033202',2187,'121663616413','5018907194802','1.00','100','retail','0','2022-09-20 00:14:40','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-19 18:16:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636221812033212',2188,'121663622168','90162602','1.00','230','retail','0','2022-09-20 00:16:22','','','','147','Cash',31.72,'230','','','12','','1','2022-09-19 18:18:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636260340303223',2189,'121663622321','6161101602938','1.00','250','retail','0','2022-09-20 01:20:34','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-19 19:20:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262216323603',2190,'121663626052','082184090473','1.00','3500','retail','0','2022-09-20 01:23:59','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-19 19:25:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262240332020',2191,'121663626052','6161101604406','1.00','250','retail','0','2022-09-20 01:23:59','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-19 19:25:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262290332020',2192,'121663626052','6161101604406','1.00','250','retail','0','2022-09-20 01:23:59','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-19 19:25:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262336333603',2193,'121663626052','6161101603324','1.00','200','retail','0','2022-09-20 01:23:59','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-19 19:25:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262355033526',2194,'121663626052','6161101603324','1.00','200','retail','0','2022-09-20 01:23:59','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-19 19:25:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636262382633213',2195,'121663626052','6161101603324','1.00','200','retail','0','2022-09-20 01:23:59','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-19 19:25:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636265202633213',2196,'121663626366','5449000188342','1.00','90','retail','0','2022-09-20 01:28:40','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-19 19:28:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636797666363603',2197,'121663679747','6161101603379','1.00','250','retail','0','2022-09-20 16:16:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-20 10:16:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636879556353603',2198,'121663687946','6973322691345','1.00','1750','retail','0','2022-09-20 18:32:35','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-20 12:32:38','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636892640332020',2199,'121663689244','6161101605458','1.00','250','retail','0','2022-09-20 18:54:24','','','','182','Cash',34.48,'250','','','12','','1','2022-09-20 12:54:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636894255033526',2200,'121663689268','6161101605458','1.00','250','retail','0','2022-09-20 18:57:05','','','','182','Cash',34.48,'250','','','12','','1','2022-09-20 12:57:15','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636966313360320',2201,'121663689436','5060608740253','1.00','70','retail','0','2022-09-20 20:57:51','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-20 14:57:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636966709633913',2202,'121663689436','5060608740253','1.00','70','retail','0','2022-09-20 20:57:51','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-20 14:57:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636966953916263',2203,'121663696678','5449000188342','1.00','90','retail','0','2022-09-20 20:58:15','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-20 14:58:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636987023360320',2204,'121663696698','50196111','1.00','1200','retail','0','2022-09-20 21:31:55','','','','855','Cash',165.52,'1200','','','12','','1','2022-09-20 15:33:31','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216636987159633913',2205,'121663696698','6164001199331','1.00','60','retail','0','2022-09-20 21:31:55','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-20 15:33:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637006386333603',2206,'121663698812','1000','1.00','250','retail','0','2022-09-20 22:03:58','','','','192','Cash',34.48,'250','','','12','','1','2022-09-20 16:04:00','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637024633033326',2207,'121663700641','6008165007784','1.00','370','retail','0','2022-09-20 22:34:24','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-20 16:35:07','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637035960303223',2208,'121663702508','6161101601979','1.00','250','retail','0','2022-09-20 22:55:37','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-20 16:55:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637036000033026',2209,'121663702508','6161101602372','1.00','250','retail','0','2022-09-20 22:55:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-20 16:55:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637060896383603',2210,'121663703739','5060608740253','2.00','140','retail','0','2022-09-20 23:34:49','','','','41.82','Cash',19.31,'70','','','12','','1','2022-09-20 17:34:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637086632033268',2211,'121663706093','5010232965096','1.00','350','retail','0','2022-09-21 00:17:43','','','','263.157','Cash',48.28,'350','','','12','','1','2022-09-20 18:20:48','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637105590332020',2212,'121663708849','6161101600934','1.00','1500','retail','0','2022-09-21 00:49:20','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-20 18:49:50','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637699686633613',2213,'121663769965','4067700014535','1.00','3400','retail','0','2022-09-21 17:21:40','','','','2520','Cash',468.97,'3400','','','12','','1','2022-09-21 11:24:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637700860332020',2214,'121663769965','6008165007982','1.00','350','retail','0','2022-09-21 17:21:40','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-21 11:24:16','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637701006303603',2215,'121663769965','6008165007982','1.00','350','retail','0','2022-09-21 17:21:40','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-21 11:24:16','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637703700033026',2216,'121663770257','6001108049582','1.00','1000','retail','0','2022-09-21 17:26:57','','','','641','Cash',137.93,'1000','','','12','','1','2022-09-21 11:32:48','1','12','returned','1','new','pcs','','2022-09-21 17:32:48','12','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637704043370320',2217,'121663770257','6161101603324','1.00','200','retail','0','2022-09-21 17:26:57','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-21 11:30:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637704067633713',2218,'121663770257','6161101603324','1.00','200','retail','0','2022-09-21 17:26:57','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-21 11:30:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637704111033126',2219,'121663770257','54491069','1.00','70','retail','0','2022-09-21 17:26:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-21 11:30:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637704172033240',2220,'121663770257','54491069','1.00','70','retail','0','2022-09-21 17:26:57','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-21 11:30:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637710982033201',2221,'121663770896','6161101600941','1.00','750','retail','0','2022-09-21 17:38:51','','','','544','Cash',103.45,'750','','','12','','1','2022-09-21 11:38:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637711077633713',2222,'121663770896','6161101603324','1.00','200','retail','0','2022-09-21 17:38:51','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-21 11:38:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637711143370320',2223,'121663770896','5018907194802','1.00','100','retail','0','2022-09-21 17:38:51','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-21 11:38:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637711307633713',2224,'121663770896','90399480','3.00','270','retail','0','2022-09-21 17:38:51','','','','59.666','Cash',37.24,'90','','','12','','1','2022-09-21 11:38:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637723482033232',2225,'121663771234','8712000900045','1.00','250','retail','0','2022-09-21 17:59:16','','','','182','Cash',34.48,'250','','','12','','1','2022-09-21 12:00:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637723566033626',2226,'121663771234','8712000900045','1.00','250','retail','0','2022-09-21 17:59:16','','','','182','Cash',34.48,'250','','','12','','1','2022-09-21 12:00:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637746112033264',2227,'121663772403','6008165007982','1.00','350','retail','0','2022-09-21 18:36:52','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-21 12:37:42','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637753713370320',2228,'121663774663','5018907194802','1.00','100','retail','0','2022-09-21 18:49:34','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-21 12:49:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637753733033326',2229,'121663774663','5018907194802','1.00','100','retail','0','2022-09-21 18:49:34','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-21 12:49:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637784093714263',2230,'121663777213','1000','1.00','250','retail','0','2022-09-21 19:40:10','','','','192','Cash',34.48,'250','','','12','','1','2022-09-21 13:40:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637812744033426',2231,'121663778414','1000','1.00','250','retail','0','2022-09-21 20:27:54','','','','192','Cash',34.48,'250','','','12','','1','2022-09-21 14:28:00','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637823758633813',2232,'121663781281','90490224','1.00','90','retail','0','2022-09-21 20:46:16','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-21 14:46:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637838848633813',2233,'121663782380','6161101602372','1.00','250','retail','0','2022-09-21 21:11:25','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-21 15:12:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637846550303223',2235,'121663784645','6161101603324','4.00','800','retail','0','2022-09-21 22:05:47','','','','150.45','Cash',110.34,'200','','','12','','1','2022-09-21 16:06:47','1','6','returned','1','new','pcs','','','12','yes','','0','','','VATABLE',172.41,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637871156313603',2236,'121663784645','8712000900045','1.00','250','retail','0','2022-09-21 22:05:47','','','','182','Cash',34.48,'250','','','12','','1','2022-09-21 16:06:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637871472033217',2237,'121663784645','8712000900045','3.00','750','retail','0','2022-09-21 22:05:47','','','','182','Cash',103.45,'250','','','12','','1','2022-09-21 16:06:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637898790303223',2238,'121663789866','5449000131836','1.00','70','retail','0','2022-09-21 22:51:20','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-21 16:51:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637929836383603',2239,'121663789885','082184090473','1.00','3500','retail','0','2022-09-21 23:43:03','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-21 17:43:41','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637931173370320',2240,'121663793023','6161101602372','1.00','250','retail','0','2022-09-21 23:45:18','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-21 17:46:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637935983370320',2241,'121663793573','6164001199331','1.00','60','retail','0','2022-09-21 23:53:27','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-21 17:53:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637936060332020',2242,'121663793573','1000','1.00','250','retail','0','2022-09-21 23:53:27','','','','192','Cash',34.48,'250','','','12','','1','2022-09-21 17:53:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637940083910263',2243,'121663793610','5449000188342','1.00','90','retail','0','2022-09-22 00:02:17','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-21 18:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637940602033204',2244,'121663793610','90399480','1.00','90','retail','0','2022-09-22 00:02:17','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-21 18:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637941373911263',2245,'121663793610','5060639129003','1.00','200','retail','0','2022-09-22 00:02:17','','','','153','Cash',27.59,'200','','','12','','1','2022-09-21 18:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637952722033225',2246,'121663794158','5060608740253','1.00','70','retail','0','2022-09-22 00:21:13','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-21 18:21:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637962532033226',2247,'121663796238','6001108049599','1.00','1000','retail','0','2022-09-22 00:37:33','','','','641','Cash',137.93,'1000','','','12','','1','2022-09-21 18:46:53','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637990070303223',2248,'121663796814','1000','1.00','250','retail','0','2022-09-22 01:23:28','','','','192','Cash',34.48,'250','','','12','','1','2022-09-21 19:24:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216637991539633913',2249,'121663799049','6161101600941','1.00','750','retail','0','2022-09-22 01:25:53','','','','544','Cash',103.45,'750','','','12','','1','2022-09-21 19:25:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638005510303223',2250,'121663799157','50196081','1.00','1550','retail','0','2022-09-22 01:49:20','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-21 19:49:23','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638005606363603',2251,'121663799157','6164001199331','1.00','60','retail','0','2022-09-22 01:49:20','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-21 19:49:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638006222201333',2252,'121663800564','90399480','1.00','90','retail','0','2022-09-22 01:50:22','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-21 19:50:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638072830332020',2253,'121663800626','6161101603522','1.00','700','retail','0','2022-09-22 03:44:34','','','','501','Cash',96.55,'700','','','12','','1','2022-09-21 21:50:40','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638074733380320',2254,'121663800626','54491069','1.00','70','retail','0','2022-09-22 03:44:34','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-21 21:50:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638464950332020',2255,'121663846094','5010103930628','1.00','1550','retail','0','2022-09-22 14:35:16','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-22 08:36:31','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638465134633413',2256,'121663846094','6164001199331','1.00','60','retail','0','2022-09-22 14:35:16','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-22 08:36:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638465150303223',2257,'121663846094','6164001199331','1.00','60','retail','0','2022-09-22 14:35:16','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-22 08:36:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638470880332020',2258,'121663846593','6164001199331','1.00','60','retail','0','2022-09-22 14:44:48','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-22 08:44:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638529176313603',2259,'121663847093','6001108049582','2.00','2000','retail','0','2022-09-22 16:21:58','','','','641','Cash',275.86,'1000','','','12','','1','2022-09-22 10:22:01','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638531030303223',2260,'121663852922','6161101602600','1.00','220','retail','0','2022-09-22 16:25:07','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-22 11:11:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638531066033626',2261,'121663852922','6161101602600','1.00','220','retail','0','2022-09-22 16:25:07','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-22 11:11:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638596212033269',2262,'121663855890','8719327068540','1.00','300','retail','0','2022-09-22 18:13:41','','','','225','Cash',41.38,'300','','','12','','1','2022-09-22 12:16:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638599930303223',2263,'121663859787','6008165007784','4.00','1480','retail','0','2022-09-22 18:19:54','','','','327.04','Cash',204.14,'370','','','12','','1','2022-09-22 12:19:57','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638619750332020',2264,'121663859998','6161101602372','1.00','250','retail','0','2022-09-22 18:53:14','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-22 12:53:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638619770303223',2265,'121663859998','6161101602372','1.00','250','retail','0','2022-09-22 18:53:14','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-22 12:53:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638619860303223',2266,'121663859998','8712000900045','1.00','250','retail','0','2022-09-22 18:53:14','','','','182','Cash',34.48,'250','','','12','','1','2022-09-22 12:53:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638619943380320',2267,'121663859998','8712000900045','1.00','250','retail','0','2022-09-22 18:53:14','','','','182','Cash',34.48,'250','','','12','','1','2022-09-22 12:53:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638638131332213',2268,'121663862006','5060608740253','1.00','70','retail','0','2022-09-22 19:23:34','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-22 13:23:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638692406343603',2269,'121663863822','4058387003585','1.00','1500','retail','0','2022-09-22 20:54:01','','','','1150','Cash',206.90,'1500','','','12','','1','2022-09-22 14:55:28','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638705383715263',2270,'121663869329','50196081','1.00','1550','retail','0','2022-09-22 21:17:52','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-22 15:18:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638707976393603',2271,'121663870695','50196081','1.00','1550','retail','0','2022-09-22 21:22:31','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-22 15:25:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638708427633713',2272,'121663870695','3086120600051','1.00','80','retail','0','2022-09-22 21:22:31','','','','59.74','Cash',11.03,'80','','','12','','1','2022-09-22 15:25:14','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638709513380320',2273,'121663870695','6974929192235','1.00','3250','retail','0','2022-09-22 21:22:31','','','','2500','Cash',448.28,'3250','','','12','','1','2022-09-22 15:25:14','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',2801.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638737977633713',2274,'121663871115','4058387003585','1.00','1500','retail','0','2022-09-22 22:09:58','','','','1150','Cash',206.90,'1500','','','12','','1','2022-09-22 16:10:31','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638747010303223',2275,'121663873833','5010103930628','1.00','1550','retail','0','2022-09-22 22:25:02','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-22 16:27:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638757742033275',2276,'121663874829','6161101605458','1.00','250','retail','0','2022-09-22 22:42:55','','','','182','Cash',34.48,'250','','','12','','1','2022-09-22 16:44:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638774657633713',2277,'121663875859','6161101603379','1.00','250','retail','0','2022-09-22 23:11:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-22 17:11:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638775440332020',2278,'121663877469','6161101603379','1.00','250','retail','0','2022-09-22 23:12:25','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-22 17:12:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638788100303223',2279,'121663877552','6161101603379','6.00','1500','retail','0','2022-09-22 23:33:49','','','','190.375','Cash',206.90,'250','','','12','','1','2022-09-22 17:35:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638788282033288',2280,'121663877552','6161101602921','6.00','1500','retail','0','2022-09-22 23:33:49','','','','198.45','Cash',206.90,'250','','','12','','1','2022-09-22 17:35:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','42.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638789688033826',2281,'121663878954','5018907197803','3.00','180','retail','0','2022-09-22 23:36:51','','','','44.58','Cash',24.83,'60','','','12','','1','2022-09-22 17:38:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','52.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638789790303223',2282,'121663878954','6161101602921','4.00','1000','retail','0','2022-09-22 23:36:51','','','','198.45','Cash',137.93,'250','','','12','','1','2022-09-22 17:38:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','36.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638789913380320',2283,'121663878954','6161101604703','1.00','200','retail','0','2022-09-22 23:36:51','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-22 17:38:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638790110303223',2284,'121663878954','5000196006652','1.00','400','retail','0','2022-09-22 23:36:51','','','','310','Cash',55.17,'400','','','12','','1','2022-09-22 17:38:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638807780332020',2285,'121663879103','4067700014559','1.00','2500','retail','0','2022-09-23 00:06:19','','','','1850','Cash',344.83,'2500','','','12','','1','2022-09-22 18:08:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638814255033526',2286,'121663880887','6008165007685','1.00','270','retail','0','2022-09-23 00:17:05','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-22 18:17:24','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638817190332020',2287,'121663881446','6161101130424','1.00','750','retail','0','2022-09-23 00:21:59','','','','642','Cash',103.45,'750','','','12','','1','2022-09-22 18:22:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638834690332020',2288,'121663881732','5060608740253','1.00','70','retail','0','2022-09-23 00:51:09','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-22 18:51:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638843970332020',2289,'121663883482','6161101602372','1.00','250','retail','0','2022-09-23 01:06:37','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-22 19:08:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638870966033626',2290,'121663884488','6161101601979','1.00','250','retail','0','2022-09-23 01:51:50','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-22 19:51:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638871092271333',2291,'121663884488','6161101602372','1.00','250','retail','0','2022-09-23 01:51:50','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-22 19:51:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638873028633813',2292,'121663887114','6161101602921','1.00','250','retail','0','2022-09-23 01:55:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-22 19:56:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638873040332020',2293,'121663887114','6161101602921','1.00','250','retail','0','2022-09-23 01:55:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-22 19:56:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638874646363603',2294,'121663887403','90162602','1.00','230','retail','0','2022-09-23 01:57:44','','','','147','Cash',31.72,'230','','','12','','1','2022-09-22 19:59:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638916859633913',2295,'121663887566','5099873089712','1.00','2300','retail','0','2022-09-23 03:11:45','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-22 21:13:33','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638917112033271',2296,'121663887566','6161101603324','1.00','200','retail','0','2022-09-23 03:11:45','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-22 21:13:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638917390332020',2297,'121663887566','5018907197803','1.00','60','retail','0','2022-09-23 03:11:45','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-22 21:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638917573917263',2298,'121663887566','6973322691321','1.00','1750','retail','0','2022-09-23 03:11:45','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-22 21:13:33','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638917800033026',2299,'121663887566','5018907194802','1.00','100','retail','0','2022-09-23 03:11:45','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-22 21:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638919056303603',2300,'121663887566','5449000131836','1.00','70','retail','0','2022-09-23 03:11:45','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-22 21:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638946230332020',2301,'121663887566','50196081','1.00','1550','retail','0','2022-09-23 03:57:44','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-22 21:58:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638946369633913',2302,'121663887566','6164001199331','2.00','120','retail','0','2022-09-23 03:57:44','','','','37.08','Cash',16.55,'60','','','12','','1','2022-09-22 21:58:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638946549633913',2303,'121663887566','5060608740253','1.00','70','retail','0','2022-09-23 03:57:44','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-22 21:58:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638946633916263',2304,'121663887566','5018907194802','1.00','100','retail','0','2022-09-23 03:57:44','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-22 21:58:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638947460073224',2305,'121663894697','6161101601979','5.00','1250','retail','0','2022-09-23 03:59:32','','','','172.75','Cash',172.41,'250','','','12','','1','2022-09-22 21:59:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','18.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638947600033026',2306,'121663894697','6161101604406','3.00','750','retail','0','2022-09-23 03:59:32','','','','181.708','Cash',103.45,'250','','','12','','1','2022-09-22 21:59:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216638947712627290',2307,'121663894697','5018907197803','3.00','180','retail','0','2022-09-23 03:59:32','','','','44.58','Cash',24.83,'60','','','12','','1','2022-09-22 21:59:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','48.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639453700332020',2308,'121663945355','6161101603379','1.00','250','retail','0','2022-09-23 18:02:59','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-23 12:03:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639453793413263',2309,'121663945355','6161101605458','1.00','250','retail','0','2022-09-23 18:02:59','','','','182','Cash',34.48,'250','','','12','','1','2022-09-23 12:03:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639463074633413',2310,'121663946297','6008165007814','1.00','350','retail','0','2022-09-23 18:18:27','','','','317.26','Cash',48.28,'350','','','12','','1','2022-09-23 12:18:43','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639477393417263',2311,'121663946324','90399480','2.00','180','retail','0','2022-09-23 18:42:19','','','','59.666','Cash',24.83,'90','','','12','','1','2022-09-23 12:42:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639484520303223',2312,'121663947744','5060639129003','1.00','200','retail','0','2022-09-23 18:54:13','','','','153','Cash',27.59,'200','','','12','','1','2022-09-23 12:54:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639503335633513',2313,'121663948461','6161101602372','2.00','500','retail','0','2022-09-23 19:25:33','','','','189.75','Cash',68.97,'250','','','12','','1','2022-09-23 13:25:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639530383510263',2314,'121663950339','1000','1.00','250','retail','0','2022-09-23 20:10:39','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 14:12:10','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639532453390320',2315,'121663953143','1000','1.00','250','retail','0','2022-09-23 20:14:06','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 14:14:12','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639540070303223',2316,'121663953253','50196081','1.00','1550','retail','0','2022-09-23 20:29:55','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-23 14:33:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639540102033204',2317,'121663953253','50196166','1.00','600','retail','0','2022-09-23 20:29:55','','','','443','Cash',82.76,'600','','','12','','1','2022-09-23 14:33:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639540583390320',2318,'121663953253','6001496301705','1.00','1000','retail','0','2022-09-23 20:29:55','','','','729','Cash',137.93,'1000','','','12','','1','2022-09-23 14:33:07','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639540945633513',2319,'121663953253','6164001199331','3.00','180','retail','0','2022-09-23 20:29:55','','','','37.08','Cash',24.83,'60','','','12','','1','2022-09-23 14:33:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639541603511263',2320,'121663953253','3245990255215','1.00','12500','retail','0','2022-09-23 20:29:55','','','','9200','Cash',1724.14,'12500','','','12','','1','2022-09-23 14:33:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',10775.86,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639541806383603',2321,'121663953253','5449000000286','1.00','250','retail','0','2022-09-23 20:29:55','','','','158','Cash',34.48,'250','','','12','','1','2022-09-23 14:33:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639541956393603',2322,'121663953253','90490224','1.00','90','retail','0','2022-09-23 20:29:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-23 14:33:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639544053923635',2323,'121663954389','6008165007784','1.00','370','retail','0','2022-09-23 20:33:25','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-23 14:33:46','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639590270332020',2324,'121663959016','1000','1.00','250','retail','0','2022-09-23 21:50:28','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 15:50:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639593623392332',2325,'121663959032','6161101605458','1.00','250','retail','0','2022-09-23 21:56:02','','','','182','Cash',34.48,'250','','','12','','1','2022-09-23 15:56:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639607333033326',2326,'121663959032','6161101601979','1.00','250','retail','0','2022-09-23 22:19:20','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-23 16:19:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639607606633613',2327,'121663959032','6161101604550','1.00','400','retail','0','2022-09-23 22:19:20','','','','284','Cash',55.17,'400','','','12','','1','2022-09-23 16:19:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639608596633613',2328,'121663960764','6161101601979','1.00','250','retail','0','2022-09-23 22:23:19','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-23 16:26:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639609090303223',2329,'121663960764','6161101603379','1.00','250','retail','0','2022-09-23 22:23:19','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-23 16:26:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639609943390320',2330,'121663960764','6161101603324','1.00','200','retail','0','2022-09-23 22:23:19','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-23 16:26:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639609990303223',2331,'121663960764','6161101603324','1.00','200','retail','0','2022-09-23 22:23:19','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-23 16:26:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639620962033202',2332,'121663961186','6161101603379','1.00','250','retail','0','2022-09-23 22:41:37','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-23 16:43:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639635040303223',2333,'121663962224','5000289020701','1.00','2000','retail','0','2022-09-23 23:05:05','','','','1540','Cash',275.86,'2000','','','12','','1','2022-09-23 17:07:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639636552033263',2334,'121663963646','5010677015738','1.00','2300','retail','0','2022-09-23 23:07:36','','','','1730','Cash',317.24,'2300','','','12','','1','2022-09-23 17:09:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639659022033295',2335,'121663963854','6973322690379','1.00','1750','retail','0','2022-09-23 23:45:03','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-23 17:45:37','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639663983390320',2336,'121663966073','5011007003029','1.00','2700','retail','0','2022-09-23 23:53:18','','','','2000','Cash',372.41,'2700','','','12','','1','2022-09-23 17:53:39','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639667766373603',2337,'121663966421','6161101603522','1.00','700','retail','0','2022-09-24 00:01:16','','','','501','Cash',96.55,'700','','','12','','1','2022-09-23 18:01:42','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639668306333603',2338,'121663966421','6161101604703','6.00','1200','retail','0','2022-09-24 00:01:16','','','','150.45','Cash',165.52,'200','','','12','','1','2022-09-23 18:01:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639668440303223',2339,'121663966421','6161101602938','2.00','500','retail','0','2022-09-24 00:01:16','','','','198.45','Cash',68.97,'250','','','12','','1','2022-09-23 18:01:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639668652233336',2340,'121663966421','6161101603379','2.00','500','retail','0','2022-09-24 00:01:16','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-23 18:01:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639668755033526',2341,'121663966421','6161101602372','6.00','1500','retail','0','2022-09-24 00:01:16','','','','189.75','Cash',206.90,'250','','','12','','1','2022-09-23 18:01:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','17.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639669253619263',2342,'121663966904','6161101600941','1.00','750','retail','0','2022-09-24 00:02:06','','','','544','Cash',103.45,'750','','','12','','1','2022-09-23 18:03:24','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639677576633613',2343,'121663967737','5000267013602','1.00','2200','retail','0','2022-09-24 00:17:29','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-23 18:18:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639678482033287',2344,'121663967737','1000','1.00','250','retail','0','2022-09-24 00:17:29','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 18:18:58','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639708511033126',2345,'121663970808','8000530300504','1.00','1600','retail','0','2022-09-24 01:07:32','','','','1050','Cash',220.69,'1600','','','12','','1','2022-09-23 19:09:01','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639709713390320',2346,'121663970943','6161101605465','1.00','700','retail','0','2022-09-24 01:09:31','','','','501','Cash',96.55,'700','','','12','','1','2022-09-23 19:09:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639711346333603',2347,'121663970977','6161101600941','1.00','750','retail','0','2022-09-24 01:12:15','','','','544','Cash',103.45,'750','','','12','','1','2022-09-23 19:12:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639738199033926',2348,'121663971324','6161101606561','1.00','1550','retail','0','2022-09-24 01:58:37','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-23 20:14:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639738440303223',2349,'121663971324','5010103930666','1.00','750','retail','0','2022-09-24 01:58:37','','','','542','Cash',103.45,'750','','','12','','1','2022-09-23 20:14:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639739160303223',2350,'121663971324','5449000000286','1.00','250','retail','0','2022-09-24 01:58:37','','','','158','Cash',34.48,'250','','','12','','1','2022-09-23 20:14:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639748690303223',2351,'121663974854','6161101603379','2.00','500','retail','0','2022-09-24 02:15:10','','','','190.375','Cash',68.97,'250','','','12','','1','2022-09-23 20:19:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639748927633713',2352,'121663974854','5018907197803','3.00','180','retail','0','2022-09-24 02:15:10','','','','44.58','Cash',24.83,'60','','','12','','1','2022-09-23 20:19:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'3','45.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639749099033926',2353,'121663974854','6008165007982','1.00','350','retail','0','2022-09-24 02:15:10','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-23 20:19:28','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639756522033265',2354,'121663975637','90162602','1.00','230','retail','0','2022-09-24 02:28:17','','','','147','Cash',31.72,'230','','','12','','1','2022-09-23 20:28:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639756640303223',2355,'121663975637','5060608740253','1.00','70','retail','0','2022-09-24 02:28:17','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-23 20:28:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639756843716263',2356,'121663975637','5018907197803','0.00','0','retail','0','2022-09-24 02:28:17','','','','44.58','Cash',0.00,'60','','','12','','1','2022-09-23 20:28:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'','42.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639756963661021',2357,'121663975637','5060639129003','2.00','400','retail','0','2022-09-24 02:28:17','','','','153','Cash',55.17,'200','','','12','','1','2022-09-23 20:28:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'2','31.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639775456343603',2358,'121663975700','1000','1.00','250','retail','0','2022-09-24 02:59:05','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 20:59:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639776006303603',2359,'121663977552','1000','1.00','250','retail','0','2022-09-24 03:00:01','','','','192','Cash',34.48,'250','','','12','','1','2022-09-23 21:00:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639784890332020',2360,'121663977605','6008165007685','1.00','270','retail','0','2022-09-24 03:14:50','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-23 21:17:25','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639817620303223',2361,'121663978646','5060608740253','1.00','70','retail','0','2022-09-24 04:09:22','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-23 22:09:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639818733390320',2362,'121663981767','50196081','1.00','1550','retail','0','2022-09-24 04:12:27','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-23 22:13:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639818956393603',2363,'121663981767','5018907194802','1.00','100','retail','0','2022-09-24 04:12:27','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-23 22:13:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639819473390320',2364,'121663981767','6161101601979','3.00','750','retail','0','2022-09-24 04:12:27','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-23 22:13:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','28.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639822832033222',2365,'121663982171','5060608740253','1.00','70','retail','0','2022-09-24 04:18:04','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-23 22:18:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639840066033626',2366,'121663982287','5449000000286','1.00','250','retail','0','2022-09-24 04:47:16','','','','158','Cash',34.48,'250','','','12','','1','2022-09-23 22:54:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639840360332020',2367,'121663982287','5000267014005','1.00','1800','retail','0','2022-09-24 04:47:16','','','','1304','Cash',248.28,'1800','','','12','','1','2022-09-23 22:54:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216639859376333603',2368,'121663984446','54491069','1.00','70','retail','0','2022-09-24 05:18:58','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-23 23:21:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640357523300320',2369,'121664034442','5060608740253','1.00','70','retail','0','2022-09-24 19:09:46','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-24 13:09:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640357856383603',2370,'121664034442','6164001199331','1.00','60','retail','0','2022-09-24 19:09:46','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-24 13:09:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640359642033295',2371,'121664035791','90162602','1.00','230','retail','0','2022-09-24 19:12:44','','','','147','Cash',31.72,'230','','','12','','1','2022-09-24 13:12:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640404280332020',2372,'121664035976','6161101600934','1.00','1500','retail','0','2022-09-24 20:27:09','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-24 14:29:51','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640413083413263',2373,'121664040592','6161101601979','1.00','250','retail','0','2022-09-24 20:41:49','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-24 14:43:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640443150303223',2374,'121664041389','5018907194802','1.00','100','retail','0','2022-09-24 21:31:55','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-24 15:31:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640459956393603',2375,'121664044319','50196081','1.00','1550','retail','0','2022-09-24 21:59:56','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-24 16:06:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640469066303603',2376,'121664046410','6001506003599','1.00','1200','retail','0','2022-09-24 22:15:07','','','','850','Cash',165.52,'1200','','','12','','1','2022-09-24 16:15:11','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640475544033426',2377,'121664046913','6161101602372','1.00','250','retail','0','2022-09-24 22:25:55','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-24 16:25:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640484210332020',2378,'121664047559','6161101603324','1.00','200','retail','0','2022-09-24 22:40:22','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 16:40:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640490844033426',2379,'121664048950','5000291020706','1.00','2800','retail','0','2022-09-24 22:51:25','','','','2070','Cash',386.21,'2800','','','12','','1','2022-09-24 16:52:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2413.79,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640498310332020',2380,'121664049250','1000','1.00','250','retail','0','2022-09-24 23:03:52','','','','192','Cash',34.48,'250','','','12','','1','2022-09-24 17:03:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640501470303223',2381,'121664049835','6001496301804','1.00','1000','retail','0','2022-09-24 23:09:08','','','','729','Cash',137.93,'1000','','','12','','1','2022-09-24 17:12:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640503753300320',2382,'121664050360','5010103930666','1.00','750','retail','0','2022-09-24 23:12:55','','','','542','Cash',103.45,'750','','','12','','1','2022-09-24 17:12:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640513142033231',2383,'121664050379','6161101603324','1.00','200','retail','0','2022-09-24 23:28:41','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 17:29:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640513172021301',2384,'121664050379','6161101603324','1.00','200','retail','0','2022-09-24 23:28:41','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 17:29:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640513192033231',2385,'121664050379','6161101603324','1.00','200','retail','0','2022-09-24 23:28:41','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 17:29:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640513200303223',2386,'121664050379','6161101603324','1.00','200','retail','0','2022-09-24 23:28:41','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 17:29:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640518532033281',2387,'121664051357','6161101602167','1.00','550','retail','0','2022-09-24 23:38:09','','','','388','Cash',75.86,'550','','','12','','1','2022-09-24 17:38:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640518890332020',2388,'121664051357','8712000900663','1.00','230','retail','0','2022-09-24 23:38:09','','','','174','Cash',31.72,'230','','','12','','1','2022-09-24 17:38:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640526866383603',2389,'121664051901','6161101605465','1.00','700','retail','0','2022-09-24 23:51:27','','','','501','Cash',96.55,'700','','','12','','1','2022-09-24 17:52:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640528082033282',2390,'121664052755','6161101603324','1.00','200','retail','0','2022-09-24 23:53:28','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-24 17:53:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640550846383603',2391,'121664053681','6001495062508','1.00','1700','retail','0','2022-09-25 00:31:24','','','','1257.93','Cash',234.48,'1700','','','12','','1','2022-09-24 18:35:52','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640554033514263',2392,'121664055353','6161101603522','1.00','700','retail','0','2022-09-25 00:36:44','','','','501','Cash',96.55,'700','','','12','','1','2022-09-24 18:37:26','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640563500003215',2393,'121664055447','5060608740253','1.00','70','retail','0','2022-09-25 00:52:31','','','','41.82','Cash',9.66,'70','','','12','','1','2022-09-24 19:01:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640572583300320',2394,'121664056871','6161101605458','2.00','500','retail','0','2022-09-25 01:07:39','','','','182','Cash',68.97,'250','','','12','','1','2022-09-24 19:08:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640578483518263',2395,'121664057707','6161101601979','1.00','250','retail','0','2022-09-25 01:17:28','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-24 19:17:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640586116313603',2396,'121664057855','6161101605465','1.00','700','retail','0','2022-09-25 01:30:11','','','','501','Cash',96.55,'700','','','12','','1','2022-09-24 19:31:05','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640610026634613',2397,'121664060988','082184090473','1.00','3500','retail','0','2022-09-25 02:10:02','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-24 20:10:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640610790303223',2398,'121664061006','5000267116419','1.00','5300','retail','0','2022-09-25 02:11:32','','','','3870','Cash',731.03,'5300','','','12','','1','2022-09-24 20:13:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640610920303223',2399,'121664061006','5018907194802','1.00','100','retail','0','2022-09-25 02:11:32','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-24 20:13:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640612163612263',2400,'121664061197','6161101602938','2.00','500','retail','0','2022-09-25 02:13:36','','','','198.45','Cash',68.97,'250','','','12','','1','2022-09-24 20:13:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640617833033326',2401,'121664061774','5449000131836','1.00','70','retail','0','2022-09-25 02:23:41','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-24 20:24:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640618202033281',2402,'121664061774','6161101602921','1.00','250','retail','0','2022-09-25 02:23:41','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-24 20:24:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640618620332020',2403,'121664061853','5449000188342','1.00','90','retail','0','2022-09-25 02:24:22','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-24 20:24:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640627243617263',2404,'121664061867','1000','1.00','250','retail','0','2022-09-25 02:38:53','','','','192','Cash',34.48,'250','','','12','','1','2022-09-24 20:38:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640627322033272',2405,'121664061867','6164001199331','1.00','60','retail','0','2022-09-25 02:38:53','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-24 20:38:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640663236323603',2406,'121664062737','6161101605465','2.00','1400','retail','0','2022-09-25 03:39:56','','','','501','Cash',193.10,'700','','','12','','1','2022-09-24 21:40:00','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640663842033236',2407,'121664062737','6164001199331','4.00','240','retail','0','2022-09-25 03:39:56','','','','37.08','Cash',33.10,'60','','','12','','1','2022-09-24 21:40:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640663955033526',2408,'121664062737','5018907194802','2.00','200','retail','0','2022-09-25 03:39:56','','','','74.58','Cash',27.59,'100','','','12','','1','2022-09-24 21:40:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640668520303223',2409,'121664062737','6161101606561','1.00','1550','retail','0','2022-09-25 03:47:33','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-24 21:48:16','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640680946393603',2410,'121664066898','90162602','1.00','230','retail','0','2022-09-25 04:08:49','','','','147','Cash',31.72,'230','','','12','','1','2022-09-24 22:08:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640681033611263',2411,'121664066898','5018907194802','1.00','100','retail','0','2022-09-25 04:08:49','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-24 22:08:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640681190332020',2412,'121664066898','6161101601979','2.00','500','retail','0','2022-09-25 04:08:49','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-24 22:08:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640681280303223',2413,'121664066898','5449000188342','1.00','90','retail','0','2022-09-25 04:08:49','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-24 22:08:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640756310332020',2414,'121664075619','6161101605465','1.00','700','retail','0','2022-09-25 06:14:11','','','','501','Cash',96.55,'700','','','12','','1','2022-09-25 00:15:50','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640756387634713',2415,'121664075619','5018907194802','1.00','100','retail','0','2022-09-25 06:14:11','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-25 00:15:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216640756510332020',2416,'121664075619','5060639129003','1.00','200','retail','0','2022-09-25 06:14:11','','','','153','Cash',27.59,'200','','','12','','1','2022-09-25 00:15:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641190142033209',2417,'121664118996','1000','2.00','500','retail','0','2022-09-25 18:17:02','','','','192','Cash',68.97,'250','','','12','','1','2022-09-25 12:17:05','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641190220332020',2418,'121664118996','5449000131836','1.00','70','retail','0','2022-09-25 18:17:02','','','','53.333','Cash',9.66,'70','','','12','','1','2022-09-25 12:17:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641240853310320',2419,'121664119026','6161101605465','1.00','700','retail','0','2022-09-25 19:41:26','','','','501','Cash',96.55,'700','','','12','','1','2022-09-25 13:41:42','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641261577033726',2420,'121664124103','6161101600941','1.00','750','retail','0','2022-09-25 20:16:17','','','','544','Cash',103.45,'750','','','12','','1','2022-09-25 14:17:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641261703211263',2421,'121664124103','90162602','1.00','230','retail','0','2022-09-25 20:16:17','','','','147','Cash',31.72,'230','','','12','','1','2022-09-25 14:17:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641261776373603',2422,'121664124103','90162602','1.00','230','retail','0','2022-09-25 20:16:17','','','','147','Cash',31.72,'230','','','12','','1','2022-09-25 14:17:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641278110332020',2423,'121664127748','6161101603324','3.00','600','retail','0','2022-09-25 20:43:56','','','','150.45','Cash',82.76,'200','','','12','','1','2022-09-25 14:44:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'3','30.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641278361614434',2424,'121664127748','6164001199331','1.00','60','retail','0','2022-09-25 20:43:56','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-25 14:44:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641347222033274',2425,'121664128932','6161101603522','1.00','700','retail','0','2022-09-25 22:39:20','','','','501','Cash',96.55,'700','','','12','','1','2022-09-25 16:39:55','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641347463310320',2426,'121664128932','5018907194802','3.00','300','retail','0','2022-09-25 22:39:20','','','','74.58','Cash',41.38,'100','','','12','','1','2022-09-25 16:39:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641347593634313',2427,'121664128932','6164001199331','1.00','60','retail','0','2022-09-25 22:39:20','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-25 16:39:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641406453416263',2428,'121664138536','1000','1.00','250','retail','0','2022-09-26 00:17:26','','','','192','Cash',34.48,'250','','','12','','1','2022-09-25 18:26:27','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641414280303223',2429,'121664141188','5000267013602','1.00','2200','retail','0','2022-09-26 00:30:29','','','','1612','Cash',303.45,'2200','','','12','','1','2022-09-25 18:33:01','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641478142033287',2430,'121664141582','6161101606561','1.00','1550','retail','0','2022-09-26 02:17:23','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-25 20:22:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641478255033526',2431,'121664141582','5449000000286','1.00','250','retail','0','2022-09-26 02:17:23','','','','158','Cash',34.48,'250','','','12','','1','2022-09-25 20:22:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641478434634413',2432,'121664141582','6161101603324','6.00','1200','retail','0','2022-09-26 02:17:23','','','','150.45','Cash',165.52,'200','','','12','','1','2022-09-25 20:22:13','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'6','27.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641516340303223',2433,'121664148135','5449000188342','1.00','90','retail','0','2022-09-26 03:20:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-25 21:20:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216641516543310320',2434,'121664148135','90490224','1.00','90','retail','0','2022-09-26 03:20:55','','','','59.666','Cash',12.41,'90','','','12','','1','2022-09-25 21:20:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',77.59,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642008966393603',2435,'121664200869','6161101601979','2.00','500','retail','0','2022-09-26 17:01:57','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-26 11:02:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642009176313603',2436,'121664200869','6161101604703','1.00','200','retail','0','2022-09-26 17:01:57','','','','150.45','Cash',27.59,'200','','','12','','1','2022-09-26 11:02:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642097440332020',2437,'121664209735','6161101605458','1.00','250','retail','0','2022-09-26 19:29:05','','','','182','Cash',34.48,'250','','','12','','1','2022-09-26 13:29:09','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642115303115263',2438,'121664209750','1000','1.00','250','retail','0','2022-09-26 19:58:50','','','','192','Cash',34.48,'250','','','12','','1','2022-09-26 14:00:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642135940303223',2439,'121664211617','6161101605458','1.00','250','retail','0','2022-09-26 20:33:25','','','','182','Cash',34.48,'250','','','12','','1','2022-09-26 14:33:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642136042033263',2440,'121664211617','6164001199331','1.00','60','retail','0','2022-09-26 20:33:25','','','','37.08','Cash',8.28,'60','','','12','','1','2022-09-26 14:33:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642160371634113',2441,'121664213990','6161101605465','1.00','700','retail','0','2022-09-26 21:13:58','','','','501','Cash',96.55,'700','','','12','','1','2022-09-26 15:14:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642172793112263',2442,'121664216063','6161101605465','1.00','700','retail','0','2022-09-26 21:34:39','','','','501','Cash',96.55,'700','','','12','','1','2022-09-26 15:36:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642195753115263',2443,'121664218491','6002039008686','1.00','2000','retail','0','2022-09-26 22:12:56','','','','1400','Cash',275.86,'2000','','','12','','1','2022-09-26 16:14:43','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642207310303223',2444,'121664219684','6161101604543','1.00','1100','retail','0','2022-09-26 22:32:31','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-26 16:32:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642207416343603',2445,'121664219684','5449000022752','1.00','250','retail','0','2022-09-26 22:32:31','','','','158','Cash',34.48,'250','','','12','','1','2022-09-26 16:32:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642207512634213',2446,'121664219684','6161101606011','2.00','440','retail','0','2022-09-26 22:32:31','','','','172.833','Cash',60.69,'220','','','12','','1','2022-09-26 16:32:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642222322233206',2447,'121664220755','1000','2.00','500','retail','0','2022-09-26 22:57:12','','','','192','Cash',68.97,'250','','','12','','1','2022-09-26 16:57:15','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642232282634213',2448,'121664222236','6161101606561','1.00','1550','retail','0','2022-09-26 23:14:00','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-26 17:15:41','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642232400303223',2449,'121664222236','5449000004864','1.00','250','retail','0','2022-09-26 23:14:00','','','','158','Cash',34.48,'250','','','12','','1','2022-09-26 17:15:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642278488033826',2450,'121664227839','6001495062669','1.00','2600','retail','0','2022-09-27 00:30:55','','','','1960','Cash',358.62,'2600','','','12','','1','2022-09-26 18:30:59','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642278550303223',2451,'121664227839','6008165007784','1.00','370','retail','0','2022-09-27 00:30:55','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-26 18:30:59','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642288330303223',2452,'121664228830','8908006354191','1.00','1300','retail','0','2022-09-27 00:47:24','','','','920','Cash',179.31,'1300','','','12','','1','2022-09-26 18:50:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642288390332020',2453,'121664228830','50196081','1.00','1550','retail','0','2022-09-27 00:47:24','','','','1130','Cash',213.79,'1550','','','12','','1','2022-09-26 18:50:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642288440303223',2454,'121664228830','5449000000286','1.00','250','retail','0','2022-09-27 00:47:24','','','','158','Cash',34.48,'250','','','12','','1','2022-09-26 18:50:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642760460303223',2455,'121664276026','90162602','1.00','230','retail','0','2022-09-27 13:54:07','','','','147','Cash',31.72,'230','','','12','','1','2022-09-27 07:54:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642883590303223',2456,'121664288348','5449000188342','1.00','100','retail','0','2022-09-27 17:19:19','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-27 11:19:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642953166313603',2457,'121664289499','6002039008686','1.00','2000','retail','0','2022-09-27 19:15:17','','','','1400','Cash',275.86,'2000','','','12','','1','2022-09-27 13:16:56','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642964244033426',2458,'121664295417','1000','1.00','250','retail','0','2022-09-27 19:33:45','','','','192','Cash',34.48,'250','','','12','','1','2022-09-27 13:33:50','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642972833912263',2459,'121664296431','8712000900045','5.00','1250','retail','0','2022-09-27 19:48:53','','','','182','Cash',172.41,'250','','','12','','1','2022-09-27 13:49:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1077.59,'','22.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642973092323221',2460,'121664296431','6161101603324','2.00','500','retail','0','2022-09-27 19:48:53','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-27 13:49:24','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','45.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216642996083320320',2461,'121664297365','1000','1.00','250','retail','0','2022-09-27 20:26:49','','','','192','Cash',34.48,'250','','','12','','1','2022-09-27 14:26:51','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643000690332020',2462,'121664299613','080432400432','1.00','4350','retail','0','2022-09-27 20:37:13','','','','3250','Cash',600.00,'4350','','','12','','1','2022-09-27 14:37:32','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3750.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643000720634013',2463,'121664299613','080432400432','1.00','4350','retail','0','2022-09-27 20:37:13','','','','3250','Cash',600.00,'4350','','','12','','1','2022-09-27 14:37:32','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3750.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643001111033126',2464,'121664299613','5018907194802','5.00','500','retail','0','2022-09-27 20:37:13','','','','74.58','Cash',68.97,'100','','','12','','1','2022-09-27 14:37:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'5','7.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643001432033210',2465,'121664299613','6161101603324','6.00','1500','retail','0','2022-09-27 20:37:13','','','','150.45','Cash',206.90,'250','','','12','','1','2022-09-27 14:37:32','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','43.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643001580303223',2466,'121664299613','5060639129003','3.00','600','retail','0','2022-09-27 20:37:13','','','','153','Cash',82.76,'200','','','12','','1','2022-09-27 14:37:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'3','28.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643001712033210',2467,'121664299613','6161101602372','2.00','500','retail','0','2022-09-27 20:37:13','','','','189.75','Cash',68.97,'250','','','12','','1','2022-09-27 14:37:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643001983011263',2468,'121664299613','90162602','2.00','460','retail','0','2022-09-27 20:37:13','','','','147','Cash',63.45,'230','','','12','','1','2022-09-27 14:37:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643002326333603',2469,'121664299613','6008165007685','1.00','270','retail','0','2022-09-27 20:37:13','','','','251.5','Cash',37.24,'270','','','12','','1','2022-09-27 14:37:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643002850303223',2470,'121664300254','6161101603324','2.00','500','retail','0','2022-09-27 20:38:05','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-27 14:38:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','37.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643017442033271',2471,'121664300289','1000','1.00','250','retail','0','2022-09-27 21:02:24','','','','192','Cash',34.48,'250','','','12','','1','2022-09-27 15:02:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643033033013263',2472,'121664301752','080432400432','1.00','4350','retail','0','2022-09-27 21:28:32','','','','3250','Cash',600.00,'4350','','','12','','1','2022-09-27 15:28:35','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3750.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643033111033126',2473,'121664301752','8712000900663','1.00','230','retail','0','2022-09-27 21:28:32','','','','174','Cash',31.72,'230','','','12','','1','2022-09-27 15:28:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643039230332020',2474,'121664303316','5018907197803','1.00','60','retail','0','2022-09-27 21:38:43','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-27 15:39:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643044930634013',2475,'121664303998','6161101605458','1.00','300','retail','0','2022-09-27 21:48:44','','','','182','Cash',41.38,'300','','','12','','1','2022-09-27 15:48:46','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643045233102223',2476,'121664303998','6164001199331','1.00','70','retail','0','2022-09-27 21:48:44','','','','37.08','Cash',9.66,'70','','','12','','1','2022-09-27 15:48:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643049742033294',2477,'121664304527','6161101600941','1.00','750','retail','0','2022-09-27 21:56:15','','','','544','Cash',103.45,'750','','','12','','1','2022-09-27 15:57:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643054282033245',2478,'121664305030','6161101604406','2.00','500','retail','0','2022-09-27 22:04:25','','','','181.708','Cash',68.97,'250','','','12','','1','2022-09-27 16:04:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643055060020306',2479,'121664305496','6001495201501','1.00','1000','retail','0','2022-09-27 22:05:06','','','','628','Cash',137.93,'1000','','','12','','1','2022-09-27 16:05:51','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643078653018263',2480,'121664305790','5000196006652','1.00','400','retail','0','2022-09-27 22:44:26','','','','310','Cash',55.17,'400','','','12','','1','2022-09-27 16:44:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643079900634013',2481,'121664307931','6161101604406','1.00','250','retail','0','2022-09-27 22:46:30','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-27 16:46:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643082922033228',2482,'121664307998','1000','1.00','250','retail','0','2022-09-27 22:51:33','','','','192','Cash',34.48,'250','','','12','','1','2022-09-27 16:52:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643124312033242',2483,'121664308325','5000267014005','1.00','1800','retail','0','2022-09-28 00:01:04','','','','1304','Cash',248.28,'1800','','','12','','1','2022-09-27 18:02:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643124632033242',2484,'121664308325','5449000004864','1.00','250','retail','0','2022-09-28 00:01:04','','','','158','Cash',34.48,'250','','','12','','1','2022-09-27 18:02:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643132203330320',2485,'121664312551','6161101606011','1.00','220','retail','0','2022-09-28 00:13:53','','','','172.833','Cash',30.34,'220','','','12','','1','2022-09-27 18:14:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643132333033326',2486,'121664312551','6008165007982','1.00','350','retail','0','2022-09-28 00:13:53','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-27 18:14:15','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643145981634113',2487,'121664314483','6161101601979','4.00','1000','retail','0','2022-09-28 00:36:39','','','','172.75','Cash',137.93,'250','','','12','','1','2022-09-27 18:36:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','31.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643155736373603',2488,'121664314603','6161101601979','5.00','1250','retail','0','2022-09-28 00:53:27','','','','172.75','Cash',172.41,'250','','','12','','1','2022-09-27 18:53:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','27.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643155831634113',2489,'121664314603','6161101604703','1.00','250','retail','0','2022-09-28 00:53:27','','','','150.45','Cash',34.48,'250','','','12','','1','2022-09-27 18:53:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643155955033526',2490,'121664314603','5018907194802','1.00','100','retail','0','2022-09-28 00:53:27','','','','74.58','Cash',13.79,'100','','','12','','1','2022-09-27 18:53:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643156071302130',2491,'121664314603','90162602','1.00','230','retail','0','2022-09-28 00:53:27','','','','147','Cash',31.72,'230','','','12','','1','2022-09-27 18:53:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643174860303223',2492,'121664315947','6161101601979','1.00','250','retail','0','2022-09-28 01:25:54','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-27 19:26:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643175066303603',2493,'121664315947','5449000188342','1.00','100','retail','0','2022-09-28 01:25:54','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-27 19:26:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643175380303223',2494,'121664315947','6161101603324','2.00','500','retail','0','2022-09-28 01:25:54','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-27 19:26:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','35.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643175543115263',2495,'121664315947','6161101604703','2.00','500','retail','0','2022-09-28 01:25:54','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-27 19:26:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643189076303603',2496,'121664317581','8712000900045','1.00','250','retail','0','2022-09-28 01:48:28','','','','182','Cash',34.48,'250','','','12','','1','2022-09-27 19:48:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643218063000000',2497,'121664321106','6161101601979','2.00','500','retail','0','2022-09-28 02:36:46','','','','172.75','Cash',68.97,'250','','','12','','1','2022-09-27 20:36:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643237352634213',2498,'121664321810','6161101605458','1.00','300','retail','0','2022-09-28 03:08:55','','','','182','Cash',41.38,'300','','','12','','1','2022-09-27 21:10:01','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643238363218263',2499,'121664323802','5018907197803','1.00','60','retail','0','2022-09-28 03:10:37','','','','44.58','Cash',8.28,'60','','','12','','1','2022-09-27 21:10:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643243399033926',2500,'121664324297','90490279','1.00','100','retail','0','2022-09-28 03:18:59','','','','68','Cash',13.79,'100','','','12','','1','2022-09-27 21:19:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643244722634213',2501,'121664324452','90399480','1.00','100','retail','0','2022-09-28 03:21:12','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-27 21:21:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643245355033526',2502,'121664324476','90399480','3.00','300','retail','0','2022-09-28 03:22:15','','','','59.666','Cash',41.38,'100','','','12','','1','2022-09-27 21:22:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643245766033626',2503,'121664324565','90399480','1.00','100','retail','0','2022-09-28 03:22:57','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-27 21:23:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643253513213263',2504,'121664325324','6161101603379','3.00','750','retail','0','2022-09-28 03:35:52','','','','190.375','Cash',103.45,'250','','','12','','1','2022-09-27 21:35:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643254413214263',2505,'121664325355','6161101606011','2.00','440','retail','0','2022-09-28 03:37:21','','','','172.833','Cash',60.69,'220','','','12','','1','2022-09-27 21:37:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643258510332020',2506,'121664325811','6161101603324','9.00','2250','retail','0','2022-09-28 03:44:12','','','','150.45','Cash',310.34,'250','','','12','','1','2022-09-27 21:44:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'9','33.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643259502033295',2507,'121664325938','8712000900045','2.00','500','retail','0','2022-09-28 03:45:51','','','','182','Cash',68.97,'250','','','12','','1','2022-09-27 21:45:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643260450303223',2508,'121664326008','8712000900663','5.00','1150','retail','0','2022-09-28 03:47:26','','','','174','Cash',158.62,'230','','','12','','1','2022-09-27 21:47:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'5','22.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643262643212263',2509,'121664326253','6161101602525','1.00','120','retail','0','2022-09-28 03:51:04','','','','95.75','Cash',16.55,'120','','','12','','1','2022-09-27 21:51:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643263472634213',2510,'121664326334','6161101602600','6.00','1320','retail','0','2022-09-28 03:52:28','','','','154.95','Cash',182.07,'220','','','12','','1','2022-09-27 21:52:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','26.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643265922033226',2511,'121664326565','6161101601979','8.00','2000','retail','0','2022-09-28 03:56:33','','','','172.75','Cash',275.86,'250','','','12','','1','2022-09-27 21:56:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'8','19.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643268633033326',2512,'121664326856','5060639129003','1.00','200','retail','0','2022-09-28 04:01:03','','','','153','Cash',27.59,'200','','','12','','1','2022-09-27 22:01:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643284440332020',2513,'121664326866','5018907197803','1.00','100','retail','0','2022-09-28 04:27:24','','','','44.58','Cash',13.79,'100','','','12','','1','2022-09-27 22:27:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643801900262432',2514,'121664375094','6008165007814','10.00','3500','retail','0','2022-09-28 18:50:11','','','','317.26','Cash',482.76,'350','','','12','','1','2022-09-28 12:50:15','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'10','19.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643802103330320',2515,'121664375094','6008165007784','1.00','370','retail','0','2022-09-28 18:50:11','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-28 12:50:15','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643802303330320',2516,'121664380216','3086120600051','1.00','80','retail','0','2022-09-28 18:50:30','','','','59.74','Cash',11.03,'80','','','12','','1','2022-09-28 12:50:36','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643821446343603',2517,'121664380238','5449000188342','1.00','100','retail','0','2022-09-28 19:22:25','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-28 13:22:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643827033817263',2518,'121664382150','6008165007982','1.00','350','retail','0','2022-09-28 19:32:42','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-28 13:33:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643827552033272',2519,'121664382150','6008165007968','1.00','350','retail','0','2022-09-28 19:32:42','','','','308.5','Cash',48.28,'350','','','12','','1','2022-09-28 13:33:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643827586353603',2520,'121664382150','6008165007968','1.00','350','retail','0','2022-09-28 19:32:42','','','','308.5','Cash',48.28,'350','','','12','','1','2022-09-28 13:33:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643827611033126',2521,'121664382150','6008165007968','1.00','350','retail','0','2022-09-28 19:32:42','','','','308.5','Cash',48.28,'350','','','12','','1','2022-09-28 13:33:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643834602033243',2522,'121664383015','1000','1.00','300','retail','0','2022-09-28 19:44:21','','','','192','Cash',41.38,'300','','','12','','1','2022-09-28 13:45:01','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643841078634813',2523,'121664384103','6161101603379','1.00','250','retail','0','2022-09-28 19:56:00','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-28 13:58:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643841098634813',2524,'121664384103','6161101603379','1.00','250','retail','0','2022-09-28 19:56:00','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-28 13:58:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643841490303223',2525,'121664384103','6008165007982','1.00','350','retail','0','2022-09-28 19:56:00','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-28 13:58:45','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643841603330320',2526,'121664384103','716165177364','1.00','250','retail','0','2022-09-28 19:56:00','','','','130','Cash',34.48,'250','','','12','','1','2022-09-28 13:58:45','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643846873816263',2527,'121664384326','6161101605458','1.00','300','retail','0','2022-09-28 20:04:47','','','','182','Cash',41.38,'300','','','12','','1','2022-09-28 14:06:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643891400303223',2528,'121664384797','1000','1.00','300','retail','0','2022-09-28 21:19:00','','','','192','Cash',41.38,'300','','','12','','1','2022-09-28 15:19:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643897448634813',2529,'121664389147','6161101605465','1.00','850','retail','0','2022-09-28 21:29:31','','','','501','Cash',117.24,'850','','','12','','1','2022-09-28 15:29:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',732.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643897599033926',2530,'121664389147','6164001199331','2.00','140','retail','0','2022-09-28 21:29:31','','','','37.08','Cash',19.31,'70','','','12','','1','2022-09-28 15:29:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643897711033126',2531,'121664389147','5018907194802','2.00','300','retail','0','2022-09-28 21:29:31','','','','74.58','Cash',41.38,'150','','','12','','1','2022-09-28 15:29:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643903388033826',2532,'121664390084','6001496301804','1.00','1200','retail','0','2022-09-28 21:38:59','','','','729','Cash',165.52,'1200','','','12','','1','2022-09-28 15:42:03','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643907740303223',2533,'121664390525','1000','1.00','300','retail','0','2022-09-28 21:46:28','','','','192','Cash',41.38,'300','','','12','','1','2022-09-28 15:47:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643932689634913',2534,'121664391168','8712000900045','2.00','500','retail','0','2022-09-28 22:30:13','','','','182','Cash',68.97,'250','','','12','','1','2022-09-28 16:31:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643934120332020',2535,'121664391168','8712000900045','1.00','250','retail','0','2022-09-28 22:30:13','','','','182','Cash',34.48,'250','','','12','','1','2022-09-28 16:31:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643947250303223',2536,'121664394703','082184090473','1.00','3500','retail','0','2022-09-28 22:52:05','','','','2600','Cash',482.76,'3500','','','12','','1','2022-09-28 16:52:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3017.24,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643980133330320',2537,'121664395112','5010752000321','1.00','1500','retail','0','2022-09-28 23:46:54','','','','1037','Cash',206.90,'1500','','','12','','1','2022-09-28 17:47:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643985122033226',2538,'121664398073','5449000188342','1.00','100','retail','0','2022-09-28 23:55:15','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-28 17:55:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643985152033258',2539,'121664398073','5449000188342','1.00','100','retail','0','2022-09-28 23:55:15','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-28 17:55:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643988300332020',2540,'121664398819','5010103930628','1.00','1550','retail','0','2022-09-29 00:07:09','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-28 18:07:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643992490303223',2541,'121664399233','5449000131836','1.00','80','retail','0','2022-09-29 00:07:42','','','','53.333','Cash',11.03,'80','','','12','','1','2022-09-28 18:08:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216643992616363603',2542,'121664399233','6001496011772','1.00','750','retail','0','2022-09-29 00:07:42','','','','544','Cash',103.45,'750','','','12','','1','2022-09-28 18:08:25','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644018740332020',2543,'121664399306','6161101603379','1.00','250','retail','0','2022-09-29 00:51:29','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-28 18:51:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644018880303223',2544,'121664399306','6161101602938','1.00','250','retail','0','2022-09-29 00:51:29','','','','198.45','Cash',34.48,'250','','','12','','1','2022-09-28 18:51:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644030555033526',2545,'121664402025','5449000188342','2.00','200','retail','0','2022-09-29 01:10:56','','','','59.666','Cash',27.59,'100','','','12','','1','2022-09-28 19:11:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644030860332020',2546,'121664403061','5449000188342','2.00','200','retail','0','2022-09-29 01:11:27','','','','59.666','Cash',27.59,'100','','','12','','1','2022-09-28 19:11:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644041060303223',2547,'121664403091','5000267014609','1.00','1100','retail','0','2022-09-29 01:29:38','','','','794','Cash',151.72,'1100','','','12','','1','2022-09-28 19:29:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644041376333603',2548,'121664403091','5449000131836','3.00','240','retail','0','2022-09-29 01:29:38','','','','53.333','Cash',33.10,'80','','','12','','1','2022-09-28 19:29:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644041653102223',2549,'121664403091','6008165007982','1.00','350','retail','0','2022-09-29 01:29:38','','','','308.53','Cash',48.28,'350','','','12','','1','2022-09-28 19:29:43','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644041770332020',2550,'121664403091','5018907194802','1.00','150','retail','0','2022-09-29 01:29:38','','','','74.58','Cash',20.69,'150','','','12','','1','2022-09-28 19:29:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644044299033926',2551,'121664404353','90162602','4.00','920','retail','0','2022-09-29 01:39:02','','','','147','Cash',126.90,'230','','','12','','1','2022-09-28 19:39:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644048833340320',2552,'121664404766','6161101605458','1.00','300','retail','0','2022-09-29 01:41:24','','','','182','Cash',41.38,'300','','','12','','1','2022-09-28 19:43:00','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644049930332020',2553,'121664404982','5018907197803','1.00','100','retail','0','2022-09-29 01:44:32','','','','44.58','Cash',13.79,'100','','','12','','1','2022-09-28 19:45:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644054180332020',2554,'121664405134','5449000004864','1.00','250','retail','0','2022-09-29 01:50:18','','','','158','Cash',34.48,'250','','','12','','1','2022-09-28 19:50:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644057160303223',2555,'121664405134','5449000004864','1.00','250','retail','0','2022-09-29 01:55:16','','','','158','Cash',34.48,'250','','','12','','1','2022-09-28 19:55:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644073896383603',2556,'121664407368','1000','1.00','300','retail','0','2022-09-29 02:23:10','','','','192','Cash',41.38,'300','','','12','','1','2022-09-28 20:23:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644075393340320',2557,'121664407397','5449000004864','1.00','250','retail','0','2022-09-29 02:25:39','','','','158','Cash',34.48,'250','','','12','','1','2022-09-28 20:25:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644476800303223',2558,'121664447656','90490279','1.00','100','retail','0','2022-09-29 13:34:49','','','','68','Cash',13.79,'100','','','12','','1','2022-09-29 07:34:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644476880303223',2559,'121664447656','5449000188342','1.00','100','retail','0','2022-09-29 13:34:49','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-29 07:34:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644483810332020',2560,'121664447692','5018907197803','1.00','100','retail','0','2022-09-29 13:46:22','','','','44.58','Cash',13.79,'100','','','12','','1','2022-09-29 07:46:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644604856383603',2561,'121664459759','6161101602372','1.00','250','retail','0','2022-09-29 17:08:06','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-29 11:14:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644692113612263',2562,'121664460866','6161101602372','1.00','250','retail','0','2022-09-29 19:33:34','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-29 13:34:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644692146313603',2563,'121664460866','6161101602372','1.00','250','retail','0','2022-09-29 19:33:34','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-29 13:34:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644706392033260',2564,'121664469269','6161101601979','1.00','250','retail','0','2022-09-29 19:57:19','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-29 13:57:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644719782033291',2565,'121664470652','8712000900045','2.00','500','retail','0','2022-09-29 20:20:50','','','','182','Cash',68.97,'250','','','12','','1','2022-09-29 14:20:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644719920332020',2566,'121664470652','6161101602938','2.00','500','retail','0','2022-09-29 20:20:50','','','','198.45','Cash',68.97,'250','','','12','','1','2022-09-29 14:20:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644720060303223',2567,'121664470652','8712000900663','1.00','230','retail','0','2022-09-29 20:20:50','','','','174','Cash',31.72,'230','','','12','','1','2022-09-29 14:20:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644720230332020',2568,'121664470652','6161101601979','3.00','750','retail','0','2022-09-29 20:20:50','','','','172.75','Cash',103.45,'250','','','12','','1','2022-09-29 14:20:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','22.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644720393710263',2569,'121664470652','5010103930666','1.00','750','retail','0','2022-09-29 20:20:50','','','','542','Cash',103.45,'750','','','12','','1','2022-09-29 14:20:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644720503710263',2570,'121664470652','5018907194802','1.00','150','retail','0','2022-09-29 20:20:50','','','','74.58','Cash',20.69,'150','','','12','','1','2022-09-29 14:20:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644729823719263',2571,'121664472059','6161101602921','3.00','750','retail','0','2022-09-29 20:36:22','','','','198.45','Cash',103.45,'250','','','12','','1','2022-09-29 14:37:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','31.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644738836383603',2572,'121664473428','8712000900663','1.00','230','retail','0','2022-09-29 20:51:24','','','','174','Cash',31.72,'230','','','12','','1','2022-09-29 14:51:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644751844033426',2573,'121664473888','6973322691345','1.00','1750','retail','0','2022-09-29 21:13:16','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-29 15:15:17','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644751962302367',2574,'121664473888','6973322691321','1.00','1750','retail','0','2022-09-29 21:13:16','','','','1000','Cash',241.38,'1750','','','12','','1','2022-09-29 15:15:17','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644760876383603',2575,'121664475319','6161101601979','1.00','250','retail','0','2022-09-29 21:28:07','','','','172.75','Cash',34.48,'250','','','12','','1','2022-09-29 15:28:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644797756373603',2576,'121664479769','50112265','1.00','80','retail','0','2022-09-29 22:30:20','','','','53.33','Cash',11.03,'80','','','12','','1','2022-09-29 16:33:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644798012033289',2577,'121664479769','5018907194802','2.00','300','retail','0','2022-09-29 22:30:20','','','','74.58','Cash',41.38,'150','','','12','','1','2022-09-29 16:33:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644798197634713',2578,'121664479769','5010103930666','1.00','750','retail','0','2022-09-29 22:30:20','','','','542','Cash',103.45,'750','','','12','','1','2022-09-29 16:33:14','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644813796373603',2579,'121664481368','6008165007784','1.00','370','retail','0','2022-09-29 22:56:19','','','','327.04','Cash',51.03,'370','','','12','','1','2022-09-29 16:56:24','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644857050332020',2580,'121664483597','6161101605458','1.00','270','retail','0','2022-09-30 00:08:26','','','','182','Cash',37.24,'270','','','12','','1','2022-09-29 18:11:04','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216644871036303603',2581,'121664485866','5010232953994','1.00','600','retail','0','2022-09-30 00:31:44','','','','263.157','Cash',82.76,'600','','','12','','1','2022-09-29 18:32:56','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645383144033426',2582,'121664538254','54493360','1.00','80','retail','0','2022-09-30 14:48:00','','','','53.333','Cash',11.03,'80','','','12','','1','2022-09-30 08:48:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645383176313603',2583,'121664538254','54493360','1.00','80','retail','0','2022-09-30 14:48:00','','','','53.333','Cash',11.03,'80','','','12','','1','2022-09-30 08:48:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645383520303223',2584,'121664538254','6161101600934','1.00','1500','retail','0','2022-09-30 14:48:00','','','','1144','Cash',206.90,'1500','','','12','','1','2022-09-30 08:48:38','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645384790303223',2585,'121664538254','6164001199331','1.00','70','retail','0','2022-09-30 14:48:00','','','','37.08','Cash',9.66,'70','','','12','','1','2022-09-30 08:48:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645392699033926',2586,'121664538519','6008165007784','4.00','1480','retail','0','2022-09-30 15:01:09','','','','327.04','Cash',204.14,'370','','','12','','1','2022-09-30 09:01:11','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'4','17.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645440753410263',2587,'121664539273','5010103930628','1.00','1550','retail','0','2022-09-30 16:25:56','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-30 10:27:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645443555033526',2588,'121664539273','50112265','1.00','80','retail','0','2022-09-30 16:25:56','','','','53.33','Cash',11.03,'80','','','12','','1','2022-09-30 10:27:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645446926393603',2589,'121664544511','6161101604406','1.00','250','retail','0','2022-09-30 16:32:26','','','','181.708','Cash',34.48,'250','','','12','','1','2022-09-30 10:36:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645447000033026',2590,'121664544511','8712000900045','1.00','250','retail','0','2022-09-30 16:32:26','','','','182','Cash',34.48,'250','','','12','','1','2022-09-30 10:36:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645447456343603',2591,'121664544511','5018907194802','1.00','150','retail','0','2022-09-30 16:32:26','','','','74.58','Cash',20.69,'150','','','12','','1','2022-09-30 10:36:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645471936393603',2592,'121664544996','6161101604543','1.00','1100','retail','0','2022-09-30 17:14:01','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-30 11:17:12','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645472400332020',2593,'121664544996','6164001199331','1.00','70','retail','0','2022-09-30 17:14:01','','','','37.08','Cash',9.66,'70','','','12','','1','2022-09-30 11:17:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645500462624250',2594,'121664549064','6161101602600','1.00','220','retail','0','2022-09-30 18:01:16','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-30 12:04:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645500486343603',2595,'121664549064','6161101602600','1.00','220','retail','0','2022-09-30 18:01:16','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-30 12:04:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645500516353603',2596,'121664549064','6161101602600','1.00','220','retail','0','2022-09-30 18:01:16','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-30 12:04:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645500753510263',2597,'121664549064','1000','1.00','270','retail','0','2022-09-30 18:01:16','','','','192','Cash',37.24,'270','','','12','','1','2022-09-30 12:04:53','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645584023350320',2598,'121664558392','6161101602372','1.00','250','retail','0','2022-09-30 20:20:03','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-30 14:20:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645605800303223',2599,'121664558418','6161101602525','1.00','120','retail','0','2022-09-30 20:56:31','','','','95.75','Cash',16.55,'120','','','12','','1','2022-09-30 14:57:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645605916393603',2600,'121664558418','6164001199331','1.00','70','retail','0','2022-09-30 20:56:31','','','','37.08','Cash',9.66,'70','','','12','','1','2022-09-30 14:57:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645650823350320',2601,'121664560660','5010103930628','1.00','1550','retail','0','2022-09-30 22:13:07','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-30 16:15:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645651270303223',2602,'121664560660','6161101604543','1.00','1100','retail','0','2022-09-30 22:13:07','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-30 16:15:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645651770303223',2603,'121664560660','5060608740253','1.00','80','retail','0','2022-09-30 22:13:07','','','','41.82','Cash',11.03,'80','','','12','','1','2022-09-30 16:15:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645651806634613',2604,'121664560660','5060608740253','1.00','80','retail','0','2022-09-30 22:13:07','','','','41.82','Cash',11.03,'80','','','12','','1','2022-09-30 16:15:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645651872033215',2605,'121664560660','5018907194802','1.00','150','retail','0','2022-09-30 22:13:07','','','','74.58','Cash',20.69,'150','','','12','','1','2022-09-30 16:15:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645656280303223',2606,'121664565326','6161101603522','1.00','800','retail','0','2022-09-30 22:20:29','','','','501','Cash',110.34,'800','','','12','','1','2022-09-30 16:21:36','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645660823102223',2607,'121664565697','1210000100511','1.00','2300','retail','0','2022-09-30 22:28:56','','','','1650','Cash',317.24,'2300','','','12','','1','2022-09-30 16:29:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645661283350320',2608,'121664565697','5449000131836','1.00','80','retail','0','2022-09-30 22:28:56','','','','53.333','Cash',11.03,'80','','','12','','1','2022-09-30 16:29:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645661363350320',2609,'121664565697','50112265','1.00','80','retail','0','2022-09-30 22:28:56','','','','53.33','Cash',11.03,'80','','','12','','1','2022-09-30 16:29:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645663043613263',2610,'121664566271','5010232953925','1.00','700','retail','0','2022-09-30 22:31:44','','','','315.787','Cash',96.55,'700','','','12','','1','2022-09-30 16:32:18','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645677883617263',2611,'121664566339','5060639129003','1.00','200','retail','0','2022-09-30 22:56:28','','','','153','Cash',27.59,'200','','','12','','1','2022-09-30 16:56:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645681833033326',2612,'121664567793','6161101603379','1.00','250','retail','0','2022-09-30 23:03:08','','','','190.375','Cash',34.48,'250','','','12','','1','2022-09-30 17:03:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645681880332020',2613,'121664567793','6161101602600','1.00','220','retail','0','2022-09-30 23:03:08','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-30 17:03:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645687011033126',2614,'121664568228','6161101606011','6.00','1320','retail','0','2022-09-30 23:11:56','','','','172.833','Cash',182.07,'220','','','12','','1','2022-09-30 17:16:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645687156634613',2615,'121664568228','6161101603379','6.00','1500','retail','0','2022-09-30 23:11:56','','','','190.375','Cash',206.90,'250','','','12','','1','2022-09-30 17:16:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','27.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645705420332020',2616,'121664568980','6161101603324','2.00','500','retail','0','2022-09-30 23:42:32','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-30 17:43:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645705527634713',2617,'121664568980','6161101602600','1.00','220','retail','0','2022-09-30 23:42:32','','','','154.95','Cash',30.34,'220','','','12','','1','2022-09-30 17:43:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645709943719263',2618,'121664570586','3086120600020','2.00','240','retail','0','2022-09-30 23:49:54','','','','93.86','Cash',33.10,'120','','','12','','1','2022-09-30 17:50:37','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'2','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645710412033201',2619,'121664571039','6161101604543','1.00','1100','retail','0','2022-09-30 23:50:41','','','','788','Cash',151.72,'1100','','','12','','1','2022-09-30 17:51:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645716900033026',2620,'121664571308','5010103930628','1.00','1550','retail','0','2022-10-01 00:01:31','','','','1125','Cash',213.79,'1550','','','12','','1','2022-09-30 18:01:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645718455033526',2621,'121664571696','716165173670','1.00','150','retail','0','2022-10-01 00:04:05','','','','46','Cash',20.69,'150','','','12','','1','2022-09-30 18:04:08','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645736533350320',2622,'121664571850','5449000188342','1.00','100','retail','0','2022-10-01 00:34:13','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-30 18:34:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645747893717263',2623,'121664574785','6001108016034','1.00','500','retail','0','2022-10-01 00:53:09','','','','352','Cash',68.97,'500','','','12','','1','2022-09-30 18:53:14','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645760366333603',2624,'121664574896','6161101602372','1.00','250','retail','0','2022-10-01 01:13:57','','','','189.75','Cash',34.48,'250','','','12','','1','2022-09-30 19:14:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645786523716263',2625,'121664576069','6161101604703','2.00','500','retail','0','2022-10-01 01:57:59','','','','150.45','Cash',68.97,'250','','','12','','1','2022-09-30 19:58:02','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645786610303223',2626,'121664576069','6161101603324','1.00','250','retail','0','2022-10-01 01:57:59','','','','150.45','Cash',34.48,'250','','','12','','1','2022-09-30 19:58:02','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645786700033026',2627,'121664576069','90399480','1.00','100','retail','0','2022-10-01 01:57:59','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-30 19:58:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645786793716263',2628,'121664576069','8712000900663','1.00','230','retail','0','2022-10-01 01:57:59','','','','174','Cash',31.72,'230','','','12','','1','2022-09-30 19:58:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645793357634713',2629,'121664578766','5010232953925','1.00','700','retail','0','2022-10-01 02:08:58','','','','315.787','Cash',96.55,'700','','','12','','1','2022-09-30 20:11:42','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645793372033239',2630,'121664578766','5010232953925','1.00','700','retail','0','2022-10-01 02:08:58','','','','315.787','Cash',96.55,'700','','','12','','1','2022-09-30 20:11:42','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645795153715263',2631,'121664579503','5060639129003','1.00','200','retail','0','2022-10-01 02:12:12','','','','153','Cash',27.59,'200','','','12','','1','2022-09-30 20:14:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645795232033259',2632,'121664579503','100','1.00','250','retail','0','2022-10-01 02:12:12','','','','177','Cash',34.48,'250','','','12','','1','2022-09-30 20:14:29','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645795312033259',2633,'121664579503','5018907194802','1.00','150','retail','0','2022-10-01 02:12:12','','','','74.58','Cash',20.69,'150','','','12','','1','2022-09-30 20:14:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645824640332020',2634,'121664579671','8712000900663','1.00','230','retail','0','2022-10-01 03:01:45','','','','174','Cash',31.72,'230','','','12','','1','2022-09-30 21:01:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645824753814263',2635,'121664579671','6161101603324','1.00','250','retail','0','2022-10-01 03:01:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-09-30 21:01:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645824846383603',2636,'121664579671','6161101604703','1.00','250','retail','0','2022-10-01 03:01:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-09-30 21:01:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216645825044033426',2637,'121664579671','90399480','1.00','100','retail','0','2022-10-01 03:01:45','','','','59.666','Cash',13.79,'100','','','12','','1','2022-09-30 21:01:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646365206323603',2638,'121664631548','5060608740253','1.00','80','retail','0','2022-10-01 18:02:00','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-01 12:02:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646365893360320',2639,'121664636524','5449000188342','1.00','100','retail','0','2022-10-01 18:03:10','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-01 12:03:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646389110332020',2640,'121664636605','6161101600941','1.00','750','retail','0','2022-10-01 18:41:52','','','','544','Cash',103.45,'750','','','12','','1','2022-10-01 12:48:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646402610303223',2641,'121664639781','6161101601979','2.00','500','retail','0','2022-10-01 19:04:36','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-01 13:04:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646402753412263',2642,'121664639781','8712000900663','2.00','460','retail','0','2022-10-01 19:04:36','','','','174','Cash',63.45,'230','','','12','','1','2022-10-01 13:04:39','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646407933360320',2643,'121664640396','5011013100132','1.00','2600','retail','0','2022-10-01 19:13:37','','','','1916','Cash',358.62,'2600','','','12','','1','2022-10-01 13:14:30','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646408160332020',2644,'121664640396','6008165007784','1.00','370','retail','0','2022-10-01 19:13:37','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-01 13:14:30','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646437364634413',2645,'121664643578','6164001199331','1.00','70','retail','0','2022-10-01 20:02:16','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 14:02:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646445292021301',2646,'121664643742','3086120600051','1.00','80','retail','0','2022-10-01 20:16:39','','','','59.74','Cash',11.03,'80','','','12','','1','2022-10-01 14:18:26','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646445993415263',2647,'121664643742','716165173670','1.00','150','retail','0','2022-10-01 20:16:39','','','','46','Cash',20.69,'150','','','12','','1','2022-10-01 14:18:26','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646456666363603',2648,'121664644707','5449000188342','1.00','100','retail','0','2022-10-01 20:34:27','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-01 14:34:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646459480332020',2649,'121664645672','6161101605458','1.00','270','retail','0','2022-10-01 20:39:09','','','','182','Cash',37.24,'270','','','12','','1','2022-10-01 14:39:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646464892230202',2650,'121664645953','5010103930666','1.00','750','retail','0','2022-10-01 20:49:09','','','','542','Cash',103.45,'750','','','12','','1','2022-10-01 14:49:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646465142033256',2651,'121664645953','50112265','1.00','80','retail','0','2022-10-01 20:49:09','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-01 14:49:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646465330332020',2652,'121664645953','5449000188342','1.00','100','retail','0','2022-10-01 20:49:09','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-01 14:49:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646465482033256',2653,'121664645953','8712000900663','2.00','460','retail','0','2022-10-01 20:49:09','','','','174','Cash',63.45,'230','','','12','','1','2022-10-01 14:49:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646514883012223',2654,'121664646561','6161101130424','1.00','750','retail','0','2022-10-01 22:11:29','','','','642','Cash',103.45,'750','','','12','','1','2022-10-01 16:11:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646515590303223',2655,'121664651493','6161101602525','1.00','120','retail','0','2022-10-01 22:12:49','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-01 16:13:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646515692302395',2656,'121664651493','6164001199331','1.00','70','retail','0','2022-10-01 22:12:49','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 16:13:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646516080332020',2657,'121664651596','6164001199331','1.00','70','retail','0','2022-10-01 22:13:28','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 16:13:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646529400033026',2658,'121664651612','6161101602372','1.00','250','retail','0','2022-10-01 22:35:40','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-01 16:35:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646535206323603',2659,'121664652976','5449000000286','1.00','250','retail','0','2022-10-01 22:45:26','','','','158','Cash',34.48,'250','','','12','','1','2022-10-01 16:46:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646535266033626',2660,'121664652976','6001496011796','1.00','1550','retail','0','2022-10-01 22:45:26','','','','1072','Cash',213.79,'1550','','','12','','1','2022-10-01 16:46:01','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646536142033263',2661,'121664653562','6161101604550','1.00','400','retail','0','2022-10-01 22:46:54','','','','284','Cash',55.17,'400','','','12','','1','2022-10-01 16:47:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646538842033283',2662,'121664653721','5010103930666','1.00','750','retail','0','2022-10-01 22:51:34','','','','542','Cash',103.45,'750','','','12','','1','2022-10-01 16:51:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646538930332020',2663,'121664653721','6164001199331','1.00','70','retail','0','2022-10-01 22:51:34','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 16:51:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646540777033726',2664,'121664653898','6008165007982','1.00','350','retail','0','2022-10-01 22:54:38','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 16:55:53','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646558433518263',2665,'121664654217','6973322691321','1.00','1750','retail','0','2022-10-01 23:24:03','','','','1000','Cash',241.38,'1750','','','12','','1','2022-10-01 17:24:05','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646561895634513',2666,'121664655847','6161101600927','1.00','1900','retail','0','2022-10-01 23:29:49','','','','1417','Cash',262.07,'1900','','','12','','1','2022-10-01 17:32:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646565810332020',2667,'121664656340','6161101603522','1.00','800','retail','0','2022-10-01 23:36:30','','','','501','Cash',110.34,'800','','','12','','1','2022-10-01 17:36:48','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646565906393603',2668,'121664656340','1000','1.00','270','retail','0','2022-10-01 23:36:30','','','','192','Cash',37.24,'270','','','12','','1','2022-10-01 17:36:48','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646566403516263',2669,'121664656610','6164001199331','2.00','140','retail','0','2022-10-01 23:37:39','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-01 17:37:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646566580350662',2670,'121664656610','6164001199010','1.00','100','retail','0','2022-10-01 23:37:39','','','','38','Cash',13.79,'100','','','12','','1','2022-10-01 17:37:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646582343360320',2671,'121664656879','6161101602051','1.00','550','retail','0','2022-10-02 00:03:54','','','','392','Cash',75.86,'550','','','12','','1','2022-10-01 18:04:43','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646583050332020',2672,'121664658285','6161101603379','1.00','250','retail','0','2022-10-02 00:05:06','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-01 18:05:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646583223513263',2673,'121664658310','6164001199331','1.00','70','retail','0','2022-10-02 00:05:22','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 18:05:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646586460332020',2674,'121664658342','082184090473','1.00','4000','retail','0','2022-10-02 00:11:20','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-01 18:13:33','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646586585634513',2675,'121664658342','6001495062669','1.00','2600','retail','0','2022-10-02 00:11:20','','','','1960','Cash',358.62,'2600','','','12','','1','2022-10-01 18:13:33','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646586732033268',2676,'121664658342','5018907194802','1.00','150','retail','0','2022-10-02 00:11:20','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-01 18:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646586763360320',2677,'121664658342','5018907194802','1.00','150','retail','0','2022-10-02 00:11:20','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-01 18:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646586793360320',2678,'121664658342','5018907194802','1.00','150','retail','0','2022-10-02 00:11:20','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-01 18:13:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646588240332020',2679,'121664658814','5010103930628','1.00','1550','retail','0','2022-10-02 00:14:26','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-01 18:15:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646588663360320',2680,'121664658814','6008165007784','1.00','370','retail','0','2022-10-02 00:14:26','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-01 18:15:36','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646592146313603',2681,'121664658938','6008165007982','1.00','350','retail','0','2022-10-02 00:24:17','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 18:25:00','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646594570303223',2682,'121664658938','6008165007982','1.00','350','retail','0','2022-10-02 00:24:17','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 18:25:00','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646595666033626',2683,'121664659502','1000','1.00','270','retail','0','2022-10-02 00:26:06','','','','192','Cash',37.24,'270','','','12','','1','2022-10-01 18:26:09','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646603286634613',2684,'121664659571','6164001199331','1.00','70','retail','0','2022-10-02 00:38:52','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-01 18:39:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646603313360320',2685,'121664659571','5000196006652','1.00','400','retail','0','2022-10-02 00:38:52','','','','310','Cash',55.17,'400','','','12','','1','2022-10-01 18:39:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646604693360320',2686,'121664660354','5018907197803','1.00','100','retail','0','2022-10-02 00:41:09','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-01 18:41:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646630343360320',2687,'121664661067','5018907197803','1.00','100','retail','0','2022-10-02 01:23:54','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-01 19:23:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646643652033234',2688,'121664663078','6161101602938','12.00','3000','retail','0','2022-10-02 01:47:32','','','','198.45','Cash',413.79,'250','','','12','','1','2022-10-01 19:48:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'12','16.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646643823613263',2689,'121664663078','6008165007982','1.00','350','retail','0','2022-10-02 01:47:32','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 19:48:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646643983613263',2690,'121664663078','6008165007982','1.00','350','retail','0','2022-10-02 01:47:32','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 19:48:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646644526634613',2691,'121664663078','6161101603324','1.00','250','retail','0','2022-10-02 01:47:32','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-01 19:48:32','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646645240303223',2692,'121664664514','50112753','1.00','80','retail','0','2022-10-02 01:48:44','','','','56','Cash',11.03,'80','','','12','','1','2022-10-01 19:48:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646648080332020',2693,'121664664537','6008165007982','1.00','350','retail','0','2022-10-02 01:53:29','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 19:53:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646650216323603',2694,'121664664813','6008165007784','1.00','370','retail','0','2022-10-02 01:57:01','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-01 19:57:05','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646653906393603',2695,'121664665026','6161101601979','3.00','750','retail','0','2022-10-02 02:03:40','','','','172.75','Cash',103.45,'250','','','12','','1','2022-10-01 20:03:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','16.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646654063360320',2696,'121664665026','6161101602921','2.00','500','retail','0','2022-10-02 02:03:40','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-01 20:03:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646654203360320',2697,'121664665026','6161101603379','1.00','250','retail','0','2022-10-02 02:03:40','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-01 20:03:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646665936393603',2698,'121664665425','6161101603324','6.00','1500','retail','0','2022-10-02 02:23:13','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-01 20:23:17','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646668853360320',2699,'121664666598','6008165007982','1.00','350','retail','0','2022-10-02 02:28:37','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-01 20:29:04','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646669162033296',2700,'121664666598','6008165007784','1.00','370','retail','0','2022-10-02 02:28:37','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-01 20:29:04','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646688216323603',2701,'121664666945','8712000900045','2.00','500','retail','0','2022-10-02 03:00:33','','','','182','Cash',68.97,'250','','','12','','1','2022-10-01 21:00:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646688322033288',2702,'121664666945','6161101603324','2.00','500','retail','0','2022-10-02 03:00:33','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-01 21:00:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646704922033226',2703,'121664668848','5060608740253','1.00','80','retail','0','2022-10-02 03:28:13','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-01 21:28:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646706340303223',2704,'121664670498','6161101602372','1.00','250','retail','0','2022-10-02 03:30:35','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-01 21:31:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646739322033226',2705,'121664671752','6161101604703','1.00','250','retail','0','2022-10-02 04:25:33','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-01 22:25:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646740199033926',2706,'121664673937','90162602','1.00','230','retail','0','2022-10-02 04:27:00','','','','147','Cash',31.72,'230','','','12','','1','2022-10-01 22:27:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646756926393603',2707,'121664674024','6161101603324','6.00','1500','retail','0','2022-10-02 04:55:59','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-01 23:02:53','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646757599033926',2708,'121664674024','6161101603379','6.00','1500','retail','0','2022-10-02 04:55:59','','','','190.375','Cash',206.90,'250','','','12','','1','2022-10-01 23:02:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646763023713263',2709,'121664676174','6161101603324','1.00','250','retail','0','2022-10-02 05:05:03','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-01 23:05:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216646783910303223',2710,'121664676306','6161101602921','4.00','1000','retail','0','2022-10-02 05:39:52','','','','198.45','Cash',137.93,'250','','','12','','1','2022-10-01 23:39:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','26.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647132341634113',2711,'121664713224','5060608740253','1.00','80','retail','0','2022-10-02 15:20:34','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-02 09:20:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647186013116263',2712,'121664718591','6161101606011','4.00','880','retail','0','2022-10-02 16:50:36','','','','172.833','Cash',121.38,'220','','','12','','1','2022-10-02 10:55:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647186182033268',2713,'121664718591','6161101602372','2.00','500','retail','0','2022-10-02 16:50:36','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-02 10:55:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647186360622012',2714,'121664718591','6161101601979','2.00','500','retail','0','2022-10-02 16:50:36','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-02 10:55:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647191913370320',2715,'121664718955','6161101602372','1.00','250','retail','0','2022-10-02 16:59:51','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-02 10:59:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647222306333603',2716,'121664719195','6161101604703','2.00','500','retail','0','2022-10-02 17:50:31','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-02 11:51:41','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647242044033426',2717,'121664722303','6164001199331','1.00','70','retail','0','2022-10-02 18:24:00','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-02 12:24:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647242123370320',2718,'121664722303','50112265','1.00','80','retail','0','2022-10-02 18:24:00','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-02 12:24:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647242393370320',2719,'121664722303','6161101605465','1.00','800','retail','0','2022-10-02 18:24:00','','','','501','Cash',110.34,'800','','','12','','1','2022-10-02 12:24:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647270682033207',2720,'121664724263','6161101604703','2.00','500','retail','0','2022-10-02 19:11:20','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-02 13:12:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647270796373603',2721,'121664724263','5018907194802','1.00','150','retail','0','2022-10-02 19:11:20','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-02 13:12:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647273632033237',2722,'121664727130','3086120600051','1.00','80','retail','0','2022-10-02 19:16:03','','','','59.74','Cash',11.03,'80','','','12','','1','2022-10-02 13:16:53','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647313010332020',2723,'121664728765','6161101601979','2.00','500','retail','0','2022-10-02 20:21:51','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-02 14:21:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647313113634313',2724,'121664728765','8712000900663','1.00','230','retail','0','2022-10-02 20:21:51','','','','174','Cash',31.72,'230','','','12','','1','2022-10-02 14:21:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647324410303223',2725,'121664731314','6161101606011','2.00','440','retail','0','2022-10-02 20:40:41','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-02 14:42:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647334433033326',2726,'121664732571','4067700014559','1.00','2500','retail','0','2022-10-02 20:57:24','','','','1850','Cash',344.83,'2500','','','12','','1','2022-10-02 14:58:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647375844033426',2727,'121664737581','5010232965096','1.00','600','retail','0','2022-10-02 22:06:30','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-02 16:08:08','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647375902033257',2728,'121664737581','5000267014609','1.00','1100','retail','0','2022-10-02 22:06:30','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-02 16:08:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647376990332020',2729,'121664737690','6002039008686','1.00','2000','retail','0','2022-10-02 22:09:19','','','','1400','Cash',275.86,'2000','','','12','','1','2022-10-02 16:10:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647377590332020',2730,'121664737690','082184090473','1.00','4000','retail','0','2022-10-02 22:09:19','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-02 16:10:38','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647383970303223',2731,'121664738068','088544018941','1.00','2900','retail','0','2022-10-02 22:20:22','','','','2100','Cash',400.00,'2900','','','12','','1','2022-10-02 16:22:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2500.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647384055033526',2732,'121664738068','6002039005746','1.00','1400','retail','0','2022-10-02 22:20:22','','','','790','Cash',193.10,'1400','','','12','','1','2022-10-02 16:22:45','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647384213370320',2733,'121664738068','5449000004864','1.00','250','retail','0','2022-10-02 22:20:22','','','','158','Cash',34.48,'250','','','12','','1','2022-10-02 16:22:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647387763370320',2734,'121664738567','5060608740253','2.00','160','retail','0','2022-10-02 22:26:16','','','','41.82','Cash',22.07,'80','','','12','','1','2022-10-02 16:26:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647396553634313',2735,'121664738781','6161101605458','1.00','270','retail','0','2022-10-02 22:40:55','','','','182','Cash',37.24,'270','','','12','','1','2022-10-02 16:41:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647418903370320',2736,'121664739688','6161101603522','1.00','800','retail','0','2022-10-02 23:18:11','','','','501','Cash',110.34,'800','','','12','','1','2022-10-02 17:18:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647420226323603',2737,'121664741895','6002039008686','1.00','2000','retail','0','2022-10-02 23:20:37','','','','1400','Cash',275.86,'2000','','','12','','1','2022-10-02 17:23:15','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647420366033626',2738,'121664741895','6161101602372','6.00','1500','retail','0','2022-10-02 23:20:37','','','','189.75','Cash',206.90,'250','','','12','','1','2022-10-02 17:23:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','22.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647430466033626',2739,'121664742354','6161101602372','1.00','250','retail','0','2022-10-02 23:37:27','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-02 17:37:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647436712033263',2740,'121664743050','6161101601979','3.00','750','retail','0','2022-10-02 23:48:01','','','','172.75','Cash',103.45,'250','','','12','','1','2022-10-02 17:48:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647436813370320',2741,'121664743050','6161101604703','1.00','250','retail','0','2022-10-02 23:48:01','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-02 17:48:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647450734634413',2742,'121664743686','6161101605458','2.00','540','retail','0','2022-10-03 00:11:13','','','','182','Cash',74.48,'270','','','12','','1','2022-10-02 18:11:48','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647451373370320',2743,'121664745109','6161101604703','4.00','1000','retail','0','2022-10-03 00:12:33','','','','150.45','Cash',137.93,'250','','','12','','1','2022-10-02 18:12:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647451441222432',2744,'121664745109','90490279','1.00','100','retail','0','2022-10-03 00:12:33','','','','68','Cash',13.79,'100','','','12','','1','2022-10-02 18:12:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647451523370320',2745,'121664745109','8712000900045','1.00','250','retail','0','2022-10-03 00:12:33','','','','182','Cash',34.48,'250','','','12','','1','2022-10-02 18:12:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647452304634413',2746,'121664745159','6008165007784','1.00','370','retail','0','2022-10-03 00:13:50','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-02 18:15:36','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647455222033226',2747,'121664745446','6008165007982','1.00','350','retail','0','2022-10-03 00:18:42','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-02 18:18:47','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647461782033216',2748,'121664745528','8712000900663','1.00','230','retail','0','2022-10-03 00:30:38','','','','174','Cash',31.72,'230','','','12','','1','2022-10-02 18:31:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647461863411263',2749,'121664745528','6161101604703','1.00','250','retail','0','2022-10-03 00:30:38','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-02 18:31:45','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647462373370320',2750,'121664745528','6008165007784','1.00','370','retail','0','2022-10-03 00:30:38','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-02 18:31:45','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647479964634413',2751,'121664746306','6161101604703','1.00','250','retail','0','2022-10-03 00:59:56','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-02 18:59:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647517823517263',2752,'121664748000','6161101604703','1.00','250','retail','0','2022-10-03 02:03:03','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-02 20:03:05','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647520580303223',2753,'121664751787','6161101602921','2.00','500','retail','0','2022-10-03 02:07:38','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-02 20:11:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647533692033233',2754,'121664752272','6161101605458','1.00','270','retail','0','2022-10-03 02:29:30','','','','182','Cash',37.24,'270','','','12','','1','2022-10-02 20:31:09','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647536293516263',2755,'121664753470','6008165007784','1.00','370','retail','0','2022-10-03 02:33:50','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-02 20:33:53','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216647867002033276',2756,'121664786679','8712000900663','2.00','460','retail','0','2022-10-03 11:45:00','','','','174','Cash',63.45,'230','','','12','','1','2022-10-03 05:45:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648018843380320',2757,'121664799962','90490279','1.00','100','retail','0','2022-10-03 15:58:05','','','','68','Cash',13.79,'100','','','12','','1','2022-10-03 09:58:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648068292033286',2758,'121664801934','6161101602938','5.00','1250','retail','0','2022-10-03 17:22:28','','','','198.45','Cash',172.41,'250','','','12','','1','2022-10-03 11:24:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','12.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648069470300982',2759,'121664801934','6161101601115','1.00','850','retail','0','2022-10-03 17:22:28','','','','635','Cash',117.24,'850','','','12','','1','2022-10-03 11:24:18','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',732.76,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648102681634113',2760,'121664807059','6161101605458','1.00','270','retail','0','2022-10-03 18:17:49','','','','182','Cash',37.24,'270','','','12','','1','2022-10-03 12:17:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648113103380320',2761,'121664810273','5449000131836','1.00','80','retail','0','2022-10-03 18:35:52','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-03 12:36:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648113511262432',2762,'121664810273','90490279','1.00','100','retail','0','2022-10-03 18:35:52','','','','68','Cash',13.79,'100','','','12','','1','2022-10-03 12:36:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648126366033626',2763,'121664811387','5060639129003','1.00','200','retail','0','2022-10-03 18:57:16','','','','153','Cash',27.59,'200','','','12','','1','2022-10-03 13:00:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648132153112263',2764,'121664812845','4067700014559','1.00','2500','retail','0','2022-10-03 19:06:56','','','','1850','Cash',344.83,'2500','','','12','','1','2022-10-03 13:07:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648162240332020',2765,'121664814362','6161101602938','1.00','250','retail','0','2022-10-03 19:57:04','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-03 13:58:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648203233033326',2766,'121664816284','90399480','1.00','100','retail','0','2022-10-03 21:05:24','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-03 15:05:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648220942033202',2767,'121664820328','6001108016034','1.00','500','retail','0','2022-10-03 21:34:54','','','','352','Cash',68.97,'500','','','12','','1','2022-10-03 15:34:58','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648223842033232',2768,'121664822099','6161101604703','1.00','250','retail','0','2022-10-03 21:39:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-03 15:39:48','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648237880303223',2769,'121664822474','5010103930628','1.00','1550','retail','0','2022-10-03 22:04:21','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-03 16:07:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648238170332020',2770,'121664822474','6161101604406','2.00','500','retail','0','2022-10-03 22:04:21','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-03 16:07:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648238612634213',2771,'121664822474','6164001199331','1.00','70','retail','0','2022-10-03 22:04:21','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-03 16:07:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648241610303223',2772,'121664824032','6161101601979','1.00','250','retail','0','2022-10-03 22:10:29','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-03 16:11:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648241882634213',2773,'121664824032','6161101605458','1.00','270','retail','0','2022-10-03 22:10:29','','','','182','Cash',37.24,'270','','','12','','1','2022-10-03 16:11:06','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648242282634213',2774,'121664824032','6164001199331','1.00','70','retail','0','2022-10-03 22:10:29','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-03 16:11:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648249772033294',2775,'121664824267','1000','1.00','270','retail','0','2022-10-03 22:23:17','','','','192','Cash',37.24,'270','','','12','','1','2022-10-03 16:23:22','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648249853219263',2776,'121664824267','5449000131836','1.00','80','retail','0','2022-10-03 22:23:17','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-03 16:23:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648249973380320',2777,'121664824267','90399480','1.00','100','retail','0','2022-10-03 22:23:17','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-03 16:23:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648265102634213',2778,'121664826490','6161101600927','1.00','1900','retail','0','2022-10-03 22:49:19','','','','1417','Cash',262.07,'1900','','','12','','1','2022-10-03 16:49:23','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648265266033626',2779,'121664826490','6161101603324','1.00','250','retail','0','2022-10-03 22:49:19','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-03 16:49:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648265423380320',2780,'121664826490','5449000014536','2.00','160','retail','0','2022-10-03 22:49:19','','','','49','Cash',22.07,'80','','','12','','1','2022-10-03 16:49:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648265590332020',2781,'121664826490','6164001199331','2.00','140','retail','0','2022-10-03 22:49:19','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-03 16:49:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648273502634213',2782,'121664827116','6161101601979','1.00','250','retail','0','2022-10-03 23:02:31','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-03 17:02:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648278233380320',2783,'121664827356','5060608740253','1.00','80','retail','0','2022-10-03 23:10:23','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-03 17:10:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648281133211263',2784,'121664828090','4067700014535','1.00','3400','retail','0','2022-10-03 23:15:14','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-03 17:19:51','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648333776373603',2785,'121664830209','6161101602938','6.00','1500','retail','0','2022-10-04 00:43:07','','','','198.45','Cash',206.90,'250','','','12','','1','2022-10-03 18:47:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648333863634313',2786,'121664830209','90162602','1.00','230','retail','0','2022-10-04 00:43:07','','','','147','Cash',31.72,'230','','','12','','1','2022-10-03 18:47:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648349036303603',2787,'121664833860','6161101602372','2.00','500','retail','0','2022-10-04 01:08:23','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-03 19:08:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648351833634313',2788,'121664834907','6001495201501','1.00','1000','retail','0','2022-10-04 01:13:03','','','','628','Cash',137.93,'1000','','','12','','1','2022-10-03 19:13:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648382877033726',2789,'121664838218','1000','1.00','270','retail','0','2022-10-04 02:04:48','','','','192','Cash',37.24,'270','','','12','','1','2022-10-03 20:04:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648411414634413',2790,'121664838295','5000289929417','1.00','2000','retail','0','2022-10-04 02:53:33','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-03 20:53:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648411560332020',2791,'121664838295','6008165007784','1.00','370','retail','0','2022-10-04 02:53:33','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-03 20:53:37','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648411753411263',2792,'121664838295','6161101603324','2.00','500','retail','0','2022-10-04 02:53:33','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-03 20:53:37','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648411883380320',2793,'121664838295','5449000014536','1.00','80','retail','0','2022-10-04 02:53:33','','','','49','Cash',11.03,'80','','','12','','1','2022-10-03 20:53:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648412004634413',2794,'121664838295','5018907197803','2.00','200','retail','0','2022-10-04 02:53:33','','','','44.58','Cash',27.59,'100','','','12','','1','2022-10-03 20:53:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','35.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648412123380320',2795,'121664838295','3086120600051','1.00','80','retail','0','2022-10-04 02:53:33','','','','59.74','Cash',11.03,'80','','','12','','1','2022-10-03 20:53:37','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648423863380320',2796,'121664841218','1000','2.00','540','retail','0','2022-10-04 03:13:28','','','','192','Cash',74.48,'270','','','12','','1','2022-10-03 21:15:23','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648424077033726',2797,'121664841218','8712000900045','1.00','250','retail','0','2022-10-04 03:13:28','','','','182','Cash',34.48,'250','','','12','','1','2022-10-03 21:15:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648447646363603',2798,'121664842524','6161101606011','3.00','660','retail','0','2022-10-04 03:52:45','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-03 21:52:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','16.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648813522033231',2799,'121664881341','5449000014536','1.00','80','retail','0','2022-10-04 14:02:33','','','','49','Cash',11.03,'80','','','12','','1','2022-10-04 08:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648914373914263',2800,'121664891428','1000','1.00','270','retail','0','2022-10-04 16:50:38','','','','192','Cash',37.24,'270','','','12','','1','2022-10-04 10:50:40','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216648986290303223',2801,'121664891443','5018907194802','1.00','150','retail','0','2022-10-04 18:50:30','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-04 12:51:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649012820062223',2802,'121664898709','6161101603324','1.00','250','retail','0','2022-10-04 19:34:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-04 13:35:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649012844033426',2803,'121664898709','6161101603324','1.00','250','retail','0','2022-10-04 19:34:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-04 13:35:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649015242033251',2804,'121664901307','5449000188342','1.00','100','retail','0','2022-10-04 19:38:45','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-04 13:38:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649076040303223',2805,'121664901528','4067700014535','1.00','3400','retail','0','2022-10-04 21:20:05','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-04 15:20:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649078220332020',2806,'121664907633','8712000900045','1.00','250','retail','0','2022-10-04 21:23:46','','','','182','Cash',34.48,'250','','','12','','1','2022-10-04 15:24:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649078252033287',2807,'121664907633','8712000900045','1.00','250','retail','0','2022-10-04 21:23:46','','','','182','Cash',34.48,'250','','','12','','1','2022-10-04 15:24:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649087710303223',2808,'121664907859','6161101606011','3.00','660','retail','0','2022-10-04 21:39:55','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-04 15:40:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649087952033278',2809,'121664907859','6161101606011','1.00','220','retail','0','2022-10-04 21:39:55','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-04 15:40:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649089360634013',2810,'121664908855','6161101602167','1.00','550','retail','0','2022-10-04 21:42:16','','','','388','Cash',75.86,'550','','','12','','1','2022-10-04 15:42:30','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649110120303223',2811,'121664908951','8712000900663','4.00','920','retail','0','2022-10-04 22:16:53','','','','174','Cash',126.90,'230','','','12','','1','2022-10-04 16:17:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'4','17.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649125386333603',2812,'121664911066','6161101602372','1.00','250','retail','0','2022-10-04 22:42:19','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-04 16:43:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649153570303223',2813,'121664912589','6161101602372','1.00','250','retail','0','2022-10-04 23:29:18','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-04 17:29:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649166476343603',2814,'121664915391','6008165007784','1.00','370','retail','0','2022-10-04 23:52:19','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-04 17:53:51','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649166600332020',2815,'121664915391','6161101605465','1.00','800','retail','0','2022-10-04 23:52:19','','','','501','Cash',110.34,'800','','','12','','1','2022-10-04 17:53:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649167392033276',2816,'121664915391','6008165007982','1.00','350','retail','0','2022-10-04 23:52:19','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-04 17:53:51','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649196563390320',2817,'121664916833','6161101602372','2.00','500','retail','0','2022-10-05 00:40:56','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-04 18:41:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649213093390320',2818,'121664921298','6008165007814','9.00','3150','retail','0','2022-10-05 01:08:30','','','','317.26','Cash',434.48,'350','','','12','','1','2022-10-04 19:08:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649222102033222',2819,'121664921314','5010106111451','1.00','2200','retail','0','2022-10-05 01:23:30','','','','1600','Cash',303.45,'2200','','','12','','1','2022-10-04 19:24:44','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649234153390320',2820,'121664922285','5018907194802','1.00','150','retail','0','2022-10-05 01:43:36','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-04 19:43:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649239277033726',2821,'121664923419','5010752000321','1.00','1500','retail','0','2022-10-05 01:52:20','','','','1037','Cash',206.90,'1500','','','12','','1','2022-10-04 19:52:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649239393222239',2822,'121664923419','90162602','1.00','230','retail','0','2022-10-05 01:52:20','','','','147','Cash',31.72,'230','','','12','','1','2022-10-04 19:52:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649246452033264',2823,'121664924623','5449000061478','1.00','180','retail','0','2022-10-05 02:04:06','','','','84','Cash',24.83,'180','','','12','','1','2022-10-04 20:04:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649246788033826',2824,'121664924670','8712000900045','1.00','250','retail','0','2022-10-05 02:04:46','','','','182','Cash',34.48,'250','','','12','','1','2022-10-04 20:04:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649246856383603',2825,'121664924670','6161101603324','1.00','250','retail','0','2022-10-05 02:04:46','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-04 20:04:49','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649258742634213',2826,'121664924690','1000','1.00','270','retail','0','2022-10-05 02:24:34','','','','192','Cash',37.24,'270','','','12','','1','2022-10-04 20:25:07','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649313840332020',2827,'121664925908','50196166','1.00','600','retail','0','2022-10-05 03:56:24','','','','443','Cash',82.76,'600','','','12','','1','2022-10-04 22:01:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649317520332020',2828,'121664931698','90490279','1.00','100','retail','0','2022-10-05 04:02:33','','','','68','Cash',13.79,'100','','','12','','1','2022-10-04 22:02:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649325533634313',2829,'121664931757','6161101602921','3.00','750','retail','0','2022-10-05 04:16:13','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-04 22:16:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','20.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649325650332020',2830,'121664931757','8712000900045','1.00','250','retail','0','2022-10-05 04:16:13','','','','182','Cash',34.48,'250','','','12','','1','2022-10-04 22:16:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649325730303223',2831,'121664931757','5449000014536','1.00','80','retail','0','2022-10-05 04:16:13','','','','49','Cash',11.03,'80','','','12','','1','2022-10-04 22:16:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649687573617263',2832,'121664968736','90490224','1.00','100','retail','0','2022-10-05 14:19:17','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-05 08:24:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649691280303223',2833,'121664969065','6164001199331','1.00','70','retail','0','2022-10-05 14:25:29','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-05 08:27:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649762060762263',2834,'121664969226','5018907197803','1.00','100','retail','0','2022-10-05 16:23:38','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-05 10:29:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649762182033226',2835,'121664969226','90162602','1.00','230','retail','0','2022-10-05 16:23:38','','','','147','Cash',31.72,'230','','','12','','1','2022-10-05 10:29:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649765657634713',2836,'121664976552','6161101605458','1.00','270','retail','0','2022-10-05 16:29:26','','','','182','Cash',37.24,'270','','','12','','1','2022-10-05 10:29:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649779110332020',2837,'121664976570','5000196006652','1.00','400','retail','0','2022-10-05 16:51:51','','','','310','Cash',55.17,'400','','','12','','1','2022-10-05 10:52:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649779880303223',2838,'121664977959','5018907197803','1.00','100','retail','0','2022-10-05 16:53:09','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-05 10:53:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649867000033026',2839,'121664986687','6161101604406','4.00','1000','retail','0','2022-10-05 19:18:39','','','','181.708','Cash',137.93,'250','','','12','','1','2022-10-05 13:18:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649867088033826',2840,'121664986687','50112265','1.00','80','retail','0','2022-10-05 19:18:39','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-05 13:18:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649867193390320',2841,'121664986687','6164001199010','1.00','100','retail','0','2022-10-05 19:18:39','','','','38','Cash',13.79,'100','','','12','','1','2022-10-05 13:18:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649953090303223',2842,'121664989159','6161101603379','4.00','1000','retail','0','2022-10-05 21:42:00','','','','190.375','Cash',137.93,'250','','','12','','1','2022-10-05 15:42:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649953199033926',2843,'121664989159','6161101606011','2.00','440','retail','0','2022-10-05 21:42:00','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-05 15:42:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649955820332020',2844,'121664995570','54493360','4.00','320','retail','0','2022-10-05 21:46:31','','','','53.333','Cash',44.14,'80','','','12','','1','2022-10-05 15:47:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'4','46.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649955912033255',2845,'121664995570','6161101600934','1.00','1800','retail','0','2022-10-05 21:46:31','','','','1144','Cash',248.28,'1800','','','12','','1','2022-10-05 15:47:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649965133390320',2846,'121664995669','6161101601979','4.00','1000','retail','0','2022-10-05 22:02:28','','','','172.75','Cash',137.93,'250','','','12','','1','2022-10-05 16:02:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649965246323603',2847,'121664995669','6161101602372','2.00','500','retail','0','2022-10-05 22:02:28','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-05 16:02:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649965386333603',2848,'121664995669','1000','2.00','540','retail','0','2022-10-05 22:02:28','','','','192','Cash',74.48,'270','','','12','','1','2022-10-05 16:02:32','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216649965470303223',2849,'121664995669','5449000014536','1.00','80','retail','0','2022-10-05 22:02:28','','','','49','Cash',11.03,'80','','','12','','1','2022-10-05 16:02:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650024590303223',2850,'121664997504','4067700014559','1.00','2500','retail','0','2022-10-05 23:49:25','','','','1850','Cash',344.83,'2500','','','12','','1','2022-10-05 17:50:36','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650025366333603',2851,'121664997504','6001812011936','1.00','950','retail','0','2022-10-05 23:49:25','','','','700','Cash',131.03,'950','','','12','','1','2022-10-05 17:50:36','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650041943300320',2852,'121665003037','6161101601979','1.00','250','retail','0','2022-10-06 00:10:17','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-05 18:12:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650042176313603',2853,'121665003037','6161101602372','1.00','250','retail','0','2022-10-06 00:10:17','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-05 18:12:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650047036303603',2854,'121665004352','8712000900045','2.00','500','retail','0','2022-10-06 00:18:33','','','','182','Cash',68.97,'250','','','12','','1','2022-10-05 18:20:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650047132033274',2855,'121665004352','6161101604406','2.00','500','retail','0','2022-10-06 00:18:33','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-05 18:20:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650049823019263',2856,'121665004843','6161101605458','1.00','270','retail','0','2022-10-06 00:23:07','','','','182','Cash',37.24,'270','','','12','','1','2022-10-05 18:23:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650049863019263',2857,'121665004843','6164001199331','1.00','70','retail','0','2022-10-06 00:23:07','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-05 18:23:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650054022033226',2858,'121665005038','5000267014609','1.00','1100','retail','0','2022-10-06 00:31:02','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-05 18:31:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650054623300320',2859,'121665005038','5449000131836','1.00','80','retail','0','2022-10-06 00:31:02','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-05 18:31:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650058530332020',2860,'121665005738','5000291025930','1.00','3000','retail','0','2022-10-06 00:37:34','','','','2220','Cash',413.79,'3000','','','12','','1','2022-10-05 18:39:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2586.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650091796373603',2861,'121665005953','90399480','1.00','100','retail','0','2022-10-06 01:33:02','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-05 19:33:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650091820332020',2862,'121665005953','90399480','1.00','100','retail','0','2022-10-06 01:33:02','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-05 19:33:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650096970303223',2863,'121665009219','6161101606011','3.00','660','retail','0','2022-10-06 01:43:05','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-05 19:43:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650097060332020',2864,'121665009219','5018907197803','1.00','100','retail','0','2022-10-06 01:43:05','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-05 19:43:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650097853017263',2865,'121665009219','5449000131836','1.00','80','retail','0','2022-10-06 01:43:05','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-05 19:43:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650098073300320',2866,'121665009799','5010103930628','1.00','1550','retail','0','2022-10-06 01:43:27','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-05 19:43:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650125710303223',2867,'121665009832','6161101602921','1.00','250','retail','0','2022-10-06 02:29:34','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-05 20:29:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650125740303223',2868,'121665009832','6161101601979','1.00','250','retail','0','2022-10-06 02:29:34','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-05 20:29:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650140522033204',2869,'121665012596','8712000900045','4.00','1000','retail','0','2022-10-06 02:54:12','','','','182','Cash',137.93,'250','','','12','','1','2022-10-05 20:54:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650150483300320',2870,'121665014056','6161101602372','1.00','250','retail','0','2022-10-06 03:10:49','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-05 21:10:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650421293300320',2871,'121665042110','5449000000286','1.00','250','retail','0','2022-10-06 10:42:10','','','','158','Cash',34.48,'250','','','12','','1','2022-10-06 04:42:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650539785635513',2872,'121665053950','852848252017','1.00','3800','retail','0','2022-10-06 13:59:38','','','','1500','Cash',524.14,'3800','','','12','','1','2022-10-06 07:59:41','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',3275.86,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650556705635513',2873,'121665055019','6164001199331','1.00','70','retail','0','2022-10-06 14:27:50','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-06 08:27:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650590566353603',2874,'121665055674','716165177364','1.00','250','retail','0','2022-10-06 15:24:27','','','','130','Cash',34.48,'250','','','12','','1','2022-10-06 09:26:21','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650590672033209',2875,'121665055674','6161101606011','2.00','440','retail','0','2022-10-06 15:24:27','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-06 09:26:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650675332033257',2876,'121665066851','5018907194802','1.00','150','retail','0','2022-10-06 17:45:33','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-06 11:45:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650714920332020',2877,'121665067541','6161101604406','2.00','500','retail','0','2022-10-06 18:51:55','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-06 12:53:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650715155033526',2878,'121665067541','3086120600051','1.00','80','retail','0','2022-10-06 18:51:55','','','','59.74','Cash',11.03,'80','','','12','','1','2022-10-06 12:53:22','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650717532535207',2879,'121665071604','6164001199010','1.00','100','retail','0','2022-10-06 18:55:53','','','','38','Cash',13.79,'100','','','12','','1','2022-10-06 12:55:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650718652033281',2880,'121665071758','6161101605458','1.00','270','retail','0','2022-10-06 18:57:56','','','','182','Cash',37.24,'270','','','12','','1','2022-10-06 12:57:59','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650718763300320',2881,'121665071758','6164001199331','1.00','70','retail','0','2022-10-06 18:57:56','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-06 12:57:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650720453300320',2882,'121665071881','5449000014536','1.00','80','retail','0','2022-10-06 19:00:46','','','','49','Cash',11.03,'80','','','12','','1','2022-10-06 13:00:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650757920303223',2883,'121665072050','90490279','2.00','200','retail','0','2022-10-06 20:03:12','','','','68','Cash',27.59,'100','','','12','','1','2022-10-06 14:03:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650785990303223',2884,'121665075892','6161101603379','2.00','500','retail','0','2022-10-06 20:50:11','','','','190.375','Cash',68.97,'250','','','12','','1','2022-10-06 14:51:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650786102033268',2885,'121665075892','90490224','1.00','100','retail','0','2022-10-06 20:50:11','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-06 14:51:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650794916393603',2886,'121665078666','5000289932479','1.00','2000','retail','0','2022-10-06 21:07:48','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-06 15:08:53','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650794943300320',2887,'121665078666','5000289932479','1.00','2000','retail','0','2022-10-06 21:07:48','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-06 15:08:53','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650794993714263',2888,'121665078666','50112265','1.00','80','retail','0','2022-10-06 21:07:48','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-06 15:08:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650795023715263',2889,'121665078666','50112265','1.00','80','retail','0','2022-10-06 21:07:48','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-06 15:08:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650795055033526',2890,'121665078666','50112265','1.00','80','retail','0','2022-10-06 21:07:48','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-06 15:08:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650795083300320',2891,'121665078666','50112265','1.00','80','retail','0','2022-10-06 21:07:48','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-06 15:08:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650795812033259',2892,'121665078666','6161101605458','1.00','270','retail','0','2022-10-06 21:07:48','','','','182','Cash',37.24,'270','','','12','','1','2022-10-06 15:08:53','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650796677635713',2893,'121665078666','6973322693936','1.00','1750','retail','0','2022-10-06 21:07:48','','','','1000','Cash',241.38,'1750','','','12','','1','2022-10-06 15:08:53','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650833976393603',2894,'121665079735','6008165007784','1.00','370','retail','0','2022-10-06 22:10:09','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-06 16:10:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650834090332020',2895,'121665079735','6008165007814','1.00','350','retail','0','2022-10-06 22:10:09','','','','317.26','Cash',48.28,'350','','','12','','1','2022-10-06 16:10:13','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650861006303603',2896,'121665085174','6002039005746','1.00','1400','retail','0','2022-10-06 22:55:06','','','','790','Cash',193.10,'1400','','','12','','1','2022-10-06 16:55:30','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650861058635813',2897,'121665085174','6001506011709','1.00','1200','retail','0','2022-10-06 22:55:06','','','','850','Cash',165.52,'1200','','','12','','1','2022-10-06 16:55:30','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650891510303223',2898,'121665089148','082184090473','1.00','4000','retail','0','2022-10-06 23:46:22','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-06 17:48:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650891813811263',2899,'121665089148','082184090473','1.00','4000','retail','0','2022-10-06 23:46:22','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-06 17:48:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650906400332020',2900,'121665089308','5010677025003','1.00','1750','retail','0','2022-10-07 00:10:41','','','','1270','Cash',241.38,'1750','','','12','','1','2022-10-06 18:12:13','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650908862033280',2901,'121665090734','5000289020800','1.00','2500','retail','0','2022-10-07 00:14:47','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-06 18:15:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650910213910263',2902,'121665090924','6161101604550','1.00','400','retail','0','2022-10-07 00:17:01','','','','284','Cash',55.17,'400','','','12','','1','2022-10-06 18:17:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650918370332020',2903,'121665091077','5010103930628','1.00','1550','retail','0','2022-10-07 00:30:37','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-06 18:35:07','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650922833033326',2904,'121665092108','5018907194802','1.00','150','retail','0','2022-10-07 00:38:04','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-06 18:38:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650927322033272',2905,'121665092324','8712000900663','12.00','2760','retail','0','2022-10-07 00:45:45','','','','174','Cash',380.69,'230','','','12','','1','2022-10-06 18:49:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'12','13.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650927450332020',2906,'121665092324','6161101601979','6.00','1500','retail','0','2022-10-07 00:45:45','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-06 18:49:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650933922033226',2907,'121665093079','6161101603324','2.00','500','retail','0','2022-10-07 00:57:10','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-06 18:57:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650934071332203',2908,'121665093079','6161101602938','2.00','500','retail','0','2022-10-07 00:57:10','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-06 18:57:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650934150303223',2909,'121665093079','6161101606011','3.00','660','retail','0','2022-10-07 00:57:10','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-06 18:57:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650934292033243',2910,'121665093079','6161101603379','3.00','750','retail','0','2022-10-07 00:57:10','','','','190.375','Cash',103.45,'250','','','12','','1','2022-10-06 18:57:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650957830615535',2911,'121665093978','6161101603379','1.00','250','retail','0','2022-10-07 01:36:25','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-06 19:37:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650957856383603',2912,'121665093978','6161101603379','1.00','250','retail','0','2022-10-07 01:36:25','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-06 19:37:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216650972090332020',2913,'121665095827','6161101603324','1.00','250','retail','0','2022-10-07 02:00:09','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-06 20:00:12','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651027722033226',2914,'121665097213','5010314750008','1.00','2100','retail','0','2022-10-07 03:33:55','','','','1552','Cash',289.66,'2100','','','12','','1','2022-10-06 21:37:00','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1810.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651027866383603',2915,'121665097213','6161101606011','3.00','660','retail','0','2022-10-07 03:33:55','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-06 21:37:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651028170635013',2916,'121665097213','5018907197803','1.00','100','retail','0','2022-10-07 03:33:55','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-06 21:37:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651028342033282',2917,'121665097213','5449000022752','1.00','250','retail','0','2022-10-07 03:33:55','','','','158','Cash',34.48,'250','','','12','','1','2022-10-06 21:37:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651469502033296',2918,'121665146947','8000530800462','1.00','1600','retail','0','2022-10-07 15:49:15','','','','1050','Cash',220.69,'1600','','','12','','1','2022-10-07 09:50:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651469544033426',2919,'121665146947','90490279','1.00','100','retail','0','2022-10-07 15:49:15','','','','68','Cash',13.79,'100','','','12','','1','2022-10-07 09:50:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651517315635513',2920,'121665151721','6008165007814','9.00','3150','retail','0','2022-10-07 17:08:52','','','','317.26','Cash',434.48,'350','','','12','','1','2022-10-07 11:08:58','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651518725635513',2921,'121665151861','6161101603522','1.00','800','retail','0','2022-10-07 17:11:53','','','','501','Cash',110.34,'800','','','12','','1','2022-10-07 11:11:55','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651518976393603',2922,'121665151861','5449000000286','1.00','250','retail','0','2022-10-07 17:11:53','','','','158','Cash',34.48,'250','','','12','','1','2022-10-07 11:11:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651519122033291',2923,'121665151861','90490279','1.00','100','retail','0','2022-10-07 17:11:53','','','','68','Cash',13.79,'100','','','12','','1','2022-10-07 11:11:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651571962629250',2924,'121665151916','4067700014535','1.00','3400','retail','0','2022-10-07 18:39:57','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-07 12:43:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651587782627250',2925,'121665157389','5000289020800','1.00','2500','retail','0','2022-10-07 19:07:56','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-07 13:10:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651588193518263',2926,'121665157389','50112265','6.00','480','retail','0','2022-10-07 19:07:56','','','','53.33','Cash',66.21,'80','','','12','','1','2022-10-07 13:10:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'6','26.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651588415635513',2927,'121665157389','54493360','2.00','160','retail','0','2022-10-07 19:07:56','','','','53.333','Cash',22.07,'80','','','12','','1','2022-10-07 13:10:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651588590303223',2928,'121665157389','6001452258005','1.00','1600','retail','0','2022-10-07 19:07:56','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-07 13:10:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651588630303223',2929,'121665157389','6001452258005','1.00','1600','retail','0','2022-10-07 19:07:56','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-07 13:10:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651588750303223',2930,'121665157389','6001452258005','1.00','1600','retail','0','2022-10-07 19:07:56','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-07 13:10:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651590413310320',2931,'121665159034','6008165007784','1.00','370','retail','0','2022-10-07 19:10:42','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-07 13:11:01','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651611260303223',2932,'121665159264','6161101602938','1.00','250','retail','0','2022-10-07 19:45:26','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-07 13:45:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651632343102223',2933,'121665161130','6161101602938','1.00','250','retail','0','2022-10-07 20:20:35','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-07 14:24:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651690233610263',2934,'121665163448','5011007003029','1.00','2700','retail','0','2022-10-07 22:01:14','','','','2000','Cash',372.41,'2700','','','12','','1','2022-10-07 16:03:26','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2327.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651690502033209',2935,'121665163448','5000299618073','1.00','2400','retail','0','2022-10-07 22:01:14','','','','1750','Cash',331.03,'2400','','','12','','1','2022-10-07 16:03:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2068.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651691300332020',2936,'121665163448','6161101603324','6.00','1500','retail','0','2022-10-07 22:01:14','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-07 16:03:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651691666635613',2937,'121665163448','6161101606011','6.00','1320','retail','0','2022-10-07 22:01:14','','','','172.833','Cash',182.07,'220','','','12','','1','2022-10-07 16:03:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651691700303223',2938,'121665163448','6001108049582','1.00','1200','retail','0','2022-10-07 22:01:14','','','','641','Cash',165.52,'1200','','','12','','1','2022-10-07 16:03:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651692732033229',2939,'121665163448','50112265','4.00','320','retail','0','2022-10-07 22:01:14','','','','53.33','Cash',44.14,'80','','','12','','1','2022-10-07 16:03:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'4','20.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651725666033626',2940,'121665169407','54491069','1.00','80','retail','0','2022-10-07 22:56:19','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-07 16:57:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651725793715263',2941,'121665169407','6164001199331','1.00','70','retail','0','2022-10-07 22:56:19','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-07 16:57:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651727980303223',2942,'121665172670','6164001199331','2.00','140','retail','0','2022-10-07 22:59:58','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-07 17:00:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651732493310320',2943,'121665172851','6161101602938','1.00','250','retail','0','2022-10-07 23:07:38','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-07 17:10:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651732570303223',2944,'121665172851','6161101603324','1.00','250','retail','0','2022-10-07 23:07:38','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-07 17:10:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651737510007215',2945,'121665173407','5011013100132','1.00','2600','retail','0','2022-10-07 23:15:52','','','','1916','Cash',358.62,'2600','','','12','','1','2022-10-07 17:17:05','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651738410303223',2946,'121665173826','6161101601979','6.00','1500','retail','0','2022-10-07 23:17:22','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-07 17:18:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651762326333603',2947,'121665173881','5010232953994','1.00','600','retail','0','2022-10-07 23:57:13','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-07 17:57:49','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651776983310320',2948,'121665176271','5000267116419','1.00','5300','retail','0','2022-10-08 00:21:39','','','','3870','Cash',731.03,'5300','','','12','','1','2022-10-07 18:23:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651784162033248',2949,'121665177802','5060608740253','1.00','80','retail','0','2022-10-08 00:33:37','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-07 18:33:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651810393310320',2950,'121665178421','50196111','1.00','1500','retail','0','2022-10-08 01:17:19','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-07 19:20:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651813258635813',2951,'121665181228','5000267014005','1.00','1800','retail','0','2022-10-08 01:22:24','','','','1304','Cash',248.28,'1800','','','12','','1','2022-10-07 19:23:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651813436343603',2952,'121665181228','5449000000286','1.00','250','retail','0','2022-10-08 01:22:24','','','','158','Cash',34.48,'250','','','12','','1','2022-10-07 19:23:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651814428635813',2953,'121665181434','6001495062669','1.00','2600','retail','0','2022-10-08 01:24:03','','','','1960','Cash',358.62,'2600','','','12','','1','2022-10-07 19:24:06','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651820752627280',2954,'121665181447','8712000900045','2.00','500','retail','0','2022-10-08 01:34:36','','','','182','Cash',68.97,'250','','','12','','1','2022-10-07 19:36:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651825142033252',2955,'121665182211','6161101601979','1.00','250','retail','0','2022-10-08 01:41:55','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-07 19:43:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651826182033262',2956,'121665182605','6161101606011','1.00','220','retail','0','2022-10-08 01:44:09','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-07 19:44:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651826490303223',2957,'121665182605','6161101603379','1.00','250','retail','0','2022-10-08 01:44:09','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-07 19:44:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651832718635813',2958,'121665182655','8719327068540','1.00','300','retail','0','2022-10-08 01:54:31','','','','225','Cash',41.38,'300','','','12','','1','2022-10-07 19:54:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651840933033326',2959,'121665183284','8712000900045','4.00','1000','retail','0','2022-10-08 02:08:14','','','','182','Cash',137.93,'250','','','12','','1','2022-10-07 20:09:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651853458635813',2960,'121665184174','6161101603379','1.00','250','retail','0','2022-10-08 02:29:21','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-07 20:29:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651853606363603',2961,'121665184174','6161101604703','1.00','250','retail','0','2022-10-08 02:29:21','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-07 20:29:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651859886383603',2962,'121665185364','5000267014005','1.00','1800','retail','0','2022-10-08 02:40:14','','','','1304','Cash',248.28,'1800','','','12','','1','2022-10-07 20:43:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651860136313603',2963,'121665185364','5449000004864','1.00','250','retail','0','2022-10-08 02:40:14','','','','158','Cash',34.48,'250','','','12','','1','2022-10-07 20:43:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651862623310320',2964,'121665186227','5018907194802','1.00','150','retail','0','2022-10-08 02:44:38','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-07 20:44:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651862782033226',2965,'121665186227','90490279','1.00','100','retail','0','2022-10-08 02:44:38','','','','68','Cash',13.79,'100','','','12','','1','2022-10-07 20:44:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651877370332020',2966,'121665187725','5000289020701','1.00','2000','retail','0','2022-10-08 03:09:36','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-07 21:09:59','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651877520332020',2967,'121665187725','50112265','2.00','160','retail','0','2022-10-08 03:09:36','','','','53.33','Cash',22.07,'80','','','12','','1','2022-10-07 21:09:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651877633310320',2968,'121665187725','5018907194802','2.00','300','retail','0','2022-10-08 03:09:36','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-07 21:09:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651877753817263',2969,'121665187725','6161101602938','1.00','250','retail','0','2022-10-08 03:09:36','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-07 21:09:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651878733818263',2970,'121665187800','5000289020800','1.00','2500','retail','0','2022-10-08 03:11:14','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-07 21:11:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651884633814263',2971,'121665188446','5449000014536','1.00','80','retail','0','2022-10-08 03:21:13','','','','49','Cash',11.03,'80','','','12','','1','2022-10-07 21:22:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651884720332020',2972,'121665188446','6161101603522','1.00','800','retail','0','2022-10-08 03:21:13','','','','501','Cash',110.34,'800','','','12','','1','2022-10-07 21:22:33','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651885711033126',2973,'121665188555','6161101602921','6.00','1500','retail','0','2022-10-08 03:23:12','','','','198.45','Cash',206.90,'250','','','12','','1','2022-10-07 21:24:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651885833310320',2974,'121665188555','5449000004864','1.00','250','retail','0','2022-10-08 03:23:12','','','','158','Cash',34.48,'250','','','12','','1','2022-10-07 21:24:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651885920332020',2975,'121665188555','5000289020800','1.00','2500','retail','0','2022-10-08 03:23:12','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-07 21:24:01','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651892820332020',2976,'121665188791','6161101602600','4.00','880','retail','0','2022-10-08 03:34:43','','','','154.95','Cash',121.38,'220','','','12','','1','2022-10-07 21:36:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651894043310320',2977,'121665189398','5000267014609','1.00','1100','retail','0','2022-10-08 03:37:04','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-07 21:39:26','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651894150303223',2978,'121665189398','6161101602938','1.00','250','retail','0','2022-10-08 03:37:04','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-07 21:39:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651894233814263',2979,'121665189398','5018907194802','1.00','150','retail','0','2022-10-08 03:37:04','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-07 21:39:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651904489635913',2980,'121665189567','6001108028044','3.00','750','retail','0','2022-10-08 03:54:08','','','','201','Cash',103.45,'250','','','12','','1','2022-10-07 21:57:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651906340332020',2981,'121665190627','6161101602600','1.00','220','retail','0','2022-10-08 03:57:15','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-07 21:57:17','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651919860332020',2982,'121665190639','6001108028044','3.00','750','retail','0','2022-10-08 04:20:07','','','','201','Cash',103.45,'250','','','12','','1','2022-10-07 22:23:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651919988033826',2983,'121665190639','6161101603324','2.00','500','retail','0','2022-10-08 04:20:07','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-07 22:23:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651920077033726',2984,'121665190639','3155930006015','2.00','500','retail','0','2022-10-08 04:20:07','','','','188','Cash',68.97,'250','','','12','','1','2022-10-07 22:23:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651922000303223',2985,'121665192184','90162602','1.00','230','retail','0','2022-10-08 04:23:21','','','','147','Cash',31.72,'230','','','12','','1','2022-10-07 22:23:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216651938886383603',2986,'121665192205','6161101602051','1.00','550','retail','0','2022-10-08 04:51:29','','','','392','Cash',75.86,'550','','','12','','1','2022-10-07 22:52:15','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652328180303223',2987,'121665232812','5000196006652','1.00','400','retail','0','2022-10-08 15:40:19','','','','310','Cash',55.17,'400','','','12','','1','2022-10-08 09:44:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652419599033926',2988,'121665239333','6164001199010','1.00','100','retail','0','2022-10-08 18:12:39','','','','38','Cash',13.79,'100','','','12','','1','2022-10-08 12:12:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652448003320320',2989,'121665241963','6161101605458','1.00','270','retail','0','2022-10-08 19:00:10','','','','182','Cash',37.24,'270','','','12','','1','2022-10-08 13:00:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652448100303223',2990,'121665241963','6164001199331','1.00','70','retail','0','2022-10-08 19:00:10','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-08 13:00:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652448334635413',2991,'121665244813','6161101605458','1.00','270','retail','0','2022-10-08 19:00:45','','','','182','Cash',37.24,'270','','','12','','1','2022-10-08 13:00:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652448456343603',2992,'121665244813','6164001199331','1.00','70','retail','0','2022-10-08 19:00:45','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-08 13:00:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652477113320320',2993,'121665244852','6161101603522','1.00','800','retail','0','2022-10-08 19:48:31','','','','501','Cash',110.34,'800','','','12','','1','2022-10-08 13:49:26','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652494793414263',2994,'121665249468','6161101603324','4.00','1000','retail','0','2022-10-08 20:18:00','','','','150.45','Cash',137.93,'250','','','12','','1','2022-10-08 14:18:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652520255635513',2995,'121665251955','50112753','1.00','80','retail','0','2022-10-08 21:00:26','','','','56','Cash',11.03,'80','','','12','','1','2022-10-08 15:00:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652555910332020',2996,'121665252032','6161101605465','1.00','800','retail','0','2022-10-08 22:00:00','','','','501','Cash',110.34,'800','','','12','','1','2022-10-08 16:00:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652555995635513',2997,'121665252032','5018907194802','1.00','150','retail','0','2022-10-08 22:00:00','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-08 16:00:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652575500332020',2998,'121665255604','6161101602938','3.00','750','retail','0','2022-10-08 22:32:30','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-08 16:33:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652581956393603',2999,'121665257586','6161101605465','1.00','800','retail','0','2022-10-08 22:43:15','','','','501','Cash',110.34,'800','','','12','','1','2022-10-08 16:45:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652592703320320',3000,'121665258444','6161101601979','6.00','1500','retail','0','2022-10-08 23:01:11','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-08 17:01:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652593222033239',3001,'121665259320','6161101606547','1.00','550','retail','0','2022-10-08 23:02:02','','','','388','Cash',75.86,'550','','','12','','1','2022-10-08 17:02:50','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652595333515263',3002,'121665259371','5000289933292','1.00','950','retail','0','2022-10-08 23:05:33','','','','710','Cash',131.03,'950','','','12','','1','2022-10-08 17:07:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652598963322332',3003,'121665259649','54493360','1.00','80','retail','0','2022-10-08 23:13:14','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 17:14:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652599132033299',3004,'121665259649','5018907194802','4.00','600','retail','0','2022-10-08 23:13:14','','','','74.58','Cash',82.76,'150','','','12','','1','2022-10-08 17:14:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'4','17.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652599190332020',3005,'121665259649','50196166','1.00','600','retail','0','2022-10-08 23:13:14','','','','443','Cash',82.76,'600','','','12','','1','2022-10-08 17:14:57','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652599600033026',3006,'121665259649','54491069','1.00','80','retail','0','2022-10-08 23:13:14','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 17:14:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652599933519263',3007,'121665259649','5018907194802','1.00','150','retail','0','2022-10-08 23:13:14','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-08 17:14:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652601156313603',3008,'121665260098','6161101602938','2.00','500','retail','0','2022-10-08 23:15:15','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-08 17:15:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652607870332020',3009,'121665260119','54491069','1.00','80','retail','0','2022-10-08 23:26:27','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 17:27:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652610656363603',3010,'121665260874','6161101606011','4.00','880','retail','0','2022-10-08 23:31:06','','','','172.833','Cash',121.38,'220','','','12','','1','2022-10-08 17:32:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652616472033261',3011,'121665261636','6161101603522','1.00','800','retail','0','2022-10-08 23:40:47','','','','501','Cash',110.34,'800','','','12','','1','2022-10-08 17:40:52','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652622606635613',3012,'121665261653','5449000131836','1.00','80','retail','0','2022-10-08 23:51:01','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 17:54:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652632006303603',3013,'121665262443','3086120600020','1.00','120','retail','0','2022-10-09 00:06:40','','','','93.86','Cash',16.55,'120','','','12','','1','2022-10-08 18:07:44','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652639800303223',3014,'121665263265','6161101603324','6.00','1500','retail','0','2022-10-09 00:20:30','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-08 18:21:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','20.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652640296635613',3015,'121665263265','6161101601979','4.00','1000','retail','0','2022-10-09 00:20:30','','','','172.75','Cash',137.93,'250','','','12','','1','2022-10-08 18:21:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652643290332020',3016,'121665264069','5010752000420','1.00','750','retail','0','2022-10-09 00:26:31','','','','543','Cash',103.45,'750','','','12','','1','2022-10-08 18:28:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652643903613263',3017,'121665264069','5060608740253','1.00','80','retail','0','2022-10-09 00:26:31','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-08 18:28:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652653133033326',3018,'121665264525','6008165007982','1.00','350','retail','0','2022-10-09 00:42:04','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-08 18:52:40','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652653236323603',3019,'121665264525','6008165007982','1.00','350','retail','0','2022-10-09 00:42:04','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-08 18:52:40','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652672000033026',3020,'121665267172','6161101604550','1.00','400','retail','0','2022-10-09 01:13:29','','','','284','Cash',55.17,'400','','','12','','1','2022-10-08 19:13:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652672083320320',3021,'121665267172','5449000131836','1.00','80','retail','0','2022-10-09 01:13:29','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 19:13:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652674893320320',3022,'121665267486','50196081','1.00','1800','retail','0','2022-10-09 01:18:40','','','','1130','Cash',248.28,'1800','','','12','','1','2022-10-08 19:19:26','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652675206635613',3023,'121665267486','6008165007784','1.00','370','retail','0','2022-10-09 01:18:40','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-08 19:19:26','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652676830303223',3024,'121665267675','5000289020701','1.00','2000','retail','0','2022-10-09 01:21:57','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-08 19:22:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652677033617263',3025,'121665267675','5449000004864','1.00','250','retail','0','2022-10-09 01:21:57','','','','158','Cash',34.48,'250','','','12','','1','2022-10-08 19:22:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652677172033277',3026,'121665267675','5060639129003','1.00','200','retail','0','2022-10-09 01:21:57','','','','153','Cash',27.59,'200','','','12','','1','2022-10-08 19:22:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652694215231621',3027,'121665267750','6161101605465','1.00','800','retail','0','2022-10-09 01:50:21','','','','501','Cash',110.34,'800','','','12','','1','2022-10-08 19:52:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652697136313603',3028,'121665269554','54491069','1.00','80','retail','0','2022-10-09 01:55:14','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-08 19:56:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652701488033826',3029,'121665269813','8719327068540','1.00','300','retail','0','2022-10-09 02:02:29','','','','225','Cash',41.38,'300','','','12','','1','2022-10-08 20:03:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652704596353603',3030,'121665270196','50112265','4.00','320','retail','0','2022-10-09 02:07:39','','','','53.33','Cash',44.14,'80','','','12','','1','2022-10-08 20:09:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216652706063320320',3031,'121665270562','6161101603324','1.00','250','retail','0','2022-10-09 02:10:06','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-08 20:10:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653228282033282',3032,'121665322818','6161101603324','4.00','1000','retail','0','2022-10-09 16:42:22','','','','150.45','Cash',137.93,'250','','','12','','1','2022-10-09 10:44:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653229412635213',3033,'121665322818','6161101606011','2.00','440','retail','0','2022-10-09 16:42:22','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-09 10:44:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653257650303223',3034,'121665322818','6161101130424','1.00','750','retail','0','2022-10-09 17:29:25','','','','642','Cash',103.45,'750','','','12','','1','2022-10-09 11:30:13','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653319246323603',3035,'121665325815','50196166','1.00','600','retail','0','2022-10-09 19:12:10','','','','443','Cash',82.76,'600','','','12','','1','2022-10-09 13:13:15','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653319296136123',3036,'121665325815','6161101604550','1.00','400','retail','0','2022-10-09 19:12:10','','','','284','Cash',55.17,'400','','','12','','1','2022-10-09 13:13:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653350712033205',3037,'121665331996','6161101601979','2.00','500','retail','0','2022-10-09 20:04:32','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-09 14:05:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653376494323066',3038,'121665335113','6161101603324','4.00','1000','retail','0','2022-10-09 20:47:30','','','','150.45','Cash',137.93,'250','','','12','','1','2022-10-09 14:47:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653387143635313',3039,'121665337656','6161101602600','1.00','220','retail','0','2022-10-09 21:05:15','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-09 15:05:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653387577033726',3040,'121665338719','6161101602600','2.00','440','retail','0','2022-10-09 21:05:57','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-09 15:06:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653389444033426',3041,'121665338761','6161101605465','1.00','800','retail','0','2022-10-09 21:10:15','','','','501','Cash',110.34,'800','','','12','','1','2022-10-09 15:11:58','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653390143330320',3042,'121665338761','54491069','1.00','80','retail','0','2022-10-09 21:10:15','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-09 15:11:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653398670332020',3043,'121665339119','6161101604703','6.00','1500','retail','0','2022-10-09 21:25:51','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-09 15:26:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','27.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653399513635313',3044,'121665339119','6161101604703','1.00','250','retail','0','2022-10-09 21:25:51','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-09 15:26:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653408091332203',3045,'121665339961','6001452301862','1.00','1600','retail','0','2022-10-09 21:40:10','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-09 15:41:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653444433033326',3046,'121665340899','6164001199010','1.00','100','retail','0','2022-10-09 22:40:58','','','','38','Cash',13.79,'100','','','12','','1','2022-10-09 16:41:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653444573414263',3047,'121665340899','90490279','1.00','100','retail','0','2022-10-09 22:40:58','','','','68','Cash',13.79,'100','','','12','','1','2022-10-09 16:41:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653475303330320',3048,'121665344463','5000289020800','1.00','2500','retail','0','2022-10-09 23:32:10','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-09 17:39:24','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653481377033726',3049,'121665347966','4067700014535','1.00','3400','retail','0','2022-10-09 23:42:18','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-09 17:45:52','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653494483330320',3050,'121665348353','6161101605465','1.00','800','retail','0','2022-10-10 00:04:08','','','','501','Cash',110.34,'800','','','12','','1','2022-10-09 18:04:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653503356333603',3051,'121665349452','6161101601979','1.00','250','retail','0','2022-10-10 00:18:56','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-09 18:20:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653513496343603',3052,'121665351317','6161100421622','1.00','1400','retail','0','2022-10-10 00:35:50','','','','922','Cash',193.10,'1400','','','12','','1','2022-10-09 18:36:18','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653521292033212',3053,'121665351379','6008165007982','1.00','350','retail','0','2022-10-10 00:48:49','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-09 18:50:01','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653530313510263',3054,'121665352203','8719327068540','1.00','300','retail','0','2022-10-10 01:03:52','','','','225','Cash',41.38,'300','','','12','','1','2022-10-09 19:04:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653536670303223',3055,'121665353087','6161101604550','1.00','400','retail','0','2022-10-10 01:14:36','','','','284','Cash',55.17,'400','','','12','','1','2022-10-09 19:14:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653536762033263',3056,'121665353087','5449000131836','1.00','80','retail','0','2022-10-10 01:14:36','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-09 19:14:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653557236323603',3057,'121665353680','6161101602167','1.00','550','retail','0','2022-10-10 01:52:58','','','','388','Cash',75.86,'550','','','12','','1','2022-10-09 19:53:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653577573517263',3058,'121665355984','5000289020800','1.00','2500','retail','0','2022-10-10 02:23:10','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-09 20:25:16','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653577903517263',3059,'121665355984','50112265','2.00','160','retail','0','2022-10-10 02:23:10','','','','53.33','Cash',22.07,'80','','','12','','1','2022-10-09 20:25:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653587310332020',3060,'121665357971','90490224','1.00','100','retail','0','2022-10-10 02:39:00','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-09 20:39:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653587399033926',3061,'121665357971','40822938','1.00','70','retail','0','2022-10-10 02:39:00','','','','53.333','Cash',9.66,'70','','','12','','1','2022-10-09 20:39:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653590622033226',3062,'121665358743','6161101605465','1.00','800','retail','0','2022-10-10 02:47:26','','','','501','Cash',110.34,'800','','','12','','1','2022-10-09 20:50:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653592313330320',3063,'121665358743','5060608740253','1.00','80','retail','0','2022-10-10 02:47:26','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-09 20:50:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653656743330320',3064,'121665361814','90162602','1.00','230','retail','0','2022-10-10 04:35:22','','','','147','Cash',31.72,'230','','','12','','1','2022-10-09 22:36:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216653657210303223',3065,'121665361814','90162602','1.00','230','retail','0','2022-10-10 04:35:22','','','','147','Cash',31.72,'230','','','12','','1','2022-10-09 22:36:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654041350303223',3066,'121665404107','8712000900663','1.00','230','retail','0','2022-10-10 15:16:25','','','','174','Cash',31.72,'230','','','12','','1','2022-10-10 09:16:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654041500033026',3067,'121665404107','1000','1.00','270','retail','0','2022-10-10 15:16:25','','','','192','Cash',37.24,'270','','','12','','1','2022-10-10 09:16:28','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654041763340320',3068,'121665404107','5060608740253','1.00','80','retail','0','2022-10-10 15:16:25','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-10 09:16:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654041843340320',3069,'121665404107','90162602','1.00','230','retail','0','2022-10-10 15:16:25','','','','147','Cash',31.72,'230','','','12','','1','2022-10-10 09:16:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654089973340320',3070,'121665404190','6161101601979','2.00','500','retail','0','2022-10-10 16:36:58','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-10 10:37:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654090080635013',3071,'121665404190','6161101604406','1.00','250','retail','0','2022-10-10 16:36:58','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-10 10:37:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654090170635013',3072,'121665404190','100','1.00','250','retail','0','2022-10-10 16:36:58','','','','177','Cash',34.48,'250','','','12','','1','2022-10-10 10:37:34','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654162953112263',3073,'121665416241','6161100421561','1.00','950','retail','0','2022-10-10 18:38:25','','','','645','Cash',131.03,'950','','','12','','1','2022-10-10 12:40:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654163053340320',3074,'121665416241','6164001199010','1.00','100','retail','0','2022-10-10 18:38:25','','','','38','Cash',13.79,'100','','','12','','1','2022-10-10 12:40:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654179323119263',3075,'121665416409','6161101602938','1.00','250','retail','0','2022-10-10 19:05:33','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-10 13:05:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654195173115263',3076,'121665417937','6161101602525','1.00','120','retail','0','2022-10-10 19:31:57','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-10 13:32:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654208663218263',3077,'121665419522','4058387002267','1.00','1500','retail','0','2022-10-10 19:54:27','','','','1150','Cash',206.90,'1500','','','12','','1','2022-10-10 13:55:58','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654231916393603',3078,'121665420959','1000','1.00','270','retail','0','2022-10-10 20:33:11','','','','192','Cash',37.24,'270','','','12','','1','2022-10-10 14:33:58','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654239663340320',3079,'121665423239','8712000900045','2.00','500','retail','0','2022-10-10 20:46:30','','','','182','Cash',68.97,'250','','','12','','1','2022-10-10 14:48:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654239780303223',3080,'121665423239','6161101602372','2.00','500','retail','0','2022-10-10 20:46:30','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-10 14:48:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654239890332020',3081,'121665423239','54491069','1.00','80','retail','0','2022-10-10 20:46:30','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-10 14:48:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654248162635213',3082,'121665424114','1000','1.00','270','retail','0','2022-10-10 21:00:41','','','','192','Cash',37.24,'270','','','12','','1','2022-10-10 15:00:44','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654248292635213',3083,'121665424114','5018907194802','1.00','150','retail','0','2022-10-10 21:00:41','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-10 15:00:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654248410332020',3084,'121665424114','50112265','1.00','80','retail','0','2022-10-10 21:00:41','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-10 15:00:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654299292033299',3085,'121665429706','5000289933292','1.00','950','retail','0','2022-10-10 22:26:19','','','','710','Cash',131.03,'950','','','12','','1','2022-10-10 16:27:05','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654299630332020',3086,'121665429706','50112265','1.00','80','retail','0','2022-10-10 22:26:19','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-10 16:27:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654299711033126',3087,'121665429706','5449000131836','1.00','80','retail','0','2022-10-10 22:26:19','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-10 16:27:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654299793219263',3088,'121665429706','5018907194802','1.00','150','retail','0','2022-10-10 22:26:19','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-10 16:27:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654316323316263',3089,'121665430026','6161101605465','1.00','800','retail','0','2022-10-10 22:53:53','','','','501','Cash',110.34,'800','','','12','','1','2022-10-10 16:55:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654319183340320',3090,'121665431750','50112753','1.00','80','retail','0','2022-10-10 22:58:39','','','','56','Cash',11.03,'80','','','12','','1','2022-10-10 16:58:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654319483635313',3091,'121665431923','8000530800783','1.00','1600','retail','0','2022-10-10 22:59:33','','','','1050','Cash',220.69,'1600','','','12','','1','2022-10-10 16:59:36','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654319723340320',3092,'121665431923','5018907194802','1.00','150','retail','0','2022-10-10 22:59:33','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-10 16:59:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654319833635313',3093,'121665431977','6001495062508','1.00','1700','retail','0','2022-10-10 22:59:44','','','','1257.93','Cash',234.48,'1700','','','12','','1','2022-10-10 16:59:46','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654336933316263',3094,'121665431988','6161101602938','1.00','250','retail','0','2022-10-10 23:28:25','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-10 17:35:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654337044033426',3095,'121665431988','6161101601979','1.00','250','retail','0','2022-10-10 23:28:25','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-10 17:35:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654348011033126',3096,'121665434316','6161101603522','1.00','800','retail','0','2022-10-10 23:46:41','','','','501','Cash',110.34,'800','','','12','','1','2022-10-10 17:48:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654367156313603',3097,'121665434897','6161101604703','6.00','1500','retail','0','2022-10-11 00:19:14','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-10 18:21:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','20.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654367533317263',3098,'121665434897','8712000900663','6.00','1380','retail','0','2022-10-11 00:19:14','','','','174','Cash',190.34,'230','','','12','','1','2022-10-10 18:21:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'6','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654389411033126',3099,'121665436908','6161101602600','5.00','1100','retail','0','2022-10-11 00:55:41','','','','154.95','Cash',151.72,'220','','','12','','1','2022-10-10 18:55:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'5','7.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654393772033239',3100,'121665438945','3155930006015','1.00','250','retail','0','2022-10-11 01:02:57','','','','188','Cash',34.48,'250','','','12','','1','2022-10-10 19:04:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654396743340320',3101,'121665439492','6161101604703','2.00','500','retail','0','2022-10-11 01:08:04','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-10 19:08:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654396833340320',3102,'121665439492','6161101603324','1.00','250','retail','0','2022-10-11 01:08:04','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-10 19:08:06','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654418240332020',3103,'121665439687','5018907197803','1.00','100','retail','0','2022-10-11 01:44:04','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-10 19:44:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654418431222532',3104,'121665439687','90490224','1.00','100','retail','0','2022-10-11 01:44:04','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-10 19:44:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654446232324066',3105,'121665444614','5010752000321','1.00','1500','retail','0','2022-10-11 02:30:24','','','','1037','Cash',206.90,'1500','','','12','','1','2022-10-10 20:33:24','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654865358635813',3106,'121665481989','6161101603522','1.00','800','retail','0','2022-10-11 14:10:32','','','','501','Cash',110.34,'800','','','12','','1','2022-10-11 08:10:37','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654865580332020',3107,'121665481989','5018907194802','1.00','150','retail','0','2022-10-11 14:10:32','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-11 08:10:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654865793340320',3108,'121665481989','90162602','1.00','230','retail','0','2022-10-11 14:10:32','','','','147','Cash',31.72,'230','','','12','','1','2022-10-11 08:10:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654866016303603',3109,'121665481989','5060639129003','1.00','200','retail','0','2022-10-11 14:10:32','','','','153','Cash',27.59,'200','','','12','','1','2022-10-11 08:10:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654866310303223',3110,'121665481989','5449000014535','1.00','120','retail','0','2022-10-11 14:10:32','','','','64','Cash',16.55,'120','','','12','','1','2022-10-11 08:10:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654886544420625',3111,'121665486638','40822938','1.00','70','retail','0','2022-10-11 14:44:15','','','','53.333','Cash',9.66,'70','','','12','','1','2022-10-11 08:44:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216654976160303223',3112,'121665497593','5018907197803','1.00','100','retail','0','2022-10-11 17:13:36','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-11 11:13:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655004100635013',3113,'121665497891','6161101604406','1.00','250','retail','0','2022-10-11 18:00:13','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-11 12:01:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655004126313603',3114,'121665497891','6161101604406','1.00','250','retail','0','2022-10-11 18:00:13','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-11 12:01:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655042022033226',3115,'121665504004','5010103930833','1.00','900','retail','0','2022-10-11 19:03:22','','','','653','Cash',124.14,'900','','','12','','1','2022-10-11 13:04:37','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',775.86,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655084436343603',3116,'121665504278','6161101602938','1.00','250','retail','0','2022-10-11 20:14:03','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-11 14:14:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655122610303223',3117,'121665508452','5000289929417','1.00','2000','retail','0','2022-10-11 21:18:56','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-11 15:19:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655122755033526',3118,'121665508452','54491069','1.00','80','retail','0','2022-10-11 21:18:56','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-11 15:19:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655123091635113',3119,'121665508452','5018907194802','1.00','150','retail','0','2022-10-11 21:18:56','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-11 15:19:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655123361635113',3120,'121665508452','54493360','1.00','80','retail','0','2022-10-11 21:18:56','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-11 15:19:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655130821635113',3121,'121665512349','6008165007982','1.00','350','retail','0','2022-10-11 21:31:22','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-11 15:32:04','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655155962033255',3122,'121665513126','6161101603324','1.00','250','retail','0','2022-10-11 22:13:19','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-11 16:13:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655155983350320',3123,'121665513126','6161101603324','1.00','250','retail','0','2022-10-11 22:13:19','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-11 16:13:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''); INSERT INTO `sales_order` VALUES ('1216655156660332020',3124,'121665515612','1000','1.00','270','retail','0','2022-10-11 22:14:41','','','','192','Cash',37.24,'270','','','12','','1','2022-10-11 16:16:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655156811033126',3125,'121665515612','5060608740253','1.00','80','retail','0','2022-10-11 22:14:41','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-11 16:16:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655162350303223',3126,'121665515770','3155930006015','2.00','500','retail','0','2022-10-11 22:24:05','','','','188','Cash',68.97,'250','','','12','','1','2022-10-11 16:24:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655162446343603',3127,'121665515770','6161101604406','1.00','250','retail','0','2022-10-11 22:24:05','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-11 16:24:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655163553350320',3128,'121665516251','6001812011936','1.00','950','retail','0','2022-10-11 22:30:01','','','','700','Cash',131.03,'950','','','12','','1','2022-10-11 16:32:03','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655165743115263',3129,'121665516251','8712000900045','9.00','2250','retail','0','2022-10-11 22:30:01','','','','182','Cash',310.34,'250','','','12','','1','2022-10-11 16:32:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'9','16.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655166011635113',3130,'121665516251','6161101602938','3.00','750','retail','0','2022-10-11 22:30:01','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-11 16:32:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655167472033276',3131,'121665516725','3155930006015','1.00','250','retail','0','2022-10-11 22:32:28','','','','188','Cash',34.48,'250','','','12','','1','2022-10-11 16:32:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655207422033270',3132,'121665516755','6008165007982','1.00','350','retail','0','2022-10-11 23:39:02','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-11 17:40:02','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655209822033226',3133,'121665516755','5449000004864','1.00','250','retail','0','2022-10-11 23:44:27','','','','158','Cash',34.48,'250','','','12','','1','2022-10-11 17:46:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655210670332020',3134,'121665516755','6161101600927','1.00','1900','retail','0','2022-10-11 23:44:27','','','','1417','Cash',262.07,'1900','','','12','','1','2022-10-11 17:46:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655212510303223',3135,'121665521218','6161101603324','2.00','500','retail','0','2022-10-11 23:47:32','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-11 17:47:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655254532635213',3136,'121665521256','54491069','1.00','80','retail','0','2022-10-12 00:58:01','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-11 18:58:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655254682033245',3137,'121665521256','6161101604550','1.00','400','retail','0','2022-10-12 00:58:01','','','','284','Cash',55.17,'400','','','12','','1','2022-10-11 18:58:04','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655254810332020',3138,'121665521256','5449000131836','1.00','80','retail','0','2022-10-12 00:58:01','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-11 18:58:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655277306333603',3139,'121665525485','5018907194802','1.00','150','retail','0','2022-10-12 01:35:31','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-11 19:36:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655283083350320',3140,'121665527794','5010232953994','1.00','600','retail','0','2022-10-12 01:45:08','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-11 19:46:28','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655344242033244',3141,'121665528389','6161101603324','2.00','500','retail','0','2022-10-12 03:27:05','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-11 21:27:08','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655786897635713',3142,'121665576100','6161101606011','6.00','1320','retail','0','2022-10-12 15:44:49','','','','172.833','Cash',182.07,'220','','','12','','1','2022-10-12 09:46:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655792553712263',3143,'121665578771','6161101606011','4.00','880','retail','0','2022-10-12 15:54:15','','','','172.833','Cash',121.38,'220','','','12','','1','2022-10-12 09:55:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655793120303223',3144,'121665579309','90162602','1.00','230','retail','0','2022-10-12 15:55:13','','','','147','Cash',31.72,'230','','','12','','1','2022-10-12 09:55:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655793833033326',3145,'121665579357','6161101606011','1.00','220','retail','0','2022-10-12 15:56:24','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-12 09:56:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655834180303223',3146,'121665579655','5060639129003','1.00','200','retail','0','2022-10-12 17:03:39','','','','153','Cash',27.59,'200','','','12','','1','2022-10-12 11:03:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655939013203326',3147,'121665592238','6161101603522','1.00','800','retail','0','2022-10-12 19:59:12','','','','501','Cash',110.34,'800','','','12','','1','2022-10-12 13:59:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655939199635913',3148,'121665592238','5449000014536','2.00','160','retail','0','2022-10-12 19:59:12','','','','49','Cash',22.07,'80','','','12','','1','2022-10-12 13:59:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655939319635913',3149,'121665592238','5449000131836','1.00','80','retail','0','2022-10-12 19:59:12','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-12 13:59:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655939513350320',3150,'121665592238','50112265','1.00','80','retail','0','2022-10-12 19:59:12','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-12 13:59:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655995493350320',3151,'121665594803','6161101606011','1.00','220','retail','0','2022-10-12 21:33:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-12 15:33:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216655996279635913',3152,'121665594803','50112753','1.00','80','retail','0','2022-10-12 21:33:47','','','','56','Cash',11.03,'80','','','12','','1','2022-10-12 15:33:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656016176313603',3153,'121665599631','089540448978','1.00','2600','retail','0','2022-10-12 22:07:45','','','','1970','Cash',358.62,'2600','','','12','','1','2022-10-12 16:08:26','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656016646363603',3154,'121665599631','5449000000286','1.00','250','retail','0','2022-10-12 22:07:45','','','','158','Cash',34.48,'250','','','12','','1','2022-10-12 16:08:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656017313017263',3155,'121665601707','6161101606011','6.00','1320','retail','0','2022-10-12 22:08:51','','','','172.833','Cash',182.07,'220','','','12','','1','2022-10-12 16:10:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656018455033526',3156,'121665601821','8712000900045','2.00','500','retail','0','2022-10-12 22:11:17','','','','182','Cash',68.97,'250','','','12','','1','2022-10-12 16:16:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656018580332020',3157,'121665601821','6161101604703','2.00','500','retail','0','2022-10-12 22:11:17','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-12 16:16:13','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656018686326068',3158,'121665601821','90162602','2.00','460','retail','0','2022-10-12 22:11:17','','','','147','Cash',63.45,'230','','','12','','1','2022-10-12 16:16:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656018772033281',3159,'121665601821','6973322693936','1.00','1750','retail','0','2022-10-12 22:11:17','','','','1000','Cash',241.38,'1750','','','12','','1','2022-10-12 16:16:13','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656024233012223',3160,'121665602174','6161101601979','1.00','250','retail','0','2022-10-12 22:20:24','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-12 16:21:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656040990303223',3161,'121665602478','6161101604703','2.00','500','retail','0','2022-10-12 22:50:35','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-12 16:50:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656042340332020',3162,'121665602478','5018907194802','1.00','150','retail','0','2022-10-12 22:50:35','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-12 16:50:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656054720332020',3163,'121665604239','6008165007982','1.00','350','retail','0','2022-10-12 23:11:12','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-12 17:11:52','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656055166313603',3164,'121665605514','6161101604406','1.00','250','retail','0','2022-10-12 23:11:57','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-12 17:14:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656067106313603',3165,'121665605647','6161101601979','1.00','250','retail','0','2022-10-12 23:31:57','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-12 17:32:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656067176313603',3166,'121665605647','6161101602921','1.00','250','retail','0','2022-10-12 23:31:57','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-12 17:32:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656077736373603',3167,'121665606724','6001495062508','1.00','1700','retail','0','2022-10-12 23:49:34','','','','1257.93','Cash',234.48,'1700','','','12','','1','2022-10-12 17:51:45','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656080210635013',3168,'121665607906','6161101604703','1.00','250','retail','0','2022-10-12 23:53:44','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-12 17:53:53','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656080240332020',3169,'121665607906','6161101604703','1.00','250','retail','0','2022-10-12 23:53:44','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-12 17:53:53','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656081673360320',3170,'121665608034','8712000900045','2.00','500','retail','0','2022-10-12 23:56:08','','','','182','Cash',68.97,'250','','','12','','1','2022-10-12 17:56:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656102400303223',3171,'121665610129','5000196006652','1.00','400','retail','0','2022-10-13 00:30:40','','','','310','Cash',55.17,'400','','','12','','1','2022-10-12 18:30:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656134283114263',3172,'121665610244','8712000900045','2.00','500','retail','0','2022-10-13 01:23:49','','','','182','Cash',68.97,'250','','','12','','1','2022-10-12 19:23:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656134470303223',3173,'121665613433','6008165007784','1.00','370','retail','0','2022-10-13 01:24:31','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-12 19:24:36','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656134572033243',3174,'121665613433','1000','1.00','270','retail','0','2022-10-13 01:24:31','','','','192','Cash',37.24,'270','','','12','','1','2022-10-12 19:24:36','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656134715023632',3175,'121665613433','54493360','1.00','80','retail','0','2022-10-13 01:24:31','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-12 19:24:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656156550303223',3176,'121665613477','1000','1.00','270','retail','0','2022-10-13 02:00:55','','','','192','Cash',37.24,'270','','','12','','1','2022-10-12 20:02:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656185953115263',3177,'121665615777','5449000188342','1.00','100','retail','0','2022-10-13 02:49:56','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-12 20:49:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656754230332020',3178,'121665675310','8712000900663','10.00','2300','retail','0','2022-10-13 18:37:30','','','','174','Cash',317.24,'230','','','12','','1','2022-10-13 12:38:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'10','18.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656754507635713',3179,'121665675310','5000267125046','1.00','4600','retail','0','2022-10-13 18:37:30','','','','3164','Cash',634.48,'4600','','','12','','1','2022-10-13 12:38:55','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3965.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656759703719263',3180,'121665675961','5010103930628','1.00','1550','retail','0','2022-10-13 18:46:24','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-13 12:53:23','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656759830332020',3181,'121665675961','6161101606011','12.00','2640','retail','0','2022-10-13 18:46:24','','','','172.833','Cash',364.14,'220','','','12','','1','2022-10-13 12:53:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'12','12.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656849520303223',3182,'121665676404','6161101601979','2.00','500','retail','0','2022-10-13 21:15:53','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-13 15:18:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656868270332020',3183,'121665686786','6161101606011','12.00','2640','retail','0','2022-10-13 21:48:09','','','','172.833','Cash',364.14,'220','','','12','','1','2022-10-13 15:48:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'12','12.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656868372533268',3184,'121665686786','5010103930628','1.00','1550','retail','0','2022-10-13 21:48:09','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-13 15:48:13','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656868556353603',3185,'121665686786','8712000900045','2.00','500','retail','0','2022-10-13 21:48:09','','','','182','Cash',68.97,'250','','','12','','1','2022-10-13 15:48:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656868683012223',3186,'121665686786','6161101602372','1.00','250','retail','0','2022-10-13 21:48:09','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-13 15:48:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656868899033926',3187,'121665686786','1000','1.00','270','retail','0','2022-10-13 21:48:09','','','','192','Cash',37.24,'270','','','12','','1','2022-10-13 15:48:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656882550332020',3188,'121665686895','6161101601979','2.00','500','retail','0','2022-10-13 22:11:22','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-13 16:11:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656882823812263',3189,'121665686895','50112753','1.00','80','retail','0','2022-10-13 22:11:22','','','','56','Cash',11.03,'80','','','12','','1','2022-10-13 16:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656893644033426',3190,'121665689353','6002039005746','1.00','1400','retail','0','2022-10-13 22:30:03','','','','790','Cash',193.10,'1400','','','12','','1','2022-10-13 16:33:32','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656893732033239',3191,'121665689353','4058387000317','1.00','1550','retail','0','2022-10-13 22:30:03','','','','1150','Cash',213.79,'1550','','','12','','1','2022-10-13 16:33:32','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656893890332020',3192,'121665689353','5449000188342','1.00','100','retail','0','2022-10-13 22:30:03','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-13 16:33:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656894032033249',3193,'121665689353','5018907194802','1.00','150','retail','0','2022-10-13 22:30:03','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-13 16:33:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656917250332020',3194,'121665690529','6008165007982','1.00','350','retail','0','2022-10-13 23:09:25','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-13 17:13:12','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656917653917263',3195,'121665690529','8712000900045','1.00','250','retail','0','2022-10-13 23:09:25','','','','182','Cash',34.48,'250','','','12','','1','2022-10-13 17:13:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656926183360320',3196,'121665691994','6161101605458','1.00','270','retail','0','2022-10-13 23:23:39','','','','182','Cash',37.24,'270','','','12','','1','2022-10-13 17:29:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656932199635913',3197,'121665692973','6008165007784','1.00','370','retail','0','2022-10-13 23:37:50','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-13 17:37:57','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656934399635913',3198,'121665692973','5449000028976','1.00','150','retail','0','2022-10-13 23:37:50','','','','216','Cash',20.69,'150','','','12','','1','2022-10-13 17:37:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656934690390462',3199,'121665692973','716165177364','1.00','250','retail','0','2022-10-13 23:37:50','','','','130','Cash',34.48,'250','','','12','','1','2022-10-13 17:37:57','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656975236323603',3200,'121665694005','5449000131836','1.00','80','retail','0','2022-10-14 00:45:51','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-13 18:45:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656975390303223',3201,'121665694005','54491069','1.00','80','retail','0','2022-10-14 00:45:51','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-13 18:45:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656975513360320',3202,'121665694005','6161101604550','1.00','400','retail','0','2022-10-14 00:45:51','','','','284','Cash',55.17,'400','','','12','','1','2022-10-13 18:45:57','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656992612626290',3203,'121665697558','5000267014609','1.00','1100','retail','0','2022-10-14 01:18:26','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-13 19:20:10','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656993129635913',3204,'121665697558','1000','1.00','270','retail','0','2022-10-14 01:18:26','','','','192','Cash',37.24,'270','','','12','','1','2022-10-13 19:20:10','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656994670303223',3205,'121665697558','5449000028921','1.00','150','retail','0','2022-10-14 01:18:26','','','','103','Cash',20.69,'150','','','12','','1','2022-10-13 19:20:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216656995066033626',3206,'121665697558','5449000014536','1.00','80','retail','0','2022-10-14 01:18:26','','','','49','Cash',11.03,'80','','','12','','1','2022-10-13 19:20:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657015236323603',3207,'121665699679','5060608740253','1.00','80','retail','0','2022-10-14 01:52:14','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-13 19:52:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657015342033251',3208,'121665699679','5449000188342','1.00','100','retail','0','2022-10-14 01:52:14','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-13 19:52:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657593792033239',3209,'121665759360','5060608740253','1.00','80','retail','0','2022-10-14 17:56:20','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-14 11:56:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657634960303223',3210,'121665763487','1000','1.00','270','retail','0','2022-10-14 19:04:56','','','','192','Cash',37.24,'270','','','12','','1','2022-10-14 13:15:04','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657734896383603',3211,'121665773479','6161101605458','1.00','270','retail','0','2022-10-14 21:51:37','','','','182','Cash',37.24,'270','','','12','','1','2022-10-14 15:53:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657734963714263',3212,'121665773479','6164001199331','1.00','70','retail','0','2022-10-14 21:51:37','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-14 15:53:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657737488033826',3213,'121665773615','6161101603522','1.00','800','retail','0','2022-10-14 21:55:49','','','','501','Cash',110.34,'800','','','12','','1','2022-10-14 15:58:02','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657739727635713',3214,'121665773884','1000','1.00','270','retail','0','2022-10-14 21:59:33','','','','192','Cash',37.24,'270','','','12','','1','2022-10-14 15:59:35','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657741160303223',3215,'121665773976','6161101605465','1.00','800','retail','0','2022-10-14 22:01:56','','','','501','Cash',110.34,'800','','','12','','1','2022-10-14 16:04:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657747677033726',3216,'121665774249','8719327068540','1.00','300','retail','0','2022-10-14 22:12:47','','','','225','Cash',41.38,'300','','','12','','1','2022-10-14 16:12:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657758673671021',3217,'121665774771','6161101602921','3.00','750','retail','0','2022-10-14 22:31:08','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-14 16:31:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','27.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657780920332020',3218,'121665775903','6161100421615','1.00','500','retail','0','2022-10-14 23:08:12','','','','310','Cash',68.97,'500','','','12','','1','2022-10-14 17:08:17','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657784666033626',3219,'121665778099','5449000028976','1.00','150','retail','0','2022-10-14 23:15:15','','','','103','Cash',20.69,'150','','','12','','1','2022-10-14 17:17:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657784750004217',3220,'121665778099','6008165007784','1.00','370','retail','0','2022-10-14 23:15:15','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-14 17:17:22','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657785033715263',3221,'121665778099','5449000014536','1.00','80','retail','0','2022-10-14 23:15:15','','','','49','Cash',11.03,'80','','','12','','1','2022-10-14 17:17:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657785143715263',3222,'121665778099','716165177364','1.00','250','retail','0','2022-10-14 23:15:15','','','','130','Cash',34.48,'250','','','12','','1','2022-10-14 17:17:22','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657787492033278',3223,'121665778737','90490224','1.00','100','retail','0','2022-10-14 23:19:26','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-14 17:19:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657787587635713',3224,'121665778737','6161101601979','1.00','250','retail','0','2022-10-14 23:19:26','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-14 17:19:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657787660303223',3225,'121665778737','6161101602372','1.00','250','retail','0','2022-10-14 23:19:26','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-14 17:19:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657790873370320',3226,'121665778770','6161101602600','3.00','660','retail','0','2022-10-14 23:24:48','','','','154.95','Cash',91.03,'220','','','12','','1','2022-10-14 17:24:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','24.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657792917635713',3227,'121665779091','5000196006652','1.00','400','retail','0','2022-10-14 23:28:12','','','','310','Cash',55.17,'400','','','12','','1','2022-10-14 17:28:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657793622033239',3228,'121665779295','5060608740253','1.00','80','retail','0','2022-10-14 23:29:23','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-14 17:29:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657805088033826',3229,'121665780172','6161101602600','4.00','880','retail','0','2022-10-14 23:48:29','','','','154.95','Cash',121.38,'220','','','12','','1','2022-10-14 17:48:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','21.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657808690332020',3230,'121665780515','6001496011772','1.00','750','retail','0','2022-10-14 23:54:51','','','','544','Cash',103.45,'750','','','12','','1','2022-10-14 17:54:53','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657808913818263',3231,'121665780515','5449000131836','1.00','80','retail','0','2022-10-14 23:54:51','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-14 17:54:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657828820303223',3232,'121665780895','8712000900663','1.00','230','retail','0','2022-10-15 00:28:22','','','','174','Cash',31.72,'230','','','12','','1','2022-10-14 18:28:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657829010332020',3233,'121665780895','90162602','1.00','230','retail','0','2022-10-15 00:28:22','','','','147','Cash',31.72,'230','','','12','','1','2022-10-14 18:28:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657831108635813',3234,'121665782908','50196166','1.00','600','retail','0','2022-10-15 00:32:06','','','','443','Cash',82.76,'600','','','12','','1','2022-10-14 18:32:12','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657831177033726',3235,'121665782908','5060608740253','1.00','80','retail','0','2022-10-15 00:32:06','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-14 18:32:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657831260303223',3236,'121665782908','5018907197803','1.00','100','retail','0','2022-10-15 00:32:06','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-14 18:32:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657837913370320',3237,'121665783526','5018907194802','1.00','150','retail','0','2022-10-15 00:43:12','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-14 18:43:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657850863370320',3238,'121665783795','6161101601979','2.00','500','retail','0','2022-10-15 01:05:12','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-14 19:05:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','39.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657851000332020',3239,'121665783795','6161101603379','1.00','250','retail','0','2022-10-15 01:05:12','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-14 19:05:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657851113370320',3240,'121665783795','6161101602372','1.00','250','retail','0','2022-10-15 01:05:12','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-14 19:05:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657855872033255',3241,'121665785116','8712000900663','1.00','230','retail','0','2022-10-15 01:13:22','','','','174','Cash',31.72,'230','','','12','','1','2022-10-14 19:13:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657856018635813',3242,'121665785116','6161101603379','1.00','250','retail','0','2022-10-15 01:13:22','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-14 19:13:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657858506353603',3243,'121665785607','6161101602600','2.00','440','retail','0','2022-10-15 01:17:39','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-14 19:17:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657858582033285',3244,'121665785607','6161101604703','1.00','250','retail','0','2022-10-15 01:17:39','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-14 19:17:43','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657870012033207',3245,'121665786993','5000196006652','1.00','400','retail','0','2022-10-15 01:36:42','','','','310','Cash',55.17,'400','','','12','','1','2022-10-14 19:37:09','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657888142033288',3246,'121665788711','5449000188342','1.00','100','retail','0','2022-10-15 02:06:54','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-14 20:07:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657915450303223',3247,'121665791481','6161101605458','2.00','540','retail','0','2022-10-15 02:52:26','','','','182','Cash',74.48,'270','','','12','','1','2022-10-14 20:57:53','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657935400033026',3248,'121665791874','1000','1.00','270','retail','0','2022-10-15 03:25:40','','','','192','Cash',37.24,'270','','','12','','1','2022-10-14 21:25:44','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657949293370320',3249,'121665793545','6008165007784','1.00','370','retail','0','2022-10-15 03:49:01','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-14 21:52:42','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657949373919263',3250,'121665793545','6161101603379','1.00','250','retail','0','2022-10-15 03:49:01','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-14 21:52:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657949400303223',3251,'121665793545','6161101602921','1.00','250','retail','0','2022-10-15 03:49:01','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-14 21:52:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657981259635913',3252,'121665795163','6164001199331','1.00','70','retail','0','2022-10-15 04:42:15','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-14 22:42:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216657981343370320',3253,'121665795163','5449000188342','1.00','100','retail','0','2022-10-15 04:42:15','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-14 22:42:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658393522033226',3254,'121665838309','8712000900045','4.00','1000','retail','0','2022-10-15 16:09:13','','','','182','Cash',137.93,'250','','','12','','1','2022-10-15 10:09:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','20.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658425424635413',3255,'121665840435','6161101603379','6.00','1500','retail','0','2022-10-15 17:05:07','','','','190.375','Cash',206.90,'250','','','12','','1','2022-10-15 11:08:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','21.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658425562033252',3256,'121665840435','6161101604703','6.00','1500','retail','0','2022-10-15 17:05:07','','','','150.45','Cash',206.90,'250','','','12','','1','2022-10-15 11:08:18','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','17.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658427066303603',3257,'121665840435','6161101603379','1.00','250','retail','0','2022-10-15 17:05:07','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-15 11:08:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658462373380320',3258,'121665846206','5018907197803','1.00','100','retail','0','2022-10-15 18:04:48','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-15 12:08:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658462800033026',3259,'121665846206','6161101603379','1.00','250','retail','0','2022-10-15 18:04:48','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-15 12:08:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658462876383603',3260,'121665846206','50196166','1.00','600','retail','0','2022-10-15 18:04:48','','','','443','Cash',82.76,'600','','','12','','1','2022-10-15 12:08:24','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658491846383603',3261,'121665846506','6161101601979','3.00','750','retail','0','2022-10-15 18:53:56','','','','172.75','Cash',103.45,'250','','','12','','1','2022-10-15 12:55:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','37.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658492364635413',3262,'121665846506','5010103930628','1.00','1550','retail','0','2022-10-15 18:53:56','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-15 12:55:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658512353512263',3263,'121665849329','6161101603379','1.00','250','retail','0','2022-10-15 19:27:16','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-15 13:27:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658548945635513',3264,'121665852917','50196166','1.00','600','retail','0','2022-10-15 20:28:27','','','','443','Cash',82.76,'600','','','12','','1','2022-10-15 14:28:40','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658549070303223',3265,'121665852917','5060608740253','2.00','160','retail','0','2022-10-15 20:28:27','','','','41.82','Cash',22.07,'80','','','12','','1','2022-10-15 14:28:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658564611033126',3266,'121665854922','6161101601979','2.00','500','retail','0','2022-10-15 20:54:55','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-15 14:54:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658564843514263',3267,'121665854922','6161101604406','1.00','250','retail','0','2022-10-15 20:54:55','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-15 14:54:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658564942033246',3268,'121665854922','90162602','1.00','230','retail','0','2022-10-15 20:54:55','','','','147','Cash',31.72,'230','','','12','','1','2022-10-15 14:54:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658565150303223',3269,'121665856499','6008165007685','1.00','270','retail','0','2022-10-15 20:55:16','','','','251.5','Cash',37.24,'270','','','12','','1','2022-10-15 14:57:09','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658566480303223',3270,'121665856631','8712000900045','3.00','750','retail','0','2022-10-15 20:57:29','','','','182','Cash',103.45,'250','','','12','','1','2022-10-15 14:57:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','16.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658568260303223',3271,'121665856666','8712000900045','2.00','500','retail','0','2022-10-15 21:02:09','','','','182','Cash',68.97,'250','','','12','','1','2022-10-15 15:02:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658568755635513',3272,'121665856666','6001108028044','2.00','500','retail','0','2022-10-15 21:02:09','','','','201','Cash',68.97,'250','','','12','','1','2022-10-15 15:02:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658568976393603',3273,'121665856666','5018907194802','1.00','150','retail','0','2022-10-15 21:02:09','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-15 15:02:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658569290332020',3274,'121665856666','5449000061478','2.00','360','retail','0','2022-10-15 21:02:09','','','','84','Cash',49.66,'180','','','12','','1','2022-10-15 15:02:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658581155033526',3275,'121665856944','080432400432','1.00','4350','retail','0','2022-10-15 21:22:05','','','','3250','Cash',600.00,'4350','','','12','','1','2022-10-15 15:22:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3750.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658581256323603',3276,'121665856944','5018907194802','1.00','150','retail','0','2022-10-15 21:22:05','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-15 15:22:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658583013380320',3277,'121665858217','4058387002267','1.00','1500','retail','0','2022-10-15 21:25:01','','','','1150','Cash',206.90,'1500','','','12','','1','2022-10-15 15:33:19','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658594516353603',3278,'121665859445','5060639129003','1.00','200','retail','0','2022-10-15 21:44:12','','','','153','Cash',27.59,'200','','','12','','1','2022-10-15 15:44:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658594683514263',3279,'121665859459','5000196006652','1.00','400','retail','0','2022-10-15 21:45:09','','','','310','Cash',55.17,'400','','','12','','1','2022-10-15 15:46:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658595096303603',3280,'121665859459','5449000028921','1.00','150','retail','0','2022-10-15 21:45:09','','','','103','Cash',20.69,'150','','','12','','1','2022-10-15 15:46:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658623213380320',3281,'121665862208','6161101605458','1.00','270','retail','0','2022-10-15 22:32:01','','','','182','Cash',37.24,'270','','','12','','1','2022-10-15 16:33:41','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658624300033026',3282,'121665862422','5449000188342','1.00','100','retail','0','2022-10-15 22:33:51','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-15 16:34:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658649888033826',3283,'121665862488','5010752000420','1.00','750','retail','0','2022-10-15 23:16:29','','','','543','Cash',103.45,'750','','','12','','1','2022-10-15 17:17:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658669473619263',3284,'121665865028','6001496011772','1.00','750','retail','0','2022-10-15 23:49:26','','','','544','Cash',103.45,'750','','','12','','1','2022-10-15 17:49:55','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658669606635613',3285,'121665865028','54491069','2.00','160','retail','0','2022-10-15 23:49:26','','','','53.333','Cash',22.07,'80','','','12','','1','2022-10-15 17:49:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658669666033626',3286,'121665865028','5449000131836','1.00','80','retail','0','2022-10-15 23:49:26','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-15 17:49:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658671033033326',3287,'121665866996','5000267013602','1.00','2200','retail','0','2022-10-15 23:51:44','','','','1612','Cash',303.45,'2200','','','12','','1','2022-10-15 17:51:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658673046303603',3288,'121665867163','1000','1.00','270','retail','0','2022-10-15 23:55:04','','','','192','Cash',37.24,'270','','','12','','1','2022-10-15 17:55:07','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658683903613263',3289,'121665867308','5010103930628','1.00','1550','retail','0','2022-10-16 00:20:37','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-15 18:20:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658684060332020',3290,'121665867308','8712000900663','6.00','1380','retail','0','2022-10-16 00:20:37','','','','174','Cash',190.34,'230','','','12','','1','2022-10-15 18:20:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',1189.66,'','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658684542202003',3291,'121665867308','54493360','1.00','80','retail','0','2022-10-16 00:20:37','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-15 18:20:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658684630303223',3292,'121665867308','5449000014536','2.00','160','retail','0','2022-10-16 00:20:37','','','','49','Cash',22.07,'80','','','12','','1','2022-10-15 18:20:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658688556836123',3293,'121665868846','5000267014609','1.00','1100','retail','0','2022-10-16 00:21:18','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-15 18:24:28','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658688588033826',3294,'121665868846','5449000028921','1.00','150','retail','0','2022-10-16 00:21:18','','','','103','Cash',20.69,'150','','','12','','1','2022-10-15 18:24:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658688723618263',3295,'121665868846','1000','1.00','270','retail','0','2022-10-16 00:21:18','','','','192','Cash',37.24,'270','','','12','','1','2022-10-15 18:24:28','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658688770332020',3296,'121665868846','6008165007982','1.00','350','retail','0','2022-10-16 00:21:18','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-15 18:24:28','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658690816635613',3297,'121665869069','8712000900045','2.00','500','retail','0','2022-10-16 00:25:05','','','','182','Cash',68.97,'250','','','12','','1','2022-10-15 18:26:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658690966635613',3298,'121665869069','6161101604703','1.00','250','retail','0','2022-10-16 00:25:05','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-15 18:26:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658691040332020',3299,'121665869069','5449000014536','1.00','80','retail','0','2022-10-16 00:25:05','','','','49','Cash',11.03,'80','','','12','','1','2022-10-15 18:26:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658692813380320',3300,'121665869270','8712000900663','3.00','690','retail','0','2022-10-16 00:28:01','','','','174','Cash',95.17,'230','','','12','','1','2022-10-15 18:28:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658692960332020',3301,'121665869286','6161101604406','1.00','250','retail','0','2022-10-16 00:28:17','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-15 18:28:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658695792033259',3302,'121665869464','6161101601979','2.00','500','retail','0','2022-10-16 00:33:08','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-15 18:33:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658695880332020',3303,'121665869464','6161101603324','2.00','500','retail','0','2022-10-16 00:33:08','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-15 18:33:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658703213380320',3304,'121665869627','50112265','2.00','160','retail','0','2022-10-16 00:45:22','','','','53.33','Cash',22.07,'80','','','12','','1','2022-10-15 18:45:24','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658704143714263',3305,'121665870326','5000267107776','2.00','15400','retail','0','2022-10-16 00:47:39','','','','5685','Cash',2124.14,'7700','','','12','','1','2022-10-15 18:48:23','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',13275.86,'','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658717977635713',3306,'121665870558','6008165007784','1.00','370','retail','0','2022-10-16 01:09:58','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-15 19:11:21','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658724055033526',3307,'121665871883','1000','1.00','270','retail','0','2022-10-16 01:20:05','','','','192','Cash',37.24,'270','','','12','','1','2022-10-15 19:20:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658725603380320',3308,'121665872409','8712000900045','1.00','250','retail','0','2022-10-16 01:22:41','','','','182','Cash',34.48,'250','','','12','','1','2022-10-15 19:22:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658753646363603',3309,'121665872564','6161101602921','6.00','1500','retail','0','2022-10-16 02:09:44','','','','198.45','Cash',206.90,'250','','','12','','1','2022-10-15 20:09:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','23.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658753746373603',3310,'121665872564','6161101602600','6.00','1320','retail','0','2022-10-16 02:09:44','','','','154.95','Cash',182.07,'220','','','12','','1','2022-10-15 20:09:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','15.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658753833713263',3311,'121665872564','6161101604703','1.00','250','retail','0','2022-10-16 02:09:44','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-15 20:09:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658807711033126',3312,'121665875548','6164001199331','1.00','70','retail','0','2022-10-16 03:40:00','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-15 21:40:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658807990332020',3313,'121665875548','1000','1.00','270','retail','0','2022-10-16 03:40:00','','','','192','Cash',37.24,'270','','','12','','1','2022-10-15 21:40:06','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658811042033211',3314,'121665880807','50196111','1.00','1500','retail','0','2022-10-16 03:48:23','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-15 21:48:41','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658811243380320',3315,'121665880807','5449000000286','1.00','250','retail','0','2022-10-16 03:48:23','','','','158','Cash',34.48,'250','','','12','','1','2022-10-15 21:48:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658811396333603',3316,'121665880807','5449000014536','1.00','80','retail','0','2022-10-16 03:48:23','','','','49','Cash',11.03,'80','','','12','','1','2022-10-15 21:48:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658812153380320',3317,'121665880807','54491069','1.00','80','retail','0','2022-10-16 03:48:23','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-15 21:48:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658813023813263',3318,'121665880807','50196166','1.00','600','retail','0','2022-10-16 03:48:23','','','','443','Cash',82.76,'600','','','12','','1','2022-10-15 21:48:41','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658820633380320',3319,'121665881323','5018907197803','4.00','400','retail','0','2022-10-16 04:01:04','','','','44.58','Cash',55.17,'100','','','12','','1','2022-10-15 22:01:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'4','25.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216658854952033245',3320,'121665883805','6161100421509','1.00','1250','retail','0','2022-10-16 04:58:16','','','','787','Cash',172.41,'1250','','','12','','1','2022-10-15 22:58:30','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1077.59,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659234072033243',3321,'121665923385','6161101606011','1.00','220','retail','0','2022-10-16 15:30:07','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-16 09:30:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659266700332020',3322,'121665923411','6161101605465','1.00','800','retail','0','2022-10-16 16:24:30','','','','501','Cash',110.34,'800','','','12','','1','2022-10-16 10:24:49','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659267016303603',3323,'121665926690','5449000028921','1.00','150','retail','0','2022-10-16 16:25:08','','','','103','Cash',20.69,'150','','','12','','1','2022-10-16 10:26:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659267080303223',3324,'121665926690','5449000014536','1.00','80','retail','0','2022-10-16 16:25:08','','','','49','Cash',11.03,'80','','','12','','1','2022-10-16 10:26:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659307540303223',3325,'121665930335','8712000900045','1.00','250','retail','0','2022-10-16 17:32:34','','','','182','Cash',34.48,'250','','','12','','1','2022-10-16 11:32:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659310173310263',3326,'121665930765','6161101602372','2.00','500','retail','0','2022-10-16 17:36:58','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-16 11:38:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659346030303223',3327,'121665931104','6161101602372','1.00','250','retail','0','2022-10-16 18:36:44','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-16 12:38:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659411243411263',3328,'121665934682','5449000188342','1.00','100','retail','0','2022-10-16 20:25:25','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-16 14:25:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659431194635413',3329,'121665941129','5060608740253','1.00','80','retail','0','2022-10-16 20:58:39','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-16 14:58:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659466803390320',3330,'121665943125','6008165007784','1.00','370','retail','0','2022-10-16 21:58:09','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-16 15:58:50','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659466884635413',3331,'121665943125','5449000028976','1.00','150','retail','0','2022-10-16 21:58:09','','','','103','Cash',20.69,'150','','','12','','1','2022-10-16 15:58:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659470610332020',3332,'121665946731','5449000028921','1.00','150','retail','0','2022-10-16 22:04:22','','','','103','Cash',20.69,'150','','','12','','1','2022-10-16 16:05:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659472022033226',3333,'121665947110','8719327068540','1.00','300','retail','0','2022-10-16 22:06:42','','','','225','Cash',41.38,'300','','','12','','1','2022-10-16 16:06:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659500573510263',3334,'121665947211','6973322690362','1.00','1750','retail','0','2022-10-16 22:54:17','','','','1000','Cash',241.38,'1750','','','12','','1','2022-10-16 16:55:47','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659507556353603',3335,'121665950149','6161101603379','1.00','250','retail','0','2022-10-16 23:05:55','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-16 17:09:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659515810303223',3336,'121665950987','6161101602921','2.00','500','retail','0','2022-10-16 23:19:41','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-16 17:23:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659518115635513',3337,'121665951807','5449000022752','1.00','250','retail','0','2022-10-16 23:23:31','','','','158','Cash',34.48,'250','','','12','','1','2022-10-16 17:24:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659521159520125',3338,'121665951853','6161101605458','1.00','270','retail','0','2022-10-16 23:28:56','','','','182','Cash',37.24,'270','','','12','','1','2022-10-16 17:29:00','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659521353390320',3339,'121665951853','5060608740253','1.00','80','retail','0','2022-10-16 23:28:56','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-16 17:29:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659530332033203',3340,'121665952507','6161101605458','1.00','270','retail','0','2022-10-16 23:43:54','','','','182','Cash',37.24,'270','','','12','','1','2022-10-16 17:43:57','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659534992202003',3341,'121665953038','6161101602372','1.00','250','retail','0','2022-10-16 23:51:40','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-16 17:52:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659548406343603',3342,'121665953562','5449000188342','1.00','100','retail','0','2022-10-17 00:14:01','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-16 18:19:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659555213390320',3343,'121665955149','1000','1.00','270','retail','0','2022-10-17 00:25:22','','','','192','Cash',37.24,'270','','','12','','1','2022-10-16 18:26:05','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659565253515263',3344,'121665955566','6161101602921','2.00','500','retail','0','2022-10-17 00:43:21','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-16 18:43:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659567535635513',3345,'121665956605','6161101602372','1.00','250','retail','0','2022-10-17 00:46:00','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-16 18:46:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659567593517263',3346,'121665956605','90490279','1.00','100','retail','0','2022-10-17 00:46:00','','','','68','Cash',13.79,'100','','','12','','1','2022-10-16 18:46:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659572180303223',3347,'121665956803','087000006928','1.00','1800','retail','0','2022-10-17 00:54:53','','','','1320','Cash',248.28,'1800','','','12','','1','2022-10-16 18:56:40','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659572933512263',3348,'121665956803','8719327068540','1.00','300','retail','0','2022-10-17 00:54:53','','','','225','Cash',41.38,'300','','','12','','1','2022-10-16 18:56:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659589490332020',3349,'121665957493','5010103930666','1.00','750','retail','0','2022-10-17 01:22:30','','','','542','Cash',103.45,'750','','','12','','1','2022-10-16 19:22:32','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216659654196313603',3350,'121665958953','6161101602921','4.00','1000','retail','0','2022-10-17 03:10:20','','','','198.45','Cash',137.93,'250','','','12','','1','2022-10-16 21:10:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660096320303223',3351,'121666009626','5060608740253','1.00','80','retail','0','2022-10-17 15:31:37','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-17 10:39:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660096388033826',3352,'121666009626','90162602','1.00','230','retail','0','2022-10-17 15:31:37','','','','147','Cash',31.72,'230','','','12','','1','2022-10-17 10:39:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660097103017263',3353,'121666009626','5449000014536','1.00','80','retail','0','2022-10-17 15:31:37','','','','49','Cash',11.03,'80','','','12','','1','2022-10-17 10:39:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660231792033213',3354,'121666023175','6161101602051','1.00','550','retail','0','2022-10-17 19:13:00','','','','392','Cash',75.86,'550','','','12','','1','2022-10-17 13:13:03','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660250343210263',3355,'121666023184','6161101603379','2.00','500','retail','0','2022-10-17 19:43:54','','','','190.375','Cash',68.97,'250','','','12','','1','2022-10-17 13:43:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660259876383603',3356,'121666025038','6161101601979','1.00','250','retail','0','2022-10-17 20:00:40','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660259942636213',3357,'121666025038','6161101604406','1.00','250','retail','0','2022-10-17 20:00:40','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660260022636213',3358,'121666025038','100','1.00','250','retail','0','2022-10-17 20:00:40','','','','177','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660260163210263',3359,'121666025038','6161101604703','1.00','250','retail','0','2022-10-17 20:00:40','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660260262636213',3360,'121666025038','6161101603324','1.00','250','retail','0','2022-10-17 20:00:40','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660260396333603',3361,'121666025038','5449000022752','1.00','250','retail','0','2022-10-17 20:00:40','','','','158','Cash',34.48,'250','','','12','','1','2022-10-17 14:00:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660265656363603',3362,'121666026043','6161101603379','1.00','250','retail','0','2022-10-17 20:09:26','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-17 14:09:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660279450332020',3363,'121666026569','6161101605458','1.00','270','retail','0','2022-10-17 20:34:28','','','','182','Cash',37.24,'270','','','12','','1','2022-10-17 14:34:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660280673300320',3364,'121666026569','6161101602372','1.00','250','retail','0','2022-10-17 20:34:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-17 14:34:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660291990332020',3365,'121666028076','6161101602921','2.00','500','retail','0','2022-10-17 20:53:19','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-17 14:53:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660298499033926',3366,'121666029226','5010103930666','1.00','750','retail','0','2022-10-17 21:04:21','','','','542','Cash',103.45,'750','','','12','','1','2022-10-17 15:05:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660298610303223',3367,'121666029226','50112265','2.00','160','retail','0','2022-10-17 21:04:21','','','','53.33','Cash',22.07,'80','','','12','','1','2022-10-17 15:05:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660309076303603',3368,'121666029922','5449000014536','1.00','80','retail','0','2022-10-17 21:21:48','','','','49','Cash',11.03,'80','','','12','','1','2022-10-17 15:21:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660311876383603',3369,'121666030916','1000','1.00','270','retail','0','2022-10-17 21:26:28','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 15:26:50','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660318323318263',3370,'121666031212','6001495203055','1.00','1000','retail','0','2022-10-17 21:37:52','','','','628','Cash',137.93,'1000','','','12','','1','2022-10-17 15:38:25','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660318723318263',3371,'121666031212','5000267125046','1.00','4600','retail','0','2022-10-17 21:37:52','','','','3164','Cash',634.48,'4600','','','12','','1','2022-10-17 15:38:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3965.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660319260332020',3372,'121666031907','1000','1.00','270','retail','0','2022-10-17 21:38:47','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 15:38:49','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660324890332020',3373,'121666032008','6164001199331','1.00','70','retail','0','2022-10-17 21:48:09','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-17 15:48:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660325500303223',3374,'121666032526','1000','1.00','270','retail','0','2022-10-17 21:49:10','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 15:49:14','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660329086303603',3375,'121666032556','6161101605458','1.00','270','retail','0','2022-10-17 21:55:09','','','','182','Cash',37.24,'270','','','12','','1','2022-10-17 15:55:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660330177033726',3376,'121666033007','5010103930666','1.00','750','retail','0','2022-10-17 21:56:57','','','','542','Cash',103.45,'750','','','12','','1','2022-10-17 15:57:00','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660356000303223',3377,'121666033021','6161101602921','2.00','500','retail','0','2022-10-17 22:40:00','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-17 16:40:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660369280020306',3378,'121666035604','1000','1.00','270','retail','0','2022-10-17 23:02:33','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 17:02:39','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660369522033296',3379,'121666035604','6164001199331','1.00','70','retail','0','2022-10-17 23:02:33','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-17 17:02:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660391177033726',3380,'121666036960','1000','1.00','270','retail','0','2022-10-17 23:38:37','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 17:38:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660391753636313',3381,'121666039122','90490279','1.00','100','retail','0','2022-10-17 23:57:36','','','','68','Cash',13.79,'100','','','12','','1','2022-10-17 18:43:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660391840332020',3382,'121666039122','6161101604703','1.00','250','retail','0','2022-10-17 23:57:36','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-17 18:43:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660402433033326',3383,'121666039122','1000','1.00','270','retail','0','2022-10-17 23:57:36','','','','192','Cash',37.24,'270','','','12','','1','2022-10-17 18:43:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660402566353603',3384,'121666039122','6164001199331','1.00','70','retail','0','2022-10-17 23:57:36','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-17 18:43:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660492512033229',3385,'121666043012','6161101603324','8.00','2000','retail','0','2022-10-18 02:27:31','','','','150.45','Cash',275.86,'250','','','12','','1','2022-10-17 20:27:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'8','15.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660493273222230',3386,'121666049256','6161101603324','3.00','750','retail','0','2022-10-18 02:28:48','','','','150.45','Cash',103.45,'250','','','12','','1','2022-10-17 20:30:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660512462033221',3387,'121666049415','6161101603324','1.00','250','retail','0','2022-10-18 03:02:32','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-17 21:03:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660513423300320',3388,'121666049415','6161101603324','7.00','1750','retail','0','2022-10-18 03:02:32','','','','150.45','Cash',241.38,'250','','','12','','1','2022-10-17 21:03:44','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'7','8.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660513525636513',3389,'121666049415','3086120600020','1.00','120','retail','0','2022-10-18 03:02:32','','','','93.86','Cash',16.55,'120','','','12','','1','2022-10-17 21:03:44','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660969450332020',3390,'121666096938','6161101605458','1.00','270','retail','0','2022-10-18 15:42:27','','','','182','Cash',37.24,'270','','','12','','1','2022-10-18 09:42:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216660970100303223',3391,'121666096983','6164001199331','2.00','140','retail','0','2022-10-18 15:43:30','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-18 09:43:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661081710332020',3392,'121666100522','6161101605458','1.00','270','retail','0','2022-10-18 18:49:32','','','','182','Cash',37.24,'270','','','12','','1','2022-10-18 12:50:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661134873310320',3393,'121666108228','5060608740253','1.00','80','retail','0','2022-10-18 20:18:08','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-18 14:19:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661164730303223',3394,'121666113556','8712000900045','4.00','1000','retail','0','2022-10-18 21:07:53','','','','182','Cash',137.93,'250','','','12','','1','2022-10-18 15:10:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661167522033226',3395,'121666116620','6161101602525','1.00','120','retail','0','2022-10-18 21:12:32','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-18 15:12:37','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661175373115263',3396,'121666116758','6161101602525','1.00','120','retail','0','2022-10-18 21:25:37','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-18 15:25:41','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661183630303223',3397,'121666117543','6161101561280','1.00','270','retail','0','2022-10-18 21:39:24','','','','190','Cash',37.24,'270','','','12','','1','2022-10-18 15:42:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661190611033126',3398,'121666118551','5010314750008','1.00','2100','retail','0','2022-10-18 21:52:27','','','','1552','Cash',289.66,'2100','','','12','','1','2022-10-18 15:52:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1810.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661190983310320',3399,'121666118551','5018907194802','2.00','300','retail','0','2022-10-18 21:52:27','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-18 15:52:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661191283310320',3400,'121666118551','6161101602372','1.00','250','retail','0','2022-10-18 21:52:27','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-18 15:52:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661191466343603',3401,'121666118551','6161101601979','1.00','250','retail','0','2022-10-18 21:52:27','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-18 15:52:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661198283681021',3402,'121666119814','8712000900045','5.00','1250','retail','0','2022-10-18 22:04:17','','','','182','Cash',172.41,'250','','','12','','1','2022-10-18 16:05:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','6.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661198381636113',3403,'121666119814','6161101602372','1.00','250','retail','0','2022-10-18 22:04:17','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-18 16:05:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661198562033289',3404,'121666119814','6161101601979','1.00','250','retail','0','2022-10-18 22:04:17','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-18 16:05:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661215363215263',3405,'121666119971','6161101602921','1.00','250','retail','0','2022-10-18 22:32:54','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-18 16:37:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661215743310320',3406,'121666119971','5000196006652','1.00','400','retail','0','2022-10-18 22:32:54','','','','310','Cash',55.17,'400','','','12','','1','2022-10-18 16:37:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661218488033826',3407,'121666121835','6008165007784','1.00','370','retail','0','2022-10-18 22:37:28','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-18 16:37:32','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661218620303223',3408,'121666121853','6161101602372','2.00','500','retail','0','2022-10-18 22:37:42','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-18 16:38:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661227033217263',3409,'121666121929','6161101603379','1.00','250','retail','0','2022-10-18 22:51:47','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-18 16:54:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661227062636213',3410,'121666121929','6161101604406','1.00','250','retail','0','2022-10-18 22:51:47','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-18 16:54:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661231056303603',3411,'121666122852','6161101600941','1.00','750','retail','0','2022-10-18 22:58:32','','','','544','Cash',103.45,'750','','','12','','1','2022-10-18 17:02:16','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661231113211263',3412,'121666122852','6164001199331','1.00','70','retail','0','2022-10-18 22:58:32','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-18 17:02:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661247183310320',3413,'121666124705','8712000900045','2.00','500','retail','0','2022-10-18 23:25:19','','','','182','Cash',68.97,'250','','','12','','1','2022-10-18 17:25:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661254710303223',3414,'121666124726','5010103930628','1.00','1550','retail','0','2022-10-18 23:37:52','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-18 17:50:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661268892636213',3415,'121666126221','6002269000566','2.00','2200','retail','0','2022-10-19 00:02:12','','','','680','Cash',303.45,'1100','','','12','','1','2022-10-18 18:10:59','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661269102033296',3416,'121666126221','6008165007784','1.00','370','retail','0','2022-10-19 00:02:12','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-18 18:10:59','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661274642636213',3417,'121666127460','6161101600941','1.00','750','retail','0','2022-10-19 00:11:04','','','','544','Cash',103.45,'750','','','12','','1','2022-10-18 18:11:55','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661312713312263',3418,'121666127516','6161101603379','1.00','250','retail','0','2022-10-19 01:14:44','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-18 19:15:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661312844033426',3419,'121666127516','6008165007982','1.00','350','retail','0','2022-10-19 01:14:44','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-18 19:15:54','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661339991222632',3420,'121666131355','5449000188342','1.00','100','retail','0','2022-10-19 02:00:33','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-18 20:00:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661340144033426',3421,'121666131355','5060608740253','1.00','80','retail','0','2022-10-19 02:00:33','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-18 20:00:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661340336333603',3422,'121666131355','6161101605458','1.00','270','retail','0','2022-10-19 02:00:33','','','','182','Cash',37.24,'270','','','12','','1','2022-10-18 20:00:37','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661358743318263',3423,'121666134038','1000','1.00','270','retail','0','2022-10-19 02:31:31','','','','192','Cash',37.24,'270','','','12','','1','2022-10-18 20:31:33','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661358910332020',3424,'121666134038','6164001199331','1.00','70','retail','0','2022-10-19 02:31:31','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-18 20:31:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661796972033269',3425,'121666179536','6164001199331','1.00','70','retail','0','2022-10-19 14:41:40','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-19 08:41:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661821877033726',3426,'121666179713','8908006354207','1.00','650','retail','0','2022-10-19 15:24:17','','','','445','Cash',89.66,'650','','','12','','1','2022-10-19 09:26:02','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',560.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661822566353603',3427,'121666179713','8908006354207','1.00','650','retail','0','2022-10-19 15:24:17','','','','445','Cash',89.66,'650','','','12','','1','2022-10-19 09:26:02','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',560.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661834363310320',3428,'121666182364','5000292262716','1.00','1700','retail','0','2022-10-19 15:44:59','','','','1250','Cash',234.48,'1700','','','12','','1','2022-10-19 09:49:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661834980332020',3429,'121666182364','5018907194802','1.00','150','retail','0','2022-10-19 15:44:59','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-19 09:49:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661890153810263',3430,'121666183991','6161101602921','2.00','500','retail','0','2022-10-19 17:16:56','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-19 11:18:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661997644033426',3431,'121666194033','4820000944626','1.00','1700','retail','0','2022-10-19 20:16:09','','','','931','Cash',234.48,'1700','','','12','','1','2022-10-19 14:18:51','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216661997682033279',3432,'121666194033','6001452258005','1.00','1600','retail','0','2022-10-19 20:16:09','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-19 14:18:51','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662032222033223',3433,'121666199933','5000267013602','1.00','2200','retail','0','2022-10-19 21:13:43','','','','1612','Cash',303.45,'2200','','','12','','1','2022-10-19 15:14:28','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662038772033283',3434,'121666203869','6161101605465','1.00','800','retail','0','2022-10-19 21:24:53','','','','501','Cash',110.34,'800','','','12','','1','2022-10-19 15:25:54','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662038922033226',3435,'121666203869','5060639129003','1.00','200','retail','0','2022-10-19 21:24:53','','','','153','Cash',27.59,'200','','','12','','1','2022-10-19 15:25:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',172.41,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662046333320320',3436,'121666204618','5010327302201','1.00','8500','retail','0','2022-10-19 21:37:13','','','','6800','Cash',1172.41,'8500','','','12','','1','2022-10-19 15:38:48','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662055082202003',3437,'121666205493','5010314750008','1.00','2100','retail','0','2022-10-19 21:52:40','','','','1552','Cash',289.66,'2100','','','12','','1','2022-10-19 15:52:44','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1810.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662055603015263',3438,'121666205493','5018907194802','2.00','300','retail','0','2022-10-19 21:52:40','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-19 15:52:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662057326333603',3439,'121666205565','6161101605465','1.00','800','retail','0','2022-10-19 21:55:33','','','','501','Cash',110.34,'800','','','12','','1','2022-10-19 15:56:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662059503320320',3440,'121666205941','6001108049599','1.00','1200','retail','0','2022-10-19 21:59:10','','','','641','Cash',165.52,'1200','','','12','','1','2022-10-19 15:59:13','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662061672033216',3441,'121666205954','5010314101015','1.00','2600','retail','0','2022-10-19 22:03:07','','','','1854','Cash',358.62,'2600','','','12','','1','2022-10-19 16:07:11','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2241.38,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662061873011263',3442,'121666205954','5018907194802','2.00','300','retail','0','2022-10-19 22:03:07','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-19 16:07:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662082610636013',3443,'121666207803','6002269000566','1.00','1100','retail','0','2022-10-19 22:37:42','','','','680','Cash',151.72,'1100','','','12','','1','2022-10-19 16:41:13','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662086220303223',3444,'121666208613','6001496011796','1.00','1550','retail','0','2022-10-19 22:43:55','','','','1072','Cash',213.79,'1550','','','12','','1','2022-10-19 16:43:59','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662086352033268',3445,'121666208613','5449000028921','1.00','150','retail','0','2022-10-19 22:43:55','','','','103','Cash',20.69,'150','','','12','','1','2022-10-19 16:43:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662087750303223',3446,'121666208640','6001495203055','1.00','1000','retail','0','2022-10-19 22:46:52','','','','628','Cash',137.93,'1000','','','12','','1','2022-10-19 16:47:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662088111033126',3447,'121666208640','716165177364','1.00','250','retail','0','2022-10-19 22:46:52','','','','130','Cash',34.48,'250','','','12','','1','2022-10-19 16:47:26','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662090106313603',3448,'121666208999','6161101603379','1.00','250','retail','0','2022-10-19 22:50:11','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-19 16:50:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662095740636013',3449,'121666209568','6161101602921','1.00','250','retail','0','2022-10-19 22:59:49','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-19 17:00:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662095892033259',3450,'121666209568','6161101602167','1.00','550','retail','0','2022-10-19 22:59:49','','','','388','Cash',75.86,'550','','','12','','1','2022-10-19 17:00:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662096477033726',3451,'121666209636','6161101602921','4.00','1000','retail','0','2022-10-19 23:00:57','','','','198.45','Cash',137.93,'250','','','12','','1','2022-10-19 17:01:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662096711033126',3452,'121666209664','5000291025824','1.00','3000','retail','0','2022-10-19 23:01:12','','','','2200','Cash',413.79,'3000','','','12','','1','2022-10-19 17:01:48','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2586.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662097210303223',3453,'121666209712','5018907194802','1.00','150','retail','0','2022-10-19 23:02:22','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-19 17:02:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662097426343603',3454,'121666209712','5000196006652','1.00','400','retail','0','2022-10-19 23:02:22','','','','310','Cash',55.17,'400','','','12','','1','2022-10-19 17:02:28','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662101941636113',3455,'121666209749','5060608740253','1.00','80','retail','0','2022-10-19 23:09:55','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-19 17:09:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662108730303223',3456,'121666210858','3155930006015','6.00','1500','retail','0','2022-10-19 23:21:14','','','','188','Cash',206.90,'250','','','12','','1','2022-10-19 17:21:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662111906393603',3457,'121666211176','90162602','4.00','920','retail','0','2022-10-19 23:26:30','','','','147','Cash',126.90,'230','','','12','','1','2022-10-19 17:27:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662113481636113',3458,'121666211340','5018907194802','1.00','150','retail','0','2022-10-19 23:29:36','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-19 17:31:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662113633033326',3459,'121666211340','54493360','1.00','80','retail','0','2022-10-19 23:29:36','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-19 17:31:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662113762033231',3460,'121666211340','6161101602372','2.00','500','retail','0','2022-10-19 23:29:36','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-19 17:31:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662135800033026',3461,'121666212377','8712000900045','2.00','500','retail','0','2022-10-20 00:06:41','','','','182','Cash',68.97,'250','','','12','','1','2022-10-19 18:07:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662135911636113',3462,'121666212377','6161101603379','1.00','250','retail','0','2022-10-20 00:06:41','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-19 18:07:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662136000322066',3463,'121666212377','6161101602600','1.00','220','retail','0','2022-10-20 00:06:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-19 18:07:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662143550332020',3464,'121666213648','6161101600927','1.00','1900','retail','0','2022-10-20 00:19:15','','','','1417','Cash',262.07,'1900','','','12','','1','2022-10-19 18:20:14','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662148510303223',3465,'121666214415','8712000900045','1.00','250','retail','0','2022-10-20 00:27:32','','','','182','Cash',34.48,'250','','','12','','1','2022-10-19 18:27:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662153686363603',3466,'121666215354','8000530800462','1.00','1600','retail','0','2022-10-20 00:36:09','','','','1050','Cash',220.69,'1600','','','12','','1','2022-10-19 18:36:11','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662160111636113',3467,'121666215373','8712000900663','2.00','500','retail','0','2022-10-20 00:49:13','','','','174','Cash',68.97,'250','','','12','','1','2022-10-19 18:49:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662160470303223',3468,'121666215373','6008165007784','1.00','370','retail','0','2022-10-20 00:49:13','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-19 18:49:38','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662161262033216',3469,'121666215373','6161101603324','4.00','1000','retail','0','2022-10-20 00:49:13','','','','150.45','Cash',137.93,'250','','','12','','1','2022-10-19 18:49:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662161523102223',3470,'121666215373','50112265','1.00','80','retail','0','2022-10-20 00:49:13','','','','53.33','Cash',11.03,'80','','','12','','1','2022-10-19 18:49:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662163852033236',3471,'121666216179','6161101561280','1.00','270','retail','0','2022-10-20 00:53:05','','','','190','Cash',37.24,'270','','','12','','1','2022-10-19 18:57:18','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662166780303223',3472,'121666216639','8712000900045','2.00','500','retail','0','2022-10-20 00:57:59','','','','182','Cash',68.97,'250','','','12','','1','2022-10-19 18:58:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662253182636213',3473,'121666225306','6161101602921','2.00','500','retail','0','2022-10-20 03:21:59','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-19 21:22:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662682955033526',3474,'121666268283','5010103930833','1.00','900','retail','0','2022-10-20 15:18:15','','','','653','Cash',124.14,'900','','','12','','1','2022-10-20 09:18:25','1','11','new','1','new','pcs','','','','yes','','0','','','VATABLE',775.86,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662684003614263',3475,'121666268373','5449000014536','1.00','80','retail','0','2022-10-20 15:20:01','','','','49','Cash',11.03,'80','','','12','','1','2022-10-20 09:20:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662690616363603',3476,'121666268414','8712000900663','4.00','1000','retail','0','2022-10-20 15:31:39','','','','174','Cash',137.93,'250','','','12','','1','2022-10-20 09:31:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'','22.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662691430332020',3477,'121666269107','5449000131836','1.00','80','retail','0','2022-10-20 15:32:24','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-20 09:32:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662716617636713',3478,'121666269148','6161101606011','1.00','220','retail','0','2022-10-20 16:14:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-20 10:14:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662716643320320',3479,'121666269148','6161101606011','1.00','220','retail','0','2022-10-20 16:14:25','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-20 10:14:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662717466343603',3480,'121666271682','5060639129003','2.00','500','retail','0','2022-10-20 16:15:59','','','','153','Cash',68.97,'250','','','12','','1','2022-10-20 10:17:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','51.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662717583717263',3481,'121666271682','6164001199010','1.00','100','retail','0','2022-10-20 16:15:59','','','','38','Cash',13.79,'100','','','12','','1','2022-10-20 10:17:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662718866383603',3482,'121666271840','54491069','1.00','80','retail','0','2022-10-20 16:18:07','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-20 10:18:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662726277636713',3483,'121666272018','6161101601979','1.00','250','retail','0','2022-10-20 16:30:28','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-20 10:30:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662744763714263',3484,'121666272633','6161101130424','2.00','1500','retail','0','2022-10-20 17:01:36','','','','642','Cash',206.90,'750','','','12','','1','2022-10-20 11:01:43','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662744960332020',3485,'121666272633','6161101604406','2.00','500','retail','0','2022-10-20 17:01:36','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-20 11:01:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662764220332020',3486,'121666274504','8712000900045','1.00','250','retail','0','2022-10-20 17:33:43','','','','182','Cash',34.48,'250','','','12','','1','2022-10-20 11:33:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662782722033228',3487,'121666276527','6161101604703','2.00','500','retail','0','2022-10-20 18:04:32','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-20 12:04:34','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662807203320320',3488,'121666278739','5000196006652','1.00','400','retail','0','2022-10-20 18:45:24','','','','310','Cash',55.17,'400','','','12','','1','2022-10-20 12:46:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662807230332020',3489,'121666278739','6161101604550','1.00','400','retail','0','2022-10-20 18:45:24','','','','284','Cash',55.17,'400','','','12','','1','2022-10-20 12:46:22','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662846398636813',3490,'121666280784','1000','1.00','270','retail','0','2022-10-20 19:50:40','','','','192','Cash',37.24,'270','','','12','','1','2022-10-20 13:50:43','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662885520260051',3491,'121666284644','6161101606011','1.00','220','retail','0','2022-10-20 20:55:52','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-20 14:57:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662926190332020',3492,'121666288649','6161101602921','1.00','250','retail','0','2022-10-20 22:03:40','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-20 16:04:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662926916393603',3493,'121666292649','90162602','1.00','230','retail','0','2022-10-20 22:04:59','','','','147','Cash',31.72,'230','','','12','','1','2022-10-20 16:05:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662926990332020',3494,'121666292649','5060639129003','1.00','250','retail','0','2022-10-20 22:04:59','','','','153','Cash',34.48,'250','','','12','','1','2022-10-20 16:05:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662931370303223',3495,'121666292750','5000196006652','1.00','400','retail','0','2022-10-20 22:12:18','','','','310','Cash',55.17,'400','','','12','','1','2022-10-20 16:13:37','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662933460303223',3496,'121666293218','5010103930628','1.00','1550','retail','0','2022-10-20 22:15:47','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-20 16:17:18','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662949593919263',3497,'121666294931','6161101602372','1.00','250','retail','0','2022-10-20 22:42:40','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-20 16:42:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662950122033226',3498,'121666294963','8712000900045','6.00','1500','retail','0','2022-10-20 22:43:32','','','','182','Cash',206.90,'250','','','12','','1','2022-10-20 16:44:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662951592033215',3499,'121666295149','6161101602921','2.00','500','retail','0','2022-10-20 22:46:00','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-20 16:46:02','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662961340332020',3500,'121666295164','5010103930628','1.00','1550','retail','0','2022-10-20 23:02:22','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-20 17:05:33','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662961423441063',3501,'121666295164','5449000028976','1.00','150','retail','0','2022-10-20 23:02:22','','','','103','Cash',20.69,'150','','','12','','1','2022-10-20 17:05:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662999083320320',3502,'121666296334','6001496301804','1.00','1200','retail','0','2022-10-21 00:05:15','','','','729','Cash',165.52,'1200','','','12','','1','2022-10-20 18:07:29','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216662999156313603',3503,'121666296334','6001506011709','1.00','1200','retail','0','2022-10-21 00:05:15','','','','850','Cash',165.52,'1200','','','12','','1','2022-10-20 18:07:29','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663021444033426',3504,'121666300050','8712000900045','2.00','500','retail','0','2022-10-21 00:42:25','','','','182','Cash',68.97,'250','','','12','','1','2022-10-20 18:42:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663023426343603',3505,'121666302149','6161101606547','1.00','550','retail','0','2022-10-21 00:45:45','','','','388','Cash',75.86,'550','','','12','','1','2022-10-20 18:46:19','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663023443330320',3506,'121666302149','6164001199331','1.00','70','retail','0','2022-10-21 00:45:45','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-20 18:46:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663026080636013',3507,'121666302380','6161101605458','1.00','270','retail','0','2022-10-21 00:50:09','','','','182','Cash',37.24,'270','','','12','','1','2022-10-20 18:50:12','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663029800332020',3508,'121666302614','6161101603324','1.00','250','retail','0','2022-10-21 00:56:21','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-20 18:56:24','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663032166313603',3509,'121666303045','8712000900045','2.00','500','retail','0','2022-10-21 01:00:16','','','','182','Cash',68.97,'250','','','12','','1','2022-10-20 19:01:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663036263330320',3510,'121666303314','6161101605458','1.00','270','retail','0','2022-10-21 01:07:06','','','','182','Cash',37.24,'270','','','12','','1','2022-10-20 19:07:40','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663039750303223',3511,'121666303662','6161101602372','3.00','750','retail','0','2022-10-21 01:13:09','','','','189.75','Cash',103.45,'250','','','12','','1','2022-10-20 19:13:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663039893330320',3512,'121666303662','8712000900045','2.00','500','retail','0','2022-10-21 01:13:09','','','','182','Cash',68.97,'250','','','12','','1','2022-10-20 19:13:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663054552033245',3513,'121666303993','6161101561280','1.00','270','retail','0','2022-10-21 01:37:36','','','','190','Cash',37.24,'270','','','12','','1','2022-10-20 19:39:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663118523118263',3514,'121666305552','6161101602372','1.00','250','retail','0','2022-10-21 03:24:13','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-20 21:24:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663134511033126',3515,'121666311861','6161101602372','2.00','500','retail','0','2022-10-21 03:51:11','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-20 21:51:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663134703114263',3516,'121666311861','6161101601979','2.00','500','retail','0','2022-10-21 03:51:11','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-20 21:51:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663551010303223',3517,'121666355088','6161101601979','6.00','1500','retail','0','2022-10-21 15:26:18','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-21 09:26:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663551665636513',3518,'121666355088','50112265','2.00','160','retail','0','2022-10-21 15:26:18','','','','53.33','Cash',22.07,'80','','','12','','1','2022-10-21 09:26:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663551785636513',3519,'121666355088','6164001199331','2.00','140','retail','0','2022-10-21 15:26:18','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-21 09:26:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663586263516263',3520,'121666357192','6161101606011','1.00','220','retail','0','2022-10-21 16:23:47','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-21 10:25:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663592853512263',3521,'121666358705','5018907194802','1.00','150','retail','0','2022-10-21 16:34:54','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-21 10:35:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663592933512263',3522,'121666358705','5449000131836','1.00','80','retail','0','2022-10-21 16:34:54','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-21 10:35:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663614320303223',3523,'121666359327','6161101606011','3.00','660','retail','0','2022-10-21 17:10:33','','','','172.833','Cash',91.03,'220','','','12','','1','2022-10-21 11:11:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663615240332020',3524,'121666361520','40822938','1.00','70','retail','0','2022-10-21 17:12:04','','','','53.333','Cash',9.66,'70','','','12','','1','2022-10-21 11:14:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663635313615263',3525,'121666361646','6161101606011','2.00','440','retail','0','2022-10-21 17:45:42','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-21 11:46:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663635413330320',3526,'121666361646','6161101602167','1.00','550','retail','0','2022-10-21 17:45:42','','','','388','Cash',75.86,'550','','','12','','1','2022-10-21 11:46:28','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663640053320060',3527,'121666363590','5449000131836','1.00','80','retail','0','2022-10-21 17:53:25','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-21 11:54:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663704802233313',3528,'121666364488','6161101606011','1.00','220','retail','0','2022-10-21 19:41:20','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-21 13:41:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663764942033246',3529,'121666370485','6161101601979','1.00','250','retail','0','2022-10-21 21:22:37','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-21 15:22:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663765450332020',3530,'121666370485','6161101602938','1.00','250','retail','0','2022-10-21 21:22:37','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-21 15:22:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663765560332020',3531,'121666370485','6161101603379','1.00','250','retail','0','2022-10-21 21:22:37','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-21 15:22:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663765810303223',3532,'121666376563','5449000188342','1.00','100','retail','0','2022-10-21 21:24:31','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-21 15:26:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663765999033926',3533,'121666376563','6161101602600','2.00','440','retail','0','2022-10-21 21:24:31','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-21 15:26:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663766172033266',3534,'121666376563','6161101601979','2.00','500','retail','0','2022-10-21 21:24:31','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-21 15:26:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663766341332233',3535,'121666376563','6161101604406','2.00','500','retail','0','2022-10-21 21:24:31','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-21 15:26:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663766442033266',3536,'121666376563','6161101602372','2.00','500','retail','0','2022-10-21 21:24:31','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-21 15:26:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663766536353603',3537,'121666376563','5060608740253','1.00','80','retail','0','2022-10-21 21:24:31','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-21 15:26:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663769280303223',3538,'121666376796','6161101602600','1.00','220','retail','0','2022-10-21 21:29:56','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-21 15:30:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663769953330320',3539,'121666376796','6161101602600','6.00','1320','retail','0','2022-10-21 21:29:56','','','','154.95','Cash',182.07,'220','','','12','','1','2022-10-21 15:30:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','29.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663771963330320',3540,'121666377035','6161101602600','6.00','1320','retail','0','2022-10-21 21:33:16','','','','154.95','Cash',182.07,'220','','','12','','1','2022-10-21 15:37:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','23.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663775643330320',3541,'121666377463','6161101603379','1.00','250','retail','0','2022-10-21 21:39:25','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-21 15:39:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663778373330320',3542,'121666377575','6161101601979','1.00','250','retail','0','2022-10-21 21:44:55','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-21 15:44:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663778940332020',3543,'121666377575','6161101602372','1.00','250','retail','0','2022-10-21 21:44:55','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-21 15:44:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663781872033218',3544,'121666377899','6008165007784','1.00','370','retail','0','2022-10-21 21:49:48','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-21 15:54:27','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663796847636713',3545,'121666378468','50196166','2.00','1200','retail','0','2022-10-21 22:14:57','','','','443','Cash',165.52,'600','','','12','','1','2022-10-21 16:17:08','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663796966393603',3546,'121666378468','6164001199331','1.00','70','retail','0','2022-10-21 22:14:57','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-21 16:17:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663800463330320',3547,'121666379829','5449000014536','1.00','80','retail','0','2022-10-21 22:23:19','','','','49','Cash',11.03,'80','','','12','','1','2022-10-21 16:23:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663800733810263',3548,'121666379829','6161101602938','2.00','500','retail','0','2022-10-21 22:23:19','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-21 16:23:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663801576353603',3549,'121666379829','6161101601979','2.00','500','retail','0','2022-10-21 22:23:19','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-21 16:23:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663801998636813',3550,'121666379829','6161101604703','2.00','500','retail','0','2022-10-21 22:23:19','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-21 16:23:43','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663809046303603',3551,'121666380226','5000267024011','1.00','3600','retail','0','2022-10-21 22:36:24','','','','2433','Cash',496.55,'3600','','','12','','1','2022-10-21 16:37:45','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3103.45,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663809833819263',3552,'121666380226','5449000000286','1.00','250','retail','0','2022-10-21 22:36:24','','','','158','Cash',34.48,'250','','','12','','1','2022-10-21 16:37:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663816690332020',3553,'121666381537','6161101604406','2.00','500','retail','0','2022-10-21 22:48:00','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-21 16:48:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663816801302130',3554,'121666381537','6161101601979','1.00','250','retail','0','2022-10-21 22:48:00','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-21 16:48:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663817152033271',3555,'121666381684','6161101602372','2.00','500','retail','0','2022-10-21 22:48:52','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-21 16:48:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663817323616636',3556,'121666381684','6161101604406','1.00','250','retail','0','2022-10-21 22:48:52','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-21 16:48:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663818720332020',3557,'121666381854','6008165007982','1.00','350','retail','0','2022-10-21 22:52:48','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-21 16:53:49','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663818842033281',3558,'121666381854','6008165007784','1.00','370','retail','0','2022-10-21 22:52:48','','','','327.04','Cash',51.03,'370','','','12','','1','2022-10-21 16:53:49','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663819046303603',3559,'121666381854','5000267014005','1.00','1800','retail','0','2022-10-21 22:52:48','','','','1304','Cash',248.28,'1800','','','12','','1','2022-10-21 16:53:49','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663819278636813',3560,'121666381854','5449000028921','1.00','150','retail','0','2022-10-21 22:52:48','','','','103','Cash',20.69,'150','','','12','','1','2022-10-21 16:53:49','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663828896383603',3561,'121666382874','6161101603379','4.00','1000','retail','0','2022-10-21 23:08:09','','','','190.375','Cash',137.93,'250','','','12','','1','2022-10-21 17:08:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','26.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663831846383603',3562,'121666383162','6001812011936','1.00','950','retail','0','2022-10-21 23:14:11','','','','700','Cash',131.03,'950','','','12','','1','2022-10-21 17:15:16','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663832438636813',3563,'121666383162','3219820000078','1.00','5500','retail','0','2022-10-21 23:14:11','','','','3954','Cash',758.62,'5500','','','12','','1','2022-10-21 17:15:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4741.38,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663832518636813',3564,'121666383162','5018907194802','1.00','150','retail','0','2022-10-21 23:14:11','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-21 17:15:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663833532033233',3565,'121666383317','6161100421509','1.00','1250','retail','0','2022-10-21 23:16:07','','','','787','Cash',172.41,'1250','','','12','','1','2022-10-21 17:18:02','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1077.59,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663833662033233',3566,'121666383317','5449000028921','1.00','150','retail','0','2022-10-21 23:16:07','','','','103','Cash',20.69,'150','','','12','','1','2022-10-21 17:18:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663836906393603',3567,'121666383652','6161101601979','4.00','1000','retail','0','2022-10-21 23:22:01','','','','172.75','Cash',137.93,'250','','','12','','1','2022-10-21 17:25:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663837062033273',3568,'121666383652','6161101602372','2.00','500','retail','0','2022-10-21 23:22:01','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-21 17:25:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663837200303223',3569,'121666383652','6161101604406','2.00','500','retail','0','2022-10-21 23:22:01','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-21 17:25:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663845453330320',3570,'121666384455','6161101603522','1.00','800','retail','0','2022-10-21 23:35:45','','','','501','Cash',110.34,'800','','','12','','1','2022-10-21 17:41:54','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663857328636813',3571,'121666384915','6161101602372','3.00','750','retail','0','2022-10-21 23:58:10','','','','189.75','Cash',103.45,'250','','','12','','1','2022-10-21 17:59:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663857426343603',3572,'121666384915','8712000900045','2.00','500','retail','0','2022-10-21 23:58:10','','','','182','Cash',68.97,'250','','','12','','1','2022-10-21 17:59:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663875341162135',3573,'121666385994','6161101602372','1.00','250','retail','0','2022-10-22 00:25:34','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-21 18:43:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663886346333603',3574,'121666388625','5000196006652','1.00','400','retail','0','2022-10-22 00:43:54','','','','310','Cash',55.17,'400','','','12','','1','2022-10-21 18:43:58','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663896740303223',3575,'121666389663','8712000900045','1.00','250','retail','0','2022-10-22 01:01:32','','','','182','Cash',34.48,'250','','','12','','1','2022-10-21 19:04:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663896780303223',3576,'121666389663','8712000900045','1.00','250','retail','0','2022-10-22 01:01:32','','','','182','Cash',34.48,'250','','','12','','1','2022-10-21 19:04:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663896877033726',3577,'121666389663','8712000900663','1.00','250','retail','0','2022-10-22 01:01:32','','','','174','Cash',34.48,'250','','','12','','1','2022-10-21 19:04:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663896911033126',3578,'121666389663','8712000900663','1.00','250','retail','0','2022-10-22 01:01:32','','','','174','Cash',34.48,'250','','','12','','1','2022-10-21 19:04:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663899116313603',3579,'121666389888','6161101601979','1.00','250','retail','0','2022-10-22 01:05:11','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-21 19:05:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663912280303223',3580,'121666389915','6161101603522','1.00','800','retail','0','2022-10-22 01:27:09','','','','501','Cash',110.34,'800','','','12','','1','2022-10-21 19:36:42','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663926532033262',3581,'121666391803','5010103930628','1.00','1550','retail','0','2022-10-22 01:50:54','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-21 19:52:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663933220303223',3582,'121666392724','4067700014535','1.00','3400','retail','0','2022-10-22 02:08:09','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-21 20:09:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663935149636913',3583,'121666392724','6008165007982','1.00','350','retail','0','2022-10-22 02:08:09','','','','308.53','Cash',48.28,'350','','','12','','1','2022-10-21 20:09:23','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663948110303223',3584,'121666393764','1000','1.00','270','retail','0','2022-10-22 02:26:51','','','','192','Cash',37.24,'270','','','12','','1','2022-10-21 20:29:29','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663959819636913',3585,'121666395978','6161101130424','1.00','750','retail','0','2022-10-22 02:47:52','','','','642','Cash',103.45,'750','','','12','','1','2022-10-21 20:48:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216663960723330320',3586,'121666395978','6164001199010','1.00','100','retail','0','2022-10-22 02:47:52','','','','38','Cash',13.79,'100','','','12','','1','2022-10-21 20:48:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664428144033426',3587,'121666442804','5010103930666','1.00','750','retail','0','2022-10-22 15:47:43','','','','542','Cash',103.45,'750','','','12','','1','2022-10-22 10:19:46','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664428262033282',3588,'121666442804','5018907197803','2.00','200','retail','0','2022-10-22 15:47:43','','','','44.58','Cash',27.59,'100','','','12','','1','2022-10-22 10:19:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664428346333603',3589,'121666442804','90162602','1.00','230','retail','0','2022-10-22 15:47:43','','','','147','Cash',31.72,'230','','','12','','1','2022-10-22 10:19:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664428620008216',3590,'121666442804','6001496011772','1.00','750','retail','0','2022-10-22 15:47:43','','','','544','Cash',103.45,'750','','','12','','1','2022-10-22 10:19:46','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664481576353603',3591,'121666444789','5000291020805','1.00','3750','retail','0','2022-10-22 17:15:57','','','','2760','Cash',517.24,'3750','','','12','','1','2022-10-22 11:17:47','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664482872033228',3592,'121666448268','6161101130424','1.00','750','retail','0','2022-10-22 17:18:08','','','','642','Cash',103.45,'750','','','12','','1','2022-10-22 11:18:12','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664529230303223',3593,'121666452909','8712000900045','8.00','2000','retail','0','2022-10-22 18:35:24','','','','182','Cash',275.86,'250','','','12','','1','2022-10-22 12:36:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'8','14.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664541030332020',3594,'121666452969','1000','1.00','270','retail','0','2022-10-22 18:55:12','','','','192','Cash',37.24,'270','','','12','','1','2022-10-22 12:55:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664541110332020',3595,'121666452969','6164001199331','1.00','70','retail','0','2022-10-22 18:55:12','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-22 12:55:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664588720332020',3596,'121666454157','5449000131836','1.00','80','retail','0','2022-10-22 20:14:32','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-22 14:14:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664608750303223',3597,'121666458878','7794450091598','1.00','2000','retail','0','2022-10-22 20:47:55','','','','1280','Cash',275.86,'2000','','','12','','1','2022-10-22 14:53:19','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664643396636613',3598,'121666462416','6161101604406','2.00','500','retail','0','2022-10-22 21:45:39','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-22 15:45:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664647400332020',3599,'121666464344','5010327302201','1.00','8500','retail','0','2022-10-22 21:54:41','','','','6800','Cash',1172.41,'8500','','','12','','1','2022-10-22 15:55:34','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664648806636613',3600,'121666464344','6161101561021','1.00','1400','retail','0','2022-10-22 21:54:41','','','','836','Cash',193.10,'1400','','','12','','1','2022-10-22 15:55:34','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1206.90,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664649926636613',3601,'121666464935','6161101605458','2.00','540','retail','0','2022-10-22 22:00:00','','','','182','Cash',74.48,'270','','','12','','1','2022-10-22 16:00:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664652002021301',3602,'121666464935','6164001199331','1.00','70','retail','0','2022-10-22 22:00:00','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-22 16:00:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664672440303223',3603,'121666467142','6161101605458','1.00','270','retail','0','2022-10-22 22:34:18','','','','182','Cash',37.24,'270','','','12','','1','2022-10-22 16:36:44','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664672576636613',3604,'121666467142','6164001199331','1.00','70','retail','0','2022-10-22 22:34:18','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-22 16:36:44','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664683093340320',3605,'121666467405','6161101605458','1.00','270','retail','0','2022-10-22 22:51:49','','','','182','Cash',37.24,'270','','','12','','1','2022-10-22 16:52:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664688450303223',3606,'121666468348','6161101601979','4.00','1000','retail','0','2022-10-22 23:00:46','','','','172.75','Cash',137.93,'250','','','12','','1','2022-10-22 17:01:44','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664692000303223',3607,'121666468905','6161101600941','1.00','750','retail','0','2022-10-22 23:06:41','','','','544','Cash',103.45,'750','','','12','','1','2022-10-22 17:08:09','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664706920303223',3608,'121666469290','6161101603379','4.00','1000','retail','0','2022-10-22 23:31:32','','','','190.375','Cash',137.93,'250','','','12','','1','2022-10-22 17:32:37','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','22.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664725840303223',3609,'121666470758','6161101603324','2.00','500','retail','0','2022-10-23 00:03:05','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-22 18:03:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664731186313603',3610,'121666472620','6161101606547','1.00','550','retail','0','2022-10-23 00:13:23','','','','388','Cash',75.86,'550','','','12','','1','2022-10-22 18:13:51','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664731923711263',3611,'121666472620','5449000131836','1.00','80','retail','0','2022-10-23 00:13:23','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-22 18:13:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664732023340320',3612,'121666472620','5010232965096','1.00','600','retail','0','2022-10-23 00:13:23','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-22 18:13:51','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664739313340320',3613,'121666473233','6161101602372','1.00','250','retail','0','2022-10-23 00:25:32','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-22 18:25:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664755999033926',3614,'121666473937','6161101601979','1.00','250','retail','0','2022-10-23 00:53:20','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-22 18:53:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664758863340320',3615,'121666475876','6161101603379','1.00','250','retail','0','2022-10-23 00:58:07','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-22 19:00:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664762132033226',3616,'121666476199','6161101601979','2.00','500','retail','0','2022-10-23 01:03:33','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-22 19:03:38','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664773476343603',3617,'121666476219','3086120600051','1.00','80','retail','0','2022-10-23 01:22:28','','','','59.74','Cash',11.03,'80','','','12','','1','2022-10-22 19:23:52','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664789840332020',3618,'121666477433','8712000900663','2.00','500','retail','0','2022-10-23 01:49:58','','','','174','Cash',68.97,'250','','','12','','1','2022-10-22 19:50:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664789977033726',3619,'121666477433','90162602','1.00','230','retail','0','2022-10-23 01:49:58','','','','147','Cash',31.72,'230','','','12','','1','2022-10-22 19:50:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664792090332020',3620,'121666479002','5010103930628','1.00','1550','retail','0','2022-10-23 01:53:29','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-22 19:53:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664814652033241',3621,'121666479217','6161101601979','1.00','250','retail','0','2022-10-23 02:31:06','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-22 20:31:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664818933033326',3622,'121666481477','5000289932479','1.00','2000','retail','0','2022-10-23 02:38:13','','','','1540','Cash',275.86,'2000','','','12','','1','2022-10-22 20:45:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664823770332020',3623,'121666482345','5449000131836','2.00','160','retail','0','2022-10-23 02:46:17','','','','53.333','Cash',22.07,'80','','','12','','1','2022-10-22 20:46:30','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664852360303223',3624,'121666482391','5052197004281','1.00','600','retail','0','2022-10-23 03:33:56','','','','272','Cash',82.76,'600','','','12','','1','2022-10-22 21:35:06','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664864250332020',3625,'121666485307','6161101600941','1.00','750','retail','0','2022-10-23 03:55:48','','','','544','Cash',103.45,'750','','','12','','1','2022-10-22 21:57:15','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664864422033246',3626,'121666485307','6161101601979','1.00','250','retail','0','2022-10-23 03:55:48','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-22 21:57:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664864813814263',3627,'121666485307','6008165007968','1.00','350','retail','0','2022-10-23 03:55:48','','','','308.5','Cash',48.28,'350','','','12','','1','2022-10-22 21:57:15','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664870183340320',3628,'121666486636','50196111','1.00','1500','retail','0','2022-10-23 04:04:56','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-22 22:05:23','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664870376333603',3629,'121666486636','5449000000286','1.00','250','retail','0','2022-10-23 04:04:56','','','','158','Cash',34.48,'250','','','12','','1','2022-10-22 22:05:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664870822033226',3630,'121666486636','5449000014536','1.00','80','retail','0','2022-10-23 04:04:56','','','','49','Cash',11.03,'80','','','12','','1','2022-10-22 22:05:23','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216664870953340320',3631,'121666486636','6161101602600','3.00','660','retail','0','2022-10-23 04:04:56','','','','154.95','Cash',91.03,'220','','','12','','1','2022-10-22 22:05:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665399560332020',3632,'121666539939','5449000014536','1.00','80','retail','0','2022-10-23 18:45:56','','','','49','Cash',11.03,'80','','','12','','1','2022-10-23 12:46:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665417223350320',3633,'121666539962','6001496301705','1.00','1200','retail','0','2022-10-23 19:16:13','','','','729','Cash',165.52,'1200','','','12','','1','2022-10-23 13:20:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665417722033226',3634,'121666539962','6001812011912','1.00','1100','retail','0','2022-10-23 19:16:13','','','','815','Cash',151.72,'1100','','','12','','1','2022-10-23 13:20:05','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665450876383603',3635,'121666542006','6161101604703','1.00','250','retail','0','2022-10-23 20:11:28','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-23 14:11:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665469516353603',3636,'121666545092','5060608740253','1.00','80','retail','0','2022-10-23 20:42:32','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-23 14:42:42','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665470023410263',3637,'121666546963','6161101601979','2.00','500','retail','0','2022-10-23 20:43:22','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-23 14:43:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665474022033226',3638,'121666547006','4058387002267','1.00','1500','retail','0','2022-10-23 20:50:03','','','','1150','Cash',206.90,'1500','','','12','','1','2022-10-23 14:50:53','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665481353350320',3639,'121666547454','6161101602372','1.00','250','retail','0','2022-10-23 21:02:24','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-23 15:02:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665481443350320',3640,'121666547454','6161101605458','1.00','270','retail','0','2022-10-23 21:02:24','','','','182','Cash',37.24,'270','','','12','','1','2022-10-23 15:02:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665483513112332',3641,'121666548156','6161101603522','1.00','800','retail','0','2022-10-23 21:05:51','','','','501','Cash',110.34,'800','','','12','','1','2022-10-23 15:06:01','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665512176023532',3642,'121666548362','6001452371506','1.00','1600','retail','0','2022-10-23 21:53:37','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-23 15:54:45','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665513742323333',3643,'121666551286','6161101601979','1.00','250','retail','0','2022-10-23 21:56:22','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-23 15:57:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665513811033126',3644,'121666551286','6161101602372','1.00','250','retail','0','2022-10-23 21:56:22','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-23 15:57:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665524052033242',3645,'121666551424','6001452301862','1.00','1600','retail','0','2022-10-23 22:13:26','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-23 16:14:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665528577033726',3646,'121666552475','082184090442','1.00','5300','retail','0','2022-10-23 22:21:23','','','','3450','Cash',731.03,'5300','','','12','','1','2022-10-23 16:22:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665529292033292',3647,'121666552925','6161100420076','1.00','1000','retail','0','2022-10-23 22:22:09','','','','363','Cash',137.93,'1000','','','12','','1','2022-10-23 16:23:10','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665534505636513',3648,'121666553437','082184090473','1.00','4000','retail','0','2022-10-23 22:30:59','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-23 16:34:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665534593514263',3649,'121666553437','5011013100118','1.00','3350','retail','0','2022-10-23 22:30:59','','','','2461','Cash',462.07,'3350','','','12','','1','2022-10-23 16:34:13','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2887.93,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665541013511263',3650,'121666553654','3219820000078','1.00','5500','retail','0','2022-10-23 22:41:42','','','','3954','Cash',758.62,'5500','','','12','','1','2022-10-23 16:42:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4741.38,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665544844033426',3651,'121666554148','6161101602167','1.00','550','retail','0','2022-10-23 22:48:27','','','','388','Cash',75.86,'550','','','12','','1','2022-10-23 16:48:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665545073350320',3652,'121666554148','5018907194802','1.00','150','retail','0','2022-10-23 22:48:27','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-23 16:48:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665547621332263',3653,'121666554534','3155930006015','6.00','1500','retail','0','2022-10-23 22:52:43','','','','188','Cash',206.90,'250','','','12','','1','2022-10-23 16:52:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665562983512263',3654,'121666554767','6161101603522','1.00','800','retail','0','2022-10-23 23:19:53','','','','501','Cash',110.34,'800','','','12','','1','2022-10-23 17:19:59','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665563195636513',3655,'121666554767','5449000014536','1.00','80','retail','0','2022-10-23 23:19:53','','','','49','Cash',11.03,'80','','','12','','1','2022-10-23 17:19:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665563433513263',3656,'121666554767','6164001199331','1.00','70','retail','0','2022-10-23 23:19:53','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-23 17:19:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665563790303223',3657,'121666554767','5449000131836','1.00','80','retail','0','2022-10-23 23:19:53','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-23 17:19:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665563933033326',3658,'121666554767','5449000014536','1.00','80','retail','0','2022-10-23 23:19:53','','','','49','Cash',11.03,'80','','','12','','1','2022-10-23 17:19:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665586093516263',3659,'121666557638','5000267014609','1.00','1100','retail','0','2022-10-23 23:57:49','','','','794','Cash',151.72,'1100','','','12','','1','2022-10-23 17:58:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665586383350320',3660,'121666557638','90162602','2.00','460','retail','0','2022-10-23 23:57:49','','','','147','Cash',63.45,'230','','','12','','1','2022-10-23 17:58:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665586470332020',3661,'121666557638','5018907194802','1.00','150','retail','0','2022-10-23 23:57:49','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-23 17:58:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665586578262632',3662,'121666557638','6164001199331','1.00','70','retail','0','2022-10-23 23:57:49','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-23 17:58:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665586695636513',3663,'121666557638','54493360','1.00','80','retail','0','2022-10-23 23:57:49','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-23 17:58:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665598182021301',3664,'121666558734','5018907194802','2.00','300','retail','0','2022-10-24 00:16:58','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-23 18:17:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665602199033926',3665,'121666559822','6161101561280','1.00','270','retail','0','2022-10-24 00:23:40','','','','190','Cash',37.24,'270','','','12','','1','2022-10-23 18:25:52','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665612830332020',3666,'121666560353','6001452258005','1.00','1600','retail','0','2022-10-24 00:41:24','','','','1150','Cash',220.69,'1600','','','12','','1','2022-10-23 18:41:54','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665651223350320',3667,'121666561315','6161101604550','1.00','400','retail','0','2022-10-24 01:45:23','','','','284','Cash',55.17,'400','','','12','','1','2022-10-23 19:46:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665658692033285',3668,'121666565190','8712000900045','3.00','750','retail','0','2022-10-24 01:57:50','','','','182','Cash',103.45,'250','','','12','','1','2022-10-23 19:58:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665659213223231',3669,'121666565908','716165173670','1.00','150','retail','0','2022-10-24 01:58:53','','','','46','Cash',20.69,'150','','','12','','1','2022-10-23 19:58:56','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665659320303223',3670,'121666565908','1000','1.00','270','retail','0','2022-10-24 01:58:53','','','','192','Cash',37.24,'270','','','12','','1','2022-10-23 19:58:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665673866636613',3671,'121666565937','6161101561280','1.00','270','retail','0','2022-10-24 02:23:06','','','','190','Cash',37.24,'270','','','12','','1','2022-10-23 20:26:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665694288033826',3672,'121666569269','50112753','1.00','80','retail','0','2022-10-24 02:57:09','','','','56','Cash',11.03,'80','','','12','','1','2022-10-23 20:59:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216665699233631021',3673,'121666569573','6161101561280','1.00','270','retail','0','2022-10-24 03:05:24','','','','190','Cash',37.24,'270','','','12','','1','2022-10-23 21:07:27','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666280842033208',3674,'121666628078','6161101605465','1.00','800','retail','0','2022-10-24 19:14:44','','','','501','Cash',110.34,'800','','','12','','1','2022-10-24 13:23:38','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666286286323603',3675,'121666628620','8712000900045','1.00','250','retail','0','2022-10-24 19:23:49','','','','182','Cash',34.48,'250','','','12','','1','2022-10-24 13:23:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666367513360320',3676,'121666636735','6161101602600','2.00','440','retail','0','2022-10-24 21:39:20','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-24 15:39:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666367593317263',3677,'121666636735','6161101602938','1.00','250','retail','0','2022-10-24 21:39:20','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-24 15:39:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666403144033426',3678,'121666636770','6161101602372','2.00','500','retail','0','2022-10-24 22:38:35','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-24 16:39:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666434244033426',3679,'121666640349','8712000900045','3.00','750','retail','0','2022-10-24 23:32:01','','','','182','Cash',103.45,'250','','','12','','1','2022-10-24 17:32:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','2.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666460152033206',3680,'121666643525','6161101602600','2.00','440','retail','0','2022-10-25 00:13:36','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-24 18:15:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666485944636413',3681,'121666646114','6161101603324','1.00','250','retail','0','2022-10-25 00:56:35','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-24 18:56:39','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666495920332020',3682,'121666648600','6001495062508','1.00','2800','retail','0','2022-10-25 01:13:12','','','','2011','Cash',386.21,'2800','','','12','','1','2022-10-24 19:20:22','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',2413.79,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666500866033626',3683,'121666650024','5010103930628','1.00','1550','retail','0','2022-10-25 01:21:52','','','','1125','Cash',213.79,'1550','','','12','','1','2022-10-24 19:23:34','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1336.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666501040303223',3684,'121666650024','8712000900045','3.00','750','retail','0','2022-10-25 01:21:52','','','','182','Cash',103.45,'250','','','12','','1','2022-10-24 19:23:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666501122033226',3685,'121666650024','6161101602372','1.00','250','retail','0','2022-10-25 01:21:52','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-24 19:23:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666502970303223',3686,'121666650215','5060608740253','1.00','80','retail','0','2022-10-25 01:25:08','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-24 19:25:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666503071222632',3687,'121666650215','5060639129003','1.00','250','retail','0','2022-10-25 01:25:08','','','','153','Cash',34.48,'250','','','12','','1','2022-10-24 19:25:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666550300033026',3688,'121666650311','6161101603522','1.00','800','retail','0','2022-10-25 02:43:50','','','','501','Cash',110.34,'800','','','12','','1','2022-10-24 20:43:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666982226323603',3689,'121666698208','5060608740253','2.00','160','retail','0','2022-10-25 14:44:28','','','','41.82','Cash',22.07,'80','','','12','','1','2022-10-25 08:44:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666982522033228',3690,'121666698208','5449000028921','1.00','150','retail','0','2022-10-25 14:44:28','','','','103','Cash',20.69,'150','','','12','','1','2022-10-25 08:44:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216666982673360320',3691,'121666698208','6164001199010','1.00','100','retail','0','2022-10-25 14:44:28','','','','38','Cash',13.79,'100','','','12','','1','2022-10-25 08:44:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667036312033263',3692,'121666698275','5449000061478','1.00','180','retail','0','2022-10-25 16:13:52','','','','84','Cash',24.83,'180','','','12','','1','2022-10-25 10:17:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667045755033526',3693,'121666703833','6161101602372','1.00','250','retail','0','2022-10-25 16:29:36','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-25 10:29:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667159022903302',3694,'121666715891','8712000900045','2.00','500','retail','0','2022-10-25 19:38:22','','','','182','Cash',68.97,'250','','','12','','1','2022-10-25 13:38:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667178093118263',3695,'121666715915','5060639129003','1.00','250','retail','0','2022-10-25 20:10:10','','','','153','Cash',34.48,'250','','','12','','1','2022-10-25 14:10:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667219662033291',3696,'121666721062','6161101602181','1.00','550','retail','0','2022-10-25 21:19:26','','','','388','Cash',75.86,'550','','','12','','1','2022-10-25 15:21:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667220852636213',3697,'121666722078','6161100421370','1.00','700','retail','0','2022-10-25 21:21:26','','','','502','Cash',96.55,'700','','','12','','1','2022-10-25 15:21:30','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',603.45,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667256266323603',3698,'121666722091','6161101603522','1.00','800','retail','0','2022-10-25 22:20:33','','','','501','Cash',110.34,'800','','','12','','1','2022-10-25 16:23:01','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667256322033265',3699,'121666722091','5449000014536','1.00','80','retail','0','2022-10-25 22:20:33','','','','49','Cash',11.03,'80','','','12','','1','2022-10-25 16:23:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667261900033026',3700,'121666725782','6161101606011','6.00','1320','retail','0','2022-10-25 22:29:50','','','','172.833','Cash',182.07,'220','','','12','','1','2022-10-25 16:31:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'6','13.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667266483216263',3701,'121666726294','5449000131836','1.00','80','retail','0','2022-10-25 22:37:29','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-25 16:37:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667273340303223',3702,'121666726652','6161101601979','6.00','1500','retail','0','2022-10-25 22:51:13','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-25 16:53:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667273442636213',3703,'121666726652','6161101602921','2.00','500','retail','0','2022-10-25 22:51:13','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-25 16:53:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667274023214263',3704,'121666726652','5449000131836','2.00','160','retail','0','2022-10-25 22:51:13','','','','53.333','Cash',22.07,'80','','','12','','1','2022-10-25 16:53:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',137.93,'','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667292903212263',3705,'121666727629','5449000131836','1.00','80','retail','0','2022-10-25 23:21:31','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-25 17:21:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667302799033926',3706,'121666729294','716165177364','1.00','250','retail','0','2022-10-25 23:38:00','','','','130','Cash',34.48,'250','','','12','','1','2022-10-25 17:38:02','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667303240303223',3707,'121666730284','40822938','3.00','210','retail','0','2022-10-25 23:38:44','','','','53.333','Cash',28.97,'70','','','12','','1','2022-10-25 17:38:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667326680362283',3708,'121666730328','6161101602600','1.00','220','retail','0','2022-10-26 00:17:55','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-25 18:18:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667326746373603',3709,'121666730328','6161101603324','1.00','250','retail','0','2022-10-26 00:17:55','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-25 18:18:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667355322033255',3710,'121666732712','5000196006652','2.00','800','retail','0','2022-10-26 01:05:45','','','','310','Cash',110.34,'400','','','12','','1','2022-10-25 19:05:48','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667355453370320',3711,'121666732712','5060608740253','2.00','160','retail','0','2022-10-26 01:05:45','','','','41.82','Cash',22.07,'80','','','12','','1','2022-10-25 19:05:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667357430332020',3712,'121666735549','5000292001001','1.00','1600','retail','0','2022-10-26 01:10:00','','','','1141','Cash',220.69,'1600','','','12','','1','2022-10-25 19:10:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667357657520726',3713,'121666735549','5000289933292','1.00','950','retail','0','2022-10-26 01:10:00','','','','710','Cash',131.03,'950','','','12','','1','2022-10-25 19:10:22','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667357816383603',3714,'121666735549','5449000000286','1.00','250','retail','0','2022-10-26 01:10:00','','','','158','Cash',34.48,'250','','','12','','1','2022-10-25 19:10:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667358000303223',3715,'121666735549','50112753','1.00','80','retail','0','2022-10-26 01:10:00','','','','56','Cash',11.03,'80','','','12','','1','2022-10-25 19:10:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667399162033299',3716,'121666739044','5018907194802','1.00','150','retail','0','2022-10-26 02:18:37','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-25 20:18:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667406383416263',3717,'121666739921','6161101602600','1.00','220','retail','0','2022-10-26 02:34:45','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-25 20:35:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667408840303223',3718,'121666739921','6161101603324','1.00','250','retail','0','2022-10-26 02:34:45','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-25 20:35:30','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667409462033290',3719,'121666740932','6161101602600','1.00','220','retail','0','2022-10-26 02:35:53','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-25 20:35:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667409534636413',3720,'121666740932','5060608740253','1.00','80','retail','0','2022-10-26 02:35:53','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-25 20:35:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667419753370320',3721,'121666740958','6161101602051','1.00','550','retail','0','2022-10-26 02:52:56','','','','392','Cash',75.86,'550','','','12','','1','2022-10-25 20:54:27','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667802748636813',3722,'121666780260','6164001199010','2.00','200','retail','0','2022-10-26 13:31:14','','','','38','Cash',27.59,'100','','','12','','1','2022-10-26 07:31:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667878302033287',3723,'121666787819','6161101601979','1.00','250','retail','0','2022-10-26 15:37:10','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-26 09:37:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667878466033626',3724,'121666787834','6161101603379','1.00','250','retail','0','2022-10-26 15:37:26','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-26 09:37:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667896963816263',3725,'121666787855','6164001199010','1.00','100','retail','0','2022-10-26 16:08:16','','','','38','Cash',13.79,'100','','','12','','1','2022-10-26 10:08:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667904263914263',3726,'121666789712','90162602','1.00','230','retail','0','2022-10-26 16:20:35','','','','147','Cash',31.72,'230','','','12','','1','2022-10-26 10:21:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667904350332020',3727,'121666789712','6161101602525','1.00','120','retail','0','2022-10-26 16:20:35','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-26 10:21:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667974169636913',3728,'121666797409','6161100421288','1.00','1000','retail','0','2022-10-26 18:17:10','','','','636','Cash',137.93,'1000','','','12','','1','2022-10-26 12:18:13','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216667974306333603',3729,'121666797409','5449000014535','1.00','120','retail','0','2022-10-26 18:17:10','','','','64','Cash',16.55,'120','','','12','','1','2022-10-26 12:18:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668000311033126',3730,'121666797588','6161101602372','4.00','1000','retail','0','2022-10-26 19:00:32','','','','189.75','Cash',137.93,'250','','','12','','1','2022-10-26 13:00:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668063213013263',3731,'121666800037','6161101603379','1.00','250','retail','0','2022-10-26 20:45:22','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-26 14:45:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668068444033426',3732,'121666806331','6164001199010','1.00','100','retail','0','2022-10-26 20:54:04','','','','38','Cash',13.79,'100','','','12','','1','2022-10-26 14:54:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668083762033238',3733,'121666806848','1000','1.00','270','retail','0','2022-10-26 21:19:37','','','','192','Cash',37.24,'270','','','12','','1','2022-10-26 15:20:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668094023380320',3734,'121666808414','5010677015615','1.00','1800','retail','0','2022-10-26 21:36:42','','','','1300','Cash',248.28,'1800','','','12','','1','2022-10-26 15:38:13','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668096362033269',3735,'121666809495','5018907194802','2.00','300','retail','0','2022-10-26 21:42:10','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-26 15:43:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668096780332020',3736,'121666809495','5449000004864','1.00','250','retail','0','2022-10-26 21:42:10','','','','158','Cash',34.48,'250','','','12','','1','2022-10-26 15:43:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668097290636013',3737,'121666809495','5010327302201','2.00','17000','retail','0','2022-10-26 21:42:10','','','','6800','Cash',2344.83,'8500','','','12','','1','2022-10-26 15:43:18','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668125803115263',3738,'121666809799','5010103930628','1.00','1750','retail','0','2022-10-26 22:32:08','','','','1125','Cash',241.38,'1750','','','12','','1','2022-10-26 16:34:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668126922033226',3739,'121666809799','6164001199331','2.00','140','retail','0','2022-10-26 22:32:08','','','','37.08','Cash',19.31,'70','','','12','','1','2022-10-26 16:34:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668127287083263',3740,'121666809799','6164001199010','1.00','100','retail','0','2022-10-26 22:32:08','','','','38','Cash',13.79,'100','','','12','','1','2022-10-26 16:34:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668181166313603',3741,'121666814054','082184090442','1.00','5300','retail','0','2022-10-27 00:03:57','','','','3450','Cash',731.03,'5300','','','12','','1','2022-10-26 18:04:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668181311636113',3742,'121666814054','5000289020800','1.00','2500','retail','0','2022-10-27 00:03:57','','','','1840','Cash',344.83,'2500','','','12','','1','2022-10-26 18:04:20','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668181421636113',3743,'121666814054','5018907194802','3.00','450','retail','0','2022-10-27 00:03:57','','','','74.58','Cash',62.07,'150','','','12','','1','2022-10-26 18:04:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668182206323603',3744,'121666814054','6161101603324','2.00','500','retail','0','2022-10-27 00:03:57','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-26 18:04:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668182293380320',3745,'121666814054','5449000188342','1.00','100','retail','0','2022-10-27 00:03:57','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-26 18:04:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668182372033228',3746,'121666814054','5060608747818','1.00','80','retail','0','2022-10-27 00:03:57','','','','67','Cash',11.03,'80','','','12','','1','2022-10-26 18:04:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668184856383603',3747,'121666818261','082184090473','1.00','4000','retail','0','2022-10-27 00:08:05','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-26 18:08:17','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668187551636113',3748,'121666818498','5018907194802','1.00','150','retail','0','2022-10-27 00:12:35','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-26 18:12:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668204433214263',3749,'121666820432','5449000014536','1.00','80','retail','0','2022-10-27 00:40:51','','','','49','Cash',11.03,'80','','','12','','1','2022-10-26 18:40:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668204516353603',3750,'121666820432','6164001199010','1.00','100','retail','0','2022-10-27 00:40:51','','','','38','Cash',13.79,'100','','','12','','1','2022-10-26 18:40:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668205692636213',3751,'121666820456','5010232953994','1.00','600','retail','0','2022-10-27 00:42:50','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-26 18:43:41','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668207082636213',3752,'121666820623','90162602','1.00','230','retail','0','2022-10-27 00:45:20','','','','147','Cash',31.72,'230','','','12','','1','2022-10-26 18:45:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668207190303223',3753,'121666820623','6164001199331','1.00','70','retail','0','2022-10-27 00:45:20','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-26 18:45:22','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668216806383603',3754,'121666820723','6164001199331','1.00','70','retail','0','2022-10-27 01:01:21','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-26 19:02:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668220273380320',3755,'121666821736','6161101604703','1.00','250','retail','0','2022-10-27 01:07:07','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-26 19:07:13','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668221401322232',3756,'121666822131','6161101603324','2.00','500','retail','0','2022-10-27 01:09:00','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-26 19:09:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668224252033242',3757,'121666822144','6161101603379','1.00','250','retail','0','2022-10-27 01:13:46','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-26 19:13:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668243286323603',3758,'121666823737','6161101604703','2.00','500','retail','0','2022-10-27 01:45:28','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-26 19:45:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668243455033526',3759,'121666824337','6161101606011','1.00','220','retail','0','2022-10-27 01:45:45','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-26 19:45:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668247733380320',3760,'121666824764','6161101603324','1.00','250','retail','0','2022-10-27 01:52:53','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-26 19:52:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668261723380320',3761,'121666824778','50196166','1.00','750','retail','0','2022-10-27 02:16:12','','','','443','Cash',103.45,'750','','','12','','1','2022-10-26 20:16:33','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668296396333603',3762,'121666826195','5060608747818','2.00','160','retail','0','2022-10-27 03:14:07','','','','67','Cash',22.07,'80','','','12','','1','2022-10-26 21:14:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668296477033726',3763,'121666826195','5018907194802','1.00','150','retail','0','2022-10-27 03:14:07','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-26 21:14:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668728452624270',3764,'121666872838','6161101602525','1.00','120','retail','0','2022-10-27 15:14:28','','','','95.75','Cash',16.55,'120','','','12','','1','2022-10-27 09:14:33','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668728673718263',3765,'121666872838','5449000131836','1.00','80','retail','0','2022-10-27 15:14:28','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-27 09:14:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668794610303223',3766,'121666874690','3155930006015','6.00','1500','retail','0','2022-10-27 17:04:21','','','','188','Cash',206.90,'250','','','12','','1','2022-10-27 11:04:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668795040353332',3767,'121666879494','54491069','1.00','80','retail','0','2022-10-27 17:06:53','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-27 11:06:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668796137636713',3768,'121666879494','6161101604703','1.00','250','retail','0','2022-10-27 17:06:53','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-27 11:06:56','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668815273380320',3769,'121666879617','6161101600927','1.00','1900','retail','0','2022-10-27 17:38:58','','','','1417','Cash',262.07,'1900','','','12','','1','2022-10-27 11:42:41','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668815373380320',3770,'121666879617','5449000028976','1.00','150','retail','0','2022-10-27 17:38:58','','','','103','Cash',20.69,'150','','','12','','1','2022-10-27 11:42:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668844412033244',3771,'121666884425','6161101606011','7.00','1540','retail','0','2022-10-27 18:27:21','','','','172.833','Cash',212.41,'220','','','12','','1','2022-10-27 12:43:36','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'7','7.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668854318636813',3772,'121666885418','8712000900663','4.00','1000','retail','0','2022-10-27 18:43:52','','','','174','Cash',137.93,'250','','','12','','1','2022-10-27 12:43:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668929283919263',3773,'121666886757','6161101603324','1.00','250','retail','0','2022-10-27 20:49:09','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-27 14:50:26','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668929493112332',3774,'121666886757','6161101604406','1.00','250','retail','0','2022-10-27 20:49:09','','','','181.708','Cash',34.48,'250','','','12','','1','2022-10-27 14:50:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216668951630332020',3775,'121666893027','6002269000566','1.00','1200','retail','0','2022-10-27 21:26:03','','','','680','Cash',165.52,'1200','','','12','','1','2022-10-27 15:26:09','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669003055033526',3776,'121666895170','6001496011796','1.00','1700','retail','0','2022-10-27 22:51:52','','','','1072','Cash',234.48,'1700','','','12','','1','2022-10-27 16:51:58','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669003123390320',3777,'121666895170','5449000131836','1.00','80','retail','0','2022-10-27 22:51:52','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-27 16:51:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669040400332020',3778,'121666900429','90162602','6.00','1380','retail','0','2022-10-27 23:54:01','','','','147','Cash',190.34,'230','','','12','','1','2022-10-27 18:00:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'6','23.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669646956636613',3779,'121666964674','716165173670','1.00','150','retail','0','2022-10-28 16:44:56','','','','46','Cash',20.69,'150','','','12','','1','2022-10-28 10:45:15','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669708830332020',3780,'121666964716','6161101602938','1.00','250','retail','0','2022-10-28 18:28:03','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-28 12:28:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669725322033226',3781,'121666971363','3155930006015','4.00','1000','retail','0','2022-10-28 18:55:32','','','','188','Cash',137.93,'250','','','12','','1','2022-10-28 12:56:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669760026139622',3782,'121666975985','6161101602167','1.00','550','retail','0','2022-10-28 19:54:49','','','','388','Cash',75.86,'550','','','12','','1','2022-10-28 13:54:55','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669760299033926',3783,'121666975985','5018907197803','1.00','100','retail','0','2022-10-28 19:54:49','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-28 13:54:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669761073390320',3784,'121666976096','6161101602167','2.00','1100','retail','0','2022-10-28 19:56:36','','','','388','Cash',151.72,'550','','','12','','1','2022-10-28 13:58:17','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669761950332020',3785,'121666976096','5060608740253','1.00','80','retail','0','2022-10-28 19:56:36','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-28 13:58:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669801003811263',3786,'121666980090','6161101601979','2.00','500','retail','0','2022-10-28 21:02:28','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-28 15:02:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669801146313603',3787,'121666980090','8712000900663','2.00','500','retail','0','2022-10-28 21:02:28','','','','174','Cash',68.97,'250','','','12','','1','2022-10-28 15:02:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669801293811263',3788,'121666980090','6161101602938','2.00','500','retail','0','2022-10-28 21:02:28','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-28 15:02:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669801396333602',3789,'121666980090','024000150152','1.00','250','retail','0','2022-10-28 21:02:28','','','','205','Cash',34.48,'250','','','12','','1','2022-10-28 15:02:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669801486343603',3790,'121666980090','024000150121','1.00','250','retail','0','2022-10-28 21:02:28','','','','205','Cash',34.48,'250','','','12','','1','2022-10-28 15:02:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669804123390320',3791,'121666980153','6161101603324','1.00','250','retail','0','2022-10-28 21:06:53','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-28 15:06:55','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669845760332020',3792,'121666980417','5000281028620','1.00','9500','retail','0','2022-10-28 22:16:17','','','','7071','Cash',1310.34,'9500','','','12','','1','2022-10-28 16:18:10','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',8189.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669883922033226',3793,'121666984692','6001496011772','1.00','800','retail','0','2022-10-28 23:20:05','','','','544','Cash',110.34,'800','','','12','','1','2022-10-28 17:20:11','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669884050332020',3794,'121666984692','5449000131836','1.00','80','retail','0','2022-10-28 23:20:05','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-28 17:20:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669886800033026',3795,'121666988413','6002269000566','1.00','1200','retail','0','2022-10-28 23:24:40','','','','680','Cash',165.52,'1200','','','12','','1','2022-10-28 17:25:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669898893233339',3796,'121666988734','082184090473','1.00','4000','retail','0','2022-10-28 23:44:49','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-28 17:44:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669900840332020',3797,'121666989895','6161101603324','2.00','500','retail','0','2022-10-28 23:48:04','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-28 17:48:54','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669902050332020',3798,'121666990136','082184090442','1.00','5300','retail','0','2022-10-28 23:52:05','','','','3450','Cash',731.03,'5300','','','12','','1','2022-10-28 17:52:11','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669902293912263',3799,'121666990136','5018907194802','3.00','450','retail','0','2022-10-28 23:52:05','','','','74.58','Cash',62.07,'150','','','12','','1','2022-10-28 17:52:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669902555033526',3800,'121666990136','8712000900663','8.00','2000','retail','0','2022-10-28 23:52:05','','','','174','Cash',275.86,'250','','','12','','1','2022-10-28 17:52:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'8','8.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669903009020326',3801,'121666990136','6161101602938','1.00','250','retail','0','2022-10-28 23:52:05','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-28 17:52:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669903140332020',3802,'121666990136','8712000900045','1.00','250','retail','0','2022-10-28 23:52:05','','','','182','Cash',34.48,'250','','','12','','1','2022-10-28 17:52:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669903244033426',3803,'121666990136','50196111','1.00','1500','retail','0','2022-10-28 23:52:05','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-28 17:52:11','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669914829636913',3804,'121666990873','6161101604406','2.00','500','retail','0','2022-10-29 00:11:23','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-28 18:24:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669943799033926',3805,'121666994365','50196111','1.00','1500','retail','0','2022-10-29 01:02:50','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-28 19:02:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669944760303223',3806,'121666994365','8712000900663','2.00','500','retail','0','2022-10-29 01:02:50','','','','174','Cash',68.97,'250','','','12','','1','2022-10-28 19:02:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669945326333603',3807,'121666994365','6161101606011','2.00','440','retail','0','2022-10-29 01:02:50','','','','172.833','Cash',60.69,'220','','','12','','1','2022-10-28 19:02:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669945690332020',3808,'121666994365','6161101603324','2.00','500','retail','0','2022-10-29 01:02:50','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-28 19:02:53','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669948233033326',3809,'121666994814','50196166','1.00','750','retail','0','2022-10-29 01:07:27','','','','443','Cash',103.45,'750','','','12','','1','2022-10-28 19:07:38','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669948719636913',3810,'121666994859','8000530300474','2.00','3200','retail','0','2022-10-29 01:08:02','','','','1050','Cash',441.38,'1600','','','12','','1','2022-10-28 19:08:48','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',2758.62,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669952011033126',3811,'121666995194','6161101605465','1.00','800','retail','0','2022-10-29 01:13:22','','','','501','Cash',110.34,'800','','','12','','1','2022-10-28 19:13:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669965393915263',3812,'121666995206','6161101603324','1.00','250','retail','0','2022-10-29 01:36:01','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-28 19:36:48','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669965502033256',3813,'121666995206','6164001199331','1.00','70','retail','0','2022-10-29 01:36:01','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-28 19:36:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669965600332020',3814,'121666995206','5018907194802','2.00','300','retail','0','2022-10-29 01:36:01','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-28 19:36:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669982166313603',3815,'121666996609','6164001199331','1.00','70','retail','0','2022-10-29 02:03:58','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-28 20:04:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669982272033228',3816,'121666996609','5018907194802','1.00','150','retail','0','2022-10-29 02:03:58','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-28 20:04:01','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216669982372033228',3817,'121666996609','6161101603379','1.00','250','retail','0','2022-10-29 02:03:58','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-28 20:04:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670555606363603',3818,'121667052257','6161101602600','2.00','440','retail','0','2022-10-29 17:59:21','','','','154.95','Cash',60.69,'220','','','12','','1','2022-10-29 11:59:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670566640303223',3819,'121667055566','6161101601979','6.00','1500','retail','0','2022-10-29 18:17:55','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-29 12:19:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670566745637513',3820,'121667055566','5449000028921','1.00','150','retail','0','2022-10-29 18:17:55','','','','103','Cash',20.69,'150','','','12','','1','2022-10-29 12:19:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670582503300320',3821,'121667056787','6161101604703','2.00','500','retail','0','2022-10-29 18:44:26','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-29 12:44:51','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670582655637513',3822,'121667056787','6161101603379','3.00','750','retail','0','2022-10-29 18:44:26','','','','190.375','Cash',103.45,'250','','','12','','1','2022-10-29 12:44:51','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670591302033219',3823,'121667058292','6008835000930','1.00','180','retail','0','2022-10-29 18:59:20','','','','130','Cash',24.83,'180','','','12','','1','2022-10-29 13:01:29','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670591590920127',3824,'121667058292','6161101603324','1.00','250','retail','0','2022-10-29 18:59:20','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-29 13:01:29','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670615390303223',3825,'121667059290','6161101602938','2.00','500','retail','0','2022-10-29 19:39:00','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-29 13:39:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670635173615263',3826,'121667061543','5060608740253','1.00','80','retail','0','2022-10-29 20:11:58','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-29 14:12:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670637050332020',3827,'121667063533','6161101602167','1.00','550','retail','0','2022-10-29 20:15:23','','','','388','Cash',75.86,'550','','','12','','1','2022-10-29 14:15:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670637226637613',3828,'121667063533','5060608740253','1.00','80','retail','0','2022-10-29 20:15:23','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-29 14:15:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670641043611263',3829,'121667063727','6002269000566','1.00','1200','retail','0','2022-10-29 20:22:16','','','','680','Cash',165.52,'1200','','','12','','1','2022-10-29 14:22:48','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670641363300320',3830,'121667063727','5018907194802','1.00','150','retail','0','2022-10-29 20:22:16','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-29 14:22:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670643970303223',3831,'121667064169','50196111','1.00','1500','retail','0','2022-10-29 20:28:11','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-29 14:28:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670644150303223',3832,'121667064169','5060608740253','1.00','80','retail','0','2022-10-29 20:28:11','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-29 14:28:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670644540332020',3833,'121667064169','90490279','1.00','100','retail','0','2022-10-29 20:28:11','','','','68','Cash',13.79,'100','','','12','','1','2022-10-29 14:28:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670644909320064',3834,'121667064169','90490224','1.00','100','retail','0','2022-10-29 20:28:11','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-29 14:28:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670651990303223',3835,'121667064501','5060608740253','1.00','80','retail','0','2022-10-29 20:40:53','','','','41.82','Cash',11.03,'80','','','12','','1','2022-10-29 14:41:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670652526637613',3836,'121667064501','90490279','1.00','100','retail','0','2022-10-29 20:40:53','','','','68','Cash',13.79,'100','','','12','','1','2022-10-29 14:41:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670664430332020',3837,'121667066436','6161101606547','1.00','550','retail','0','2022-10-29 21:00:43','','','','388','Cash',75.86,'550','','','12','','1','2022-10-29 15:05:16','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670693072033239',3838,'121667066717','6161101601979','6.00','1500','retail','0','2022-10-29 21:48:27','','','','172.75','Cash',206.90,'250','','','12','','1','2022-10-29 15:56:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670734133033326',3839,'121667069773','5060639129003','2.00','500','retail','0','2022-10-29 22:57:55','','','','153','Cash',68.97,'250','','','12','','1','2022-10-29 16:57:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','46.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670734243300320',3840,'121667069773','54491069','1.00','80','retail','0','2022-10-29 22:57:55','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-29 16:57:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670734413300320',3841,'121667069773','8712000900045','2.00','500','retail','0','2022-10-29 22:57:55','','','','182','Cash',68.97,'250','','','12','','1','2022-10-29 16:57:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670734560303223',3842,'121667069773','6161101601979','2.00','500','retail','0','2022-10-29 22:57:55','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-29 16:57:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670734747637713',3843,'121667069773','6161101603379','3.00','750','retail','0','2022-10-29 22:57:55','','','','190.375','Cash',103.45,'250','','','12','','1','2022-10-29 16:57:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670736477637713',3844,'121667073478','6161101603379','1.00','250','retail','0','2022-10-29 23:02:15','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-29 17:02:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670737352033273',3845,'121667073478','8712000900045','2.00','500','retail','0','2022-10-29 23:02:15','','','','182','Cash',68.97,'250','','','12','','1','2022-10-29 17:02:18','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670737773300320',3846,'121667073739','5010752000321','1.00','1800','retail','0','2022-10-29 23:02:58','','','','1037','Cash',248.28,'1800','','','12','','1','2022-10-29 17:05:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670739270303223',3847,'121667073919','6161101601979','1.00','250','retail','0','2022-10-29 23:05:28','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-29 17:05:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670747333717263',3848,'121667074719','6001496011772','1.00','800','retail','0','2022-10-29 23:19:27','','','','544','Cash',110.34,'800','','','12','','1','2022-10-29 17:19:45','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670747667637713',3849,'121667074719','6161101605465','1.00','800','retail','0','2022-10-29 23:19:27','','','','501','Cash',110.34,'800','','','12','','1','2022-10-29 17:19:45','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670748050303223',3850,'121667074787','5018907194802','2.00','300','retail','0','2022-10-29 23:21:42','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-29 17:21:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',258.62,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670748220332020',3851,'121667074787','6161101603379','3.00','750','retail','0','2022-10-29 23:21:42','','','','190.375','Cash',103.45,'250','','','12','','1','2022-10-29 17:21:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670748803300320',3852,'121667074787','90490224','1.00','100','retail','0','2022-10-29 23:21:42','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-29 17:21:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670749022033294',3853,'121667074787','5060639129003','2.00','500','retail','0','2022-10-29 23:21:42','','','','153','Cash',68.97,'250','','','12','','1','2022-10-29 17:21:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','44.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670749260303223',3854,'121667074914','5449000028921','1.00','150','retail','0','2022-10-29 23:22:07','','','','103','Cash',20.69,'150','','','12','','1','2022-10-29 17:22:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670749563719263',3855,'121667074930','90490224','1.00','100','retail','0','2022-10-29 23:22:37','','','','59.666','Cash',13.79,'100','','','12','','1','2022-10-29 17:22:39','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670750055033526',3856,'121667074960','5000267014005','1.00','1800','retail','0','2022-10-29 23:23:26','','','','1304','Cash',248.28,'1800','','','12','','1','2022-10-29 17:24:09','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670754493714263',3857,'121667075050','5449000000286','1.00','250','retail','0','2022-10-29 23:30:49','','','','158','Cash',34.48,'250','','','12','','1','2022-10-29 17:31:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670755130303223',3858,'121667075467','6161101602372','2.00','500','retail','0','2022-10-29 23:32:47','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-29 17:33:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670755253300320',3859,'121667075467','54493360','1.00','80','retail','0','2022-10-29 23:32:47','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-29 17:33:32','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670755673300320',3860,'121667075467','6161101602600','1.00','220','retail','0','2022-10-29 23:32:47','','','','154.95','Cash',30.34,'220','','','12','','1','2022-10-29 17:33:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670757123300320',3861,'121667075614','4067700014535','1.00','3400','retail','0','2022-10-29 23:35:28','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-29 17:36:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670757273300320',3862,'121667075614','5060639129003','1.00','250','retail','0','2022-10-29 23:35:28','','','','153','Cash',34.48,'250','','','12','','1','2022-10-29 17:36:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670786600033026',3863,'121667075807','1000','1.00','270','retail','0','2022-10-30 00:24:21','','','','192','Cash',37.24,'270','','','12','','1','2022-10-29 18:26:52','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670797396333603',3864,'121667078813','8000530800462','1.00','1600','retail','0','2022-10-30 00:42:19','','','','1050','Cash',220.69,'1600','','','12','','1','2022-10-29 18:44:38','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670804060303223',3865,'121667079879','6161101603324','1.00','250','retail','0','2022-10-30 00:53:27','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-29 18:56:15','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670813083813263',3866,'121667080577','6161101602372','1.00','250','retail','0','2022-10-30 01:08:28','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-29 19:09:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670824663814263',3867,'121667082455','1000','1.00','270','retail','0','2022-10-30 01:27:46','','','','192','Cash',37.24,'270','','','12','','1','2022-10-29 19:27:52','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670826023300320',3868,'121667082474','6164001199331','1.00','70','retail','0','2022-10-30 01:30:02','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-29 19:30:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670827062033272',3869,'121667082617','6161101602600','4.00','880','retail','0','2022-10-30 01:31:59','','','','154.95','Cash',121.38,'220','','','12','','1','2022-10-29 19:32:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670827193300320',3870,'121667082617','6161101602938','1.00','250','retail','0','2022-10-30 01:31:59','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-29 19:32:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670836733033326',3871,'121667083657','6161101601979','3.00','750','retail','0','2022-10-30 01:48:15','','','','172.75','Cash',103.45,'250','','','12','','1','2022-10-29 19:49:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670836952033263',3872,'121667083657','6161101602921','3.00','750','retail','0','2022-10-30 01:48:15','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-29 19:49:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670838530383332',3873,'121667083782','50196111','1.00','1500','retail','0','2022-10-30 01:52:40','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-29 19:52:48','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670838668637813',3874,'121667083782','5449000028921','1.00','150','retail','0','2022-10-30 01:52:40','','','','103','Cash',20.69,'150','','','12','','1','2022-10-29 19:52:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670838753300320',3875,'121667083782','6161101603324','2.00','500','retail','0','2022-10-30 01:52:40','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-29 19:52:48','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670838953300320',3876,'121667083782','6161101603379','2.00','500','retail','0','2022-10-30 01:52:40','','','','190.375','Cash',68.97,'250','','','12','','1','2022-10-29 19:52:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670839596353603',3877,'121667083782','5018907194802','1.00','150','retail','0','2022-10-30 01:52:40','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-29 19:52:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670842682033224',3878,'121667084259','5018907194802','1.00','150','retail','0','2022-10-30 01:57:48','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-29 19:57:51','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670852388033826',3879,'121667084272','6161101604406','2.00','500','retail','0','2022-10-30 02:15:40','','','','181.708','Cash',68.97,'250','','','12','','1','2022-10-29 20:15:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670853400033026',3880,'121667084272','6161101602372','1.00','250','retail','0','2022-10-30 02:15:40','','','','189.75','Cash',34.48,'250','','','12','','1','2022-10-29 20:15:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670869818637813',3881,'121667085352','5449000131836','1.00','80','retail','0','2022-10-30 02:43:31','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-29 20:43:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670870350303223',3882,'121667087017','6164001199331','1.00','70','retail','0','2022-10-30 02:43:55','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-29 20:44:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670871533033326',3883,'121667087124','6161101605465','1.00','800','retail','0','2022-10-30 02:46:10','','','','501','Cash',110.34,'800','','','12','','1','2022-10-29 20:48:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670871690332020',3884,'121667087124','6161101603324','2.00','500','retail','0','2022-10-30 02:46:10','','','','150.45','Cash',68.97,'250','','','12','','1','2022-10-29 20:48:35','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670893663813263',3885,'121667087316','6161101603379','2.00','500','retail','0','2022-10-30 03:22:46','','','','190.375','Cash',68.97,'250','','','12','','1','2022-10-29 21:23:01','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670914853300320',3886,'121667089382','024000150053','1.00','250','retail','0','2022-10-30 03:58:05','','','','205','Cash',34.48,'250','','','12','','1','2022-10-29 21:58:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670919330332020',3887,'121667091489','8712000900045','3.00','750','retail','0','2022-10-30 04:05:33','','','','182','Cash',103.45,'250','','','12','','1','2022-10-29 22:07:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','23.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670937280332020',3888,'121667092053','6161101603324','3.00','750','retail','0','2022-10-30 04:35:42','','','','150.45','Cash',103.45,'250','','','12','','1','2022-10-29 22:37:42','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670937379637913',3889,'121667092053','6161101605465','1.00','800','retail','0','2022-10-30 04:35:42','','','','501','Cash',110.34,'800','','','12','','1','2022-10-29 22:37:42','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670967072033276',3890,'121667093863','6161101601979','2.00','500','retail','0','2022-10-30 05:26:01','','','','172.75','Cash',68.97,'250','','','12','','1','2022-10-29 23:26:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670967279637913',3891,'121667093863','90162602','1.00','230','retail','0','2022-10-30 05:26:01','','','','147','Cash',31.72,'230','','','12','','1','2022-10-29 23:26:03','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216670967609637913',3892,'121667093863','8712000900045','3.00','750','retail','0','2022-10-30 05:26:01','','','','182','Cash',103.45,'250','','','12','','1','2022-10-29 23:26:03','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','20.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671426833310320',3893,'121667142676','6161101606011','1.00','220','retail','0','2022-10-30 18:11:24','','','','172.833','Cash',30.34,'220','','','12','','1','2022-10-30 12:11:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671433060303223',3894,'121667142688','6161101603379','3.00','750','retail','0','2022-10-30 18:21:47','','','','190.375','Cash',103.45,'250','','','12','','1','2022-10-30 12:21:49','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671472542033227',3895,'121667143310','6164001199010','1.00','100','retail','0','2022-10-30 19:27:34','','','','38','Cash',13.79,'100','','','12','','1','2022-10-30 13:27:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671503466033626',3896,'121667147258','6161101602921','1.00','250','retail','0','2022-10-30 20:19:09','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-30 14:21:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671503490333332',3897,'121667147258','6161101602921','1.00','250','retail','0','2022-10-30 20:19:09','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-30 14:21:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671510366333603',3898,'121667150512','6161101600941','1.00','750','retail','0','2022-10-30 20:30:37','','','','544','Cash',103.45,'750','','','12','','1','2022-10-30 14:32:05','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671521733310320',3899,'121667151126','4067700014535','1.00','3400','retail','0','2022-10-30 20:49:34','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-30 14:50:51','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671537666363603',3900,'121667153757','6161101601979','1.00','250','retail','0','2022-10-30 21:16:24','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-30 15:16:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671537733310320',3901,'121667153757','8712000900045','1.00','250','retail','0','2022-10-30 21:16:24','','','','182','Cash',34.48,'250','','','12','','1','2022-10-30 15:16:26','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671537830303223',3902,'121667153757','5018907194802','1.00','150','retail','0','2022-10-30 21:16:24','','','','74.58','Cash',20.69,'150','','','12','','1','2022-10-30 15:16:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671558873310320',3903,'121667153788','6164001199010','1.00','100','retail','0','2022-10-30 21:51:27','','','','38','Cash',13.79,'100','','','12','','1','2022-10-30 15:51:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671560911033126',3904,'121667155916','6161101602938','3.00','750','retail','0','2022-10-30 21:54:51','','','','198.45','Cash',103.45,'250','','','12','','1','2022-10-30 15:55:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671568715637513',3905,'121667156134','6161101603379','1.00','250','retail','0','2022-10-30 22:08:11','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-30 16:08:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671568826383603',3906,'121667156134','8712000900045','2.00','500','retail','0','2022-10-30 22:08:11','','','','182','Cash',68.97,'250','','','12','','1','2022-10-30 16:08:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671568903310320',3907,'121667156134','6161101601979','1.00','250','retail','0','2022-10-30 22:08:11','','','','172.75','Cash',34.48,'250','','','12','','1','2022-10-30 16:08:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671571346333603',3908,'121667156896','1000','1.00','270','retail','0','2022-10-30 22:12:14','','','','192','Cash',37.24,'270','','','12','','1','2022-10-30 16:12:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671576310332020',3909,'121667157555','6161101602372','2.00','500','retail','0','2022-10-30 22:20:31','','','','189.75','Cash',68.97,'250','','','12','','1','2022-10-30 16:21:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671577145637513',3910,'121667157684','6161101561280','1.00','270','retail','0','2022-10-30 22:21:55','','','','190','Cash',37.24,'270','','','12','','1','2022-10-30 16:21:57','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671586236323603',3911,'121667157719','50196111','1.00','1500','retail','0','2022-10-30 22:38:01','','','','855','Cash',206.90,'1500','','','12','','1','2022-10-30 16:38:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671586433516263',3912,'121667157719','8712000900045','2.00','500','retail','0','2022-10-30 22:38:01','','','','182','Cash',68.97,'250','','','12','','1','2022-10-30 16:38:04','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671586816383603',3913,'121667157719','5060608747818','2.00','160','retail','0','2022-10-30 22:38:01','','','','67','Cash',22.07,'80','','','12','','1','2022-10-30 16:38:04','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671591462033219',3914,'121667158685','6161101603379','1.00','250','retail','0','2022-10-30 22:46:04','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-30 16:46:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671591642033219',3915,'121667158685','6161101602938','1.00','250','retail','0','2022-10-30 22:46:04','','','','198.45','Cash',34.48,'250','','','12','','1','2022-10-30 16:46:06','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671611993310320',3916,'121667159168','40822938','1.00','70','retail','0','2022-10-30 23:20:00','','','','53.333','Cash',9.66,'70','','','12','','1','2022-10-30 17:20:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671619990303223',3917,'121667161237','6161101603379','1.00','250','retail','0','2022-10-30 23:33:20','','','','190.375','Cash',34.48,'250','','','12','','1','2022-10-30 17:33:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671635460332020',3918,'121667162004','6001496011772','1.00','800','retail','0','2022-10-30 23:59:31','','','','544','Cash',110.34,'800','','','12','','1','2022-10-30 17:59:37','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671635633310320',3919,'121667162004','5449000131836','1.00','80','retail','0','2022-10-30 23:59:31','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-30 17:59:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671635713615263',3920,'121667162004','54491069','1.00','80','retail','0','2022-10-30 23:59:31','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-30 17:59:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671643276323603',3921,'121667162004','087000006928','1.00','1800','retail','0','2022-10-31 00:12:19','','','','1320','Cash',248.28,'1800','','','12','','1','2022-10-30 18:18:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671643382033234',3922,'121667162004','5449000131836','1.00','80','retail','0','2022-10-31 00:12:19','','','','53.333','Cash',11.03,'80','','','12','','1','2022-10-30 18:18:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671650376333603',3923,'121667164720','5010103930970','1.00','750','retail','0','2022-10-31 00:24:38','','','','542','Cash',103.45,'750','','','12','','1','2022-10-30 18:24:47','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671650673610263',3924,'121667164720','5060608747818','2.00','160','retail','0','2022-10-31 00:24:38','','','','67','Cash',22.07,'80','','','12','','1','2022-10-30 18:24:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671650776373603',3925,'121667164720','8712000900045','1.00','250','retail','0','2022-10-31 00:24:38','','','','182','Cash',34.48,'250','','','12','','1','2022-10-30 18:24:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671651676637613',3926,'121667165088','5449000028976','1.00','150','retail','0','2022-10-31 00:26:07','','','','103','Cash',20.69,'150','','','12','','1','2022-10-30 18:26:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216671680636637613',3927,'121667165088','6001496301705','1.00','1350','retail','0','2022-10-31 01:14:23','','','','729','Cash',186.21,'1350','','','12','','1','2022-10-30 19:23:42','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1163.79,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672307500332020',3928,'121667230691','6161101600941','1.00','750','retail','0','2022-10-31 18:39:28','','','','544','Cash',103.45,'750','','','12','','1','2022-10-31 12:39:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672307670303223',3929,'121667230691','6008835000930','1.00','180','retail','0','2022-10-31 18:39:28','','','','130','Cash',24.83,'180','','','12','','1','2022-10-31 12:39:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672310986393603',3930,'121667230773','6001496011796','1.00','1700','retail','0','2022-10-31 18:44:58','','','','1072','Cash',234.48,'1700','','','12','','1','2022-10-31 12:45:48','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672337260332020',3931,'121667231149','40822938','1.00','70','retail','0','2022-10-31 19:28:47','','','','53.333','Cash',9.66,'70','','','12','','1','2022-10-31 13:28:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672337970332020',3932,'121667233733','6161101602167','1.00','550','retail','0','2022-10-31 19:29:58','','','','388','Cash',75.86,'550','','','12','','1','2022-10-31 13:31:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672338810332020',3933,'121667233873','1000','1.00','270','retail','0','2022-10-31 19:31:22','','','','192','Cash',37.24,'270','','','12','','1','2022-10-31 13:31:25','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672355555262732',3934,'121667233886','1000','1.00','270','retail','0','2022-10-31 19:59:42','','','','192','Cash',37.24,'270','','','12','','1','2022-10-31 14:00:48','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672355640303223',3935,'121667233886','6164001199331','1.00','70','retail','0','2022-10-31 19:59:42','','','','37.08','Cash',9.66,'70','','','12','','1','2022-10-31 14:00:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672355823320320',3936,'121667233886','90490279','2.00','200','retail','0','2022-10-31 19:59:42','','','','68','Cash',27.59,'100','','','12','','1','2022-10-31 14:00:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672431493411263',3937,'121667243140','1000','1.00','270','retail','0','2022-10-31 22:05:50','','','','192','Cash',37.24,'270','','','12','','1','2022-10-31 16:05:57','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672434660332020',3938,'121667243159','4067700014535','1.00','3400','retail','0','2022-10-31 22:15:15','','','','2520','Cash',468.97,'3400','','','12','','1','2022-10-31 16:16:54','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672435913415263',3939,'121667243159','3086120600020','2.00','240','retail','0','2022-10-31 22:15:15','','','','93.86','Cash',33.10,'120','','','12','','1','2022-10-31 16:16:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'2','30.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672436100303223',3940,'121667243159','6001106225421','1.00','600','retail','0','2022-10-31 22:15:15','','','','272','Cash',82.76,'600','','','12','','1','2022-10-31 16:16:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672436206323603',3941,'121667243159','5010232965096','1.00','600','retail','0','2022-10-31 22:15:15','','','','263.157','Cash',82.76,'600','','','12','','1','2022-10-31 16:16:54','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672436833416263',3942,'121667243159','6164001199010','4.00','400','retail','0','2022-10-31 22:15:15','','','','38','Cash',55.17,'100','','','12','','1','2022-10-31 16:16:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672436934637413',3943,'121667243159','024000150053','1.00','250','retail','0','2022-10-31 22:15:15','','','','205','Cash',34.48,'250','','','12','','1','2022-10-31 16:16:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672437144033426',3944,'121667243159','024000150121','1.00','250','retail','0','2022-10-31 22:15:15','','','','205','Cash',34.48,'250','','','12','','1','2022-10-31 16:16:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672438430303223',3945,'121667243816','6161101602938','2.00','500','retail','0','2022-10-31 22:18:00','','','','198.45','Cash',68.97,'250','','','12','','1','2022-10-31 16:18:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672443877033726',3946,'121667243901','5000289929417','1.00','2300','retail','0','2022-10-31 22:26:27','','','','1540','Cash',317.24,'2300','','','12','','1','2022-10-31 16:29:59','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672446477033726',3947,'121667244600','6161101604703','1.00','250','retail','0','2022-10-31 22:30:51','','','','150.45','Cash',34.48,'250','','','12','','1','2022-10-31 16:31:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672446512735226',3948,'121667244600','6161101604550','1.00','400','retail','0','2022-10-31 22:30:51','','','','284','Cash',55.17,'400','','','12','','1','2022-10-31 16:31:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672456623416263',3949,'121667244682','5010327000039','1.00','2500','retail','0','2022-10-31 22:47:42','','','','1764','Cash',344.83,'2500','','','12','','1','2022-10-31 16:52:43','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672497607670622',3950,'121667245964','5010752000321','1.00','1800','retail','0','2022-10-31 23:56:00','','','','1037','Cash',248.28,'1800','','','12','','1','2022-10-31 17:56:03','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672498122291333',3951,'121667249765','5010677038874','1.00','2200','retail','0','2022-10-31 23:56:53','','','','1570','Cash',303.45,'2200','','','12','','1','2022-10-31 17:57:35','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672501290303223',3952,'121667249857','080432400432','1.00','4350','retail','0','2022-11-01 00:03:05','','','','3250','Cash',600.00,'4350','','','12','','1','2022-10-31 18:03:09','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3750.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672501426343603',3953,'121667249857','5018907194802','2.00','300','retail','0','2022-11-01 00:03:05','','','','74.58','Cash',41.38,'150','','','12','','1','2022-10-31 18:03:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672501855637513',3954,'121667249857','6164001199010','2.00','200','retail','0','2022-11-01 00:03:05','','','','38','Cash',27.59,'100','','','12','','1','2022-10-31 18:03:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672659260303223',3955,'121667265911','082184090473','1.00','4000','retail','0','2022-11-01 04:25:46','','','','2600','Cash',551.72,'4000','','','12','','1','2022-10-31 22:26:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672659386333603',3956,'121667265911','5449000000286','1.00','250','retail','0','2022-11-01 04:25:46','','','','158','Cash',34.48,'250','','','12','','1','2022-10-31 22:26:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672659455033526',3957,'121667265911','5018907197803','1.00','100','retail','0','2022-11-01 04:25:46','','','','44.58','Cash',13.79,'100','','','12','','1','2022-10-31 22:26:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216672661053320320',3958,'121667266093','6161101603379','5.00','1250','retail','0','2022-11-01 04:28:25','','','','190.375','Cash',172.41,'250','','','12','','1','2022-10-31 22:28:28','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','5.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673127933033326',3959,'121667312131','3155930006015','1.00','250','retail','0','2022-11-01 17:28:02','','','','188','Cash',34.48,'250','','','12','','1','2022-11-01 11:28:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673128280332020',3960,'121667312131','3155930006015','1.00','250','retail','0','2022-11-01 17:28:02','','','','188','Cash',34.48,'250','','','12','','1','2022-11-01 11:28:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673128796373603',3961,'121667312131','3155930006015','1.00','250','retail','0','2022-11-01 17:28:02','','','','188','Cash',34.48,'250','','','12','','1','2022-11-01 11:28:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673128810303223',3962,'121667312131','3155930006015','1.00','250','retail','0','2022-11-01 17:28:02','','','','188','Cash',34.48,'250','','','12','','1','2022-11-01 11:28:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673165633033326',3963,'121667312888','1000','1.00','270','retail','0','2022-11-01 18:29:23','','','','192','Cash',37.24,'270','','','12','','1','2022-11-01 12:30:00','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673167850332020',3964,'121667316601','5018907197803','1.00','100','retail','0','2022-11-01 18:33:06','','','','44.58','Cash',13.79,'100','','','12','','1','2022-11-01 12:33:14','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673177860303223',3965,'121667317772','50196166','1.00','750','retail','0','2022-11-01 18:49:46','','','','443','Cash',103.45,'750','','','12','','1','2022-11-01 12:49:51','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673189073119263',3966,'121667317792','3155930006015','4.00','1000','retail','0','2022-11-01 19:08:28','','','','188','Cash',137.93,'250','','','12','','1','2022-11-01 13:08:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4.00','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673207372033270',3967,'121667320705','6161101603379','2.00','500','retail','0','2022-11-01 19:38:57','','','','190.375','Cash',68.97,'250','','','12','','1','2022-11-01 13:39:40','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673210180332020',3968,'121667320781','50196166','1.00','750','retail','0','2022-11-01 19:43:45','','','','443','Cash',103.45,'750','','','12','','1','2022-11-01 13:45:21','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673210252033201',3969,'121667320781','6161101604550','1.00','400','retail','0','2022-11-01 19:43:45','','','','284','Cash',55.17,'400','','','12','','1','2022-11-01 13:45:21','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673214050303223',3970,'121667321123','1000','1.00','270','retail','0','2022-11-01 19:50:15','','','','192','Cash',37.24,'270','','','12','','1','2022-11-01 13:50:43','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673214142033241',3971,'121667321123','54493360','1.00','80','retail','0','2022-11-01 19:50:15','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-01 13:50:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673296130332020',3972,'121667326124','1000','1.00','270','retail','0','2022-11-01 22:06:54','','','','192','Cash',37.24,'270','','','12','','1','2022-11-01 16:07:17','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673303173330320',3973,'121667330301','6161101604406','9.00','2250','retail','0','2022-11-01 22:18:53','','','','181.708','Cash',310.34,'250','','','12','','1','2022-11-01 16:18:56','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673303320303223',3974,'121667330301','5060639129003','2.00','500','retail','0','2022-11-01 22:18:53','','','','153','Cash',68.97,'250','','','12','','1','2022-11-01 16:18:56','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','41.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673312020303223',3975,'121667330338','5000289933292','1.00','950','retail','0','2022-11-01 22:34:21','','','','710','Cash',131.03,'950','','','12','','1','2022-11-01 16:35:27','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',818.97,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673312610332020',3976,'121667330338','6001495203055','1.00','1300','retail','0','2022-11-01 22:34:21','','','','628','Cash',179.31,'1300','','','12','','1','2022-11-01 16:35:27','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673322573637313',3977,'121667331328','1000','1.00','270','retail','0','2022-11-01 22:50:57','','','','192','Cash',37.24,'270','','','12','','1','2022-11-01 16:51:59','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673328002033282',3978,'121667332321','6001495203055','1.00','1300','retail','0','2022-11-01 23:00:00','','','','628','Cash',179.31,'1300','','','12','','1','2022-11-01 17:01:50','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673338752033283',3979,'121667332911','6161101602600','1.00','220','retail','0','2022-11-01 23:17:55','','','','154.95','Cash',30.34,'220','','','12','','1','2022-11-01 17:17:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673351913637313',3980,'121667333881','6161101604550','1.00','400','retail','0','2022-11-01 23:39:51','','','','284','Cash',55.17,'400','','','12','','1','2022-11-01 17:40:38','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',344.83,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673357186313603',3981,'121667335240','8712000900045','2.00','500','retail','0','2022-11-01 23:48:39','','','','182','Cash',68.97,'250','','','12','','1','2022-11-01 17:50:07','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673373044033426',3982,'121667335809','6161101604703','2.00','500','retail','0','2022-11-02 00:15:51','','','','150.45','Cash',68.97,'250','','','12','','1','2022-11-01 18:15:55','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673373266323603',3983,'121667335809','6161101602600','3.00','660','retail','0','2022-11-02 00:15:51','','','','154.95','Cash',91.03,'220','','','12','','1','2022-11-01 18:15:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673373500033026',3984,'121667335809','6161101602921','3.00','750','retail','0','2022-11-02 00:15:51','','','','198.45','Cash',103.45,'250','','','12','','1','2022-11-01 18:15:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673375116313603',3985,'121667337499','6001108028044','4.00','1000','retail','0','2022-11-02 00:18:32','','','','201','Cash',137.93,'250','','','12','','1','2022-11-01 18:18:35','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673376544033426',3986,'121667337516','6161101606561','1.00','1750','retail','0','2022-11-02 00:21:19','','','','1125','Cash',241.38,'1750','','','12','','1','2022-11-01 18:24:52','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673376780332020',3987,'121667337516','54493360','1.00','80','retail','0','2022-11-02 00:21:19','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-01 18:24:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673379723319263',3988,'121667337894','8712000900045','1.00','250','retail','0','2022-11-02 00:26:13','','','','182','Cash',34.48,'250','','','12','','1','2022-11-01 18:26:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673383556353603',3989,'121667337982','5000289929417','1.00','2300','retail','0','2022-11-02 00:32:36','','','','1540','Cash',317.24,'2300','','','12','','1','2022-11-01 18:32:59','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673408794637413',3990,'121667338380','6161101604703','1.00','250','retail','0','2022-11-02 01:15:13','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-01 19:15:16','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673409133112332',3991,'121667338380','6161101602600','1.00','220','retail','0','2022-11-02 01:15:13','','','','154.95','Cash',30.34,'220','','','12','','1','2022-11-01 19:15:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673432212033223',3992,'121667340918','6161101602600','1.00','220','retail','0','2022-11-02 01:53:41','','','','154.95','Cash',30.34,'220','','','12','','1','2022-11-01 19:53:48','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673433055033526',3993,'121667343230','6161101603324','1.00','250','retail','0','2022-11-02 01:55:05','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-01 19:58:46','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673446634637413',3994,'121667343528','6161101603324','1.00','250','retail','0','2022-11-02 02:17:59','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-01 20:18:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673446781222732',3995,'121667343528','6161101604703','1.00','250','retail','0','2022-11-02 02:17:59','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-01 20:18:03','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673449772033294',3996,'121667344684','5018907197803','2.00','200','retail','0','2022-11-02 02:23:05','','','','44.58','Cash',27.59,'100','','','12','','1','2022-11-01 20:23:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'2','40.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673449840303223',3997,'121667344684','54493360','1.00','80','retail','0','2022-11-02 02:23:05','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-01 20:23:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673458430303223',3998,'121667345833','6161101602921','1.00','250','retail','0','2022-11-02 02:38:08','','','','198.45','Cash',34.48,'250','','','12','','1','2022-11-01 20:39:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673458513330320',3999,'121667345833','6161101602600','1.00','220','retail','0','2022-11-02 02:38:08','','','','154.95','Cash',30.34,'220','','','12','','1','2022-11-01 20:39:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673458874637413',4000,'121667345833','6161101604703','1.00','250','retail','0','2022-11-02 02:38:08','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-01 20:39:00','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673466054637413',4001,'121667345942','5000267014609','1.00','1100','retail','0','2022-11-02 02:50:57','','','','794','Cash',151.72,'1100','','','12','','1','2022-11-01 20:51:22','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673466090332020',4002,'121667345942','6008165007968','1.00','350','retail','0','2022-11-02 02:50:57','','','','308.5','Cash',48.28,'350','','','12','','1','2022-11-01 20:51:22','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673466560462263',4003,'121667345942','8712000900045','2.00','500','retail','0','2022-11-02 02:50:57','','','','182','Cash',68.97,'250','','','12','','1','2022-11-01 20:51:22','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673489914637413',4004,'121667346683','8712000900045','1.00','250','retail','0','2022-11-02 03:29:51','','','','182','Cash',34.48,'250','','','12','','1','2022-11-01 21:29:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216673516635637513',4005,'121667348996','5449000000286','1.00','250','retail','0','2022-11-02 04:14:24','','','','158','Cash',34.48,'250','','','12','','1','2022-11-01 22:14:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674001996393603',4006,'121667400184','6161101600941','1.00','750','retail','0','2022-11-02 17:43:56','','','','544','Cash',103.45,'750','','','12','','1','2022-11-02 11:45:12','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674002093340320',4007,'121667400184','90162602','1.00','230','retail','0','2022-11-02 17:43:56','','','','147','Cash',31.72,'230','','','12','','1','2022-11-02 11:45:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674002233033326',4008,'121667400184','5449000028976','1.00','150','retail','0','2022-11-02 17:43:56','','','','103','Cash',20.69,'150','','','12','','1','2022-11-02 11:45:12','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674002350332020',4009,'121667400184','100','1.00','250','retail','0','2022-11-02 17:43:56','','','','177','Cash',34.48,'250','','','12','','1','2022-11-02 11:45:12','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674080391230103',4010,'121667400314','6161101603522','1.00','800','retail','0','2022-11-02 19:53:59','','','','501','Cash',110.34,'800','','','12','','1','2022-11-02 13:57:11','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674117255033526',4011,'121667408232','6161101606011','1.00','220','retail','0','2022-11-02 20:55:26','','','','172.833','Cash',30.34,'220','','','12','','1','2022-11-02 14:55:30','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674121661637113',4012,'121667411731','4067700014535','1.00','3400','retail','0','2022-11-02 21:03:10','','','','2520','Cash',468.97,'3400','','','12','','1','2022-11-02 15:03:20','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',2931.03,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674121796373603',4013,'121667411731','54493360','2.00','160','retail','0','2022-11-02 21:03:10','','','','53.333','Cash',22.07,'80','','','12','','1','2022-11-02 15:03:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','30.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674121906393603',4014,'121667411731','6008835000930','1.00','180','retail','0','2022-11-02 21:03:10','','','','130','Cash',24.83,'180','','','12','','1','2022-11-02 15:03:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',155.17,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674133640332020',4015,'121667412201','5010327000039','1.00','2500','retail','0','2022-11-02 21:23:00','','','','1764','Cash',344.83,'2500','','','12','','1','2022-11-02 15:25:38','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674133799033926',4016,'121667412201','6164001199331','3.00','210','retail','0','2022-11-02 21:23:00','','','','37.08','Cash',28.97,'70','','','12','','1','2022-11-02 15:25:38','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674183270332020',4017,'121667414845','8712000900045','4.00','1000','retail','0','2022-11-02 22:45:28','','','','182','Cash',137.93,'250','','','12','','1','2022-11-02 16:45:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674189433119263',4018,'121667418333','50196166','1.00','750','retail','0','2022-11-02 22:55:43','','','','443','Cash',103.45,'750','','','12','','1','2022-11-02 16:58:00','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674201683340320',4019,'121667419082','6161101606547','1.00','550','retail','0','2022-11-02 23:16:28','','','','388','Cash',75.86,'550','','','12','','1','2022-11-02 17:17:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674201732033210',4020,'121667419082','6161101606547','1.00','550','retail','0','2022-11-02 23:16:28','','','','388','Cash',75.86,'550','','','12','','1','2022-11-02 17:17:25','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674222973340320',4021,'121667420246','5449000000286','1.00','250','retail','0','2022-11-02 23:51:56','','','','158','Cash',34.48,'250','','','12','','1','2022-11-02 17:51:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674223022303212',4022,'121667420246','54491069','1.00','80','retail','0','2022-11-02 23:51:56','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-02 17:51:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674223153340320',4023,'121667420246','6001496011796','1.00','1700','retail','0','2022-11-02 23:51:56','','','','1072','Cash',234.48,'1700','','','12','','1','2022-11-02 17:51:59','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674225172637213',4024,'121667422500','082184090473','2.00','8000','retail','0','2022-11-02 23:58:17','','','','2600','Cash',1103.45,'4000','','','12','','1','2022-11-02 17:58:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',6896.55,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674225363222234',4025,'121667422500','5060608747818','1.00','80','retail','0','2022-11-02 23:58:17','','','','67','Cash',11.03,'80','','','12','','1','2022-11-02 17:58:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674226686363603',4026,'121667422500','5018907194802','2.00','300','retail','0','2022-11-02 23:58:17','','','','74.58','Cash',41.38,'150','','','12','','1','2022-11-02 17:58:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674226802221333',4027,'121667422500','5018907197803','1.00','100','retail','0','2022-11-02 23:58:17','','','','44.58','Cash',13.79,'100','','','12','','1','2022-11-02 17:58:25','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674226963340320',4028,'121667422500','6161101603324','4.00','1000','retail','0','2022-11-02 23:58:17','','','','150.45','Cash',137.93,'250','','','12','','1','2022-11-02 17:58:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674227780332020',4029,'121667422706','6161101602167','1.00','550','retail','0','2022-11-03 00:00:06','','','','388','Cash',75.86,'550','','','12','','1','2022-11-02 18:00:08','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674227952637213',4030,'121667422706','5018907194802','1.00','150','retail','0','2022-11-03 00:00:06','','','','74.58','Cash',20.69,'150','','','12','','1','2022-11-02 18:00:08','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674228052033282',4031,'121667422706','6161101601979','1.00','250','retail','0','2022-11-03 00:00:06','','','','172.75','Cash',34.48,'250','','','12','','1','2022-11-02 18:00:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674240546353603',4032,'121667422810','5018907194802','2.00','300','retail','0','2022-11-03 00:20:54','','','','74.58','Cash',41.38,'150','','','12','','1','2022-11-02 18:29:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674252542033225',4033,'121667425238','6164001199010','1.00','100','retail','0','2022-11-03 00:40:54','','','','38','Cash',13.79,'100','','','12','','1','2022-11-02 18:41:05','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674276403340320',4034,'121667425266','6161101602938','1.00','250','retail','0','2022-11-03 01:25:48','','','','198.45','Cash',34.48,'250','','','12','','1','2022-11-02 19:25:53','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674282722637213',4035,'121667427955','6161101602938','4.00','1000','retail','0','2022-11-03 01:32:03','','','','198.45','Cash',137.93,'250','','','12','','1','2022-11-02 19:32:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674283220332020',4036,'121667427955','6161101602372','2.00','500','retail','0','2022-11-03 01:32:03','','','','189.75','Cash',68.97,'250','','','12','','1','2022-11-02 19:32:05','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674887878637813',4037,'121667488780','6161101602372','1.00','250','retail','0','2022-11-03 18:19:47','','','','189.75','Cash',34.48,'250','','','12','','1','2022-11-03 12:19:55','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674925402624290',4038,'121667492538','6161101600934','1.00','1600','retail','0','2022-11-03 19:22:50','','','','1144','Cash',220.69,'1600','','','12','','1','2022-11-03 13:23:31','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674925483915263',4039,'121667492538','5010677015738','1.00','2300','retail','0','2022-11-03 19:22:50','','','','1730','Cash',317.24,'2300','','','12','','1','2022-11-03 13:23:31','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674925693915263',4040,'121667492538','6001495203055','2.00','2600','retail','0','2022-11-03 19:22:50','','','','628','Cash',358.62,'1300','','','12','','1','2022-11-03 13:23:31','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674970513910263',4041,'121667497022','8908006354993','1.00','900','retail','0','2022-11-03 20:38:01','','','','631','Cash',124.14,'900','','','12','','1','2022-11-03 14:38:07','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',775.86,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674970803102223',4042,'121667497022','5449000000286','1.00','250','retail','0','2022-11-03 20:38:01','','','','158','Cash',34.48,'250','','','12','','1','2022-11-03 14:38:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216674983349637913',4043,'121667497723','3155930006015','1.00','250','retail','0','2022-11-03 20:58:55','','','','188','Cash',34.48,'250','','','12','','1','2022-11-03 14:59:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675017450303223',4044,'121667497723','5060639129003','1.00','250','retail','0','2022-11-03 21:55:46','','','','153','Cash',34.48,'250','','','12','','1','2022-11-03 16:12:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675040583350320',4045,'121667502774','3155930006015','3.00','750','retail','0','2022-11-03 22:34:19','','','','188','Cash',103.45,'250','','','12','','1','2022-11-03 16:34:26','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675055350303223',4046,'121667505474','3155930006015','4.00','1000','retail','0','2022-11-03 22:58:55','','','','188','Cash',137.93,'250','','','12','','1','2022-11-03 17:04:18','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675082226323603',4047,'121667508206','1000','1.00','270','retail','0','2022-11-03 23:43:43','','','','192','Cash',37.24,'270','','','12','','1','2022-11-03 17:43:46','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675082410637013',4048,'121667508227','5010752000321','1.00','1800','retail','0','2022-11-03 23:44:01','','','','1037','Cash',248.28,'1800','','','12','','1','2022-11-03 17:44:04','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675092177033726',4049,'121667508245','6008165007968','1.00','350','retail','0','2022-11-04 00:00:18','','','','308.5','Cash',48.28,'350','','','12','','1','2022-11-03 18:00:25','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675133331637113',4050,'121667508206','6164001199331','1.00','70','retail','0','2022-11-04 01:10:24','','','','37.08','Cash',9.66,'70','','','12','','1','2022-11-03 19:11:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675133473350320',4051,'121667508206','5018907197803','1.00','100','retail','0','2022-11-04 01:10:24','','','','44.58','Cash',13.79,'100','','','12','','1','2022-11-03 19:11:10','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675133712323333',4052,'121667508206','716165173670','1.00','150','retail','0','2022-11-04 01:10:24','','','','46','Cash',20.69,'150','','','12','','1','2022-11-03 19:11:10','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675134230332020',4053,'121667508206','8712000900045','2.00','500','retail','0','2022-11-04 01:10:24','','','','182','Cash',68.97,'250','','','12','','1','2022-11-03 19:11:10','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675155133115263',4054,'121667515496','6161101605465','1.00','800','retail','0','2022-11-04 01:46:14','','','','501','Cash',110.34,'800','','','12','','1','2022-11-03 19:46:21','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675155740332020',4055,'121667515496','6164001199331','2.00','140','retail','0','2022-11-04 01:46:14','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-03 19:46:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675196531637113',4056,'121667515583','5000267024011','1.00','3600','retail','0','2022-11-04 02:56:14','','','','2433','Cash',496.55,'3600','','','12','','1','2022-11-03 20:56:52','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3103.45,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675196620303223',4057,'121667515583','5449000000286','1.00','250','retail','0','2022-11-04 02:56:14','','','','158','Cash',34.48,'250','','','12','','1','2022-11-03 20:56:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675200350332020',4058,'121667519813','082184090473','1.00','4000','retail','0','2022-11-04 03:01:16','','','','2600','Cash',551.72,'4000','','','12','','1','2022-11-03 21:01:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3448.28,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675200480303223',4059,'121667519813','5449000000286','1.00','250','retail','0','2022-11-04 03:01:16','','','','158','Cash',34.48,'250','','','12','','1','2022-11-03 21:01:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675200756373603',4060,'121667519813','852848252017','1.00','3800','retail','0','2022-11-04 03:01:16','','','','1500','Cash',524.14,'3800','','','12','','1','2022-11-03 21:01:20','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',3275.86,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675812030332020',4061,'121667576849','6161101603379','1.00','250','retail','0','2022-11-04 20:00:04','','','','190.375','Cash',34.48,'250','','','12','','1','2022-11-04 14:00:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675833273813263',4062,'121667583312','6161101603379','1.00','250','retail','0','2022-11-04 20:35:28','','','','190.375','Cash',34.48,'250','','','12','','1','2022-11-04 14:35:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675838273350320',4063,'121667583332','716165173670','1.00','150','retail','0','2022-11-04 20:44:58','','','','46','Cash',20.69,'150','','','12','','1','2022-11-04 14:45:06','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675838970332020',4064,'121667583332','5060608740253','1.00','80','retail','0','2022-11-04 20:44:58','','','','41.82','Cash',11.03,'80','','','12','','1','2022-11-04 14:45:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675862903350320',4065,'121667583907','6161101603379','4.00','1000','retail','0','2022-11-04 21:24:51','','','','190.375','Cash',137.93,'250','','','12','','1','2022-11-04 15:26:42','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','22.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675866336333603',4066,'121667586404','5060639129003','1.00','250','retail','0','2022-11-04 21:30:34','','','','153','Cash',34.48,'250','','','12','','1','2022-11-04 15:30:45','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675874532033247',4067,'121667586646','5060639129003','1.00','250','retail','0','2022-11-04 21:44:14','','','','153','Cash',34.48,'250','','','12','','1','2022-11-04 15:44:17','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675882543812263',4068,'121667587458','6001496011772','1.00','800','retail','0','2022-11-04 21:57:45','','','','544','Cash',110.34,'800','','','12','','1','2022-11-04 15:57:48','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675882646363603',4069,'121667587458','54491069','1.00','80','retail','0','2022-11-04 21:57:45','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-04 15:57:48','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675890973810263',4070,'121667588269','6161101602600','2.00','440','retail','0','2022-11-04 22:11:37','','','','154.95','Cash',60.69,'220','','','12','','1','2022-11-04 16:12:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675898382033289',4071,'121667589175','6161101603379','6.00','1500','retail','0','2022-11-04 22:24:04','','','','190.375','Cash',206.90,'250','','','12','','1','2022-11-04 16:26:08','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675902288033826',4072,'121667589969','082184090442','1.00','5300','retail','0','2022-11-04 22:30:40','','','','3450','Cash',731.03,'5300','','','12','','1','2022-11-04 16:30:46','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675902402233336',4073,'121667589969','5060639129003','2.00','500','retail','0','2022-11-04 22:30:40','','','','153','Cash',68.97,'250','','','12','','1','2022-11-04 16:30:46','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','36.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675905412033250',4074,'121667590247','8712000900045','9.00','2250','retail','0','2022-11-04 22:35:41','','','','182','Cash',310.34,'250','','','12','','1','2022-11-04 16:35:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675914282033241',4075,'121667590547','50112753','1.00','80','retail','0','2022-11-04 22:50:29','','','','56','Cash',11.03,'80','','','12','','1','2022-11-04 16:50:31','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675926502033262',4076,'121667592639','3155930006015','6.00','1500','retail','0','2022-11-04 23:10:50','','','','188','Cash',206.90,'250','','','12','','1','2022-11-04 17:11:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675933320332020',4077,'121667592695','6161101603324','1.00','250','retail','0','2022-11-04 23:22:12','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-04 17:22:36','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675936670332020',4078,'121667593357','1000','1.00','270','retail','0','2022-11-04 23:27:47','','','','192','Cash',37.24,'270','','','12','','1','2022-11-04 17:27:51','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675940953350320',4079,'121667593672','082184090442','1.00','5300','retail','0','2022-11-04 23:35:51','','','','3450','Cash',731.03,'5300','','','12','','1','2022-11-04 17:36:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675941033911263',4080,'121667593672','5018907194802','1.00','150','retail','0','2022-11-04 23:35:51','','','','74.58','Cash',20.69,'150','','','12','','1','2022-11-04 17:36:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675941503350320',4081,'121667593672','8712000900045','1.00','250','retail','0','2022-11-04 23:35:51','','','','182','Cash',34.48,'250','','','12','','1','2022-11-04 17:36:59','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675961463911263',4082,'121667594220','082184090442','1.00','5300','retail','0','2022-11-05 00:09:56','','','','3450','Cash',731.03,'5300','','','12','','1','2022-11-04 18:10:55','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675968506353603',4083,'121667596836','6161101603324','4.00','1000','retail','0','2022-11-05 00:21:40','','','','150.45','Cash',137.93,'250','','','12','','1','2022-11-04 18:22:47','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675968993918263',4084,'121667596836','6161101606011','4.00','880','retail','0','2022-11-05 00:21:40','','','','172.833','Cash',121.38,'220','','','12','','1','2022-11-04 18:22:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',189.66,'4','19.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675972223350320',4085,'121667596969','7794450091598','1.00','2000','retail','0','2022-11-05 00:27:03','','','','1280','Cash',275.86,'2000','','','12','','1','2022-11-04 18:27:26','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675975730303223',4086,'121667597247','6161101602938','1.00','250','retail','0','2022-11-05 00:33:39','','','','198.45','Cash',34.48,'250','','','12','','1','2022-11-04 18:34:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675975940332020',4087,'121667597247','6161101602921','3.00','750','retail','0','2022-11-05 00:33:39','','','','198.45','Cash',103.45,'250','','','12','','1','2022-11-04 18:34:47','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675976193213326',4088,'121667597247','6008165007968','1.00','350','retail','0','2022-11-05 00:33:39','','','','308.5','Cash',48.28,'350','','','12','','1','2022-11-04 18:34:47','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675979782627290',4089,'121667597689','5000267013602','1.00','2500','retail','0','2022-11-05 00:39:39','','','','1612','Cash',344.83,'2500','','','12','','1','2022-11-04 18:40:53','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675980576353603',4090,'121667598054','6161101603522','1.00','800','retail','0','2022-11-05 00:41:53','','','','501','Cash',110.34,'800','','','12','','1','2022-11-04 18:41:56','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216675982653350320',4091,'121667598117','1000','1.00','270','retail','0','2022-11-05 00:44:26','','','','192','Cash',37.24,'270','','','12','','1','2022-11-04 18:45:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676004820332020',4092,'121667598314','6161101603522','1.00','800','retail','0','2022-11-05 01:21:23','','','','501','Cash',110.34,'800','','','12','','1','2022-11-04 19:21:26','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676041556353603',4093,'121667600487','5018907194802','10.00','1500','retail','0','2022-11-05 02:24:37','','','','74.58','Cash',206.90,'150','','','12','','1','2022-11-04 20:24:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'10','18.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042042033224',4094,'121667600487','8712000900663','9.00','2250','retail','0','2022-11-05 02:24:37','','','','174','Cash',310.34,'250','','','12','','1','2022-11-04 20:24:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042255033526',4095,'121667600487','5449000028976','1.00','150','retail','0','2022-11-05 02:24:37','','','','103','Cash',20.69,'150','','','12','','1','2022-11-04 20:24:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042366333603',4096,'121667600487','082184090442','1.00','5300','retail','0','2022-11-05 02:24:37','','','','3450','Cash',731.03,'5300','','','12','','1','2022-11-04 20:24:41','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042506353603',4097,'121667600487','6161101602921','1.00','250','retail','0','2022-11-05 02:24:37','','','','198.45','Cash',34.48,'250','','','12','','1','2022-11-04 20:24:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042596353603',4098,'121667600487','024000150138','1.00','250','retail','0','2022-11-05 02:24:37','','','','205','Cash',34.48,'250','','','12','','1','2022-11-04 20:24:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676042760637013',4099,'121667600487','5060608747818','1.00','80','retail','0','2022-11-05 02:24:37','','','','67','Cash',11.03,'80','','','12','','1','2022-11-04 20:24:41','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676046277033726',4100,'121667604618','8712000900663','1.00','250','retail','0','2022-11-05 02:30:27','','','','174','Cash',34.48,'250','','','12','','1','2022-11-04 20:30:31','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676051860332020',4101,'121667604633','6161101603379','1.00','250','retail','0','2022-11-05 02:39:47','','','','190.375','Cash',34.48,'250','','','12','','1','2022-11-04 20:40:32','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676060236323603',4102,'121667606000','6161101606011','3.00','750','retail','0','2022-11-05 02:53:43','','','','172.833','Cash',103.45,'250','','','12','','1','2022-11-04 20:53:54','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','15.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676618471302130',4103,'121667661837','50196166','1.00','750','retail','0','2022-11-05 18:24:07','','','','443','Cash',103.45,'750','','','12','','1','2022-11-05 12:24:14','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676636753616263',4104,'121667661855','50112753','1.00','80','retail','0','2022-11-05 18:54:36','','','','56','Cash',11.03,'80','','','12','','1','2022-11-05 12:54:58','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676643032033234',4105,'121667663699','5010232953994','1.00','600','retail','0','2022-11-05 19:05:04','','','','263.157','Cash',82.76,'600','','','12','','1','2022-11-05 13:05:12','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676697400303223',4106,'121667668862','5010752000321','1.00','1800','retail','0','2022-11-05 20:35:40','','','','1037','Cash',248.28,'1800','','','12','','1','2022-11-05 14:36:02','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676737100303223',4107,'121667673689','8712000900663','10.00','2500','retail','0','2022-11-05 21:42:05','','','','174','Cash',344.83,'250','','','12','','1','2022-11-05 15:42:14','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'10','14.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676737253717263',4108,'121667673689','6161101603324','3.00','750','retail','0','2022-11-05 21:42:05','','','','150.45','Cash',103.45,'250','','','12','','1','2022-11-05 15:42:14','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676740113710263',4109,'121667673737','6161101603522','1.00','800','retail','0','2022-11-05 21:47:02','','','','501','Cash',110.34,'800','','','12','','1','2022-11-05 15:47:21','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676740210303223',4110,'121667673737','5018907194802','1.00','150','retail','0','2022-11-05 21:47:02','','','','74.58','Cash',20.69,'150','','','12','','1','2022-11-05 15:47:21','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676745743360320',4111,'121667674562','6161101604406','6.00','1500','retail','0','2022-11-05 21:56:15','','','','181.708','Cash',206.90,'250','','','12','','1','2022-11-05 15:56:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676805180303223',4112,'121667680506','6161101604406','4.00','1000','retail','0','2022-11-05 23:36:59','','','','181.708','Cash',137.93,'250','','','12','','1','2022-11-05 17:37:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676806063360320',4113,'121667680506','8712000900663','4.00','1000','retail','0','2022-11-05 23:36:59','','','','174','Cash',137.93,'250','','','12','','1','2022-11-05 17:37:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676806198637813',4114,'121667680506','8712000900045','14.00','3500','retail','0','2022-11-05 23:36:59','','','','182','Cash',482.76,'250','','','12','','1','2022-11-05 17:37:15','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'14','14.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676807120332020',4115,'121667680637','5010103930970','1.00','750','retail','0','2022-11-05 23:38:55','','','','542','Cash',103.45,'750','','','12','','1','2022-11-05 17:38:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676807346333603',4116,'121667680637','5010103930963','1.00','1500','retail','0','2022-11-05 23:38:55','','','','1125','Cash',206.90,'1500','','','12','','1','2022-11-05 17:38:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676812653812263',4117,'121667681253','6001108028044','4.00','1000','retail','0','2022-11-05 23:48:03','','','','201','Cash',137.93,'250','','','12','','1','2022-11-05 17:48:57','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676812833360320',4118,'121667681253','6164001199010','1.00','100','retail','0','2022-11-05 23:48:03','','','','38','Cash',13.79,'100','','','12','','1','2022-11-05 17:48:57','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676814608637813',4119,'121667681449','6161101606547','1.00','550','retail','0','2022-11-05 23:51:00','','','','388','Cash',75.86,'550','','','12','','1','2022-11-05 17:51:03','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676816413816263',4120,'121667681626','6164001199331','2.00','140','retail','0','2022-11-05 23:54:02','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-05 17:54:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676824400033026',4121,'121667681648','5000267013602','1.00','2500','retail','0','2022-11-06 00:07:20','','','','1612','Cash',344.83,'2500','','','12','','1','2022-11-05 18:16:54','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676833690332020',4122,'121667683016','024000150152','2.00','500','retail','0','2022-11-06 00:23:14','','','','205','Cash',68.97,'250','','','12','','1','2022-11-05 18:24:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676833930303223',4123,'121667683016','024000150121','1.00','250','retail','0','2022-11-06 00:23:14','','','','205','Cash',34.48,'250','','','12','','1','2022-11-05 18:24:19','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676834818637813',4124,'121667683461','1000','1.00','270','retail','0','2022-11-06 00:24:42','','','','192','Cash',37.24,'270','','','12','','1','2022-11-05 18:24:47','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676835799033926',4125,'121667683571','6161101603324','6.00','1500','retail','0','2022-11-06 00:27:14','','','','150.45','Cash',206.90,'250','','','12','','1','2022-11-05 18:34:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676835880303223',4126,'121667683571','3155930006015','4.00','1000','retail','0','2022-11-06 00:27:14','','','','188','Cash',137.93,'250','','','12','','1','2022-11-05 18:34:11','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676836348637813',4127,'121667683571','6161101603379','3.00','750','retail','0','2022-11-06 00:27:14','','','','190.375','Cash',103.45,'250','','','12','','1','2022-11-05 18:34:11','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676841453811263',4128,'121667684053','6001495080007','1.00','1000','retail','0','2022-11-06 00:35:45','','','','668','Cash',137.93,'1000','','','12','','1','2022-11-05 18:35:54','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',862.07,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676858566033626',4129,'121667685846','6161101602372','1.00','250','retail','0','2022-11-06 01:04:17','','','','189.75','Cash',34.48,'250','','','12','','1','2022-11-05 19:04:20','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676867356333603',4130,'121667686721','6161101602372','2.00','500','retail','0','2022-11-06 01:19:16','','','','189.75','Cash',68.97,'250','','','12','','1','2022-11-05 19:19:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676867471222732',4131,'121667686721','6161101601979','6.00','1500','retail','0','2022-11-06 01:19:16','','','','172.75','Cash',206.90,'250','','','12','','1','2022-11-05 19:19:50','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676867556262732',4132,'121667686721','6164001199010','1.00','100','retail','0','2022-11-06 01:19:16','','','','38','Cash',13.79,'100','','','12','','1','2022-11-05 19:19:50','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676868173818263',4133,'121667686792','1000','1.00','270','retail','0','2022-11-06 01:20:18','','','','192','Cash',37.24,'270','','','12','','1','2022-11-05 19:20:26','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676874300332020',4134,'121667686828','6164001199010','1.00','100','retail','0','2022-11-06 01:30:56','','','','38','Cash',13.79,'100','','','12','','1','2022-11-05 19:31:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676874550332020',4135,'121667686828','90162602','1.00','230','retail','0','2022-11-06 01:30:56','','','','147','Cash',31.72,'230','','','12','','1','2022-11-05 19:31:06','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676876222033267',4136,'121667687609','6161101601979','2.00','500','retail','0','2022-11-06 01:33:43','','','','172.75','Cash',68.97,'250','','','12','','1','2022-11-05 19:33:46','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676877500303223',4137,'121667687740','6001108028044','2.00','500','retail','0','2022-11-06 01:36:04','','','','201','Cash',68.97,'250','','','12','','1','2022-11-05 19:36:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676877642033277',4138,'121667687740','6001452258005','1.00','1600','retail','0','2022-11-06 01:36:04','','','','1150','Cash',220.69,'1600','','','12','','1','2022-11-05 19:36:24','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1379.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676879828637813',4139,'121667687787','5060608747818','1.00','80','retail','0','2022-11-06 01:39:55','','','','67','Cash',11.03,'80','','','12','','1','2022-11-05 19:39:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676879950303223',4140,'121667687787','6164001199010','1.00','100','retail','0','2022-11-06 01:39:55','','','','38','Cash',13.79,'100','','','12','','1','2022-11-05 19:39:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676882218637813',4141,'121667688001','50196166','1.00','750','retail','0','2022-11-06 01:44:30','','','','443','Cash',103.45,'750','','','12','','1','2022-11-05 19:45:15','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676882692033228',4142,'121667688001','6164001199331','2.00','140','retail','0','2022-11-06 01:44:30','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-05 19:45:15','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676893053360320',4143,'121667689294','6001108049599','1.00','1200','retail','0','2022-11-06 02:01:45','','','','641','Cash',165.52,'1200','','','12','','1','2022-11-05 20:01:48','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1034.48,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676900060332020',4144,'121667689310','1000','1.00','270','retail','0','2022-11-06 02:24:58','','','','192','Cash',37.24,'270','','','12','','1','2022-11-05 20:25:01','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676925386333603',4145,'121667690702','6001108028044','4.00','1000','retail','0','2022-11-06 02:55:58','','','','201','Cash',137.93,'250','','','12','','1','2022-11-05 20:57:19','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676925573360320',4146,'121667690702','6002323400530','2.00','4000','retail','0','2022-11-06 02:55:58','','','','1325','Cash',551.72,'2000','','','12','','1','2022-11-05 20:57:19','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1724.14,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676936763916263',4147,'121667693663','6164001199331','2.00','140','retail','0','2022-11-06 03:15:13','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-05 21:35:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676936980303223',4148,'121667693663','5018907194802','1.00','150','retail','0','2022-11-06 03:15:13','','','','74.58','Cash',20.69,'150','','','12','','1','2022-11-05 21:35:37','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676937136313603',4149,'121667693663','1000','2.00','540','retail','0','2022-11-06 03:15:13','','','','192','Cash',74.48,'270','','','12','','1','2022-11-05 21:35:37','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676963819637913',4150,'121667694939','6161101606561','1.00','1750','retail','0','2022-11-06 04:01:40','','','','1125','Cash',241.38,'1750','','','12','','1','2022-11-05 22:02:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676964079637913',4151,'121667694939','5449000028976','1.00','150','retail','0','2022-11-06 04:01:40','','','','103','Cash',20.69,'150','','','12','','1','2022-11-05 22:02:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676964592033246',4152,'121667694939','5060608740253','1.00','80','retail','0','2022-11-06 04:01:40','','','','41.82','Cash',11.03,'80','','','12','','1','2022-11-05 22:02:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676965003360320',4153,'121667694939','6161101603324','1.00','250','retail','0','2022-11-06 04:01:40','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-05 22:02:43','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676967222033276',4154,'121667696712','6161100421561','1.00','1300','retail','0','2022-11-06 04:05:41','','','','645','Cash',179.31,'1300','','','12','','1','2022-11-05 22:07:56','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1120.69,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216676967403917263',4155,'121667696712','3086120600051','1.00','80','retail','0','2022-11-06 04:05:41','','','','59.74','Cash',11.03,'80','','','12','','1','2022-11-05 22:07:56','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677379213319263',4156,'121667737903','5010232965096','1.00','600','retail','0','2022-11-06 15:32:02','','','','263.157','Cash',82.76,'600','','','12','','1','2022-11-06 09:33:20','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',517.24,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677382426343603',4157,'121667738001','716165173670','2.00','300','retail','0','2022-11-06 15:38:22','','','','46','Cash',41.38,'150','','','12','','1','2022-11-06 09:40:43','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','44.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677382644033426',4158,'121667738001','6161101603379','3.00','750','retail','0','2022-11-06 15:38:22','','','','190.375','Cash',103.45,'250','','','12','','1','2022-11-06 09:40:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677409866383603',4159,'121667740976','6161101601979','3.00','750','retail','0','2022-11-06 16:23:07','','','','172.75','Cash',103.45,'250','','','12','','1','2022-11-06 10:24:16','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677482053370320',4160,'121667748194','6161101604406','1.00','250','retail','0','2022-11-06 18:23:36','','','','181.708','Cash',34.48,'250','','','12','','1','2022-11-06 12:26:34','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677482152033228',4161,'121667748194','5449000014535','1.00','120','retail','0','2022-11-06 18:23:36','','','','64','Cash',16.55,'120','','','12','','1','2022-11-06 12:26:34','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677489623419263',4162,'121667748395','6973322690362','1.00','1750','retail','0','2022-11-06 18:36:03','','','','1000','Cash',241.38,'1750','','','12','','1','2022-11-06 12:36:08','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677491102033219',4163,'121667748969','6008165007685','1.00','270','retail','0','2022-11-06 18:38:30','','','','251.5','Cash',37.24,'270','','','12','','1','2022-11-06 12:39:48','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677583935637513',4164,'121667758384','6161100421615','1.00','500','retail','0','2022-11-06 21:13:14','','','','310','Cash',68.97,'500','','','12','','1','2022-11-06 15:13:37','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677591377033726',4165,'121667759127','6001496011796','1.00','1700','retail','0','2022-11-06 21:25:44','','','','1072','Cash',234.48,'1700','','','12','','1','2022-11-06 15:25:47','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677591444033426',4166,'121667759127','5449000000286','1.00','250','retail','0','2022-11-06 21:25:44','','','','158','Cash',34.48,'250','','','12','','1','2022-11-06 15:25:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677638560332020',4167,'121667763842','3155930006015','2.00','500','retail','0','2022-11-06 22:44:16','','','','188','Cash',68.97,'250','','','12','','1','2022-11-06 16:44:20','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677648188033826',4168,'121667764803','6161101602372','2.00','500','retail','0','2022-11-06 23:00:41','','','','189.75','Cash',68.97,'250','','','12','','1','2022-11-06 17:00:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',431.03,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677648400332020',4169,'121667764803','6161101602938','2.00','500','retail','0','2022-11-06 23:00:41','','','','198.45','Cash',68.97,'250','','','12','','1','2022-11-06 17:00:43','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677648555033526',4170,'121667764844','6161101602938','2.00','500','retail','0','2022-11-06 23:00:56','','','','198.45','Cash',68.97,'250','','','12','','1','2022-11-06 17:00:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677733082033233',4171,'121667764859','5000267014609','1.00','1100','retail','0','2022-11-07 01:23:07','','','','794','Cash',151.72,'1100','','','12','','1','2022-11-06 19:24:54','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',948.28,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677733533033326',4172,'121667764859','6164001199331','2.00','140','retail','0','2022-11-07 01:23:07','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-06 19:24:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677733863713263',4173,'121667764859','90490279','1.00','100','retail','0','2022-11-07 01:23:07','','','','68','Cash',13.79,'100','','','12','','1','2022-11-06 19:24:54','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677761687637713',4174,'121667776146','082184087008','1.00','8000','retail','0','2022-11-07 02:11:08','','','','5900','Cash',1103.45,'8000','','','12','','1','2022-11-06 20:11:27','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',6896.55,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677762293370320',4175,'121667776146','90162602','1.00','230','retail','0','2022-11-07 02:11:08','','','','147','Cash',31.72,'230','','','12','','1','2022-11-06 20:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677762677033726',4176,'121667776146','5018907194802','1.00','150','retail','0','2022-11-07 02:11:08','','','','74.58','Cash',20.69,'150','','','12','','1','2022-11-06 20:11:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677790416343603',4177,'121667776288','6161100421622','1.00','1500','retail','0','2022-11-07 03:00:08','','','','922','Cash',206.90,'1500','','','12','','1','2022-11-06 21:00:13','1','5','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677790583370320',4178,'121667776288','5449000000286','1.00','250','retail','0','2022-11-07 03:00:08','','','','158','Cash',34.48,'250','','','12','','1','2022-11-06 21:00:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677790717637713',4179,'121667776288','024000150152','1.00','250','retail','0','2022-11-07 03:00:08','','','','205','Cash',34.48,'250','','','12','','1','2022-11-06 21:00:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677791943370320',4180,'121667776288','5000267116419','1.00','6000','retail','0','2022-11-07 03:00:08','','','','3870','Cash',827.59,'6000','','','12','','1','2022-11-06 21:00:13','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',5172.41,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216677792070303223',4181,'121667776288','6001108028044','2.00','500','retail','0','2022-11-07 03:00:08','','','','201','Cash',68.97,'250','','','12','','1','2022-11-06 21:00:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678475144637413',4182,'121667847488','716165177364','1.00','250','retail','0','2022-11-07 22:01:13','','','','130','Cash',34.48,'250','','','12','','1','2022-11-07 16:02:23','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678475324637413',4183,'121667847488','3086120600020','1.00','120','retail','0','2022-11-07 22:01:13','','','','93.86','Cash',16.55,'120','','','12','','1','2022-11-07 16:02:23','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678476620332020',4184,'121667847488','8712000900045','2.00','500','retail','0','2022-11-07 22:01:13','','','','182','Cash',68.97,'250','','','12','','1','2022-11-07 16:02:23','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678476722021301',4185,'121667847488','6161101603324','2.00','500','retail','0','2022-11-07 22:01:13','','','','150.45','Cash',68.97,'250','','','12','','1','2022-11-07 16:02:23','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678489163419263',4186,'121667848907','6161101602525','1.00','120','retail','0','2022-11-07 22:22:22','','','','95.75','Cash',16.55,'120','','','12','','1','2022-11-07 16:23:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678489203380320',4187,'121667848907','6161101602525','1.00','120','retail','0','2022-11-07 22:22:22','','','','95.75','Cash',16.55,'120','','','12','','1','2022-11-07 16:23:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678489414637413',4188,'121667848907','5449000014535','2.00','240','retail','0','2022-11-07 22:22:22','','','','64','Cash',33.10,'120','','','12','','1','2022-11-07 16:23:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678490680303223',4189,'121667848991','5010327000039','1.00','2500','retail','0','2022-11-07 22:25:13','','','','1764','Cash',344.83,'2500','','','12','','1','2022-11-07 16:25:16','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678491012033219',4190,'121667848991','54493360','1.00','80','retail','0','2022-11-07 22:25:13','','','','53.333','Cash',11.03,'80','','','12','','1','2022-11-07 16:25:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678491122033219',4191,'121667848991','6164001199010','1.00','100','retail','0','2022-11-07 22:25:13','','','','38','Cash',13.79,'100','','','12','','1','2022-11-07 16:25:16','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678501666363603',4192,'121667850149','6161101602921','5.00','1250','retail','0','2022-11-07 22:42:47','','','','198.45','Cash',172.41,'250','','','12','','1','2022-11-07 16:42:58','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'5','5.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678502212201333',4193,'121667850183','8712000900045','3.00','750','retail','0','2022-11-07 22:43:42','','','','182','Cash',103.45,'250','','','12','','1','2022-11-07 16:43:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678513052033231',4194,'121667850227','6161101602167','1.00','550','retail','0','2022-11-07 23:02:34','','','','388','Cash',75.86,'550','','','12','','1','2022-11-07 17:03:35','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678513530332020',4195,'121667850227','6164001199331','1.00','70','retail','0','2022-11-07 23:02:34','','','','37.08','Cash',9.66,'70','','','12','','1','2022-11-07 17:03:35','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678530500332020',4196,'121667853021','5000267013602','1.00','2500','retail','0','2022-11-07 23:34:25','','','','1612','Cash',344.83,'2500','','','12','','1','2022-11-07 17:34:40','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',2155.17,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678530867600622',4197,'121667853021','5449000028976','1.00','150','retail','0','2022-11-07 23:34:25','','','','103','Cash',20.69,'150','','','12','','1','2022-11-07 17:34:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678532605637513',4198,'121667853021','5449000028921','1.00','150','retail','0','2022-11-07 23:34:25','','','','103','Cash',20.69,'150','','','12','','1','2022-11-07 17:34:40','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678544523320050',4199,'121667854436','6161101603324','2.00','500','retail','0','2022-11-07 23:54:13','','','','150.45','Cash',68.97,'250','','','12','','1','2022-11-07 17:54:25','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678545356333603',4200,'121667854468','024000150121','2.00','500','retail','0','2022-11-07 23:55:49','','','','205','Cash',68.97,'250','','','12','','1','2022-11-07 17:55:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678545482033254',4201,'121667854468','024000150152','1.00','250','retail','0','2022-11-07 23:55:49','','','','205','Cash',34.48,'250','','','12','','1','2022-11-07 17:55:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678546083380320',4202,'121667854555','6164001199331','1.00','70','retail','0','2022-11-07 23:56:48','','','','37.08','Cash',9.66,'70','','','12','','1','2022-11-07 17:56:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678551443380320',4203,'121667855131','8712000900045','2.00','500','retail','0','2022-11-08 00:06:39','','','','182','Cash',68.97,'250','','','12','','1','2022-11-07 18:06:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678551606363603',4204,'121667855131','6161101602938','2.00','500','retail','0','2022-11-08 00:06:39','','','','198.45','Cash',68.97,'250','','','12','','1','2022-11-07 18:06:52','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678551996393603',4205,'121667855131','024000150121','1.00','250','retail','0','2022-11-08 00:06:39','','','','205','Cash',34.48,'250','','','12','','1','2022-11-07 18:06:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678552753380320',4206,'121667855214','6161101602938','2.00','500','retail','0','2022-11-08 00:07:56','','','','198.45','Cash',68.97,'250','','','12','','1','2022-11-07 18:08:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678566303516263',4207,'121667856619','4820000944627','1.00','1700','retail','0','2022-11-08 00:31:22','','','','931','Cash',234.48,'1700','','','12','','1','2022-11-07 18:31:27','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1465.52,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678566414328066',4208,'121667856619','8712000900045','2.00','500','retail','0','2022-11-08 00:31:22','','','','182','Cash',68.97,'250','','','12','','1','2022-11-07 18:31:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678566543516263',4209,'121667856619','5018907197803','1.00','100','retail','0','2022-11-08 00:31:22','','','','44.58','Cash',13.79,'100','','','12','','1','2022-11-07 18:31:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678566672033266',4210,'121667856619','6161101602938','2.00','500','retail','0','2022-11-08 00:31:22','','','','198.45','Cash',68.97,'250','','','12','','1','2022-11-07 18:31:27','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678566811033126',4211,'121667856619','5060608747818','1.00','80','retail','0','2022-11-08 00:31:22','','','','67','Cash',11.03,'80','','','12','','1','2022-11-07 18:31:27','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678583976393603',4212,'121667856688','5060639129003','1.00','250','retail','0','2022-11-08 00:59:57','','','','153','Cash',34.48,'250','','','12','','1','2022-11-07 19:00:02','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678614060332020',4213,'121667861377','6161101603379','3.00','750','retail','0','2022-11-08 01:50:07','','','','190.375','Cash',103.45,'250','','','12','','1','2022-11-07 19:50:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678624146313603',4214,'121667862402','6161101604406','3.00','750','retail','0','2022-11-08 02:07:40','','','','181.708','Cash',103.45,'250','','','12','','1','2022-11-07 20:10:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678624293614263',4215,'121667862402','6161101602938','4.00','1000','retail','0','2022-11-08 02:07:40','','','','198.45','Cash',137.93,'250','','','12','','1','2022-11-07 20:10:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678624606637613',4216,'121667862402','852848252000','1.00','3800','retail','0','2022-11-08 02:07:40','','','','1500','Cash',524.14,'3800','','','12','','1','2022-11-07 20:10:41','1','14','new','1','new','pcs','','','','yes','','0','','','VATABLE',3275.86,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678658510332020',4217,'121667865567','082184090442','1.00','5300','retail','0','2022-11-08 03:05:43','','','','3450','Cash',731.03,'5300','','','12','','1','2022-11-07 21:06:25','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',4568.97,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678658970303223',4218,'121667865567','8712000900663','3.00','750','retail','0','2022-11-08 03:05:43','','','','174','Cash',103.45,'250','','','12','','1','2022-11-07 21:06:25','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',646.55,'','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678678340303223',4219,'121667867818','6161101603379','2.00','500','retail','0','2022-11-08 03:37:30','','','','190.375','Cash',68.97,'250','','','12','','1','2022-11-07 21:38:13','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678678506353603',4220,'121667867818','1000','1.00','270','retail','0','2022-11-08 03:37:30','','','','192','Cash',37.24,'270','','','12','','1','2022-11-07 21:38:13','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216678685660332020',4221,'121667868552','6161101603379','1.00','250','retail','0','2022-11-08 03:49:27','','','','190.375','Cash',34.48,'250','','','12','','1','2022-11-07 21:49:29','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679127840303223',4222,'121667910448','6161101602525','1.00','120','retail','0','2022-11-08 16:06:25','','','','95.75','Cash',16.55,'120','','','12','','1','2022-11-08 10:06:28','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679129353119263',4223,'121667912790','6161101602525','1.00','120','retail','0','2022-11-08 16:08:56','','','','95.75','Cash',16.55,'120','','','12','','1','2022-11-08 10:08:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679146430332020',4224,'121667913535','6161101602525','3.00','360','retail','0','2022-11-08 16:37:52','','','','95.75','Cash',49.66,'120','','','12','','1','2022-11-08 10:37:59','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679146710332020',4225,'121667913535','5018907197803','3.00','300','retail','0','2022-11-08 16:37:52','','','','44.58','Cash',41.38,'100','','','12','','1','2022-11-08 10:37:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'3','35.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679149222033226',4226,'121667914680','6161101602525','1.00','120','retail','0','2022-11-08 16:42:03','','','','95.75','Cash',16.55,'120','','','12','','1','2022-11-08 10:42:11','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',103.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679309863319263',4227,'121667925074','6161101604703','1.00','250','retail','0','2022-11-08 21:10:01','','','','150.45','Cash',34.48,'250','','','12','','1','2022-11-08 15:10:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679310002033201',4228,'121667925074','1000','1.00','270','retail','0','2022-11-08 21:10:01','','','','192','Cash',37.24,'270','','','12','','1','2022-11-08 15:10:07','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679327980332020',4229,'121667931008','6161101601979','2.00','500','retail','0','2022-11-08 21:40:53','','','','172.75','Cash',68.97,'250','','','12','','1','2022-11-08 15:42:21','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679331799033926',4230,'121667933162','1000','1.00','270','retail','0','2022-11-08 21:48:16','','','','192','Cash',37.24,'270','','','12','','1','2022-11-08 15:48:43','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679332012033223',4231,'121667933162','6161101605465','1.00','800','retail','0','2022-11-08 21:48:16','','','','501','Cash',110.34,'800','','','12','','1','2022-11-08 15:48:43','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',689.66,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679332263312263',4232,'121667933162','5018907194802','2.00','300','retail','0','2022-11-08 21:48:16','','','','74.58','Cash',41.38,'150','','','12','','1','2022-11-08 15:48:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',129.31,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679332412033223',4233,'121667933162','5060608740253','1.00','80','retail','0','2022-11-08 21:48:16','','','','41.82','Cash',11.03,'80','','','12','','1','2022-11-08 15:48:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679332966393603',4234,'121667933162','6164001199331','2.00','140','retail','0','2022-11-08 21:48:16','','','','37.08','Cash',19.31,'70','','','12','','1','2022-11-08 15:48:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679333400303223',4235,'121667933324','5060639129003','2.00','500','retail','0','2022-11-08 21:49:00','','','','153','Cash',68.97,'250','','','12','','1','2022-11-08 15:49:09','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679340383310263',4236,'121667934016','6161101601979','3.00','750','retail','0','2022-11-08 22:00:38','','','','172.75','Cash',103.45,'250','','','12','','1','2022-11-08 16:00:41','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679390963390320',4237,'121667939068','1000','1.00','270','retail','0','2022-11-08 23:24:56','','','','192','Cash',37.24,'270','','','12','','1','2022-11-08 17:27:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679431894637413',4238,'121667942188','8712000900045','1.00','250','retail','0','2022-11-09 00:34:39','','','','182','Cash',34.48,'250','','','12','','1','2022-11-08 18:34:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679432790332020',4239,'121667942188','8712000900045','2.00','500','retail','0','2022-11-09 00:34:39','','','','182','Cash',68.97,'250','','','12','','1','2022-11-08 18:34:45','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679465960332020',4240,'121667946585','6161101606011','2.00','500','retail','0','2022-11-09 01:29:57','','','','172.833','Cash',68.97,'250','','','12','','1','2022-11-08 19:30:09','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679489833033326',4241,'121667946610','5010103930864','1.00','1500','retail','0','2022-11-09 02:09:55','','','','1125','Cash',206.90,'1500','','','12','','1','2022-11-08 20:11:28','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679489942629240',4242,'121667946610','6008165007685','1.00','270','retail','0','2022-11-09 02:09:55','','','','251.5','Cash',37.24,'270','','','12','','1','2022-11-08 20:11:28','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679516215637513',4243,'121667951608','5060608740253','2.00','160','retail','0','2022-11-09 02:53:58','','','','41.82','Cash',22.07,'80','','','12','','1','2022-11-08 20:54:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679516293516263',4244,'121667951608','5060639129003','1.00','250','retail','0','2022-11-09 02:53:58','','','','153','Cash',34.48,'250','','','12','','1','2022-11-08 20:54:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679516382033261',4245,'121667951608','6161101603324','3.00','750','retail','0','2022-11-09 02:53:58','','','','150.45','Cash',103.45,'250','','','12','','1','2022-11-08 20:54:07','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679518150332020',4246,'121667951791','6161101603379','2.00','500','retail','0','2022-11-09 02:56:56','','','','190.375','Cash',68.97,'250','','','12','','1','2022-11-08 20:57:00','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679532023390320',4247,'121667953193','6001108028044','3.00','750','retail','0','2022-11-09 03:20:21','','','','201','Cash',103.45,'250','','','12','','1','2022-11-08 21:20:33','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679532206323603',4248,'121667953193','90162602','1.00','230','retail','0','2022-11-09 03:20:21','','','','147','Cash',31.72,'230','','','12','','1','2022-11-08 21:20:33','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',198.28,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679534360303223',4249,'121667953429','080432400395','1.00','3600','retail','0','2022-11-09 03:23:56','','','','2700','Cash',496.55,'3600','','','12','','1','2022-11-08 21:23:59','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',3103.45,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679542976393603',4250,'121667954287','5099873038758','2.00','17000','retail','0','2022-11-09 03:38:18','','','','3920','Cash',2344.83,'8500','','','12','','1','2022-11-08 21:38:20','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679544963390320',4251,'121667954486','5000281003641','1.00','8500','retail','0','2022-11-09 03:41:36','','','','6313','Cash',1172.41,'8500','','','12','','1','2022-11-08 21:41:39','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',7327.59,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679556275637513',4252,'121667955523','6161101605458','1.00','270','retail','0','2022-11-09 04:00:27','','','','182','Cash',37.24,'270','','','12','','1','2022-11-08 22:00:29','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679556576353603',4253,'121667955631','1000','1.00','270','retail','0','2022-11-09 04:00:57','','','','192','Cash',37.24,'270','','','12','','1','2022-11-08 22:01:02','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',232.76,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679558646363603',4254,'121667955853','5000291020805','1.00','3750','retail','0','2022-11-09 04:04:25','','','','2760','Cash',517.24,'3750','','','12','','1','2022-11-08 22:04:26','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3232.76,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679559672033295',4255,'121667955960','5000291021925','1.00','4500','retail','0','2022-11-09 04:06:08','','','','3381','Cash',620.69,'4500','','','12','','1','2022-11-08 22:06:11','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',3879.31,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679561466033626',4256,'121667956128','5010103930864','2.00','3000','retail','0','2022-11-09 04:09:07','','','','1125','Cash',413.79,'1500','','','12','','1','2022-11-08 22:09:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679563755033526',4257,'121667956366','4820000947305','1.00','1900','retail','0','2022-11-09 04:12:56','','','','1148','Cash',262.07,'1900','','','12','','1','2022-11-08 22:13:08','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',1637.93,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679570600033026',4258,'121667956990','087000006935','2.00','4500','retail','0','2022-11-09 04:24:21','','','','1650','Cash',620.69,'2250','','','12','','1','2022-11-08 22:24:24','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1939.66,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679965500303223',4259,'121667993093','40822938','1.00','70','retail','0','2022-11-09 15:22:33','','','','53.333','Cash',9.66,'70','','','12','','1','2022-11-09 09:22:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679993103913263',4260,'121667999300','5010103930628','2.00','3500','retail','0','2022-11-09 16:08:40','','','','1125','Cash',482.76,'1750','','','12','','1','2022-11-09 10:12:36','1','2','new','1','new','pcs','','','','yes','','0','','','VATABLE',1508.62,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216679993190303223',4261,'121667999300','50112265','3.00','240','retail','0','2022-11-09 16:08:40','','','','53.33','Cash',33.10,'80','','','12','','1','2022-11-09 10:12:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680010083010263',4262,'121668001002','6161101602051','1.00','550','retail','0','2022-11-09 16:36:56','','','','392','Cash',75.86,'550','','','12','','1','2022-11-09 10:36:59','1','4','new','1','new','pcs','','','','yes','','0','','','VATABLE',474.14,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680010163010263',4263,'121668001002','6164001199331','1.00','70','retail','0','2022-11-09 16:36:56','','','','37.08','Cash',9.66,'70','','','12','','1','2022-11-09 10:36:59','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',60.34,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680053423300320',4264,'121668005327','5010677038874','1.00','2200','retail','0','2022-11-09 17:49:30','','','','1570','Cash',303.45,'2200','','','12','','1','2022-11-09 11:49:52','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1896.55,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680053562033235',4265,'121668005327','5010677015615','6.00','10800','retail','0','2022-11-09 17:49:30','','','','1300','Cash',1489.66,'1800','','','12','','1','2022-11-09 11:49:52','1','7','new','1','new','pcs','','','','yes','','0','','','VATABLE',1551.72,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680053699033926',4266,'121668005327','5010677015738','4.00','9200','retail','0','2022-11-09 17:49:30','','','','1730','Cash',1268.97,'2300','','','12','','1','2022-11-09 11:49:52','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1982.76,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680069300033026',4267,'121668006917','100','1.00','250','retail','0','2022-11-09 18:15:31','','','','177','Cash',34.48,'250','','','12','','1','2022-11-09 12:15:33','1','1','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680070899033926',4268,'121668007067','5060639129003','3.00','750','retail','0','2022-11-09 18:18:10','','','','153','Cash',103.45,'250','','','12','','1','2022-11-09 12:18:13','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'3','30.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680075842033257',4269,'121668007580','4058387002267','1.00','1500','retail','0','2022-11-09 18:26:25','','','','1150','Cash',206.90,'1500','','','12','','1','2022-11-09 12:26:33','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680086902033268',4270,'121668008678','87303322','5.00','300','retail','0','2022-11-09 18:44:50','','','','23','Cash',41.38,'60','','','12','','1','2022-11-09 12:44:53','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',51.72,'5','24.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680087310303223',4271,'121668008720','5018907197803','4.00','400','retail','0','2022-11-09 18:45:31','','','','44.58','Cash',55.17,'100','','','12','','1','2022-11-09 12:45:36','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'4','32.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680088133033326',4272,'121668008806','024000150138','1.00','250','retail','0','2022-11-09 18:46:54','','','','205','Cash',34.48,'250','','','12','','1','2022-11-09 12:46:55','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680088622033288',4273,'121668008817','024000150053','2.00','500','retail','0','2022-11-09 18:47:43','','','','205','Cash',68.97,'250','','','12','','1','2022-11-09 12:47:47','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680089976393603',4274,'121668008984','90490279','4.00','400','retail','0','2022-11-09 18:49:58','','','','68','Cash',55.17,'100','','','12','','1','2022-11-09 12:50:00','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680090266033626',4275,'121668009002','90490224','1.00','100','retail','0','2022-11-09 18:50:27','','','','59.666','Cash',13.79,'100','','','12','','1','2022-11-09 12:50:28','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680090493300320',4276,'121668009029','5449000188342','1.00','100','retail','0','2022-11-09 18:50:49','','','','59.666','Cash',13.79,'100','','','12','','1','2022-11-09 12:50:52','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680090630332020',4277,'121668009054','90399480','1.00','100','retail','0','2022-11-09 18:51:04','','','','59.666','Cash',13.79,'100','','','12','','1','2022-11-09 12:51:07','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',86.21,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680093376333603',4278,'121668009321','54491069','12.00','960','retail','0','2022-11-09 18:55:38','','','','53.333','Cash',132.41,'80','','','12','','1','2022-11-09 12:55:43','1','10','new','1','new','pcs','','','','yes','','0','','','VATABLE',68.97,'12','33.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680097522200222',4279,'121668009743','6008165007784','1.00','370','retail','0','2022-11-09 19:02:32','','','','327.04','Cash',51.03,'370','','','12','','1','2022-11-09 13:02:35','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',318.97,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680098106313603',4280,'121668009756','6008165007968','11.00','3850','retail','0','2022-11-09 19:03:30','','','','308.5','Cash',531.03,'350','','','12','','1','2022-11-09 13:03:33','1','13','new','1','new','pcs','','','','yes','','0','','','VATABLE',301.72,'11','11.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680100380332020',4281,'121668009815','4058387002267','1.00','1500','retail','0','2022-11-09 19:07:19','','','','1150','Cash',206.90,'1500','','','12','','1','2022-11-09 13:07:20','1','12','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680100900033026',4282,'121668010042','6161101602921','1.00','250','retail','0','2022-11-09 19:08:11','','','','198.45','Cash',34.48,'250','','','12','','1','2022-11-09 13:08:12','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680130424402433',4283,'121668010716','6161101603379','2.00','500','retail','0','2022-11-09 19:57:22','','','','190.375','Cash',68.97,'250','','','12','','1','2022-11-09 13:57:24','1','3','new','1','new','pcs','','','','yes','','0','','','VATABLE',215.52,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680131221638113',4284,'121668013045','5010103930864','1.00','1500','retail','0','2022-11-09 19:58:43','','','','1125','Cash',206.90,'1500','','','12','','1','2022-11-09 14:00:10','1','6','new','1','new','pcs','','','','yes','','0','','','VATABLE',1293.10,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680164114202432',4285,'121668016362','6161101602600','1.00','220','retail','0','2022-11-09 20:53:31','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-09 14:53:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680186141638113',4286,'121668018428','6161101601979','3.00','750','retail','0','2022-11-09 21:30:29','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-09 15:30:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','27.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680186293300320',4287,'121668018428','6161101602600','2.00','440','retail','0','2022-11-09 21:30:29','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-09 15:30:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680186846383603',4288,'121668018637','6161101601979','2.00','500','retail','0','2022-11-09 21:32:11','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-09 15:32:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680187230332020',4289,'121668018637','6161101603379','2.00','500','retail','0','2022-11-09 21:32:11','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-09 15:32:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680214392638213',4290,'121668018736','6161101601979','2.00','500','retail','0','2022-11-09 22:17:39','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-09 16:17:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680214588033826',4291,'121668018736','6161101602372','1.00','250','retail','0','2022-11-09 22:17:39','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-09 16:17:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680263306333603',4292,'121668021464','6161101606820','1.00','250','retail','0','2022-11-09 23:39:06','','','','159','Cash',0.00,'250','','','12','','1','2022-11-09 17:39:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680263460332020',4293,'121668021464','8712000900045','1.00','250','retail','0','2022-11-09 23:39:06','','','','182','Cash',0.00,'250','','','12','','1','2022-11-09 17:39:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680284492033248',4294,'121668026351','5018907194802','4.00','600','retail','0','2022-11-10 00:15:31','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-09 18:15:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680284940332020',4295,'121668026351','6161101606820','4.00','1000','retail','0','2022-11-10 00:15:31','','','','159','Cash',0.00,'250','','','12','','1','2022-11-09 18:15:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','23.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680285130303223',4296,'121668026351','100','2.00','500','retail','0','2022-11-10 00:15:31','','','','177','Cash',0.00,'250','','','12','','1','2022-11-09 18:15:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680285311033126',4297,'121668026351','8712000900663','2.00','500','retail','0','2022-11-10 00:15:31','','','','174','Cash',0.00,'250','','','12','','1','2022-11-09 18:15:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680285723300320',4298,'121668028537','6161101601979','3.00','750','retail','0','2022-11-10 00:16:13','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-09 18:16:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','20.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680306053300320',4299,'121668028578','6161101606820','1.00','250','retail','0','2022-11-10 00:50:25','','','','159','Cash',0.00,'250','','','12','','1','2022-11-09 18:50:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680306253316263',4300,'121668028578','100','1.00','250','retail','0','2022-11-10 00:50:25','','','','177','Cash',0.00,'250','','','12','','1','2022-11-09 18:50:29','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680308890303223',4301,'121668030631','8712000900663','2.00','500','retail','0','2022-11-10 00:54:50','','','','174','Cash',0.00,'250','','','12','','1','2022-11-09 18:54:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680320743310263',4302,'121668030899','5000291020706','1.00','2800','retail','0','2022-11-10 01:15:47','','','','2070','Cash',0.00,'2800','','','12','','1','2022-11-09 19:15:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680321310332020',4303,'121668030899','5449000028976','1.00','150','retail','0','2022-11-10 01:15:47','','','','103','Cash',0.00,'150','','','12','','1','2022-11-09 19:15:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680321463311263',4304,'121668030899','5018907194802','1.00','150','retail','0','2022-11-10 01:15:47','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-09 19:15:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680330103300320',4305,'121668032158','7794450091598','1.00','2000','retail','0','2022-11-10 01:30:11','','','','1280','Cash',0.00,'2000','','','12','','1','2022-11-09 19:31:39','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680339580820928',4306,'121668033101','8712000900045','3.00','750','retail','0','2022-11-10 01:45:59','','','','182','Cash',0.00,'250','','','12','','1','2022-11-09 19:46:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680368122033226',4307,'121668033964','6161101603324','1.00','250','retail','0','2022-11-10 02:33:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-09 20:33:42','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680386683638313',4308,'121668036824','6161101601979','3.00','750','retail','0','2022-11-10 03:04:37','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-09 21:06:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680386772033268',4309,'121668036824','6161101561020','1.00','400','retail','0','2022-11-10 03:04:37','','','','210','Cash',0.00,'400','','','12','','1','2022-11-09 21:06:51','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680395993638313',4310,'121668038812','5000289932479','1.00','2000','retail','0','2022-11-10 03:20:12','','','','1540','Cash',0.00,'2000','','','12','','1','2022-11-09 21:23:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680396066033626',4311,'121668038812','50112265','1.00','80','retail','0','2022-11-10 03:20:12','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-09 21:23:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680396120332020',4312,'121668038812','50112265','1.00','80','retail','0','2022-11-10 03:20:12','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-09 21:23:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680398843318263',4313,'121668039785','8908006354993','2.00','1800','retail','0','2022-11-10 03:26:19','','','','631','Cash',0.00,'900','','','12','','1','2022-11-09 21:26:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680399780332020',4314,'121668039785','5449000028976','1.00','150','retail','0','2022-11-10 03:26:19','','','','103','Cash',0.00,'150','','','12','','1','2022-11-09 21:26:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680414460303223',4315,'121668039997','6161101602372','2.00','500','retail','0','2022-11-10 03:51:00','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-09 21:51:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','31.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680414603033302',4316,'121668039997','6161101603324','2.00','500','retail','0','2022-11-10 03:51:00','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-09 21:51:03','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680791390303223',4317,'121668077882','6161101603324','2.00','500','retail','0','2022-11-10 14:19:01','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-10 08:19:06','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','26.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680793310332020',4318,'121668079153','90162602','1.00','230','retail','0','2022-11-10 14:22:12','','','','147','Cash',0.00,'230','','','12','','1','2022-11-10 08:22:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680880840303223',4319,'121668088064','8712000900663','2.00','500','retail','0','2022-11-10 16:48:04','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 10:48:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680898993300320',4320,'121668088089','6161101606011','7.00','1750','retail','0','2022-11-10 17:18:20','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-10 11:18:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'7','43.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680924810332020',4321,'121668089906','6161101602525','4.00','480','retail','0','2022-11-10 18:01:22','','','','95.75','Cash',0.00,'120','','','12','','1','2022-11-10 12:01:33','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680934386333603',4322,'121668092496','6161101561280','1.00','270','retail','0','2022-11-10 18:17:19','','','','190','Cash',0.00,'270','','','12','','1','2022-11-10 12:17:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680951663300320',4323,'121668093445','6161101602167','1.00','550','retail','0','2022-11-10 18:46:08','','','','388','Cash',0.00,'550','','','12','','1','2022-11-10 12:46:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216680980660390002',4324,'121668095184','6161101601979','2.00','500','retail','0','2022-11-10 19:34:27','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-10 13:34:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681012543310320',4325,'121668101234','6161101602938','1.00','250','retail','0','2022-11-10 20:27:35','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-10 14:27:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681021933011263',4326,'121668101263','8712000900663','4.00','1000','retail','0','2022-11-10 20:43:13','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 14:43:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681026460332020',4327,'121668102219','5010103930963','1.00','1500','retail','0','2022-11-10 20:51:13','','','','1125','Cash',0.00,'1500','','','12','','1','2022-11-10 14:51:20','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681026596353603',4328,'121668102219','5018907194802','1.00','150','retail','0','2022-11-10 20:51:13','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-10 14:51:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681026722033262',4329,'121668102219','5449000028921','1.00','150','retail','0','2022-11-10 20:51:13','','','','103','Cash',0.00,'150','','','12','','1','2022-11-10 14:51:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681117710303223',4330,'121668111728','6161101606820','4.00','1000','retail','0','2022-11-10 23:23:29','','','','159','Cash',0.00,'250','','','12','','1','2022-11-10 17:23:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681117822033226',4331,'121668111728','024000150152','1.00','250','retail','0','2022-11-10 23:23:29','','','','205','Cash',0.00,'250','','','12','','1','2022-11-10 17:23:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681117983117263',4332,'121668111728','6161101604406','2.00','500','retail','0','2022-11-10 23:23:29','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-10 17:23:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681118093310320',4333,'121668111728','5018907197803','1.00','100','retail','0','2022-11-10 23:23:29','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-10 17:23:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681121161638113',4334,'121668111817','6161101604703','1.00','250','retail','0','2022-11-10 23:29:02','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-10 17:29:05','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681121288033826',4335,'121668111817','6161101603324','1.00','250','retail','0','2022-11-10 23:29:02','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-10 17:29:05','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681121412033212',4336,'121668111817','5449000028921','1.00','150','retail','0','2022-11-10 23:29:02','','','','103','Cash',0.00,'150','','','12','','1','2022-11-10 17:29:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681124910332020',4337,'121668112147','5000289020800','1.00','2500','retail','0','2022-11-10 23:34:52','','','','1840','Cash',0.00,'2500','','','12','','1','2022-11-10 17:34:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681149343310320',4338,'121668112499','6161100420823','1.00','300','retail','0','2022-11-11 00:15:38','','','','198','Cash',0.00,'300','','','12','','1','2022-11-10 18:15:45','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681159210303223',4339,'121668115819','8712000900663','2.00','500','retail','0','2022-11-11 00:32:02','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 18:32:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681162831638113',4340,'121668115927','8712000900663','6.00','1500','retail','0','2022-11-11 00:38:05','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 18:38:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681168833310320',4341,'121668116290','8712000900663','3.00','750','retail','0','2022-11-11 00:48:04','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 18:48:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681180183310320',4342,'121668117466','90162602','1.00','230','retail','0','2022-11-11 01:06:59','','','','147','Cash',0.00,'230','','','12','','1','2022-11-10 19:07:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681183863310320',4343,'121668118028','6161101561280','1.00','270','retail','0','2022-11-11 01:13:07','','','','190','Cash',0.00,'270','','','12','','1','2022-11-10 19:13:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681197993310320',4344,'121668118392','5000196006652','1.00','500','retail','0','2022-11-11 01:36:55','','','','310','Cash',0.00,'500','','','12','','1','2022-11-10 19:37:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681198110332020',4345,'121668118392','50112265','1.00','80','retail','0','2022-11-11 01:36:55','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-10 19:37:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681199862033299',4346,'121668119876','54491069','1.00','80','retail','0','2022-11-11 01:41:01','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-10 19:41:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681200602033200',4347,'121668119876','5010103930666','1.00','750','retail','0','2022-11-11 01:41:01','','','','542','Cash',0.00,'750','','','12','','1','2022-11-10 19:41:51','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681226488033826',4348,'121668120213','6161101561280','1.00','270','retail','0','2022-11-11 02:24:08','','','','190','Cash',0.00,'270','','','12','','1','2022-11-10 20:24:12','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681242532033224',4349,'121668122654','6161101604703','1.00','250','retail','0','2022-11-11 02:50:54','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-10 20:51:08','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681243144033426',4350,'121668124269','6161101602938','1.00','250','retail','0','2022-11-11 02:51:55','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-10 20:52:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681243652638213',4351,'121668124324','5060608740253','1.00','80','retail','0','2022-11-11 02:53:00','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-10 20:53:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681243802220040',4352,'121668124324','5018907194802','1.00','150','retail','0','2022-11-11 02:53:00','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-10 20:53:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681244303310320',4353,'121668124386','87303322','1.00','60','retail','0','2022-11-11 02:53:50','','','','23','Cash',0.00,'60','','','12','','1','2022-11-10 20:54:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681246712638213',4354,'121668124445','87303322','2.00','120','retail','0','2022-11-11 02:57:51','','','','23','Cash',0.00,'60','','','12','','1','2022-11-10 20:57:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681253670303223',4355,'121668124677','5449000028921','1.00','150','retail','0','2022-11-11 03:09:27','','','','103','Cash',0.00,'150','','','12','','1','2022-11-10 21:09:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681255206323603',4356,'121668125373','6161101603324','1.00','250','retail','0','2022-11-11 03:13:30','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-10 21:14:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681255722033226',4357,'121668125373','87303322','1.00','60','retail','0','2022-11-11 03:13:30','','','','23','Cash',0.00,'60','','','12','','1','2022-11-10 21:14:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681256100332020',4358,'121668125373','8000530800462','1.00','1600','retail','0','2022-11-11 03:13:30','','','','1050','Cash',0.00,'1600','','','12','','1','2022-11-10 21:14:35','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681264811033126',4359,'121668126468','8712000900663','1.00','250','retail','0','2022-11-11 03:28:02','','','','174','Cash',0.00,'250','','','12','','1','2022-11-10 21:28:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681833996393603',4360,'121668183394','4058387001451','1.00','1400','retail','0','2022-11-11 19:16:41','','','','1050','Cash',0.00,'1400','','','12','','1','2022-11-11 13:21:59','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681847533817263',4361,'121668183722','9300727019967','1.00','1800','retail','0','2022-11-11 19:39:14','','','','1055','Cash',0.00,'1800','','','12','','1','2022-11-11 13:39:44','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681851926393603',4362,'121668184786','6161101605465','1.00','800','retail','0','2022-11-11 19:51:58','','','','501','Cash',0.00,'800','','','12','','1','2022-11-11 13:52:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681854833814263',4363,'121668184786','3086120600020','1.00','120','retail','0','2022-11-11 19:51:58','','','','93.86','Cash',0.00,'120','','','12','','1','2022-11-11 13:52:16','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681855173310320',4364,'121668184786','8000530010304','1.00','1600','retail','0','2022-11-11 19:51:58','','','','1O2O','Cash',0.00,'1600','','','12','','1','2022-11-11 13:52:16','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681871743310320',4365,'121668187153','6161101606561','1.00','1750','retail','0','2022-11-11 20:19:55','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-11 14:20:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681871958935621',4366,'121668187153','5449000028976','1.00','150','retail','0','2022-11-11 20:19:55','','','','103','Cash',0.00,'150','','','12','','1','2022-11-11 14:20:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681893322033226',4367,'121668189279','6161101602600','1.00','220','retail','0','2022-11-11 20:55:32','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-11 14:55:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681896913816263',4368,'121668189677','5449000000286','1.00','250','retail','0','2022-11-11 21:01:45','','','','158','Cash',0.00,'250','','','12','','1','2022-11-11 15:01:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681897052033279',4369,'121668189677','5449000022752','1.00','250','retail','0','2022-11-11 21:01:45','','','','158','Cash',0.00,'250','','','12','','1','2022-11-11 15:01:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681897456343603',4370,'121668189709','6161101602525','1.00','120','retail','0','2022-11-11 21:02:25','','','','95.75','Cash',0.00,'120','','','12','','1','2022-11-11 15:02:28','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681906913310320',4371,'121668190663','1000','1.00','270','retail','0','2022-11-11 21:18:11','','','','192','Cash',0.00,'270','','','12','','1','2022-11-11 15:18:14','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681920336333603',4372,'121668191150','6161101602938','3.00','750','retail','0','2022-11-11 21:41:15','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-11 15:41:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681921192033212',4373,'121668192093','8712000900045','6.00','1500','retail','0','2022-11-11 21:41:59','','','','182','Cash',0.00,'250','','','12','','1','2022-11-11 15:42:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681923200020306',4374,'121668192310','5010103930628','1.00','1750','retail','0','2022-11-11 21:45:20','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-11 15:45:23','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681924186313603',4375,'121668192394','1000','2.00','540','retail','0','2022-11-11 21:48:12','','','','192','Cash',0.00,'270','','','12','','1','2022-11-11 15:48:15','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','29.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681924320303223',4376,'121668192394','6164001199010','2.00','200','retail','0','2022-11-11 21:48:12','','','','38','Cash',0.00,'100','','','12','','1','2022-11-11 15:48:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681924922033226',4377,'121668192394','6164001199331','1.00','70','retail','0','2022-11-11 21:48:12','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-11 15:48:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681927603917263',4378,'121668192741','6161101603379','4.00','1000','retail','0','2022-11-11 21:52:40','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-11 15:52:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681933283913263',4379,'121668193308','6161101603379','2.00','500','retail','0','2022-11-11 22:02:17','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-11 16:02:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681933376333603',4380,'121668193308','8712000900045','3.00','750','retail','0','2022-11-11 22:02:17','','','','182','Cash',0.00,'250','','','12','','1','2022-11-11 16:02:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681940700033026',4381,'121668193342','6161101602372','2.00','500','retail','0','2022-11-11 22:14:31','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-11 16:14:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','29.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681944510332020',4382,'121668194075','87303322','1.00','60','retail','0','2022-11-11 22:20:52','','','','23','Cash',0.00,'60','','','12','','1','2022-11-11 16:20:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681948760332020',4383,'121668194459','7312040017010','1.00','2200','retail','0','2022-11-11 22:28:13','','','','1576','Cash',0.00,'2200','','','12','','1','2022-11-11 16:29:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681948922033226',4384,'121668194459','5018907194802','1.00','150','retail','0','2022-11-11 22:28:13','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-11 16:29:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681968183918263',4385,'121668194963','6161101601979','1.00','250','retail','0','2022-11-11 23:01:29','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-11 17:01:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681968798023132',4386,'121668194963','6161101603379','1.00','250','retail','0','2022-11-11 23:01:29','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-11 17:01:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681968890332020',4387,'121668194963','6161101602938','1.00','250','retail','0','2022-11-11 23:01:29','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-11 17:01:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681971803911263',4388,'121668196904','6161101602600','1.00','220','retail','0','2022-11-11 23:06:21','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-11 17:06:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681978666033626',4389,'121668197186','3245990255215','1.00','12500','retail','0','2022-11-11 23:21:27','','','','9200','Cash',0.00,'12500','','','12','','1','2022-11-11 17:22:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681979253310320',4390,'121668197186','54493360','1.00','80','retail','0','2022-11-11 23:21:27','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-11 17:22:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681979389638913',4391,'121668197186','50112265','1.00','80','retail','0','2022-11-11 23:21:27','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-11 17:22:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681980742220080',4392,'121668197186','90162602','2.00','460','retail','0','2022-11-11 23:21:27','','','','147','Cash',0.00,'230','','','12','','1','2022-11-11 17:22:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681980879638913',4393,'121668197186','6164001199010','1.00','100','retail','0','2022-11-11 23:21:27','','','','38','Cash',0.00,'100','','','12','','1','2022-11-11 17:22:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681982256323603',4394,'121668198157','5010232953925','1.00','700','retail','0','2022-11-11 23:23:45','','','','315.787','Cash',0.00,'700','','','12','','1','2022-11-11 17:23:47','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681992610332020',4395,'121668198229','6001495062508','1.00','2800','retail','0','2022-11-11 23:42:57','','','','2011','Cash',0.00,'2800','','','12','','1','2022-11-11 17:43:01','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681992709638913',4396,'121668198229','90162602','1.00','230','retail','0','2022-11-11 23:42:57','','','','147','Cash',0.00,'230','','','12','','1','2022-11-11 17:43:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216681993769638913',4397,'121668198229','5010677038874','1.00','2300','retail','0','2022-11-11 23:42:57','','','','1570','Cash',0.00,'2300','','','12','','1','2022-11-11 17:43:01','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682008742033280',4398,'121668200859','8712000900045','5.00','1250','retail','0','2022-11-12 00:07:54','','','','182','Cash',0.00,'250','','','12','','1','2022-11-11 18:07:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','5.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682009606363603',4399,'121668200879','40822938','1.00','70','retail','0','2022-11-12 00:09:20','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-11 18:09:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682015800638013',4400,'121668200964','1000','1.00','270','retail','0','2022-11-12 00:19:40','','','','192','Cash',0.00,'270','','','12','','1','2022-11-11 18:19:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682026902033262',4401,'121668202676','8712000900663','4.00','1000','retail','0','2022-11-12 00:38:11','','','','174','Cash',0.00,'250','','','12','','1','2022-11-11 18:38:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682032676363603',4402,'121668203214','5000267014609','1.00','1400','retail','0','2022-11-12 00:48:32','','','','794','Cash',0.00,'1400','','','12','','1','2022-11-11 18:48:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682033123320320',4403,'121668203214','5449000028921','1.00','150','retail','0','2022-11-12 00:48:32','','','','103','Cash',0.00,'150','','','12','','1','2022-11-11 18:48:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682039160638013',4404,'121668203902','6161101606011','2.00','500','retail','0','2022-11-12 00:58:37','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-11 18:58:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','38.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682045133015263',4405,'121668203921','6008165007685','1.00','270','retail','0','2022-11-12 01:08:34','','','','251.5','Cash',0.00,'270','','','12','','1','2022-11-11 19:08:40','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682046077033726',4406,'121668204522','6161100420823','1.00','300','retail','0','2022-11-12 01:10:07','','','','198','Cash',0.00,'300','','','12','','1','2022-11-11 19:10:38','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682047583320320',4407,'121668204641','6161101604550','1.00','400','retail','0','2022-11-12 01:13:06','','','','284','Cash',0.00,'400','','','12','','1','2022-11-11 19:13:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682047862033274',4408,'121668204641','6164001199331','1.00','70','retail','0','2022-11-12 01:13:06','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-11 19:13:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682053306333603',4409,'121668205319','6161101605199','1.00','250','retail','0','2022-11-12 01:22:10','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-11 19:22:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682055983015263',4410,'121668205564','1000','1.00','270','retail','0','2022-11-12 01:26:39','','','','192','Cash',0.00,'270','','','12','','1','2022-11-11 19:26:45','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682089452033298',4411,'121668205606','6161100420823','1.00','300','retail','0','2022-11-12 02:22:26','','','','198','Cash',0.00,'300','','','12','','1','2022-11-11 20:22:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682124822033226',4412,'121668208953','1000','1.00','270','retail','0','2022-11-12 03:21:23','','','','192','Cash',0.00,'270','','','12','','1','2022-11-11 21:21:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682604376333603',4413,'121668260387','50196166','1.00','750','retail','0','2022-11-12 16:41:01','','','','443','Cash',0.00,'750','','','12','','1','2022-11-12 10:41:07','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682604603320320',4414,'121668260387','5060608740253','1.00','80','retail','0','2022-11-12 16:41:01','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-12 10:41:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682604926393603',4415,'121668260470','6161101606011','1.00','250','retail','0','2022-11-12 16:41:49','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-12 10:41:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682605080303223',4416,'121668260470','90162602','1.00','230','retail','0','2022-11-12 16:41:49','','','','147','Cash',0.00,'230','','','12','','1','2022-11-12 10:41:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682683983613263',4417,'121668266922','50112753','1.00','80','retail','0','2022-11-12 18:53:18','','','','56','Cash',0.00,'80','','','12','','1','2022-11-12 12:53:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682708356333603',4418,'121668268403','8712000900663','1.00','250','retail','0','2022-11-12 19:33:55','','','','174','Cash',0.00,'250','','','12','','1','2022-11-12 13:34:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682743600332020',4419,'121668270843','6161101604703','6.00','1500','retail','0','2022-11-12 20:32:41','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 14:33:42','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','35.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682750066303603',4420,'121668274938','6161100421493','1.00','450','retail','0','2022-11-12 20:43:40','','','','301','Cash',0.00,'450','','','12','','1','2022-11-12 14:43:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682750200303223',4421,'121668274938','54491069','1.00','80','retail','0','2022-11-12 20:43:40','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-12 14:43:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682764463222232',4422,'121668275671','6001496011772','1.00','800','retail','0','2022-11-12 21:07:36','','','','544','Cash',0.00,'800','','','12','','1','2022-11-12 15:08:39','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682764565030523',4423,'121668275671','54491069','1.00','80','retail','0','2022-11-12 21:07:36','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-12 15:08:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682795306333603',4424,'121668276521','6161100421493','1.00','450','retail','0','2022-11-12 21:59:02','','','','301','Cash',0.00,'450','','','12','','1','2022-11-12 15:59:06','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682795416343603',4425,'121668276521','54491069','1.00','80','retail','0','2022-11-12 21:59:02','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-12 15:59:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682813033320320',4426,'121668281287','6161101605199','2.00','500','retail','0','2022-11-12 22:28:24','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-12 16:28:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682815182211333',4427,'121668281500','6161101600941','1.00','750','retail','0','2022-11-12 22:31:59','','','','544','Cash',0.00,'750','','','12','','1','2022-11-12 16:32:08','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682838055033526',4428,'121668283789','6161101606011','2.00','500','retail','0','2022-11-12 23:10:05','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-12 17:10:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','35.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682854922033226',4429,'121668283810','6161101601979','1.00','250','retail','0','2022-11-12 23:38:13','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-12 17:38:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682855183815263',4430,'121668285500','5060608740253','1.00','80','retail','0','2022-11-12 23:38:39','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-12 17:38:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682857310332020',4431,'121668285522','6161101602921','2.00','500','retail','0','2022-11-12 23:42:27','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-12 17:42:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','39.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682857476343603',4432,'121668285522','5018907194802','1.00','150','retail','0','2022-11-12 23:42:27','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 17:42:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682868663320320',4433,'121668285752','5010103930628','1.00','1750','retail','0','2022-11-13 00:01:22','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-12 18:01:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682868818638813',4434,'121668285752','5449000028976','1.00','150','retail','0','2022-11-13 00:01:22','','','','103','Cash',0.00,'150','','','12','','1','2022-11-12 18:01:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682877198638813',4435,'121668286887','6161101604406','1.00','250','retail','0','2022-11-13 00:15:20','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-12 18:15:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682877520303223',4436,'121668287724','1000','1.00','270','retail','0','2022-11-13 00:16:06','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 18:16:12','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682877663320320',4437,'121668287724','6164001199331','1.00','70','retail','0','2022-11-13 00:16:06','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-12 18:16:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682889522033226',4438,'121668287773','6161101602372','2.00','500','retail','0','2022-11-13 00:35:53','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-12 18:35:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682897188638813',4439,'121668288957','6161101601979','6.00','1500','retail','0','2022-11-13 00:49:33','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-12 18:49:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682897313320320',4440,'121668288957','6161101603324','2.00','500','retail','0','2022-11-13 00:49:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 18:49:36','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682897722033279',4441,'121668288957','5010103930628','1.00','1750','retail','0','2022-11-13 00:49:33','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-12 18:49:36','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682904086303603',4442,'121668290399','6161101601979','6.00','1500','retail','0','2022-11-13 01:00:09','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-12 19:00:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682904782033240',4443,'121668290468','6161101601979','6.00','1500','retail','0','2022-11-13 01:01:18','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-12 19:01:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682905780332020',4444,'121668290482','50196166','1.00','750','retail','0','2022-11-13 01:03:36','','','','443','Cash',0.00,'750','','','12','','1','2022-11-12 19:03:43','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682905980303223',4445,'121668290482','5060608740253','1.00','80','retail','0','2022-11-13 01:03:36','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-12 19:03:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682906153320320',4446,'121668290482','1000','1.00','270','retail','0','2022-11-13 01:03:36','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 19:03:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682907503917263',4447,'121668290739','6161100421561','1.00','1300','retail','0','2022-11-13 01:05:51','','','','645','Cash',0.00,'1300','','','12','','1','2022-11-12 19:05:54','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682908322033280',4448,'121668290756','6161101602372','4.00','1000','retail','0','2022-11-13 01:07:36','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-12 19:07:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','25.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682908443320320',4449,'121668290756','6161101603324','1.00','250','retail','0','2022-11-13 01:07:36','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 19:07:38','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682908556353603',4450,'121668290756','6164001199034','1.00','50','retail','0','2022-11-13 01:07:36','','','','19','Cash',0.00,'50','','','12','','1','2022-11-12 19:07:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682911750303223',4451,'121668290860','6161101601979','2.00','500','retail','0','2022-11-13 01:13:09','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-12 19:13:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682911888033826',4452,'121668290860','6161101602921','2.00','500','retail','0','2022-11-13 01:13:09','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-12 19:13:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','37.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682920416343603',4453,'121668291866','5000281032733','3.00','16200','retail','0','2022-11-13 01:30:14','','','','3996','Cash',0.00,'5400','','','12','','1','2022-11-12 19:30:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682920633033326',4454,'121668291866','5018907194802','3.00','450','retail','0','2022-11-13 01:30:14','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 19:30:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682920832033202',4455,'121668291866','6161101603324','3.00','750','retail','0','2022-11-13 01:30:14','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 19:30:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682921059638913',4456,'121668291866','6001108028044','4.00','1000','retail','0','2022-11-13 01:30:14','','','','201','Cash',0.00,'250','','','12','','1','2022-11-12 19:30:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682921353911263',4457,'121668291866','6161101602433','2.00','400','retail','0','2022-11-13 01:30:14','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-12 19:30:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682922133912263',4458,'121668291866','8712000900045','2.00','500','retail','0','2022-11-13 01:30:14','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 19:30:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682925330303223',4459,'121668292224','90162602','1.00','230','retail','0','2022-11-13 01:39:52','','','','147','Cash',0.00,'230','','','12','','1','2022-11-12 19:39:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682925510303223',4460,'121668292224','5018907197803','1.00','100','retail','0','2022-11-13 01:39:52','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-12 19:39:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682927470007214',4461,'121668292224','6001108028044','2.00','500','retail','0','2022-11-13 01:39:52','','','','201','Cash',0.00,'250','','','12','','1','2022-11-12 19:39:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682927929638913',4462,'121668292224','6161101603324','2.00','500','retail','0','2022-11-13 01:39:52','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 19:39:56','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682928660332020',4463,'121668292797','6001496011796','1.00','1700','retail','0','2022-11-13 01:41:15','','','','1072','Cash',0.00,'1700','','','12','','1','2022-11-12 19:41:17','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682928743918263',4464,'121668292797','5018907194802','1.00','150','retail','0','2022-11-13 01:41:15','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 19:41:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682932813912263',4465,'121668292879','5018907194802','2.00','300','retail','0','2022-11-13 01:48:02','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 19:48:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682936586353603',4466,'121668293288','8712000900045','2.00','500','retail','0','2022-11-13 01:54:41','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 19:54:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682936809638913',4467,'121668293288','6001108028044','2.00','500','retail','0','2022-11-13 01:54:41','','','','201','Cash',0.00,'250','','','12','','1','2022-11-12 19:54:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682942840303223',4468,'121668294269','8712000900663','2.00','500','retail','0','2022-11-13 02:05:05','','','','174','Cash',0.00,'250','','','12','','1','2022-11-12 20:05:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682943043320320',4469,'121668294269','3155930006015','2.00','500','retail','0','2022-11-13 02:05:05','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 20:05:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682947102313212',4470,'121668294314','6001108028044','1.00','250','retail','0','2022-11-13 02:11:50','','','','201','Cash',0.00,'250','','','12','','1','2022-11-12 20:11:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682948670332020',4471,'121668294856','3155930006015','1.00','250','retail','0','2022-11-13 02:14:27','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 20:14:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682954703914263',4472,'121668295400','5060639129003','1.00','250','retail','0','2022-11-13 02:24:31','','','','153','Cash',0.00,'250','','','12','','1','2022-11-12 20:24:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682956539638913',4473,'121668295641','8712000900045','2.00','500','retail','0','2022-11-13 02:27:44','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 20:27:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682956633916263',4474,'121668295641','5018907197803','1.00','100','retail','0','2022-11-13 02:27:44','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-12 20:27:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682960693910263',4475,'121668296020','3155930006015','4.00','1000','retail','0','2022-11-13 02:34:38','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 20:34:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682960770332020',4476,'121668296020','8712000900045','1.00','250','retail','0','2022-11-13 02:34:38','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 20:34:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682963993913263',4477,'121668296082','6161101561280','1.00','270','retail','0','2022-11-13 02:40:00','','','','190','Cash',0.00,'270','','','12','','1','2022-11-12 20:40:02','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682968836383603',4478,'121668296870','6161101605465','1.00','800','retail','0','2022-11-13 02:48:37','','','','501','Cash',0.00,'800','','','12','','1','2022-11-12 20:48:40','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682969000332020',4479,'121668296870','6161101605465','1.00','800','retail','0','2022-11-13 02:48:37','','','','501','Cash',0.00,'800','','','12','','1','2022-11-12 20:48:40','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682969160332020',4480,'121668296870','50112265','1.00','80','retail','0','2022-11-13 02:48:37','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-12 20:48:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682978486343603',4481,'121668296922','6008165007685','1.00','270','retail','0','2022-11-13 03:04:09','','','','251.5','Cash',0.00,'270','','','12','','1','2022-11-12 21:04:16','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682985319638913',4482,'121668297857','5018907194802','1.00','150','retail','0','2022-11-13 03:15:31','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 21:15:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682993132033239',4483,'121668298537','5010103930628','1.00','1750','retail','0','2022-11-13 03:29:31','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-12 21:29:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682993230332020',4484,'121668298537','50112265','1.00','80','retail','0','2022-11-13 03:29:31','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-12 21:29:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682993703601021',4485,'121668298537','5018907194802','1.00','150','retail','0','2022-11-13 03:29:31','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 21:29:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682994453914263',4486,'121668299374','6001496011772','1.00','800','retail','0','2022-11-13 03:30:46','','','','544','Cash',0.00,'800','','','12','','1','2022-11-12 21:30:49','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216682995322033226',4487,'121668299450','1000','1.00','270','retail','0','2022-11-13 03:32:13','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 21:32:55','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683000606363603',4488,'121668299811','3155930006015','6.00','1500','retail','0','2022-11-13 03:41:57','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 21:42:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683000720303223',4489,'121668299811','8712000900045','2.00','500','retail','0','2022-11-13 03:41:57','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 21:42:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683001160332020',4490,'121668299811','6161101602525','1.00','120','retail','0','2022-11-13 03:41:57','','','','95.75','Cash',0.00,'120','','','12','','1','2022-11-12 21:42:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683004677033726',4491,'121668300124','5000281032733','1.00','5400','retail','0','2022-11-13 03:51:03','','','','3996','Cash',0.00,'5400','','','12','','1','2022-11-12 21:51:07','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683004923330320',4492,'121668300124','5018907194802','1.00','150','retail','0','2022-11-13 03:51:03','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 21:51:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683005990638013',4493,'121668300124','5018907194802','1.00','150','retail','0','2022-11-13 03:51:03','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 21:51:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683006272033260',4494,'121668300124','8712000900045','2.00','500','retail','0','2022-11-13 03:51:03','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 21:51:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683006423016263',4495,'121668300124','3155930006015','3.00','750','retail','0','2022-11-13 03:51:03','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 21:51:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683006623330320',4496,'121668300124','6161101602433','2.00','400','retail','0','2022-11-13 03:51:03','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-12 21:51:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683007463330320',4497,'121668300669','1000','1.00','270','retail','0','2022-11-13 03:52:27','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 21:52:29','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683008312033280',4498,'121668300751','87303322','1.00','60','retail','0','2022-11-13 03:55:03','','','','23','Cash',0.00,'60','','','12','','1','2022-11-12 21:55:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683008436343603',4499,'121668300751','1000','1.00','270','retail','0','2022-11-13 03:55:03','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 21:55:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683008540332020',4500,'121668300751','6164001199331','1.00','70','retail','0','2022-11-13 03:55:03','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-12 21:55:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683008870332020',4501,'121668300751','1000','1.00','270','retail','0','2022-11-13 03:55:03','','','','192','Cash',0.00,'270','','','12','','1','2022-11-12 21:55:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683009033019263',4502,'121668300751','6164001199331','2.00','140','retail','0','2022-11-13 03:55:03','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-12 21:55:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683011193330320',4503,'121668300912','6161101603324','2.00','500','retail','0','2022-11-13 03:58:40','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-12 21:58:45','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683017433017263',4504,'121668301126','6161101602372','2.00','500','retail','0','2022-11-13 04:09:04','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-12 22:09:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683024180638013',4505,'121668301750','6001496011772','1.00','800','retail','0','2022-11-13 04:20:19','','','','544','Cash',0.00,'800','','','12','','1','2022-11-12 22:20:21','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683060862033206',4506,'121668302423','6161101602372','6.00','1500','retail','0','2022-11-13 05:21:27','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-12 23:22:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683063012033236',4507,'121668306135','3155930006015','3.00','750','retail','0','2022-11-13 05:33:14','','','','188','Cash',0.00,'250','','','12','','1','2022-11-12 23:33:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683063266033626',4508,'121668306135','6161101602433','3.00','600','retail','0','2022-11-13 05:33:14','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-12 23:33:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683063466343603',4509,'121668306135','54491069','1.00','80','retail','0','2022-11-13 05:33:14','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-12 23:33:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683063912033236',4510,'121668306135','5000291020706','1.00','2800','retail','0','2022-11-13 05:33:14','','','','2070','Cash',0.00,'2800','','','12','','1','2022-11-12 23:33:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683064423330320',4511,'121668306135','6161101602600','2.00','440','retail','0','2022-11-13 05:33:14','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-12 23:33:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683065333015263',4512,'121668306135','8712000900045','6.00','1500','retail','0','2022-11-13 05:33:14','','','','182','Cash',0.00,'250','','','12','','1','2022-11-12 23:33:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683065591302130',4513,'121668306135','5060639129003','1.00','250','retail','0','2022-11-13 05:33:14','','','','153','Cash',0.00,'250','','','12','','1','2022-11-12 23:33:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683066340332020',4514,'121668306135','5018907194802','2.00','300','retail','0','2022-11-13 05:33:14','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-12 23:33:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683066592033266',4515,'121668306135','5018907197803','1.00','100','retail','0','2022-11-13 05:33:14','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-12 23:33:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683066936393603',4516,'121668306135','5010232953994','1.00','600','retail','0','2022-11-13 05:33:14','','','','263.157','Cash',0.00,'600','','','12','','1','2022-11-12 23:33:30','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683067946393603',4517,'121668306135','6973322690362','1.00','1750','retail','0','2022-11-13 05:33:14','','','','1000','Cash',0.00,'1750','','','12','','1','2022-11-12 23:33:30','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683400311033126',4518,'121668337300','6161101606820','2.00','500','retail','0','2022-11-13 14:47:12','','','','159','Cash',0.00,'250','','','12','','1','2022-11-13 08:47:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683499953419263',4519,'121668349983','5010103930628','1.00','1750','retail','0','2022-11-13 17:33:25','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-13 11:34:13','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683500044033426',4520,'121668349983','5449000028976','1.00','150','retail','0','2022-11-13 17:33:25','','','','103','Cash',0.00,'150','','','12','','1','2022-11-13 11:34:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683500825638513',4521,'121668350055','6161101561280','1.00','270','retail','0','2022-11-13 17:34:42','','','','190','Cash',0.00,'270','','','12','','1','2022-11-13 11:36:10','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683530482033203',4522,'121668352991','6161101604406','1.00','250','retail','0','2022-11-13 18:24:20','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-13 12:26:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683530600332020',4523,'121668352991','5449000014535','1.00','120','retail','0','2022-11-13 18:24:20','','','','64','Cash',0.00,'120','','','12','','1','2022-11-13 12:26:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683617916638613',4524,'121668353164','50196166','1.00','750','retail','0','2022-11-13 20:49:52','','','','443','Cash',0.00,'750','','','12','','1','2022-11-13 15:13:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683635100303223',4525,'121668363236','6161100421622','1.00','1500','retail','0','2022-11-13 21:19:26','','','','922','Cash',0.00,'1500','','','12','','1','2022-11-13 15:19:39','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683635666363603',4526,'121668363236','024000150152','1.00','250','retail','0','2022-11-13 21:19:26','','','','205','Cash',0.00,'250','','','12','','1','2022-11-13 15:19:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683670112033207',4527,'121668363581','3155930006015','2.00','500','retail','0','2022-11-13 22:16:51','','','','188','Cash',0.00,'250','','','12','','1','2022-11-13 16:17:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683674976393603',4528,'121668367024','6161101604406','6.00','1500','retail','0','2022-11-13 22:25:11','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-13 16:26:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','17.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683675110332020',4529,'121668367024','90162602','1.00','230','retail','0','2022-11-13 22:25:11','','','','147','Cash',0.00,'230','','','12','','1','2022-11-13 16:26:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683696632291333',4530,'121668367565','1000','1.00','270','retail','0','2022-11-13 23:01:04','','','','192','Cash',0.00,'270','','','12','','1','2022-11-13 17:01:07','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683706003716263',4531,'121668369909','6161101604406','1.00','250','retail','0','2022-11-13 23:17:02','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-13 17:17:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683706113716263',4532,'121668369909','8712000900045','1.00','250','retail','0','2022-11-13 23:17:02','','','','182','Cash',0.00,'250','','','12','','1','2022-11-13 17:17:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683706211033126',4533,'121668369909','6161101606011','1.00','250','retail','0','2022-11-13 23:17:02','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-13 17:17:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683759102202003',4534,'121668370632','5000196006652','1.00','500','retail','0','2022-11-14 00:45:11','','','','310','Cash',0.00,'500','','','12','','1','2022-11-13 18:45:14','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683792097638713',4535,'121668375916','6161101561021','1.00','1400','retail','0','2022-11-14 01:40:25','','','','836','Cash',0.00,'1400','','','12','','1','2022-11-13 19:41:36','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683792242033229',4536,'121668375916','082184090473','1.00','4000','retail','0','2022-11-14 01:40:25','','','','2600','Cash',0.00,'4000','','','12','','1','2022-11-13 19:41:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683803062033230',4537,'121668379389','50196166','1.00','750','retail','0','2022-11-14 01:58:36','','','','443','Cash',0.00,'750','','','12','','1','2022-11-13 19:58:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683803153330320',4538,'121668379389','5449000028921','1.00','150','retail','0','2022-11-14 01:58:36','','','','103','Cash',0.00,'150','','','12','','1','2022-11-13 19:58:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683816903816263',4539,'121668380331','6161100420786','1.00','400','retail','0','2022-11-14 02:21:32','','','','290','Cash',0.00,'400','','','12','','1','2022-11-13 20:21:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683887410303223',4540,'121668381699','5010103930628','1.00','1750','retail','0','2022-11-14 04:20:50','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-13 22:20:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683887550303223',4541,'121668381699','5449000028976','1.00','150','retail','0','2022-11-14 04:20:50','','','','103','Cash',0.00,'150','','','12','','1','2022-11-13 22:20:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683888352033288',4542,'121668381699','8712000900045','3.00','750','retail','0','2022-11-14 04:20:50','','','','182','Cash',0.00,'250','','','12','','1','2022-11-13 22:20:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216683888496343603',4543,'121668381699','6161101603379','1.00','250','retail','0','2022-11-14 04:20:50','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-13 22:20:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684172477033726',4544,'121668417202','6161101603324','2.00','500','retail','0','2022-11-14 12:14:08','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-14 06:14:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684267355033526',4545,'121668426716','6161101604703','1.00','250','retail','0','2022-11-14 14:52:16','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-14 08:52:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684319602202003',4546,'121668426747','6161100421387','1.00','450','retail','0','2022-11-14 16:19:21','','','','318','Cash',0.00,'450','','','12','','1','2022-11-14 10:20:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684391236323603',4547,'121668432033','6161101604703','1.00','250','retail','0','2022-11-14 18:18:44','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-14 12:19:08','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684397542033279',4548,'121668439151','5000289020800','1.00','2500','retail','0','2022-11-14 18:29:15','','','','1840','Cash',0.00,'2500','','','12','','1','2022-11-14 12:29:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684399163340320',4549,'121668439759','54491069','1.00','80','retail','0','2022-11-14 18:31:57','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-14 12:32:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684406564638413',4550,'121668440639','8712000900045','6.00','1500','retail','0','2022-11-14 18:44:16','','','','182','Cash',0.00,'250','','','12','','1','2022-11-14 12:44:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684426720332020',4551,'121668441598','5010752000321','1.00','1800','retail','0','2022-11-14 19:17:53','','','','1037','Cash',0.00,'1800','','','12','','1','2022-11-14 13:18:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684437480303223',4552,'121668442728','4820000946902','1.00','1700','retail','0','2022-11-14 19:35:49','','','','931','Cash',0.00,'1700','','','12','','1','2022-11-14 13:36:27','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684489223340320',4553,'121668448908','6001496011796','1.00','1700','retail','0','2022-11-14 21:02:03','','','','1072','Cash',0.00,'1700','','','12','','1','2022-11-14 15:02:05','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684490744033426',4554,'121668448928','50196166','2.00','1500','retail','0','2022-11-14 21:04:35','','','','443','Cash',0.00,'750','','','12','','1','2022-11-14 15:04:38','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684491290303223',4555,'121668449118','50196081','1.00','1800','retail','0','2022-11-14 21:05:30','','','','1130','Cash',0.00,'1800','','','12','','1','2022-11-14 15:05:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684498423340320',4556,'121668449133','6161101561303','1.00','900','retail','0','2022-11-14 21:17:22','','','','555','Cash',0.00,'900','','','12','','1','2022-11-14 15:18:17','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684508363518263',4557,'121668449898','1000','1.00','270','retail','0','2022-11-14 21:33:58','','','','192','Cash',0.00,'270','','','12','','1','2022-11-14 15:34:14','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684514386333603',4558,'121668451426','8712000900045','4.00','1000','retail','0','2022-11-14 21:44:08','','','','182','Cash',0.00,'250','','','12','','1','2022-11-14 15:44:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684514473340320',4559,'121668451426','8712000900663','2.00','500','retail','0','2022-11-14 21:44:08','','','','174','Cash',0.00,'250','','','12','','1','2022-11-14 15:44:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684527180332020',4560,'121668451452','7640175740047','1.00','2700','retail','0','2022-11-14 22:05:23','','','','1820','Cash',0.00,'2700','','','12','','1','2022-11-14 16:05:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684545580332020',4561,'121668452855','6001496011772','1.00','800','retail','0','2022-11-14 22:36:26','','','','544','Cash',0.00,'800','','','12','','1','2022-11-14 16:36:32','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684545660303223',4562,'121668452855','54491069','1.00','80','retail','0','2022-11-14 22:36:26','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-14 16:36:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684545858428635',4563,'121668452855','5449000028921','1.00','150','retail','0','2022-11-14 22:36:26','','','','103','Cash',0.00,'150','','','12','','1','2022-11-14 16:36:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684547073517263',4564,'121668454594','50112265','1.00','80','retail','0','2022-11-14 22:38:28','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-14 16:38:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684563752033236',4565,'121668456371','6161101604406','6.00','1500','retail','0','2022-11-14 23:06:49','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-14 17:07:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684565590332020',4566,'121668456478','90162602','1.00','230','retail','0','2022-11-14 23:10:12','','','','147','Cash',0.00,'230','','','12','','1','2022-11-14 17:10:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684565830303223',4567,'121668456478','5060639129003','1.00','250','retail','0','2022-11-14 23:10:12','','','','153','Cash',0.00,'250','','','12','','1','2022-11-14 17:10:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684566113516263',4568,'121668456478','6161101602921','6.00','1500','retail','0','2022-11-14 23:10:12','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-14 17:10:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','35.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684634730303223',4569,'121668456645','6161101602921','1.00','250','retail','0','2022-11-15 01:04:34','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-14 19:04:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684652443340320',4570,'121668463480','6161101602372','12.00','3000','retail','0','2022-11-15 01:34:53','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-14 19:34:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'12','13.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684652520332020',4571,'121668463480','54491069','1.00','80','retail','0','2022-11-15 01:34:53','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-14 19:34:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684652922033225',4572,'121668463480','5018907194802','2.00','300','retail','0','2022-11-15 01:34:53','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-14 19:34:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216684853423322532',4573,'121668482916','6161101606547','1.00','550','retail','0','2022-11-15 07:09:03','','','','388','Cash',0.00,'550','','','12','','1','2022-11-15 01:09:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685138572033283',4574,'121668513732','5010106111451','1.00','2200','retail','0','2022-11-15 15:04:18','','','','1600','Cash',0.00,'2200','','','12','','1','2022-11-15 09:04:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685139788033826',4575,'121668513966','5018907194802','1.00','150','retail','0','2022-11-15 15:06:19','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-15 09:06:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685212273212263',4576,'121668520807','6161101605465','1.00','800','retail','0','2022-11-15 17:07:20','','','','501','Cash',0.00,'800','','','12','','1','2022-11-15 11:09:42','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685212393350320',4577,'121668520807','6164001199331','1.00','70','retail','0','2022-11-15 17:07:20','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-15 11:09:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685257582033275',4578,'121668524486','6161101602921','1.00','250','retail','0','2022-11-15 18:22:38','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-15 12:22:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685289342638213',4579,'121668525764','8712000900663','1.00','250','retail','0','2022-11-15 19:15:35','','','','174','Cash',0.00,'250','','','12','','1','2022-11-15 13:15:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685290700332020',4580,'121668528940','8712000900663','1.00','250','retail','0','2022-11-15 19:17:51','','','','174','Cash',0.00,'250','','','12','','1','2022-11-15 13:17:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685355103315263',4581,'121668535486','5060639129003','1.00','250','retail','0','2022-11-15 21:05:11','','','','153','Cash',0.00,'250','','','12','','1','2022-11-15 15:05:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685372650332020',4582,'121668535516','100','2.00','500','retail','0','2022-11-15 21:34:25','','','','177','Cash',0.00,'250','','','12','','1','2022-11-15 15:34:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685375206323603',4583,'121668537270','8719327068540','1.00','300','retail','0','2022-11-15 21:38:53','','','','225','Cash',0.00,'300','','','12','','1','2022-11-15 15:38:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685375322033226',4584,'121668537270','6161101605199','1.00','250','retail','0','2022-11-15 21:38:53','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-15 15:38:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685391570303223',4585,'121668537539','6161101604406','1.00','250','retail','0','2022-11-15 22:05:57','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-15 16:06:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685408903350320',4586,'121668539162','1000','1.00','270','retail','0','2022-11-15 22:34:50','','','','192','Cash',0.00,'270','','','12','','1','2022-11-15 16:34:53','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685435384638413',4587,'121668543524','6161101606820','1.00','250','retail','0','2022-11-15 23:19:45','','','','159','Cash',0.00,'250','','','12','','1','2022-11-15 17:19:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685435600033026',4588,'121668543524','6161101606011','2.00','500','retail','0','2022-11-15 23:19:45','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-15 17:19:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685435730332020',4589,'121668543524','8719327068540','1.00','300','retail','0','2022-11-15 23:19:45','','','','225','Cash',0.00,'300','','','12','','1','2022-11-15 17:19:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685435844638413',4590,'121668543524','6161101604406','1.00','250','retail','0','2022-11-15 23:19:45','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-15 17:19:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685437256323603',4591,'121668543591','6001496011772','1.00','800','retail','0','2022-11-15 23:22:18','','','','544','Cash',0.00,'800','','','12','','1','2022-11-15 17:22:28','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685437376333603',4592,'121668543591','54493360','1.00','80','retail','0','2022-11-15 23:22:18','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-15 17:22:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685443823350320',4593,'121668543750','024000150138','1.00','250','retail','0','2022-11-15 23:33:14','','','','205','Cash',0.00,'250','','','12','','1','2022-11-15 17:33:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685443943413263',4594,'121668543750','6161101606820','1.00','250','retail','0','2022-11-15 23:33:14','','','','159','Cash',0.00,'250','','','12','','1','2022-11-15 17:33:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685445303350320',4595,'121668544400','6161101602921','2.00','500','retail','0','2022-11-15 23:35:41','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-15 17:35:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685445403415263',4596,'121668544400','6161101606820','1.00','250','retail','0','2022-11-15 23:35:41','','','','159','Cash',0.00,'250','','','12','','1','2022-11-15 17:35:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685445733415263',4597,'121668544544','6161101603324','1.00','250','retail','0','2022-11-15 23:36:24','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-15 17:36:26','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685445843415263',4598,'121668544544','6161101602600','1.00','220','retail','0','2022-11-15 23:36:24','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-15 17:36:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685446476343603',4599,'121668544588','6161101604406','2.00','500','retail','0','2022-11-15 23:37:45','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-15 17:37:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685446554638413',4600,'121668544588','8719327068540','1.00','300','retail','0','2022-11-15 23:37:45','','','','225','Cash',0.00,'300','','','12','','1','2022-11-15 17:37:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685446640303223',4601,'121668544588','6161101604703','1.00','250','retail','0','2022-11-15 23:37:45','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-15 17:37:53','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685464643350320',4602,'121668546449','6161101602372','2.00','500','retail','0','2022-11-16 00:07:44','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-15 18:07:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685504016303603',4603,'121668550389','082184090473','1.00','4000','retail','0','2022-11-16 01:17:39','','','','2600','Cash',0.00,'4000','','','12','','1','2022-11-15 19:21:53','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685504312021301',4604,'121668550389','5449000028921','1.00','150','retail','0','2022-11-16 01:17:39','','','','103','Cash',0.00,'150','','','12','','1','2022-11-15 19:21:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685505493515263',4605,'121668550389','5010752000420','1.00','950','retail','0','2022-11-16 01:17:39','','','','543','Cash',0.00,'950','','','12','','1','2022-11-15 19:21:53','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685506583350320',4606,'121668550389','6008165007685','1.00','270','retail','0','2022-11-16 01:17:39','','','','251.5','Cash',0.00,'270','','','12','','1','2022-11-15 19:21:53','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685512435638513',4607,'121668550918','6161101606011','1.00','250','retail','0','2022-11-16 01:27:23','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-15 19:27:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685547462033274',4608,'121668551248','1000','1.00','270','retail','0','2022-11-16 02:25:47','','','','192','Cash',0.00,'270','','','12','','1','2022-11-15 20:25:51','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685584410332020',4609,'121668554752','6161101606011','1.00','250','retail','0','2022-11-16 03:27:22','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-15 21:27:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685775240332020',4610,'121668575069','1000','1.00','270','retail','0','2022-11-16 08:45:25','','','','192','Cash',0.00,'270','','','12','','1','2022-11-16 02:45:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685924793914263',4611,'121668592434','5099873011737','1.00','4500','retail','0','2022-11-16 12:54:40','','','','3300','Cash',0.00,'4500','','','12','','1','2022-11-16 06:54:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685952113350320',4612,'121668595200','5010103930666','1.00','750','retail','0','2022-11-16 13:40:12','','','','542','Cash',0.00,'750','','','12','','1','2022-11-16 07:40:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685954332033245',4613,'121668595260','54493360','1.00','80','retail','0','2022-11-16 13:43:54','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-16 07:43:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685955819638913',4614,'121668595440','54491069','1.00','80','retail','0','2022-11-16 13:46:21','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-16 07:46:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216685967862033276',4615,'121668595588','40822938','1.00','70','retail','0','2022-11-16 14:06:27','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-16 08:06:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686003540638013',4616,'121668596794','40822938','1.00','70','retail','0','2022-11-16 15:05:56','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-16 09:06:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686119443119263',4617,'121668611917','1000','1.00','270','retail','0','2022-11-16 18:19:05','','','','192','Cash',0.00,'270','','','12','','1','2022-11-16 12:19:09','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686120600332020',4618,'121668611951','6164001199331','1.00','70','retail','0','2022-11-16 18:21:01','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-16 12:21:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686135577033726',4619,'121668612067','1000','1.00','270','retail','0','2022-11-16 18:45:57','','','','192','Cash',0.00,'270','','','12','','1','2022-11-16 12:46:00','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686136740303223',4620,'121668613562','8000530010304','1.00','1600','retail','0','2022-11-16 18:47:55','','','','1O2O','Cash',0.00,'1600','','','12','','1','2022-11-16 12:47:58','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686143577033726',4621,'121668614342','6161100421363','1.00','650','retail','0','2022-11-16 18:59:17','','','','251','Cash',0.00,'650','','','12','','1','2022-11-16 12:59:20','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686179930303223',4622,'121668614362','6161101604703','1.00','250','retail','0','2022-11-16 20:00:32','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-16 14:03:04','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686180213110263',4623,'121668614362','6161101606547','1.00','550','retail','0','2022-11-16 20:00:32','','','','388','Cash',0.00,'550','','','12','','1','2022-11-16 14:03:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686180310303223',4624,'121668614362','6164001199331','1.00','70','retail','0','2022-11-16 20:00:32','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-16 14:03:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686188352033288',4625,'121668618187','6161101605465','1.00','800','retail','0','2022-11-16 20:13:56','','','','501','Cash',0.00,'800','','','12','','1','2022-11-16 14:14:44','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686189870332020',4626,'121668618886','1000','1.00','270','retail','0','2022-11-16 20:16:28','','','','192','Cash',0.00,'270','','','12','','1','2022-11-16 14:16:36','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686248683218263',4627,'121668618998','50196111','1.00','1500','retail','0','2022-11-16 21:54:50','','','','855','Cash',0.00,'1500','','','12','','1','2022-11-16 15:55:08','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686248883218263',4628,'121668618998','6164001199010','1.00','100','retail','0','2022-11-16 21:54:50','','','','38','Cash',0.00,'100','','','12','','1','2022-11-16 15:55:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686295143360320',4629,'121668624913','5010752000420','1.00','950','retail','0','2022-11-16 23:11:55','','','','543','Cash',0.00,'950','','','12','','1','2022-11-16 17:12:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686297762033279',4630,'121668629767','8000530010304','1.00','1600','retail','0','2022-11-16 23:16:17','','','','1O2O','Cash',0.00,'1600','','','12','','1','2022-11-16 17:16:22','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686313593313263',4631,'121668631351','5010103930628','1.00','1750','retail','0','2022-11-16 23:43:21','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-16 17:43:51','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686313750333332',4632,'121668631351','5449000004864','1.00','250','retail','0','2022-11-16 23:43:21','','','','158','Cash',0.00,'250','','','12','','1','2022-11-16 17:43:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686313893360320',4633,'121668631351','6164001199010','2.00','200','retail','0','2022-11-16 23:43:21','','','','38','Cash',0.00,'100','','','12','','1','2022-11-16 17:43:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686314013360320',4634,'121668631351','6161101606011','1.00','250','retail','0','2022-11-16 23:43:21','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-16 17:43:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686317743317263',4635,'121668631545','8719327068540','2.00','600','retail','0','2022-11-16 23:49:35','','','','225','Cash',0.00,'300','','','12','','1','2022-11-16 17:49:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686326993316263',4636,'121668631785','6161101560108','1.00','1100','retail','0','2022-11-17 00:05:09','','','','690','Cash',0.00,'1100','','','12','','1','2022-11-16 18:06:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686327092033272',4637,'121668631785','5449000028921','1.00','150','retail','0','2022-11-17 00:05:09','','','','103','Cash',0.00,'150','','','12','','1','2022-11-16 18:06:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686330056303603',4638,'121668632995','5000289932479','1.00','2000','retail','0','2022-11-17 00:11:06','','','','1540','Cash',0.00,'2000','','','12','','1','2022-11-16 18:11:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686330653638313',4639,'121668632995','6001108049599','1.00','1300','retail','0','2022-11-17 00:11:06','','','','641','Cash',0.00,'1300','','','12','','1','2022-11-16 18:11:43','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686347120303223',4640,'121668633364','6161101602600','1.00','220','retail','0','2022-11-17 00:38:33','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-16 18:38:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686348443318263',4641,'121668634725','6161101606820','2.00','500','retail','0','2022-11-17 00:40:45','','','','159','Cash',0.00,'250','','','12','','1','2022-11-16 18:40:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686406080303223',4642,'121668634849','5010314101015','1.00','2600','retail','0','2022-11-17 02:18:02','','','','1854','Cash',0.00,'2600','','','12','','1','2022-11-16 20:18:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686407922033270',4643,'121668640694','5449000000286','1.00','250','retail','0','2022-11-17 02:20:12','','','','158','Cash',0.00,'250','','','12','','1','2022-11-16 20:20:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686408120303223',4644,'121668640694','6161100421509','1.00','1350','retail','0','2022-11-17 02:20:12','','','','787','Cash',0.00,'1350','','','12','','1','2022-11-16 20:20:15','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686417880332020',4645,'121668640939','1000','1.00','270','retail','0','2022-11-17 02:36:29','','','','192','Cash',0.00,'270','','','12','','1','2022-11-16 20:36:33','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686419263360320',4646,'121668641794','082184090473','1.00','4000','retail','0','2022-11-17 02:38:47','','','','2600','Cash',0.00,'4000','','','12','','1','2022-11-16 20:38:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686645050303223',4647,'121668664493','5010103930628','1.00','1750','retail','0','2022-11-17 08:55:06','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-17 02:55:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686788583012223',4648,'121668678844','6161101606011','1.00','250','retail','0','2022-11-17 12:54:19','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-17 06:54:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686798403718263',4649,'121668678865','716165173670','2.00','300','retail','0','2022-11-17 13:10:41','','','','46','Cash',0.00,'150','','','12','','1','2022-11-17 07:11:33','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686930163360320',4650,'121668692620','40822938','1.00','70','retail','0','2022-11-17 16:50:17','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-17 10:50:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686945260332020',4651,'121668693023','6161101561280','1.00','270','retail','0','2022-11-17 17:15:27','','','','190','Cash',0.00,'270','','','12','','1','2022-11-17 11:15:40','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686946062830266',4652,'121668694543','6164001199010','1.00','100','retail','0','2022-11-17 17:16:47','','','','38','Cash',0.00,'100','','','12','','1','2022-11-17 11:16:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686947153917263',4653,'121668694611','5010752000321','1.00','1800','retail','0','2022-11-17 17:18:35','','','','1037','Cash',0.00,'1800','','','12','','1','2022-11-17 11:18:38','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216686969433033326',4654,'121668694719','6161101561280','1.00','270','retail','0','2022-11-17 17:55:44','','','','190','Cash',0.00,'270','','','12','','1','2022-11-17 11:56:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687067344033426',4655,'121668706209','6161101560108','1.00','1100','retail','0','2022-11-17 20:39:04','','','','690','Cash',0.00,'1100','','','12','','1','2022-11-17 14:39:16','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687067433033326',4656,'121668706209','5449000000286','1.00','250','retail','0','2022-11-17 20:39:04','','','','158','Cash',0.00,'250','','','12','','1','2022-11-17 14:39:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687125599033926',4657,'121668712545','6161101604703','6.00','1500','retail','0','2022-11-17 22:15:59','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-17 16:16:02','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','31.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687127301638113',4658,'121668712723','8712000900045','1.00','250','retail','0','2022-11-17 22:18:51','','','','182','Cash',0.00,'250','','','12','','1','2022-11-17 16:18:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687137793117263',4659,'121668713767','100','1.00','250','retail','0','2022-11-17 22:36:19','','','','177','Cash',0.00,'250','','','12','','1','2022-11-17 16:36:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687138344033426',4660,'121668713784','6161101605458','1.00','270','retail','0','2022-11-17 22:37:31','','','','182','Cash',0.00,'270','','','12','','1','2022-11-17 16:38:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687138502033283',4661,'121668713784','54491069','2.00','160','retail','0','2022-11-17 22:37:31','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-17 16:38:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687149273370320',4662,'121668714511','6161101602372','1.00','250','retail','0','2022-11-17 22:55:28','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-17 16:57:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687150832033205',4663,'121668715067','6161101602938','2.00','500','retail','0','2022-11-17 22:58:03','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-17 16:58:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687173731638113',4664,'121668717361','6161100421615','1.00','500','retail','0','2022-11-17 23:36:14','','','','310','Cash',0.00,'500','','','12','','1','2022-11-17 17:36:16','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687178193370320',4665,'121668717378','6161101602600','1.00','220','retail','0','2022-11-17 23:43:40','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-17 17:43:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687189282033298',4666,'121668717824','6161101603324','2.00','500','retail','0','2022-11-18 00:02:09','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-17 18:02:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687219490303223',4667,'121668718933','5000289933292','1.00','950','retail','0','2022-11-18 00:52:39','','','','710','Cash',0.00,'950','','','12','','1','2022-11-17 18:54:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687219580303223',4668,'121668718933','50112265','1.00','80','retail','0','2022-11-18 00:52:39','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-17 18:54:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687237026303603',4669,'121668723680','6161101602938','3.00','750','retail','0','2022-11-18 01:21:43','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-17 19:22:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','22.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687339333370320',4670,'121668723748','87303322','1.00','60','retail','0','2022-11-18 04:12:29','','','','23','Cash',0.00,'60','','','12','','1','2022-11-17 22:12:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687339473638313',4671,'121668723748','6161101602938','3.00','750','retail','0','2022-11-18 04:12:29','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-17 22:12:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687351083311263',4672,'121668735100','5010232953994','1.00','600','retail','0','2022-11-18 04:31:49','','','','263.157','Cash',0.00,'600','','','12','','1','2022-11-17 22:31:53','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687381003370320',4673,'121668735114','6161101602938','3.00','750','retail','0','2022-11-18 05:22:02','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-17 23:22:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','16.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687381206323603',4674,'121668735114','87303322','1.00','60','retail','0','2022-11-18 05:22:02','','','','23','Cash',0.00,'60','','','12','','1','2022-11-17 23:22:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687381690303223',4675,'121668738129','5010232965096','1.00','600','retail','0','2022-11-18 05:22:50','','','','263.157','Cash',0.00,'600','','','12','','1','2022-11-17 23:22:53','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687381963311263',4676,'121668738174','1000','1.00','270','retail','0','2022-11-18 05:23:27','','','','192','Cash',0.00,'270','','','12','','1','2022-11-17 23:23:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687382066033626',4677,'121668738174','6008165007685','1.00','270','retail','0','2022-11-18 05:23:27','','','','251.5','Cash',0.00,'270','','','12','','1','2022-11-17 23:23:30','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687534501230143',4678,'121668753439','5449000131836','1.00','80','retail','0','2022-11-18 09:38:42','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-18 03:38:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687535213370320',4679,'121668753439','6001496011772','1.00','800','retail','0','2022-11-18 09:38:42','','','','544','Cash',0.00,'800','','','12','','1','2022-11-18 03:38:45','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687544066033626',4680,'121668754389','6001108016034','2.00','1000','retail','0','2022-11-18 09:53:27','','','','352','Cash',0.00,'500','','','12','','1','2022-11-18 03:53:32','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687590385638513',4681,'121668754413','40822938','1.00','70','retail','0','2022-11-18 11:10:38','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-18 05:10:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687615910332020',4682,'121668759044','5018907197803','5.00','500','retail','0','2022-11-18 11:53:12','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-18 05:54:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5.00','24.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687713836383603',4683,'121668771359','6161101561280','1.00','270','retail','0','2022-11-18 14:36:23','','','','190','Cash',0.00,'270','','','12','','1','2022-11-18 08:36:27','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687733792033233',4684,'121668771388','8712000900045','3.00','750','retail','0','2022-11-18 15:09:40','','','','182','Cash',0.00,'250','','','12','','1','2022-11-18 09:09:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687736637638713',4685,'121668773388','90490224','1.00','100','retail','0','2022-11-18 15:14:23','','','','59.666','Cash',0.00,'100','','','12','','1','2022-11-18 09:14:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687737176313603',4686,'121668773668','6161101602051','1.00','550','retail','0','2022-11-18 15:15:43','','','','392','Cash',0.00,'550','','','12','','1','2022-11-18 09:16:15','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687737420332020',4687,'121668773668','5449000000286','1.00','250','retail','0','2022-11-18 15:15:43','','','','158','Cash',0.00,'250','','','12','','1','2022-11-18 09:16:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687831255033526',4688,'121668783071','5060639129003','1.00','250','retail','0','2022-11-18 17:52:06','','','','153','Cash',0.00,'250','','','12','','1','2022-11-18 11:52:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687865948638813',4689,'121668783130','54491069','1.00','80','retail','0','2022-11-18 18:49:54','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-18 12:51:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687901706373603',4690,'121668786667','6161101602372','2.00','500','retail','0','2022-11-18 19:49:31','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-18 14:06:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687958782033285',4691,'121668791208','6161101602433','4.00','800','retail','0','2022-11-18 21:25:04','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-18 15:26:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687958880303223',4692,'121668791208','5010103930666','1.00','750','retail','0','2022-11-18 21:25:04','','','','542','Cash',0.00,'750','','','12','','1','2022-11-18 15:26:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687959042033295',4693,'121668791208','6161101603379','2.00','500','retail','0','2022-11-18 21:25:04','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-18 15:26:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687966622836276',4694,'121668796009','6161101604994','1.00','1100','retail','0','2022-11-18 21:37:42','','','','653','Cash',0.00,'1100','','','12','','1','2022-11-18 15:37:49','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687967973370320',4695,'121668796670','5010103930628','1.00','1750','retail','0','2022-11-18 21:42:00','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-18 15:44:37','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687969199638913',4696,'121668796670','6161101602433','1.00','200','retail','0','2022-11-18 21:42:00','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-18 15:44:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216687993996393603',4697,'121668797079','8712000900045','6.00','1500','retail','0','2022-11-18 22:23:20','','','','182','Cash',0.00,'250','','','12','','1','2022-11-18 16:23:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688005822033226',4698,'121668799407','5000267014609','2.00','2800','retail','0','2022-11-18 22:43:02','','','','794','Cash',0.00,'1400','','','12','','1','2022-11-18 16:43:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688054588033826',4699,'121668805449','6161101602600','2.00','440','retail','0','2022-11-19 00:04:37','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-18 18:05:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688054644033426',4700,'121668805449','5010103930628','1.00','1750','retail','0','2022-11-19 00:04:37','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-18 18:05:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688054713014263',4701,'121668805449','6164001199010','1.00','100','retail','0','2022-11-19 00:04:37','','','','38','Cash',0.00,'100','','','12','','1','2022-11-18 18:05:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688054773014263',4702,'121668805449','5060639129003','1.00','250','retail','0','2022-11-19 00:04:37','','','','153','Cash',0.00,'250','','','12','','1','2022-11-18 18:05:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688071444033426',4703,'121668805523','6161101603379','4.00','1000','retail','0','2022-11-19 00:32:25','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-18 18:32:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','22.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688077260638013',4704,'121668807162','6161101604550','1.00','400','retail','0','2022-11-19 00:42:07','','','','284','Cash',0.00,'400','','','12','','1','2022-11-18 18:42:11','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688103382033230',4705,'121668807735','6161101561280','1.00','270','retail','0','2022-11-19 01:25:40','','','','190','Cash',0.00,'270','','','12','','1','2022-11-18 19:25:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688145601638113',4706,'121668810345','6161101561280','1.00','270','retail','0','2022-11-19 02:36:01','','','','190','Cash',0.00,'270','','','12','','1','2022-11-18 20:36:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688177323117263',4707,'121668814566','5010103930666','1.00','750','retail','0','2022-11-19 03:28:53','','','','542','Cash',0.00,'750','','','12','','1','2022-11-18 21:29:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688253823380320',4708,'121668825370','8712000900045','6.00','1500','retail','0','2022-11-19 05:37:31','','','','182','Cash',0.00,'250','','','12','','1','2022-11-18 23:37:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688254012202003',4709,'121668825370','6161101603379','13.00','3250','retail','0','2022-11-19 05:37:31','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-18 23:37:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','18.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688254133214263',4710,'121668825370','54491069','1.00','80','retail','0','2022-11-19 05:37:31','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-18 23:37:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688254283380320',4711,'121668825370','5018907197803','1.00','100','retail','0','2022-11-19 05:37:31','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-18 23:37:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688254363214263',4712,'121668825370','6008165007685','1.00','270','retail','0','2022-11-19 05:37:31','','','','251.5','Cash',0.00,'270','','','12','','1','2022-11-18 23:37:34','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688259206323603',4713,'121668825455','8712000900045','5.00','1250','retail','0','2022-11-19 05:45:42','','','','182','Cash',0.00,'250','','','12','','1','2022-11-18 23:45:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','6.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688259413219263',4714,'121668825455','6161101603379','1.00','250','retail','0','2022-11-19 05:45:42','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-18 23:45:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688339050332020',4715,'121668833890','5018907194802','5.00','750','retail','0','2022-11-19 07:58:25','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-19 01:58:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','9.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688339663319263',4716,'121668833932','6161101603379','2.00','500','retail','0','2022-11-19 07:59:59','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-19 02:00:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688339980303223',4717,'121668833932','5060639129003','1.00','250','retail','0','2022-11-19 07:59:59','','','','153','Cash',0.00,'250','','','12','','1','2022-11-19 02:00:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688362900033026',4718,'121668835991','1000','1.00','270','retail','0','2022-11-19 08:38:24','','','','192','Cash',0.00,'270','','','12','','1','2022-11-19 02:39:36','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688363036636123',4719,'121668835991','50112265','1.00','80','retail','0','2022-11-19 08:38:24','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-19 02:39:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688480650303223',4720,'121668847995','5018907194802','2.00','300','retail','0','2022-11-19 11:57:23','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-19 05:57:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688481773411263',4721,'121668847995','8712000900045','2.00','500','retail','0','2022-11-19 11:57:23','','','','182','Cash',0.00,'250','','','12','','1','2022-11-19 05:57:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688481963411263',4722,'121668847995','6161101606011','4.00','1000','retail','0','2022-11-19 11:57:23','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-19 05:57:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','26.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688482124638413',4723,'121668847995','6161101602921','2.00','500','retail','0','2022-11-19 11:57:23','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-19 05:57:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688515173515263',4724,'121668848249','5018907194802','1.00','150','retail','0','2022-11-19 12:52:20','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-19 06:52:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688562600303223',4725,'121668851565','6161101603379','2.00','500','retail','0','2022-11-19 14:11:01','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-19 08:11:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688613800303223',4726,'121668861366','8712000900045','4.00','1000','retail','0','2022-11-19 15:36:21','','','','182','Cash',0.00,'250','','','12','','1','2022-11-19 09:36:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688619672033291',4727,'121668861386','5060639129003','2.00','500','retail','0','2022-11-19 15:46:08','','','','153','Cash',0.00,'250','','','12','','1','2022-11-19 09:46:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688649660303223',4728,'121668861972','5099873011737','1.00','4500','retail','0','2022-11-19 16:38:23','','','','3300','Cash',0.00,'4500','','','12','','1','2022-11-19 10:38:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688650343380320',4729,'121668861972','54493360','1.00','80','retail','0','2022-11-19 16:38:23','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 10:38:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688650830332020',4730,'121668861972','54491069','2.00','160','retail','0','2022-11-19 16:38:23','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 10:38:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688678890332020',4731,'121668865115','6161101561280','1.00','270','retail','0','2022-11-19 17:24:50','','','','190','Cash',0.00,'270','','','12','','1','2022-11-19 11:24:54','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688683044033426',4732,'121668867895','90162602','1.00','230','retail','0','2022-11-19 17:31:45','','','','147','Cash',0.00,'230','','','12','','1','2022-11-19 11:31:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688684126313603',4733,'121668868311','6161100420786','1.00','400','retail','0','2022-11-19 17:33:32','','','','290','Cash',0.00,'400','','','12','','1','2022-11-19 11:33:40','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688693673613263',4734,'121668869347','8712000900045','4.00','1000','retail','0','2022-11-19 17:49:47','','','','182','Cash',0.00,'250','','','12','','1','2022-11-19 11:56:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688693863613263',4735,'121668869347','6161101606011','2.00','500','retail','0','2022-11-19 17:49:47','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-19 11:56:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688698276323603',4736,'121668869815','8712000900045','2.00','500','retail','0','2022-11-19 17:57:07','','','','182','Cash',0.00,'250','','','12','','1','2022-11-19 11:57:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688704502033240',4737,'121668869833','6161101600941','1.00','750','retail','0','2022-11-19 18:07:53','','','','544','Cash',0.00,'750','','','12','','1','2022-11-19 12:07:59','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688704733714263',4738,'121668869833','5449000131836','1.00','80','retail','0','2022-11-19 18:07:53','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 12:07:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688713923713263',4739,'121668870481','5010103930666','1.00','750','retail','0','2022-11-19 18:26:33','','','','542','Cash',0.00,'750','','','12','','1','2022-11-19 12:26:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688714330332020',4740,'121668870481','5449000131836','1.00','80','retail','0','2022-11-19 18:26:33','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 12:26:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688714453714263',4741,'121668870481','40822938','1.00','70','retail','0','2022-11-19 18:26:33','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-19 12:26:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688714770332020',4742,'121668870481','54493360','1.00','80','retail','0','2022-11-19 18:26:33','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 12:26:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688715083715263',4743,'121668870481','6164001199034','1.00','50','retail','0','2022-11-19 18:26:33','','','','19','Cash',0.00,'50','','','12','','1','2022-11-19 12:26:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688715933033326',4744,'121668870481','8906120780179','1.00','1600','retail','0','2022-11-19 18:26:33','','','','970','Cash',0.00,'1600','','','12','','1','2022-11-19 12:26:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688722330303223',4745,'121668872221','6002269000566','1.00','1200','retail','0','2022-11-19 18:37:13','','','','680','Cash',0.00,'1200','','','12','','1','2022-11-19 12:37:18','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688743102033234',4746,'121668874031','5000289933292','1.00','950','retail','0','2022-11-19 19:12:12','','','','710','Cash',0.00,'950','','','12','','1','2022-11-19 13:18:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688743310332020',4747,'121668874031','50112265','1.00','80','retail','0','2022-11-19 19:12:12','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-19 13:18:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688748410332020',4748,'121668874738','5011013100132','1.00','2800','retail','0','2022-11-19 19:21:12','','','','1916','Cash',0.00,'2800','','','12','','1','2022-11-19 13:21:51','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688748713012223',4749,'121668874738','5060639129003','4.00','1000','retail','0','2022-11-19 19:21:12','','','','153','Cash',0.00,'250','','','12','','1','2022-11-19 13:21:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688756760332020',4750,'121668874912','6161101603324','6.00','1500','retail','0','2022-11-19 19:34:36','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-19 13:34:50','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688757466033626',4751,'121668875692','6161101604703','6.00','1500','retail','0','2022-11-19 19:35:46','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-19 13:35:50','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','25.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688765472033256',4752,'121668876523','6161101603324','6.00','1500','retail','0','2022-11-19 19:49:07','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-19 13:49:11','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','25.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688834193814263',4753,'121668876554','50112753','1.00','80','retail','0','2022-11-19 21:45:41','','','','56','Cash',0.00,'80','','','12','','1','2022-11-19 15:45:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688834403380320',4754,'121668876554','5449000131836','1.00','80','retail','0','2022-11-19 21:45:41','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 15:45:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688834620303223',4755,'121668876554','6164001199034','1.00','50','retail','0','2022-11-19 21:45:41','','','','19','Cash',0.00,'50','','','12','','1','2022-11-19 15:45:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688835040303223',4756,'121668876554','024000150053','1.00','250','retail','0','2022-11-19 21:45:41','','','','205','Cash',0.00,'250','','','12','','1','2022-11-19 15:45:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688835418638813',4757,'121668876554','5449000014535','1.00','120','retail','0','2022-11-19 21:45:41','','','','64','Cash',0.00,'120','','','12','','1','2022-11-19 15:45:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688866980332020',4758,'121668886660','6164001199331','1.00','70','retail','0','2022-11-19 22:38:49','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-19 16:39:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688867144033426',4759,'121668886660','6161101603324','1.00','250','retail','0','2022-11-19 22:38:49','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-19 16:39:03','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688867280332020',4760,'121668886660','1000','1.00','270','retail','0','2022-11-19 22:38:49','','','','192','Cash',0.00,'270','','','12','','1','2022-11-19 16:39:03','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688873810332020',4761,'121668886744','6161101601979','3.00','750','retail','0','2022-11-19 22:50:01','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-19 16:50:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','24.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688874010332020',4762,'121668886744','6161101602921','2.00','500','retail','0','2022-11-19 22:50:01','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-19 16:50:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688875603380320',4763,'121668887409','50112265','2.00','160','retail','0','2022-11-19 22:52:41','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-19 16:53:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688885243815263',4764,'121668887583','5000291020706','1.00','2800','retail','0','2022-11-19 23:10:15','','','','2070','Cash',0.00,'2800','','','12','','1','2022-11-19 17:10:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688885390332020',4765,'121668887583','54493360','1.00','80','retail','0','2022-11-19 23:10:15','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 17:10:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688886152033268',4766,'121668887583','6164001199331','2.00','140','retail','0','2022-11-19 23:10:15','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-19 17:10:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688886623380320',4767,'121668888622','50196081','1.00','1800','retail','0','2022-11-19 23:11:03','','','','1130','Cash',0.00,'1800','','','12','','1','2022-11-19 17:11:06','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688889188638813',4768,'121668888904','5000267013602','1.00','2500','retail','0','2022-11-19 23:15:19','','','','1612','Cash',0.00,'2500','','','12','','1','2022-11-19 17:15:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688898523380320',4769,'121668889843','8712000900045','1.00','250','retail','0','2022-11-19 23:30:53','','','','182','Cash',0.00,'250','','','12','','1','2022-11-19 17:30:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688913579638913',4770,'121668889859','5018907194802','1.00','150','retail','0','2022-11-19 23:55:58','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-19 17:56:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688937979638913',4771,'121668893031','716165177364','1.00','250','retail','0','2022-11-20 00:36:38','','','','130','Cash',0.00,'250','','','12','','1','2022-11-19 18:36:41','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688938909638913',4772,'121668893802','6161101602600','1.00','220','retail','0','2022-11-20 00:38:11','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-19 18:38:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688940355033526',4773,'121668893902','6161100421493','1.00','450','retail','0','2022-11-20 00:40:36','','','','301','Cash',0.00,'450','','','12','','1','2022-11-19 18:40:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688950600303223',4774,'121668895047','6161100420823','1.00','300','retail','0','2022-11-20 00:57:41','','','','198','Cash',0.00,'300','','','12','','1','2022-11-19 19:04:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688983283913263',4775,'121668895466','5000267107776','1.00','7700','retail','0','2022-11-20 01:52:38','','','','5685','Cash',0.00,'7700','','','12','','1','2022-11-19 19:57:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688983440332020',4776,'121668895466','5449000014536','2.00','160','retail','0','2022-11-20 01:52:38','','','','49','Cash',0.00,'80','','','12','','1','2022-11-19 19:57:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688983580303223',4777,'121668895466','5449000131836','2.00','160','retail','0','2022-11-20 01:52:38','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-19 19:57:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216688989780303223',4778,'121668898671','1000','1.00','270','retail','0','2022-11-20 02:02:58','','','','192','Cash',0.00,'270','','','12','','1','2022-11-19 20:03:09','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689002236323603',4779,'121668898991','5010103930628','1.00','1750','retail','0','2022-11-20 02:24:10','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-19 20:24:13','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689002490262832',4780,'121668898991','6161101604406','1.00','250','retail','0','2022-11-20 02:24:10','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-19 20:24:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689007390303223',4781,'121668900254','6161101600934','1.00','1600','retail','0','2022-11-20 02:34:39','','','','1144','Cash',0.00,'1600','','','12','','1','2022-11-19 20:34:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689007550332020',4782,'121668900254','5449000004864','1.00','250','retail','0','2022-11-20 02:34:39','','','','158','Cash',0.00,'250','','','12','','1','2022-11-19 20:34:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689008252033280',4783,'121668900254','6161101603379','6.00','1500','retail','0','2022-11-20 02:34:39','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-19 20:34:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689008782033280',4784,'121668900254','5018907194802','2.00','300','retail','0','2022-11-20 02:34:39','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-19 20:34:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689014612033241',4785,'121668900888','1000','1.00','270','retail','0','2022-11-20 02:44:21','','','','192','Cash',0.00,'270','','','12','','1','2022-11-19 20:45:07','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689054472033245',4786,'121668901508','6973322690362','1.00','1750','retail','0','2022-11-20 03:51:01','','','','1000','Cash',0.00,'1750','','','12','','1','2022-11-19 21:51:35','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689054612033245',4787,'121668901508','3086120600051','1.00','80','retail','0','2022-11-20 03:51:01','','','','59.74','Cash',0.00,'80','','','12','','1','2022-11-19 21:51:35','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689056440303223',4788,'121668905496','1000','1.00','270','retail','0','2022-11-20 03:54:05','','','','192','Cash',0.00,'270','','','12','','1','2022-11-19 21:54:09','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689103571638113',4789,'121668905650','5018907197803','1.00','100','retail','0','2022-11-20 05:12:38','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-19 23:12:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689353666363603',4790,'121668926837','1000','2.00','540','retail','0','2022-11-20 12:10:00','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 06:10:10','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689354003233330',4791,'121668926837','90490224','2.00','200','retail','0','2022-11-20 12:10:00','','','','59.666','Cash',0.00,'100','','','12','','1','2022-11-20 06:10:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689357086303603',4792,'121668935418','087000006928','1.00','1800','retail','0','2022-11-20 12:16:58','','','','1320','Cash',0.00,'1800','','','12','','1','2022-11-20 06:17:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689358013318263',4793,'121668935418','6161101602372','3.00','750','retail','0','2022-11-20 12:16:58','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-20 06:17:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689358173638313',4794,'121668935418','6161101606011','3.00','750','retail','0','2022-11-20 12:16:58','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-20 06:17:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','22.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689363082033236',4795,'121668936272','5449000131836','2.00','160','retail','0','2022-11-20 12:26:31','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-20 06:26:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689363206323603',4796,'121668936272','087000006928','1.00','1800','retail','0','2022-11-20 12:26:31','','','','1320','Cash',0.00,'1800','','','12','','1','2022-11-20 06:26:34','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689363410332020',4797,'121668936272','6161101606011','3.00','750','retail','0','2022-11-20 12:26:31','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-20 06:26:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689363902033236',4798,'121668936272','6161101602372','3.00','750','retail','0','2022-11-20 12:26:31','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-20 06:26:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689373923638313',4799,'121668936845','4058387001451','1.00','1400','retail','0','2022-11-20 12:43:13','','','','1050','Cash',0.00,'1400','','','12','','1','2022-11-20 06:43:16','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689374800033026',4800,'121668937397','40822938','1.00','70','retail','0','2022-11-20 12:44:40','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-20 06:44:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689403872033230',4801,'121668940362','6161101605465','1.00','800','retail','0','2022-11-20 13:33:07','','','','501','Cash',0.00,'800','','','12','','1','2022-11-20 07:33:23','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689409343390320',4802,'121668940659','1000','1.00','270','retail','0','2022-11-20 13:42:14','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 07:42:19','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689471512033217',4803,'121668940980','6161100421493','1.00','450','retail','0','2022-11-20 15:25:52','','','','301','Cash',0.00,'450','','','12','','1','2022-11-20 09:25:56','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689480560332020',4804,'121668947158','6161101604406','4.00','1000','retail','0','2022-11-20 15:50:33','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-20 09:50:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','17.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689480753390320',4805,'121668947158','6161101604703','6.00','1500','retail','0','2022-11-20 15:50:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-20 09:50:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','19.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689480936393603',4806,'121668947158','6161101602938','8.00','2000','retail','0','2022-11-20 15:50:33','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-20 09:50:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','13.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689481244638413',4807,'121668947158','6161101603379','4.00','1000','retail','0','2022-11-20 15:50:33','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-20 09:50:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689482000033026',4808,'121668947158','6001496301705','2.00','2700','retail','0','2022-11-20 15:50:33','','','','729','Cash',0.00,'1350','','','12','','1','2022-11-20 09:50:52','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689482542233313',4809,'121668947158','6001108049599','1.00','1300','retail','0','2022-11-20 15:50:33','','','','641','Cash',0.00,'1300','','','12','','1','2022-11-20 09:50:52','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689486322033226',4810,'121668947158','6161101600934','1.00','1600','retail','0','2022-11-20 15:50:33','','','','1144','Cash',0.00,'1600','','','12','','1','2022-11-20 09:50:52','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689513090303223',4811,'121668948656','3086120600020','1.00','120','retail','0','2022-11-20 16:35:28','','','','93.86','Cash',0.00,'120','','','12','','1','2022-11-20 10:40:04','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689513276323603',4812,'121668948656','6161100421387','1.00','450','retail','0','2022-11-20 16:35:28','','','','318','Cash',0.00,'450','','','12','','1','2022-11-20 10:40:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689547060332020',4813,'121668954505','1000','1.00','270','retail','0','2022-11-20 17:31:47','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 11:31:51','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689557993390320',4814,'121668954800','5060639129003','1.00','250','retail','0','2022-11-20 17:50:00','','','','153','Cash',0.00,'250','','','12','','1','2022-11-20 11:50:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689587943390320',4815,'121668958787','90162602','1.00','230','retail','0','2022-11-20 18:40:07','','','','147','Cash',0.00,'230','','','12','','1','2022-11-20 12:40:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689588060303223',4816,'121668958787','5018907194802','1.00','150','retail','0','2022-11-20 18:40:07','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-20 12:40:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689591077033726',4817,'121668958811','6161100420823','1.00','300','retail','0','2022-11-20 18:45:20','','','','198','Cash',0.00,'300','','','12','','1','2022-11-20 12:45:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689591193511263',4818,'121668958811','6164001199034','1.00','50','retail','0','2022-11-20 18:45:20','','','','19','Cash',0.00,'50','','','12','','1','2022-11-20 12:45:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689594470332020',4819,'121668959150','1000','1.00','270','retail','0','2022-11-20 18:50:47','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 12:50:57','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689600390303223',4820,'121668959459','6161101603379','6.00','1500','retail','0','2022-11-20 19:00:54','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-20 13:00:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689600530332020',4821,'121668959459','6161101603324','4.00','1000','retail','0','2022-11-20 19:00:54','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-20 13:00:57','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689618293618263',4822,'121668960059','1000','1.00','270','retail','0','2022-11-20 19:30:30','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 13:30:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689655120303223',4823,'121668963224','6161101603379','6.00','1500','retail','0','2022-11-20 20:32:10','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-20 14:33:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689655292033255',4824,'121668963224','50112753','1.00','80','retail','0','2022-11-20 20:32:10','','','','56','Cash',0.00,'80','','','12','','1','2022-11-20 14:33:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689656030303223',4825,'121668965587','6001452260909','1.00','1700','retail','0','2022-11-20 20:33:23','','','','1139','Cash',0.00,'1700','','','12','','1','2022-11-20 14:33:27','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689680993610263',4826,'121668966000','5010314750008','1.00','2100','retail','0','2022-11-20 21:15:00','','','','1552','Cash',0.00,'2100','','','12','','1','2022-11-20 15:15:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689686481330142',4827,'121668968106','6161101605465','1.00','800','retail','0','2022-11-20 21:24:39','','','','501','Cash',0.00,'800','','','12','','1','2022-11-20 15:24:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689686576353603',4828,'121668968106','6008835000930','1.00','180','retail','0','2022-11-20 21:24:39','','','','130','Cash',0.00,'180','','','12','','1','2022-11-20 15:24:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689686673392332',4829,'121668968106','5060608740253','1.00','80','retail','0','2022-11-20 21:24:39','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-20 15:24:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689686783616263',4830,'121668968106','6164001199010','1.00','100','retail','0','2022-11-20 21:24:39','','','','38','Cash',0.00,'100','','','12','','1','2022-11-20 15:24:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689707776373603',4831,'121668970356','6161101603379','1.00','250','retail','0','2022-11-20 21:59:37','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-20 15:59:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689708076303603',4832,'121668970782','6161101604703','1.00','250','retail','0','2022-11-20 22:00:08','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-20 16:00:11','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689727293717263',4833,'121668970813','1000','1.00','270','retail','0','2022-11-20 22:32:25','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 16:32:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689727443717263',4834,'121668970813','90490224','1.00','100','retail','0','2022-11-20 22:32:25','','','','59.666','Cash',0.00,'100','','','12','','1','2022-11-20 16:32:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689735250303223',4835,'121668972753','1000','1.00','270','retail','0','2022-11-20 22:45:42','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 16:51:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689735413715263',4836,'121668972753','6164001199331','1.00','70','retail','0','2022-11-20 22:45:42','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-20 16:51:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689752772033225',4837,'121668973883','6161101602372','2.00','500','retail','0','2022-11-20 23:14:37','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-20 17:14:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689793120332020',4838,'121668979294','6161101602600','2.00','440','retail','0','2022-11-21 00:21:52','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-20 18:21:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689800192033200',4839,'121668980007','8719327068540','2.00','600','retail','0','2022-11-21 00:33:39','','','','225','Cash',0.00,'300','','','12','','1','2022-11-20 18:33:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689801998638813',4840,'121668980031','6161101602372','1.00','250','retail','0','2022-11-21 00:36:40','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-20 18:36:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689842500332020',4841,'121668980205','6161101602600','1.00','220','retail','0','2022-11-21 01:44:12','','','','154.95','Cash',0.00,'220','','','12','','1','2022-11-20 19:44:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689876230303223',4842,'121668984259','5010103930666','1.00','750','retail','0','2022-11-21 02:40:45','','','','542','Cash',0.00,'750','','','12','','1','2022-11-20 20:43:45','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689876455033526',4843,'121668984259','6161101603324','2.00','500','retail','0','2022-11-21 02:40:45','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-20 20:43:45','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689968730332020',4844,'121668996857','1000','1.00','270','retail','0','2022-11-21 05:15:43','','','','192','Cash',0.00,'270','','','12','','1','2022-11-20 23:15:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689969439638913',4845,'121668996857','50112265','1.00','80','retail','0','2022-11-21 05:15:43','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-20 23:15:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689995482033259',4846,'121668996953','6161101605465','2.00','1600','retail','0','2022-11-21 05:59:56','','','','501','Cash',0.00,'800','','','12','','1','2022-11-21 00:07:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689995666033626',4847,'121668996953','5060608740253','1.00','80','retail','0','2022-11-21 05:59:56','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-21 00:07:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689995793915263',4848,'121668996953','6008835000930','1.00','180','retail','0','2022-11-21 05:59:56','','','','130','Cash',0.00,'180','','','12','','1','2022-11-21 00:07:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216689995963390320',4849,'121668996953','6164001199010','1.00','100','retail','0','2022-11-21 05:59:56','','','','38','Cash',0.00,'100','','','12','','1','2022-11-21 00:07:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690008260332020',4850,'121669000079','6161101601979','2.00','500','retail','0','2022-11-21 06:20:26','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-21 00:20:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690017643320000',4851,'121669000833','5018907194802','1.00','150','retail','0','2022-11-21 06:36:23','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-21 00:38:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690017823012223',4852,'121669000833','6161101602938','4.00','1000','retail','0','2022-11-21 06:36:23','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-21 00:38:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690140250332020',4853,'121669010321','4820229031984','1.00','900','retail','0','2022-11-21 10:00:27','','','','650','Cash',0.00,'900','','','12','','1','2022-11-21 04:00:34','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690527743517263',4854,'121669051865','40822938','1.00','70','retail','0','2022-11-21 20:46:15','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-21 14:46:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690611243611263',4855,'121669058310','1000','1.00','270','retail','0','2022-11-21 23:05:25','','','','192','Cash',0.00,'270','','','12','','1','2022-11-21 17:05:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690625491332243',4856,'121669061133','6161101606011','1.00','250','retail','0','2022-11-21 23:29:11','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-21 17:29:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690641677033726',4857,'121669062558','5010752000420','1.00','950','retail','0','2022-11-21 23:56:18','','','','543','Cash',0.00,'950','','','12','','1','2022-11-21 17:56:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690641777033726',4858,'121669062558','5449000131836','1.00','80','retail','0','2022-11-21 23:56:18','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-21 17:56:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690660862033206',4859,'121669066056','5000267013602','1.00','2700','retail','0','2022-11-22 00:28:07','','','','1809','Cash',0.00,'2700','','','12','','1','2022-11-21 18:43:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216690695535322932',4860,'121669068190','6161101603324','2.00','500','retail','0','2022-11-22 01:25:55','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-21 19:26:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691468600303223',4861,'121669140370','5000267014609','2.00','3000','retail','0','2022-11-22 22:54:20','','','','794','Cash',0.00,'1500','','','12','','1','2022-11-22 16:54:25','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691469624639413',4862,'121669146869','1000','1.00','270','retail','0','2022-11-22 22:56:03','','','','192','Cash',0.00,'270','','','12','','1','2022-11-22 16:56:06','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691474150303223',4863,'121669147089','1000','1.00','270','retail','0','2022-11-22 23:04:49','','','','192','Cash',0.00,'270','','','12','','1','2022-11-22 17:04:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691474882033247',4864,'121669147089','6164001199331','1.00','70','retail','0','2022-11-22 23:04:49','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-22 17:04:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691508380303223',4865,'121669147499','1000','1.00','270','retail','0','2022-11-23 00:01:15','','','','192','Cash',0.00,'270','','','12','','1','2022-11-22 18:01:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691508599033926',4866,'121669147499','50112265','1.00','80','retail','0','2022-11-23 00:01:15','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-22 18:01:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691508756373603',4867,'121669147499','6164001199010','1.00','100','retail','0','2022-11-23 00:01:15','','','','38','Cash',0.00,'100','','','12','','1','2022-11-22 18:01:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691509692033290',4868,'121669150894','6161101561280','1.00','350','retail','0','2022-11-23 00:02:49','','','','190','Cash',0.00,'350','','','12','','1','2022-11-22 18:02:54','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691530300332020',4869,'121669153002','6161101603379','3.00','750','retail','0','2022-11-23 00:37:11','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-22 18:37:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691540242033204',4870,'121669153037','6001108016034','1.00','500','retail','0','2022-11-23 00:54:10','','','','352','Cash',0.00,'500','','','12','','1','2022-11-22 18:56:14','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691540373310320',4871,'121669153037','5449000131836','1.00','80','retail','0','2022-11-23 00:54:10','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-22 18:56:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691540493510263',4872,'121669153037','54491069','1.00','80','retail','0','2022-11-23 00:54:10','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-22 18:56:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691541953511263',4873,'121669154176','5060639129003','1.00','250','retail','0','2022-11-23 00:56:35','','','','153','Cash',0.00,'250','','','12','','1','2022-11-22 18:56:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691549811033126',4874,'121669154200','6161101602372','2.00','500','retail','0','2022-11-23 01:10:09','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-22 19:11:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691549940303223',4875,'121669154200','54493360','1.00','80','retail','0','2022-11-23 01:10:09','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-22 19:11:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216691550082033205',4876,'121669154200','50112265','1.00','80','retail','0','2022-11-23 01:10:09','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-22 19:11:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692282955033526',4877,'121669228285','6161101606547','1.00','550','retail','0','2022-11-23 21:31:35','','','','388','Cash',0.00,'550','','','12','','1','2022-11-23 15:31:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692315753320320',4878,'121669228303','5010103930963','1.00','1500','retail','0','2022-11-23 22:26:16','','','','1125','Cash',0.00,'1500','','','12','','1','2022-11-23 16:28:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692327520303223',4879,'121669231717','50112753','1.00','80','retail','0','2022-11-23 22:51:32','','','','56','Cash',0.00,'80','','','12','','1','2022-11-23 16:55:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692330273639313',4880,'121669231717','6001108049582','1.00','1300','retail','0','2022-11-23 22:51:32','','','','641','Cash',0.00,'1300','','','12','','1','2022-11-23 16:55:07','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692330919322060',4881,'121669231717','5010103930628','1.00','1750','retail','0','2022-11-23 22:51:32','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-23 16:55:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692373488033826',4882,'121669233308','6161101600941','1.00','750','retail','0','2022-11-24 00:02:33','','','','544','Cash',0.00,'750','','','12','','1','2022-11-23 18:05:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692378473320320',4883,'121669237514','080432400432','1.00','4350','retail','0','2022-11-24 00:10:48','','','','3250','Cash',0.00,'4350','','','12','','1','2022-11-23 18:13:41','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216692386366033626',4884,'121669238022','100','1.00','250','retail','0','2022-11-24 00:23:57','','','','177','Cash',0.00,'250','','','12','','1','2022-11-23 18:26:59','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693159983330320',4885,'121669315954','6161101604703','6.00','1500','retail','0','2022-11-24 21:53:19','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-24 15:53:25','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6.00','18.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693205090332020',4886,'121669316007','6161101602921','3.00','750','retail','0','2022-11-24 23:08:47','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-24 17:10:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693205260303223',4887,'121669316007','6161101601979','3.00','750','retail','0','2022-11-24 23:08:47','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-24 17:10:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693208648293612',4888,'121669320605','5011013100132','1.00','2800','retail','0','2022-11-24 23:14:25','','','','1916','Cash',0.00,'2800','','','12','','1','2022-11-24 17:16:22','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693211970332020',4889,'121669321184','6161101605458','1.00','270','retail','0','2022-11-24 23:20:29','','','','182','Cash',0.00,'270','','','12','','1','2022-11-24 17:49:23','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693212144033426',4890,'121669321184','6161101606011','1.00','250','retail','0','2022-11-24 23:20:29','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-24 17:49:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693212293330320',4891,'121669321184','40822938','1.00','70','retail','0','2022-11-24 23:20:29','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-24 17:49:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693266432639213',4892,'121669322965','6001108049582','1.00','1300','retail','0','2022-11-25 00:51:20','','','','641','Cash',0.00,'1300','','','12','','1','2022-11-24 18:52:08','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693266520303223',4893,'121669322965','5018907194802','1.00','150','retail','0','2022-11-25 00:51:20','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-24 18:52:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693266792639213',4894,'121669322965','90162602','1.00','230','retail','0','2022-11-25 00:51:20','','','','147','Cash',0.00,'230','','','12','','1','2022-11-24 18:52:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693267400033026',4895,'121669326729','6002269000566','1.00','1200','retail','0','2022-11-25 00:52:33','','','','680','Cash',0.00,'1200','','','12','','1','2022-11-24 18:55:27','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693267522033276',4896,'121669326729','90162602','1.00','230','retail','0','2022-11-25 00:52:33','','','','147','Cash',0.00,'230','','','12','','1','2022-11-24 18:55:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693291933211263',4897,'121669329175','6161101601979','2.00','500','retail','0','2022-11-25 01:33:14','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-24 19:33:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693339153639313',4898,'121669329199','5000267116419','1.00','5500','retail','0','2022-11-25 02:52:55','','','','3870','Cash',0.00,'5500','','','12','','1','2022-11-24 20:54:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693339752033293',4899,'121669329199','5449000000286','1.00','250','retail','0','2022-11-25 02:52:55','','','','158','Cash',0.00,'250','','','12','','1','2022-11-24 20:54:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693598783223032',4900,'121669358248','6161101606011','1.00','250','retail','0','2022-11-25 10:04:42','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 04:04:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693600193330320',4901,'121669359969','6161101606011','1.00','250','retail','0','2022-11-25 10:07:00','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 04:07:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693605693920529',4902,'121669360025','6161101606011','1.00','250','retail','0','2022-11-25 10:16:10','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 04:16:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693606792033260',4903,'121669360574','6161101606011','1.00','250','retail','0','2022-11-25 10:18:00','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 04:18:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693789173330320',4904,'121669366362','6161101606011','1.00','250','retail','0','2022-11-25 15:21:59','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 09:22:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693794112033249',4905,'121669378939','6161101606011','1.00','250','retail','0','2022-11-25 15:30:12','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 09:30:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693798143330320',4906,'121669379424','6161101602938','1.00','250','retail','0','2022-11-25 15:37:20','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-25 09:38:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693798263330320',4907,'121669379424','50112265','1.00','80','retail','0','2022-11-25 15:37:20','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 09:38:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693798407639713',4908,'121669379424','6161101605458','1.00','270','retail','0','2022-11-25 15:37:20','','','','182','Cash',0.00,'270','','','12','','1','2022-11-25 09:38:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693800370303223',4909,'121669379889','6161101606011','1.00','250','retail','0','2022-11-25 15:40:38','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 09:40:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216693859213819263',4910,'121669385907','6161101606011','1.00','250','retail','0','2022-11-25 17:18:44','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 11:18:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694030062033203',4911,'121669402983','5010103930666','1.00','750','retail','0','2022-11-25 22:03:48','','','','542','Cash',0.00,'750','','','12','','1','2022-11-25 16:12:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694030173233337',4912,'121669402983','5018907194802','1.00','150','retail','0','2022-11-25 22:03:48','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-25 16:12:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694030270332020',4913,'121669402983','5060608740253','1.00','80','retail','0','2022-11-25 22:03:48','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-25 16:12:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694048860332020',4914,'121669404879','5010103930666','1.00','750','retail','0','2022-11-25 22:35:06','','','','542','Cash',0.00,'750','','','12','','1','2022-11-25 16:38:45','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694048942033284',4915,'121669404879','6164001199010','1.00','100','retail','0','2022-11-25 22:35:06','','','','38','Cash',0.00,'100','','','12','','1','2022-11-25 16:38:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694049053019263',4916,'121669404879','6164001199331','1.00','70','retail','0','2022-11-25 22:35:06','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-25 16:38:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694071912033217',4917,'121669405127','5000267116419','1.00','5500','retail','0','2022-11-25 23:13:11','','','','3870','Cash',0.00,'5500','','','12','','1','2022-11-25 17:13:20','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694102699033926',4918,'121669407201','082184090442','1.00','5300','retail','0','2022-11-26 00:05:18','','','','3450','Cash',0.00,'5300','','','12','','1','2022-11-25 18:05:26','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694103036303603',4919,'121669407201','5018907194802','2.00','300','retail','0','2022-11-26 00:05:18','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-25 18:05:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694103172033230',4920,'121669407201','5018907197803','1.00','100','retail','0','2022-11-26 00:05:18','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-25 18:05:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694106070332020',4921,'121669410328','6161101605458','1.00','270','retail','0','2022-11-26 00:10:25','','','','182','Cash',0.00,'270','','','12','','1','2022-11-25 18:10:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694106243340320',4922,'121669410328','6164001199034','1.00','50','retail','0','2022-11-26 00:10:25','','','','19','Cash',0.00,'50','','','12','','1','2022-11-25 18:10:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694119802033291',4923,'121669411715','8000530300504','1.00','1600','retail','0','2022-11-26 00:34:53','','','','1050','Cash',0.00,'1600','','','12','','1','2022-11-25 18:35:41','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694120543340320',4924,'121669411715','082184090442','1.00','5300','retail','0','2022-11-26 00:34:53','','','','3450','Cash',0.00,'5300','','','12','','1','2022-11-25 18:35:41','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694120703110263',4925,'121669411715','5018907194802','3.00','450','retail','0','2022-11-26 00:34:53','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-25 18:35:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694120794920029',4926,'121669411715','5018907197803','1.00','100','retail','0','2022-11-26 00:34:53','','','','44.58','Cash',0.00,'100','','','12','','1','2022-11-25 18:35:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694120921639113',4927,'121669411715','6161101606011','1.00','250','retail','0','2022-11-26 00:34:53','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-25 18:35:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694127063340320',4928,'121669412142','7794450091604','1.00','2000','retail','0','2022-11-26 00:45:39','','','','1231','Cash',0.00,'2000','','','12','','1','2022-11-25 18:45:44','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694127380303223',4929,'121669412142','6161101603379','2.00','500','retail','0','2022-11-26 00:45:39','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-25 18:45:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694136793340320',4930,'121669413567','8712000900663','4.00','1000','retail','0','2022-11-26 01:01:20','','','','174','Cash',0.00,'250','','','12','','1','2022-11-25 19:01:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','19.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694138616363603',4931,'121669413686','6161101605458','1.00','270','retail','0','2022-11-26 01:04:21','','','','182','Cash',0.00,'270','','','12','','1','2022-11-25 19:04:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694147240332020',4932,'121669413866','5010106111451','1.00','2200','retail','0','2022-11-26 01:18:59','','','','1600','Cash',0.00,'2200','','','12','','1','2022-11-25 19:45:32','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694147321639113',4933,'121669413866','50112265','1.00','80','retail','0','2022-11-26 01:18:59','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 19:45:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694147388033826',4934,'121669413866','50112265','1.00','80','retail','0','2022-11-26 01:18:59','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 19:45:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694169922233336',4935,'121669416468','6161101606547','1.00','550','retail','0','2022-11-26 01:56:32','','','','388','Cash',0.00,'550','','','12','','1','2022-11-25 19:56:36','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694214955033526',4936,'121669416998','6161100421356','1.00','1400','retail','0','2022-11-26 03:11:35','','','','829','Cash',0.00,'1400','','','12','','1','2022-11-25 21:49:56','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694259823340320',4937,'121669423797','5000291020706','1.00','2800','retail','0','2022-11-26 04:26:48','','','','2070','Cash',0.00,'2800','','','12','','1','2022-11-25 22:29:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694259906393603',4938,'121669423797','50112265','1.00','80','retail','0','2022-11-26 04:26:48','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 22:29:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694259992639213',4939,'121669423797','50112265','1.00','80','retail','0','2022-11-26 04:26:48','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 22:29:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694260072639213',4940,'121669423797','50112265','1.00','80','retail','0','2022-11-26 04:26:48','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-25 22:29:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694539553519263',4941,'121669453878','6161101603379','1.00','250','retail','0','2022-11-26 12:12:37','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-26 06:12:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694624003340320',4942,'121669462373','1000','1.00','270','retail','0','2022-11-26 14:33:21','','','','192','Cash',0.00,'270','','','12','','1','2022-11-26 08:33:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694740450332020',4943,'121669470078','6161101603379','1.00','250','retail','0','2022-11-26 17:47:26','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-26 11:47:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694741281322432',4944,'121669474052','6161101603379','1.00','250','retail','0','2022-11-26 17:48:49','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-26 11:48:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694757550303223',4945,'121669475727','6164001199331','4.00','280','retail','0','2022-11-26 18:15:56','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-26 12:15:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694768510332020',4946,'121669475763','6001506900973','1.00','1500','retail','0','2022-11-26 18:36:22','','','','865','Cash',0.00,'1500','','','12','','1','2022-11-26 12:36:25','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694777406343603',4947,'121669477147','6164001199331','2.00','140','retail','0','2022-11-26 18:50:47','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-26 12:50:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694777542033277',4948,'121669477147','6164001199010','1.00','100','retail','0','2022-11-26 18:50:47','','','','38','Cash',0.00,'100','','','12','','1','2022-11-26 12:50:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694777673717263',4949,'121669477147','5010103930628','1.00','1750','retail','0','2022-11-26 18:50:47','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-26 12:50:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694778463718263',4950,'121669477147','6161101606561','1.00','1850','retail','0','2022-11-26 18:50:47','','','','1125','Cash',0.00,'1850','','','12','','1','2022-11-26 12:50:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694809383819263',4951,'121669480381','8712000900045','2.00','500','retail','0','2022-11-26 19:42:19','','','','182','Cash',0.00,'250','','','12','','1','2022-11-26 13:42:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694817912033271',4952,'121669480946','5000299618073','1.00','3500','retail','0','2022-11-26 19:56:31','','','','2460','Cash',0.00,'3500','','','12','','1','2022-11-26 14:00:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694867562033276',4953,'121669484034','6002269000566','1.00','1200','retail','0','2022-11-26 21:19:17','','','','680','Cash',0.00,'1200','','','12','','1','2022-11-26 15:19:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694896173112332',4954,'121669489608','5010677015738','1.00','2300','retail','0','2022-11-26 22:06:57','','','','1730','Cash',0.00,'2300','','','12','','1','2022-11-26 16:07:00','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694926510332020',4955,'121669489716','8712000900045','2.00','500','retail','0','2022-11-26 22:58:34','','','','182','Cash',0.00,'250','','','12','','1','2022-11-26 17:01:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694926616363603',4956,'121669489716','6002269000566','1.00','1200','retail','0','2022-11-26 22:58:34','','','','680','Cash',0.00,'1200','','','12','','1','2022-11-26 17:01:40','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694927136313603',4957,'121669489716','5010232953925','1.00','700','retail','0','2022-11-26 22:58:34','','','','315.787','Cash',0.00,'700','','','12','','1','2022-11-26 17:01:40','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694932309639913',4958,'121669492901','6164001199010','2.00','200','retail','0','2022-11-26 23:07:21','','','','38','Cash',0.00,'100','','','12','','1','2022-11-26 17:07:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694932402033223',4959,'121669492901','6164001199331','1.00','70','retail','0','2022-11-26 23:07:21','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-26 17:07:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694938602231333',4960,'121669493270','6161101604406','2.00','500','retail','0','2022-11-26 23:17:41','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-26 17:17:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694947510332020',4961,'121669494742','40822938','1.00','70','retail','0','2022-11-26 23:32:32','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-26 17:32:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694947702233336',4962,'121669494758','6161101602372','2.00','500','retail','0','2022-11-26 23:32:50','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-26 17:32:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694955220303223',4963,'121669494775','5000267107776','1.00','7700','retail','0','2022-11-26 23:45:23','','','','5685','Cash',0.00,'7700','','','12','','1','2022-11-26 17:45:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694955532033255',4964,'121669495538','5010314101015','1.00','2600','retail','0','2022-11-26 23:45:53','','','','1854','Cash',0.00,'2600','','','12','','1','2022-11-26 17:46:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694981689639913',4965,'121669495908','6161101605458','1.00','270','retail','0','2022-11-27 00:29:28','','','','182','Cash',0.00,'270','','','12','','1','2022-11-26 18:29:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694983252033238',4966,'121669498181','725765052087','2.00','580','retail','0','2022-11-27 00:32:06','','','','209','Cash',0.00,'290','','','12','','1','2022-11-26 18:32:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694994800303223',4967,'121669499468','6161101602938','2.00','500','retail','0','2022-11-27 00:51:21','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-26 18:51:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694995806383603',4968,'121669499485','6164001199034','1.00','50','retail','0','2022-11-27 00:53:01','','','','19','Cash',0.00,'50','','','12','','1','2022-11-26 18:53:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216694999209639913',4969,'121669499589','8712000900045','3.00','750','retail','0','2022-11-27 00:58:40','','','','182','Cash',0.00,'250','','','12','','1','2022-11-26 18:58:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695002050332020',4970,'121669499925','6161101601979','6.00','1500','retail','0','2022-11-27 01:03:26','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-26 19:05:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695003630303223',4971,'121669500326','6161100420786','1.00','400','retail','0','2022-11-27 01:06:03','','','','290','Cash',0.00,'400','','','12','','1','2022-11-26 19:07:30','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695006273016263',4972,'121669500452','6161101601979','6.00','1500','retail','0','2022-11-27 01:10:28','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-26 19:10:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695020866033626',4973,'121669502075','50196111','1.00','1500','retail','0','2022-11-27 01:34:46','','','','855','Cash',0.00,'1500','','','12','','1','2022-11-26 19:34:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695022552033222',4974,'121669502241','5018907194802','2.00','300','retail','0','2022-11-27 01:39:36','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-26 19:39:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695022683012263',4975,'121669502241','6161101602938','2.00','500','retail','0','2022-11-27 01:39:36','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-26 19:39:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695022790639013',4976,'121669502241','8712000900045','2.00','500','retail','0','2022-11-27 01:39:36','','','','182','Cash',0.00,'250','','','12','','1','2022-11-26 19:39:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695023132033232',4977,'121669502241','5449000131836','2.00','160','retail','0','2022-11-27 01:39:36','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-26 19:39:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695023486343603',4978,'121669502241','54491069','1.00','80','retail','0','2022-11-27 01:39:36','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-26 19:39:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695023593013263',4979,'121669502241','5449000028976','1.00','150','retail','0','2022-11-27 01:39:36','','','','103','Cash',0.00,'150','','','12','','1','2022-11-26 19:39:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695023753350320',4980,'121669502241','088544018941','1.00','2900','retail','0','2022-11-27 01:39:36','','','','2100','Cash',0.00,'2900','','','12','','1','2022-11-26 19:39:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695024044033426',4981,'121669502388','5449000000286','1.00','250','retail','0','2022-11-27 01:40:05','','','','158','Cash',0.00,'250','','','12','','1','2022-11-26 19:42:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695028850303223',4982,'121669502664','6161101605465','1.00','800','retail','0','2022-11-27 01:48:42','','','','501','Cash',0.00,'800','','','12','','1','2022-11-26 19:50:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695029099033926',4983,'121669502664','6164001199331','2.00','140','retail','0','2022-11-27 01:48:42','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-26 19:50:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695029213350320',4984,'121669502664','3086120600051','1.00','80','retail','0','2022-11-27 01:48:42','','','','59.74','Cash',0.00,'80','','','12','','1','2022-11-26 19:50:22','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695073150332020',4985,'121669507305','6161100420823','1.00','300','retail','0','2022-11-27 03:01:56','','','','198','Cash',0.00,'300','','','12','','1','2022-11-26 21:01:59','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695078002033287',4986,'121669507321','5000267107776','1.00','7700','retail','0','2022-11-27 03:10:01','','','','5685','Cash',0.00,'7700','','','12','','1','2022-11-26 21:10:58','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695080913010263',4987,'121669507991','6161101601979','1.00','250','retail','0','2022-11-27 03:14:52','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-26 21:14:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695087542253332',4988,'121669508096','50196166','1.00','750','retail','0','2022-11-27 03:25:54','','','','443','Cash',0.00,'750','','','12','','1','2022-11-26 21:25:57','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695092160332020',4989,'121669508758','5052197004281','1.00','600','retail','0','2022-11-27 03:33:36','','','','272','Cash',0.00,'600','','','12','','1','2022-11-26 21:33:49','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695125392033252',4990,'121669512531','5010103930628','1.00','1750','retail','0','2022-11-27 04:29:47','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-26 22:31:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695125533115263',4991,'121669512531','5449000014536','1.00','80','retail','0','2022-11-27 04:29:47','','','','49','Cash',0.00,'80','','','12','','1','2022-11-26 22:31:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695125722033226',4992,'121669512531','5060639129003','1.00','250','retail','0','2022-11-27 04:29:47','','','','153','Cash',0.00,'250','','','12','','1','2022-11-26 22:31:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695125872033252',4993,'121669512531','5449000028976','1.00','150','retail','0','2022-11-27 04:29:47','','','','103','Cash',0.00,'150','','','12','','1','2022-11-26 22:31:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695140921639113',4994,'121669512714','6161101605458','1.00','270','retail','0','2022-11-27 04:55:05','','','','182','Cash',0.00,'270','','','12','','1','2022-11-26 22:56:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695141042033214',4995,'121669512714','5449000131836','1.00','80','retail','0','2022-11-27 04:55:05','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-26 22:56:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695225200033026',4996,'121669522460','6161101605458','1.00','270','retail','0','2022-11-27 07:15:22','','','','182','Cash',0.00,'270','','','12','','1','2022-11-27 01:15:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695433634639413',4997,'121669543287','5449000061478','1.00','180','retail','0','2022-11-27 13:03:51','','','','84','Cash',0.00,'180','','','12','','1','2022-11-27 07:03:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695521523350320',4998,'121669552136','5010103930628','1.00','1750','retail','0','2022-11-27 15:29:47','','','','1125','Cash',0.00,'1750','','','12','','1','2022-11-27 09:31:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695521866383603',4999,'121669552136','5449000028921','1.00','150','retail','0','2022-11-27 15:29:47','','','','103','Cash',0.00,'150','','','12','','1','2022-11-27 09:31:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695681393611263',5000,'121669568129','5060608747818','1.00','80','retail','0','2022-11-27 19:55:39','','','','67','Cash',0.00,'80','','','12','','1','2022-11-27 13:57:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695682440332020',5001,'121669568224','6001108016034','1.00','500','retail','0','2022-11-27 19:57:25','','','','352','Cash',0.00,'500','','','12','','1','2022-11-27 13:57:28','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695748092033284',5002,'121669568250','6161101605458','1.00','270','retail','0','2022-11-27 21:46:53','','','','182','Cash',0.00,'270','','','12','','1','2022-11-27 15:47:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695809392033290',5003,'121669576267','6161101604406','2.00','500','retail','0','2022-11-27 23:29:00','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-27 17:29:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695830776373603',5004,'121669580947','725765052087','2.00','580','retail','0','2022-11-28 00:04:47','','','','209','Cash',0.00,'290','','','12','','1','2022-11-27 18:04:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695830860332020',5005,'121669580947','6164001199034','1.00','50','retail','0','2022-11-28 00:04:47','','','','19','Cash',0.00,'50','','','12','','1','2022-11-27 18:04:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216695872808639813',5006,'121669587244','5010677025003','1.00','1750','retail','0','2022-11-28 01:14:41','','','','1270','Cash',0.00,'1750','','','12','','1','2022-11-27 19:14:49','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696244993214263',5007,'121669624489','5449000014536','1.00','80','retail','0','2022-11-28 11:34:59','','','','49','Cash',0.00,'80','','','12','','1','2022-11-28 05:35:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696281466343603',5008,'121669624506','50112265','1.00','80','retail','0','2022-11-28 12:38:35','','','','53.33','Cash',0.00,'80','','','12','','1','2022-11-28 06:40:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696281911033126',5009,'121669624506','5010103930666','1.00','750','retail','0','2022-11-28 12:38:35','','','','542','Cash',0.00,'750','','','12','','1','2022-11-28 06:40:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696283146313603',5010,'121669624506','5449000061478','1.00','180','retail','0','2022-11-28 12:38:35','','','','84','Cash',0.00,'180','','','12','','1','2022-11-28 06:40:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696358732033285',5011,'121669628411','6161101604406','4.00','1000','retail','0','2022-11-28 14:44:34','','','','181.708','Cash',0.00,'250','','','12','','1','2022-11-28 08:44:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696359040132303',5012,'121669635880','5060608740253','1.00','80','retail','0','2022-11-28 14:45:04','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-28 08:45:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696572516353603',5013,'121669657145','5018907194802','1.00','150','retail','0','2022-11-28 20:40:53','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-28 14:40:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696572950303223',5014,'121669657262','8712000900045','2.00','500','retail','0','2022-11-28 20:41:36','','','','182','Cash',0.00,'250','','','12','','1','2022-11-28 14:41:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696573203360320',5015,'121669657300','6161101605458','1.00','270','retail','0','2022-11-28 20:42:01','','','','182','Cash',0.00,'270','','','12','','1','2022-11-28 14:42:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696576696363603',5016,'121669657329','6161101606011','4.00','1000','retail','0','2022-11-28 20:47:50','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-28 14:47:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696602926393603',5017,'121669657675','6161101602372','1.00','250','retail','0','2022-11-28 21:31:33','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-28 15:31:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696606833616263',5018,'121669660296','6161101605458','1.00','270','retail','0','2022-11-28 21:38:03','','','','182','Cash',0.00,'270','','','12','','1','2022-11-28 15:38:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696613926393603',5019,'121669661374','6161101602211','1.00','400','retail','0','2022-11-28 21:50:34','','','','247','Cash',0.00,'400','','','12','','1','2022-11-28 15:52:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696614333033326',5020,'121669661374','6161101561280','1.00','350','retail','0','2022-11-28 21:50:34','','','','190','Cash',0.00,'350','','','12','','1','2022-11-28 15:52:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696615960303223',5021,'121669661580','87303322','1.00','60','retail','0','2022-11-28 21:53:33','','','','23','Cash',0.00,'60','','','12','','1','2022-11-28 15:53:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696616123616263',5022,'121669661580','5449000014536','1.00','80','retail','0','2022-11-28 21:53:33','','','','49','Cash',0.00,'80','','','12','','1','2022-11-28 15:53:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696631023360320',5023,'121669663079','6161101605458','1.00','270','retail','0','2022-11-28 22:18:23','','','','182','Cash',0.00,'270','','','12','','1','2022-11-28 16:18:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696637288033826',5024,'121669663114','6161101603379','2.00','500','retail','0','2022-11-28 22:28:50','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-28 16:28:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696638926639613',5025,'121669663738','6001108016034','1.00','500','retail','0','2022-11-28 22:31:52','','','','352','Cash',0.00,'500','','','12','','1','2022-11-28 16:31:55','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696639116639613',5026,'121669663738','5449000131836','1.00','80','retail','0','2022-11-28 22:31:52','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-28 16:31:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696653683360320',5027,'121669663917','5010103800167','1.00','1000','retail','0','2022-11-28 22:56:08','','','','719','Cash',0.00,'1000','','','12','','1','2022-11-28 16:56:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696666776639613',5028,'121669666669','6164001199331','1.00','70','retail','0','2022-11-28 23:17:58','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-28 17:18:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696705823715263',5029,'121669670559','5010103930666','1.00','750','retail','0','2022-11-29 00:23:03','','','','542','Cash',0.00,'750','','','12','','1','2022-11-28 18:23:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696708327639713',5030,'121669670590','5010752000321','1.00','1800','retail','0','2022-11-29 00:28:08','','','','1037','Cash',0.00,'1800','','','12','','1','2022-11-28 18:29:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696708877639713',5031,'121669670590','6161101602433','2.00','400','retail','0','2022-11-29 00:28:08','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-28 18:29:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696713553360320',5032,'121669670969','8712000900663','1.00','250','retail','0','2022-11-29 00:35:56','','','','174','Cash',0.00,'250','','','12','','1','2022-11-28 18:35:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696718160303223',5033,'121669671360','6161101602433','1.00','200','retail','0','2022-11-29 00:43:37','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-28 18:43:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696730123360320',5034,'121669673002','5018907194802','2.00','300','retail','0','2022-11-29 01:03:32','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-28 19:03:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696761576353603',5035,'121669673017','6161101602921','2.00','500','retail','0','2022-11-29 01:57:00','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-28 19:57:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696762197639713',5036,'121669673017','6161101601979','2.00','500','retail','0','2022-11-29 01:57:00','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-28 19:57:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696767793360320',5037,'121669676225','6001108016034','1.00','500','retail','0','2022-11-29 02:06:44','','','','352','Cash',0.00,'500','','','12','','1','2022-11-28 20:06:50','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696768047639713',5038,'121669676225','5449000131836','1.00','80','retail','0','2022-11-29 02:06:44','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-28 20:06:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696861129629632',5039,'121669686052','5000289929417','1.00','2300','retail','0','2022-11-29 04:41:52','','','','1540','Cash',0.00,'2300','','','12','','1','2022-11-28 22:41:55','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696946783360320',5040,'121669694666','6161101605458','1.00','270','retail','0','2022-11-29 07:04:38','','','','182','Cash',0.00,'270','','','12','','1','2022-11-29 01:04:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216696963720303223',5041,'121669696364','6161101601979','1.00','250','retail','0','2022-11-29 07:32:52','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-29 01:32:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697100239729633',5042,'121669702994','5060608740253','1.00','80','retail','0','2022-11-29 11:20:24','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-29 05:20:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697133244033426',5043,'121669710034','6161101606011','1.00','250','retail','0','2022-11-29 12:15:25','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-29 06:15:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697467823417263',5044,'121669746594','1000','2.00','540','retail','0','2022-11-29 21:33:28','','','','192','Cash',0.00,'270','','','12','','1','2022-11-29 15:33:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697468076303603',5045,'121669746594','6164001199034','1.00','50','retail','0','2022-11-29 21:33:28','','','','19','Cash',0.00,'50','','','12','','1','2022-11-29 15:33:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697485760332020',5046,'121669746816','6161101602921','2.00','500','retail','0','2022-11-29 22:02:57','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-29 16:02:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697509013519263',5047,'121669750892','6161101602433','2.00','400','retail','0','2022-11-29 22:41:55','','','','150.45','Cash',0.00,'200','','','12','','1','2022-11-29 16:42:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697509146313603',5048,'121669750892','6161101602938','2.00','500','retail','0','2022-11-29 22:41:55','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-29 16:42:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697519610332020',5049,'121669751942','6164001199331','1.00','70','retail','0','2022-11-29 23:00:37','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-29 17:00:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697526296323603',5050,'121669752043','6161100421615','1.00','500','retail','0','2022-11-29 23:10:31','','','','310','Cash',0.00,'500','','','12','','1','2022-11-29 17:10:39','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697528675639513',5051,'121669752641','8712000900663','1.00','250','retail','0','2022-11-29 23:14:28','','','','174','Cash',0.00,'250','','','12','','1','2022-11-29 17:14:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697541846383603',5052,'121669752873','1000','1.00','270','retail','0','2022-11-29 23:36:37','','','','192','Cash',0.00,'270','','','12','','1','2022-11-29 17:37:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697541960332020',5053,'121669752873','6161101601979','1.00','250','retail','0','2022-11-29 23:36:37','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-29 17:37:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697543550303223',5054,'121669754227','6001108016034','1.00','500','retail','0','2022-11-29 23:39:16','','','','352','Cash',0.00,'500','','','12','','1','2022-11-29 17:39:23','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697561903511263',5055,'121669754365','4067700014535','1.00','5200','retail','0','2022-11-30 00:09:51','','','','3350','Cash',0.00,'5200','','','12','','1','2022-11-29 18:14:44','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697568160303223',5056,'121669756487','6161101603379','1.00','250','retail','0','2022-11-30 00:20:17','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-29 18:20:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697594253370320',5057,'121669756822','6161100420786','1.00','400','retail','0','2022-11-30 01:05:47','','','','290','Cash',0.00,'400','','','12','','1','2022-11-29 19:05:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697595461222932',5058,'121669756822','6161101603379','5.00','1250','retail','0','2022-11-30 01:05:47','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-29 19:05:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','18.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697598466033626',5059,'121669759817','6161101603379','2.00','500','retail','0','2022-11-30 01:10:46','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-29 19:10:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697603660332020',5060,'121669760333','082184090442','1.00','5300','retail','0','2022-11-30 01:21:19','','','','3450','Cash',0.00,'5300','','','12','','1','2022-11-29 19:23:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216697604793614263',5061,'121669760333','6161101603324','3.00','750','retail','0','2022-11-30 01:21:19','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-29 19:23:04','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698111881639113',5062,'121669811173','5010103930666','1.00','750','retail','0','2022-11-30 15:26:41','','','','542','Cash',0.00,'750','','','12','','1','2022-11-30 09:44:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698112006303603',5063,'121669811173','5449000131836','1.00','80','retail','0','2022-11-30 15:26:41','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-30 09:44:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698133990303223',5064,'121669812302','5011013100118','1.00','3500','retail','0','2022-11-30 16:03:20','','','','2461','Cash',0.00,'3500','','','12','','1','2022-11-30 10:03:50','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698146981639113',5065,'121669813432','40822938','1.00','70','retail','0','2022-11-30 16:24:59','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-30 10:25:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698166470303223',5066,'121669814706','6161101602167','1.00','550','retail','0','2022-11-30 16:57:28','','','','388','Cash',0.00,'550','','','12','','1','2022-11-30 10:57:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698194868328064',5067,'121669816653','6161101605458','1.00','270','retail','0','2022-11-30 17:44:47','','','','182','Cash',0.00,'270','','','12','','1','2022-11-30 11:44:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698207977033726',5068,'121669819494','6161100421387','1.00','450','retail','0','2022-11-30 18:06:38','','','','318','Cash',0.00,'450','','','12','','1','2022-11-30 12:06:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698224683214263',5069,'121669820804','6161101605458','1.00','270','retail','0','2022-11-30 18:34:29','','','','182','Cash',0.00,'270','','','12','','1','2022-11-30 12:34:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698263926393603',5070,'121669822473','8906054940410','2.00','1000','retail','0','2022-11-30 19:39:53','','','','305','Cash',0.00,'500','','','12','','1','2022-11-30 13:40:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698264662639213',5071,'121669826402','5060608740253','1.00','80','retail','0','2022-11-30 19:41:07','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-30 13:41:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698265553215263',5072,'121669826472','6161101605458','1.00','270','retail','0','2022-11-30 19:42:36','','','','182','Cash',0.00,'270','','','12','','1','2022-11-30 13:42:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698269016303603',5073,'121669826565','90162602','1.00','230','retail','0','2022-11-30 19:48:33','','','','147','Cash',0.00,'230','','','12','','1','2022-11-30 13:48:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698269133219263',5074,'121669826565','6161101604550','1.00','400','retail','0','2022-11-30 19:48:33','','','','284','Cash',0.00,'400','','','12','','1','2022-11-30 13:48:38','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698284592033248',5075,'121669826922','6161101603379','2.00','500','retail','0','2022-11-30 20:14:19','','','','190.375','Cash',0.00,'250','','','12','','1','2022-11-30 14:14:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698311580332020',5076,'121669831148','8712000900663','2.00','500','retail','0','2022-11-30 20:59:18','','','','174','Cash',0.00,'250','','','12','','1','2022-11-30 14:59:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698312003380320',5077,'121669831162','8712000900663','2.00','500','retail','0','2022-11-30 21:00:10','','','','174','Cash',0.00,'250','','','12','','1','2022-11-30 15:00:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698312109023832',5078,'121669831162','6164001199331','1.00','70','retail','0','2022-11-30 21:00:10','','','','37.08','Cash',0.00,'70','','','12','','1','2022-11-30 15:00:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698319563380320',5079,'121669831216','8712000900045','3.00','750','retail','0','2022-11-30 21:12:36','','','','182','Cash',0.00,'250','','','12','','1','2022-11-30 15:12:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698326672033262',5080,'121669831962','6161101603324','1.00','250','retail','0','2022-11-30 21:24:28','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-30 15:24:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698328856383603',5081,'121669832878','6161101606011','1.00','250','retail','0','2022-11-30 21:29:26','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-30 15:30:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698328993318263',5082,'121669832878','6161101601979','1.00','250','retail','0','2022-11-30 21:29:26','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-30 15:30:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698329520332020',5083,'121669832878','5010103930666','1.00','750','retail','0','2022-11-30 21:29:26','','','','542','Cash',0.00,'750','','','12','','1','2022-11-30 15:30:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698329653319263',5084,'121669832878','6164001199010','1.00','100','retail','0','2022-11-30 21:29:26','','','','38','Cash',0.00,'100','','','12','','1','2022-11-30 15:30:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698333077033726',5085,'121669833298','6164001199010','1.00','100','retail','0','2022-11-30 21:35:08','','','','38','Cash',0.00,'100','','','12','','1','2022-11-30 15:35:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698347977033726',5086,'121669833312','6161101605458','2.00','540','retail','0','2022-11-30 22:00:10','','','','182','Cash',0.00,'270','','','12','','1','2022-11-30 16:00:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698348100033026',5087,'121669833312','6164001199034','1.00','50','retail','0','2022-11-30 22:00:10','','','','19','Cash',0.00,'50','','','12','','1','2022-11-30 16:00:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698417052033271',5088,'121669841695','6161101602938','2.00','500','retail','0','2022-11-30 23:55:06','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-30 17:55:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698444022033226',5089,'121669841712','6161101602938','2.00','500','retail','0','2022-12-01 00:40:03','','','','198.45','Cash',0.00,'250','','','12','','1','2022-11-30 18:40:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698459340332020',5090,'121669844409','6161101606011','1.00','250','retail','0','2022-12-01 01:05:34','','','','172.833','Cash',0.00,'250','','','12','','1','2022-11-30 19:05:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698462770303223',5091,'121669845940','6161101604703','3.00','750','retail','0','2022-12-01 01:11:17','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-30 19:11:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698472173102223',5092,'121669846283','6001108016034','1.00','500','retail','0','2022-12-01 01:27:25','','','','352','Cash',0.00,'500','','','12','','1','2022-11-30 19:28:35','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698472283380320',5093,'121669846283','6161101603324','2.00','500','retail','0','2022-12-01 01:27:25','','','','150.45','Cash',0.00,'250','','','12','','1','2022-11-30 19:28:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698474003380320',5094,'121669847316','6161101602372','4.00','1000','retail','0','2022-12-01 01:30:00','','','','189.75','Cash',0.00,'250','','','12','','1','2022-11-30 19:30:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698474790303223',5095,'121669847405','6001452258005','1.00','1600','retail','0','2022-12-01 01:35:15','','','','1150','Cash',0.00,'1600','','','12','','1','2022-11-30 19:39:53','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698475890332020',5096,'121669847405','8000530300474','1.00','1600','retail','0','2022-12-01 01:35:15','','','','1050','Cash',0.00,'1600','','','12','','1','2022-11-30 19:39:53','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698476384639413',5097,'121669847405','024000150152','1.00','250','retail','0','2022-12-01 01:35:15','','','','205','Cash',0.00,'250','','','12','','1','2022-11-30 19:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698476572202003',5098,'121669847405','024000150138','1.00','250','retail','0','2022-12-01 01:35:15','','','','205','Cash',0.00,'250','','','12','','1','2022-11-30 19:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698476792033267',5099,'121669847405','5018907194802','3.00','450','retail','0','2022-12-01 01:35:15','','','','74.58','Cash',0.00,'150','','','12','','1','2022-11-30 19:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698477000332020',5100,'121669847405','5449000131836','1.00','80','retail','0','2022-12-01 01:35:15','','','','53.333','Cash',0.00,'80','','','12','','1','2022-11-30 19:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698477153380320',5101,'121669847405','40822938','1.00','70','retail','0','2022-12-01 01:35:15','','','','53.333','Cash',0.00,'70','','','12','','1','2022-11-30 19:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698489283419263',5102,'121669847995','5060608740253','1.00','80','retail','0','2022-12-01 01:55:29','','','','41.82','Cash',0.00,'80','','','12','','1','2022-11-30 19:55:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698494412033249',5103,'121669848932','5449000014536','1.00','80','retail','0','2022-12-01 02:04:01','','','','49','Cash',0.00,'80','','','12','','1','2022-11-30 20:04:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698563130332020',5104,'121669849449','6001452301862','1.00','1600','retail','0','2022-12-01 03:58:37','','','','1150','Cash',0.00,'1600','','','12','','1','2022-11-30 21:58:48','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698565690303223',5105,'121669856331','8712000900045','3.00','750','retail','0','2022-12-01 04:03:04','','','','182','Cash',0.00,'250','','','12','','1','2022-11-30 22:03:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698565830332020',5106,'121669856331','6161101601979','3.00','750','retail','0','2022-12-01 04:03:04','','','','172.75','Cash',0.00,'250','','','12','','1','2022-11-30 22:03:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698587442033278',5107,'121669856592','5010103930840','1.00','500','retail','0','2022-12-01 04:39:05','','','','335','Cash',0.00,'500','','','12','','1','2022-11-30 22:39:08','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698610913380320',5108,'121669858750','8712000900045','6.00','1500','retail','0','2022-12-01 05:18:13','','','','182','Cash',0.00,'250','','','12','','1','2022-11-30 23:26:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698815402033251',5109,'121669881500','6161101602921','3.00','750','retail','0','2022-12-01 10:59:00','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-01 04:59:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698834611222222',5110,'121669883450','082184090473','1.00','4000','retail','0','2022-12-01 11:31:01','','','','2600','Cash',0.00,'4000','','','12','','1','2022-12-01 05:31:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698903550332020',5111,'121669890335','6161101606011','1.00','250','retail','0','2022-12-01 13:26:24','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-01 07:26:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698903686363603',5112,'121669890335','5060639129003','1.00','250','retail','0','2022-12-01 13:26:24','','','','153','Cash',0.00,'250','','','12','','1','2022-12-01 07:26:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698903844033426',5113,'121669890335','5449000014535','1.00','120','retail','0','2022-12-01 13:26:24','','','','64','Cash',0.00,'120','','','12','','1','2022-12-01 07:26:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698904286323603',5114,'121669890395','6161101605458','1.00','270','retail','0','2022-12-01 13:27:08','','','','182','Cash',0.00,'270','','','12','','1','2022-12-01 07:27:11','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698904453380320',5115,'121669890432','5010103930666','1.00','750','retail','0','2022-12-01 13:27:36','','','','542','Cash',0.00,'750','','','12','','1','2022-12-01 07:27:40','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698904552033240',5116,'121669890432','5449000131836','1.00','80','retail','0','2022-12-01 13:27:36','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-01 07:27:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698922877033726',5117,'121669890461','6161101602372','1.00','250','retail','0','2022-12-01 13:58:07','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-01 07:58:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216698944133914263',5118,'121669892292','6161101561280','1.00','350','retail','0','2022-12-01 14:33:34','','','','190','Cash',0.00,'350','','','12','','1','2022-12-01 08:33:37','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699067799033926',5119,'121669906768','5010103930628','1.00','1750','retail','0','2022-12-01 17:59:56','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-01 12:00:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699067955033526',5120,'121669906768','5018907194802','1.00','150','retail','0','2022-12-01 17:59:56','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-01 12:00:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699074533390320',5121,'121669906805','6164001199331','4.00','280','retail','0','2022-12-01 18:10:54','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-01 12:10:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','19.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699097116313603',5122,'121669909695','6161101602938','3.00','750','retail','0','2022-12-01 18:48:45','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-01 12:48:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699097243017263',5123,'121669909695','6161101602938','3.00','750','retail','0','2022-12-01 18:48:45','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-01 12:48:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699108900332020',5124,'121669909728','87303322','1.00','60','retail','0','2022-12-01 19:08:11','','','','23','Cash',0.00,'60','','','12','','1','2022-12-01 13:08:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699110496343603',5125,'121669910896','725765052087','1.00','290','retail','0','2022-12-01 19:11:03','','','','209','Cash',0.00,'290','','','12','','1','2022-12-01 13:11:14','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699110620332020',5126,'121669910896','6164001199010','1.00','100','retail','0','2022-12-01 19:11:03','','','','38','Cash',0.00,'100','','','12','','1','2022-12-01 13:11:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699153573113263',5127,'121669911076','54493360','1.00','80','retail','0','2022-12-01 20:22:38','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-01 14:22:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699217443390320',5128,'121669921727','6161101602938','6.00','1500','retail','0','2022-12-01 22:09:05','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-01 16:09:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699230088033826',5129,'121669922998','5060608740253','1.00','80','retail','0','2022-12-01 22:30:27','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-01 16:30:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699230277033726',5130,'121669922998','40822938','2.00','140','retail','0','2022-12-01 22:30:27','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-01 16:30:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699238056303603',5131,'121669923033','6161101603522','1.00','800','retail','0','2022-12-01 22:43:37','','','','501','Cash',0.00,'800','','','12','','1','2022-12-01 16:43:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699238163661021',5132,'121669923033','1000','1.00','270','retail','0','2022-12-01 22:43:37','','','','192','Cash',0.00,'270','','','12','','1','2022-12-01 16:43:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699241686363603',5133,'121669923825','5010103930628','1.00','1750','retail','0','2022-12-01 22:50:01','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-01 16:50:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699241790332020',5134,'121669923825','5018907194802','1.00','150','retail','0','2022-12-01 22:50:01','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-01 16:50:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699242011033126',5135,'121669923825','6164001199331','2.00','140','retail','0','2022-12-01 22:50:01','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-01 16:50:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699291703211263',5136,'121669924206','6001108016034','1.00','500','retail','0','2022-12-02 00:13:01','','','','352','Cash',0.00,'500','','','12','','1','2022-12-01 18:13:06','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699291800303223',5137,'121669924206','5449000131836','1.00','80','retail','0','2022-12-02 00:13:01','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-01 18:13:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699346276323603',5138,'121669929187','5000292262716','1.00','1800','retail','0','2022-12-02 01:44:04','','','','1250','Cash',0.00,'1800','','','12','','1','2022-12-01 19:45:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699346433316263',5139,'121669929187','5449000028921','1.00','150','retail','0','2022-12-02 01:44:04','','','','103','Cash',0.00,'150','','','12','','1','2022-12-01 19:45:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699365463315263',5140,'121669934897','5010327302201','1.00','8500','retail','0','2022-12-02 02:15:46','','','','6800','Cash',0.00,'8500','','','12','','1','2022-12-01 20:18:21','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699384222033248',5141,'121669938412','5018907194802','1.00','150','retail','0','2022-12-02 02:47:03','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-01 20:47:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699967160303223',5142,'121669994559','6161101602433','1.00','200','retail','0','2022-12-02 18:58:47','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-02 12:59:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699997229639913',5143,'121669996794','3024482270123','1.00','9700','retail','0','2022-12-02 19:49:21','','','','7200','Cash',0.00,'9700','','','12','','1','2022-12-02 13:50:56','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699997409639913',5144,'121669996794','5449000014536','1.00','80','retail','0','2022-12-02 19:49:21','','','','49','Cash',0.00,'80','','','12','','1','2022-12-02 13:50:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216699997600332020',5145,'121669996794','8000530300474','1.00','1600','retail','0','2022-12-02 19:49:21','','','','1050','Cash',0.00,'1600','','','12','','1','2022-12-02 13:50:56','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700014330630013',5146,'121669999857','6161101603379','6.00','1500','retail','0','2022-12-02 20:18:46','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 14:19:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700014550332020',5147,'121669999857','5060639129003','3.00','750','retail','0','2022-12-02 20:18:46','','','','153','Cash',0.00,'250','','','12','','1','2022-12-02 14:19:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700014766373603',5148,'121669999857','5060639129003','2.00','500','retail','0','2022-12-02 20:18:46','','','','153','Cash',0.00,'250','','','12','','1','2022-12-02 14:19:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700014970332020',5149,'121669999857','5060639129003','2.00','500','retail','0','2022-12-02 20:18:46','','','','153','Cash',0.00,'250','','','12','','1','2022-12-02 14:19:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700017850630013',5150,'121670001567','50196166','1.00','750','retail','0','2022-12-02 20:23:34','','','','443','Cash',0.00,'750','','','12','','1','2022-12-02 14:23:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700018140630013',5151,'121670001567','5060608740253','1.00','80','retail','0','2022-12-02 20:23:34','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-02 14:23:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700057050303223',5152,'121670001819','6161101606011','1.00','250','retail','0','2022-12-02 21:28:51','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 15:39:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700057177033727',5153,'121670001819','8712000900663','3.00','750','retail','0','2022-12-02 21:28:51','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 15:39:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700057317322532',5154,'121670001819','6164001199010','1.00','100','retail','0','2022-12-02 21:28:51','','','','38','Cash',0.00,'100','','','12','','1','2022-12-02 15:39:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700070060332020',5155,'121670006965','6161101604703','4.00','1000','retail','0','2022-12-02 21:50:54','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-02 15:50:56','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700070200033027',5156,'121670006965','8712000900663','2.00','500','retail','0','2022-12-02 21:50:54','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 15:50:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700070320332020',5157,'121670006965','6161101606011','1.00','250','retail','0','2022-12-02 21:50:54','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 15:50:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700070440332020',5158,'121670006965','6161101603379','1.00','250','retail','0','2022-12-02 21:50:54','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 15:50:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700070530630013',5159,'121670006965','5449000131836','1.00','80','retail','0','2022-12-02 21:50:54','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-02 15:50:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700086733033327',5160,'121670008659','8712000900663','9.00','2250','retail','0','2022-12-02 22:20:30','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 16:20:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700088100303223',5161,'121670008659','6161101606011','1.00','250','retail','0','2022-12-02 22:20:30','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 16:20:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700088299033927',5162,'121670008659','6161101603379','1.00','250','retail','0','2022-12-02 22:20:30','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 16:20:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700096110332020',5163,'121670009053','6161101606011','1.00','250','retail','0','2022-12-02 22:34:03','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 16:34:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700096430630013',5164,'121670009053','6161101603379','1.00','250','retail','0','2022-12-02 22:34:03','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 16:34:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700102199033927',5165,'121670010207','8712000900663','6.00','1500','retail','0','2022-12-02 22:43:40','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 16:43:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700115381630113',5166,'121670011519','6161101603379','2.00','500','retail','0','2022-12-02 23:05:39','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 17:05:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700120096303603',5167,'121670011544','5449000014536','1.00','80','retail','0','2022-12-02 23:15:53','','','','49','Cash',0.00,'80','','','12','','1','2022-12-02 17:16:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700120480332020',5168,'121670011544','50112265','1.00','80','retail','0','2022-12-02 23:15:53','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-02 17:16:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700120640310002',5169,'121670011544','6161101604406','1.00','250','retail','0','2022-12-02 23:15:53','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-02 17:16:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700120746373603',5170,'121670011544','90162602','1.00','230','retail','0','2022-12-02 23:15:53','','','','147','Cash',0.00,'230','','','12','','1','2022-12-02 17:16:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700120822033202',5171,'121670011544','6161101606011','1.00','250','retail','0','2022-12-02 23:15:53','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 17:16:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700121366333603',5172,'121670011544','8712000900663','1.00','250','retail','0','2022-12-02 23:15:53','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 17:16:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700121523300320',5173,'121670011544','6161101603379','3.00','750','retail','0','2022-12-02 23:15:53','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 17:16:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700121881630113',5174,'121670012163','6161101603522','1.00','800','retail','0','2022-12-02 23:16:29','','','','501','Cash',0.00,'800','','','12','','1','2022-12-02 17:16:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700123891630113',5175,'121670012194','5010106111451','1.00','2200','retail','0','2022-12-02 23:19:49','','','','1600','Cash',0.00,'2200','','','12','','1','2022-12-02 17:19:53','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700125060332020',5176,'121670012395','50112265','2.00','160','retail','0','2022-12-02 23:21:46','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-02 17:22:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700126220020732',5177,'121670012537','6001496011796','1.00','1700','retail','0','2022-12-02 23:23:42','','','','1072','Cash',0.00,'1700','','','12','','1','2022-12-02 17:24:03','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700129560332020',5178,'121670012940','5000267014005','1.00','2200','retail','0','2022-12-02 23:30:10','','','','1304','Cash',0.00,'2200','','','12','','1','2022-12-02 17:30:40','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700130603300320',5179,'121670013048','8712000900663','2.00','500','retail','0','2022-12-02 23:31:01','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 17:31:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700143440303223',5180,'121670013066','6161101604406','4.00','1000','retail','0','2022-12-02 23:53:38','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-02 17:53:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700144186313603',5181,'121670013066','6161101602600','1.00','250','retail','0','2022-12-02 23:53:38','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-02 17:53:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700145446343603',5182,'121670014423','6161101605458','1.00','270','retail','0','2022-12-02 23:55:44','','','','182','Cash',0.00,'270','','','12','','1','2022-12-02 17:55:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700153270020737',5183,'121670015317','6161101604406','6.00','1500','retail','0','2022-12-03 00:10:04','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-02 18:10:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700153883113273',5184,'121670015317','8712000900045','1.00','250','retail','0','2022-12-03 00:10:04','','','','182','Cash',0.00,'250','','','12','','1','2022-12-02 18:10:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700154031630113',5185,'121670015317','6161101601979','1.00','250','retail','0','2022-12-03 00:10:04','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-02 18:10:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700155400303223',5186,'121670015443','6001452258005','1.00','1600','retail','0','2022-12-03 00:12:20','','','','1150','Cash',0.00,'1600','','','12','','1','2022-12-02 18:12:25','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700162244033427',5187,'121670015546','90162602','2.00','460','retail','0','2022-12-03 00:23:59','','','','147','Cash',0.00,'230','','','12','','1','2022-12-02 18:24:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700162393112273',5188,'121670015546','3024482270123','1.00','9700','retail','0','2022-12-03 00:23:59','','','','7200','Cash',0.00,'9700','','','12','','1','2022-12-02 18:24:12','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700205283215273',5189,'121670020454','6161101603379','4.00','1000','retail','0','2022-12-03 01:35:46','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 19:35:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700205451332243',5190,'121670020454','5018907194802','1.00','150','retail','0','2022-12-03 01:35:46','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-02 19:35:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700208886383603',5191,'121670020875','5010103930628','1.00','1750','retail','0','2022-12-03 01:41:29','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-02 19:41:32','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700213732630213',5192,'121670020894','5449000028976','1.00','150','retail','0','2022-12-03 01:49:34','','','','103','Cash',0.00,'150','','','12','','1','2022-12-02 19:49:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700214522033241',5193,'121670021381','6161101605458','1.00','270','retail','0','2022-12-03 01:50:53','','','','182','Cash',0.00,'270','','','12','','1','2022-12-02 19:50:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700224310303223',5194,'121670021458','6161101600941','1.00','750','retail','0','2022-12-03 02:07:11','','','','544','Cash',0.00,'750','','','12','','1','2022-12-02 20:07:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700227283217273',5195,'121670022720','8712000900663','2.00','500','retail','0','2022-12-03 02:13:41','','','','174','Cash',0.00,'250','','','12','','1','2022-12-02 20:13:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700227402034207',5196,'121670022720','8712000900045','1.00','250','retail','0','2022-12-03 02:13:41','','','','182','Cash',0.00,'250','','','12','','1','2022-12-02 20:13:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700227576353603',5197,'121670022720','6161101606011','1.00','250','retail','0','2022-12-03 02:13:41','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 20:13:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700227676363603',5198,'121670022720','5018907197803','1.00','100','retail','0','2022-12-03 02:13:41','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-02 20:13:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700228202033282',5199,'121670022720','6161101602938','1.00','250','retail','0','2022-12-03 02:13:41','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-02 20:13:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700235320303223',5200,'121670023258','6161101602938','1.00','250','retail','0','2022-12-03 02:28:27','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-02 20:28:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700236060303223',5201,'121670023258','6161101603379','3.00','750','retail','0','2022-12-03 02:28:27','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-02 20:28:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700236883300320',5202,'121670023258','8712000900045','4.00','1000','retail','0','2022-12-03 02:28:27','','','','182','Cash',0.00,'250','','','12','','1','2022-12-02 20:28:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700236983216273',5203,'121670023258','6161101606011','1.00','250','retail','0','2022-12-03 02:28:27','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-02 20:28:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700237077033727',5204,'121670023258','6161101601979','1.00','250','retail','0','2022-12-03 02:28:27','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-02 20:28:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700238390303223',5205,'121670023826','024000150152','2.00','500','retail','0','2022-12-03 02:30:39','','','','205','Cash',0.00,'250','','','12','','1','2022-12-02 20:30:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700242403300320',5206,'121670023843','5010103930666','1.00','750','retail','0','2022-12-03 02:37:28','','','','542','Cash',0.00,'750','','','12','','1','2022-12-02 20:38:45','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700242476343603',5207,'121670023843','50112265','1.00','80','retail','0','2022-12-03 02:37:28','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-02 20:38:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700246662033264',5208,'121670024634','1000','1.00','270','retail','0','2022-12-03 02:44:27','','','','192','Cash',0.00,'270','','','12','','1','2022-12-02 20:44:29','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700250433210273',5209,'121670025033','6161101602372','4.00','1000','retail','0','2022-12-03 02:50:43','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-02 20:50:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700253832630213',5210,'121670025056','6161101602167','1.00','550','retail','0','2022-12-03 02:56:34','','','','388','Cash',0.00,'550','','','12','','1','2022-12-02 20:56:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700253946393603',5211,'121670025056','5018907197803','1.00','100','retail','0','2022-12-03 02:56:34','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-02 20:56:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700257263300320',5212,'121670025400','8712000900045','1.00','250','retail','0','2022-12-03 03:02:16','','','','182','Cash',0.00,'250','','','12','','1','2022-12-02 21:02:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700257356333603',5213,'121670025400','6161100420786','1.00','400','retail','0','2022-12-03 03:02:16','','','','290','Cash',0.00,'400','','','12','','1','2022-12-02 21:02:25','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700259420332020',5214,'121670025746','8906125990009','1.00','1000','retail','0','2022-12-03 03:06:46','','','','660','Cash',0.00,'1000','','','12','','1','2022-12-02 21:06:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700259703300320',5215,'121670025746','6164001199331','2.00','140','retail','0','2022-12-03 03:06:46','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-02 21:06:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700260063300320',5216,'121670025746','5060639129003','1.00','250','retail','0','2022-12-03 03:06:46','','','','153','Cash',0.00,'250','','','12','','1','2022-12-02 21:06:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700261516353603',5217,'121670026013','5010103930628','1.00','1750','retail','0','2022-12-03 03:09:11','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-02 21:09:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700395513300320',5218,'121670039216','6161100420786','1.00','400','retail','0','2022-12-03 06:53:00','','','','290','Cash',0.00,'400','','','12','','1','2022-12-03 00:53:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700395683315273',5219,'121670039216','6161101603379','2.00','500','retail','0','2022-12-03 06:53:00','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-03 00:53:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700395793300320',5220,'121670039216','6161101602372','1.00','250','retail','0','2022-12-03 06:53:00','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-03 00:53:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700530170303223',5221,'121670046179','725765052063','1.00','250','retail','0','2022-12-03 10:37:08','','','','175','Cash',0.00,'250','','','12','','1','2022-12-03 04:37:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700530280332020',5222,'121670046179','6164001199331','1.00','70','retail','0','2022-12-03 10:37:08','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-03 04:37:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700599136313603',5223,'121670053543','6161101561280','1.00','350','retail','0','2022-12-03 12:31:54','','','','190','Cash',0.00,'350','','','12','','1','2022-12-03 06:31:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700619921222032',5224,'121670059918','8712000900045','2.00','500','retail','0','2022-12-03 13:06:48','','','','182','Cash',0.00,'250','','','12','','1','2022-12-03 07:06:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700620070303223',5225,'121670059918','6161101603379','1.00','250','retail','0','2022-12-03 13:06:48','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-03 07:06:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700634563614273',5226,'121670062011','5010103930666','1.00','750','retail','0','2022-12-03 13:31:05','','','','542','Cash',0.00,'750','','','12','','1','2022-12-03 07:32:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700634646630613',5227,'121670062011','6164001199331','1.00','70','retail','0','2022-12-03 13:31:05','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-03 07:32:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700636070303223',5228,'121670063529','8712000900045','6.00','1500','retail','0','2022-12-03 13:33:28','','','','182','Cash',0.00,'250','','','12','','1','2022-12-03 07:33:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700910963300320',5229,'121670090013','5010103930628','1.00','1750','retail','0','2022-12-03 21:11:49','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-03 15:11:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700911090120022',5230,'121670090013','50112265','1.00','80','retail','0','2022-12-03 21:11:49','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-03 15:11:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700941076303603',5231,'121670091583','5000196006652','1.00','500','retail','0','2022-12-03 22:02:13','','','','310','Cash',0.00,'500','','','12','','1','2022-12-03 16:02:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700941330303223',5232,'121670091583','024000150152','1.00','250','retail','0','2022-12-03 22:02:13','','','','205','Cash',0.00,'250','','','12','','1','2022-12-03 16:02:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700956526353603',5233,'121670094139','5449000014535','1.00','120','retail','0','2022-12-03 22:27:33','','','','64','Cash',0.00,'120','','','12','','1','2022-12-03 16:33:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216700983460332020',5234,'121670096032','6161101604703','1.00','250','retail','0','2022-12-03 23:12:27','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-03 17:12:32','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701008103102223',5235,'121670100800','6161100421615','1.00','500','retail','0','2022-12-03 23:53:31','','','','310','Cash',0.00,'500','','','12','','1','2022-12-03 17:53:33','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701010080332020',5236,'121670100815','6002269000566','1.00','1200','retail','0','2022-12-03 23:56:51','','','','680','Cash',0.00,'1200','','','12','','1','2022-12-03 17:57:27','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701019773310320',5237,'121670101959','6161101603379','1.00','250','retail','0','2022-12-04 00:12:57','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-03 18:13:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701032263012273',5238,'121670101983','6161100421509','1.00','1350','retail','0','2022-12-04 00:34:40','','','','787','Cash',0.00,'1350','','','12','','1','2022-12-03 18:34:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701032656363603',5239,'121670101983','6164001199331','2.00','140','retail','0','2022-12-04 00:34:40','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-03 18:34:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701032802033223',5240,'121670101983','90162602','1.00','230','retail','0','2022-12-04 00:34:40','','','','147','Cash',0.00,'230','','','12','','1','2022-12-03 18:34:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701056943016273',5241,'121670105567','6001108016034','2.00','1000','retail','0','2022-12-04 01:15:28','','','','352','Cash',0.00,'500','','','12','','1','2022-12-03 19:16:07','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701057277033727',5242,'121670105567','5449000131836','1.00','80','retail','0','2022-12-04 01:15:28','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-03 19:16:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701073588033827',5243,'121670107246','089540448978','1.00','2600','retail','0','2022-12-04 01:43:43','','','','1970','Cash',0.00,'2600','','','12','','1','2022-12-03 19:44:12','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701073990303223',5244,'121670107246','5018907194802','4.00','600','retail','0','2022-12-04 01:43:43','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-03 19:44:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701074110332020',5245,'121670107246','5449000000286','1.00','250','retail','0','2022-12-04 01:43:43','','','','158','Cash',0.00,'250','','','12','','1','2022-12-03 19:44:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701074220630013',5246,'121670107246','90162602','1.00','230','retail','0','2022-12-04 01:43:43','','','','147','Cash',0.00,'230','','','12','','1','2022-12-03 19:44:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701076006303603',5247,'121670107453','5449000131836','1.00','80','retail','0','2022-12-04 01:47:36','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-03 19:47:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701076077033727',5248,'121670107453','90162602','1.00','230','retail','0','2022-12-04 01:47:36','','','','147','Cash',0.00,'230','','','12','','1','2022-12-03 19:47:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701076163310320',5249,'121670107453','6008835000930','2.00','360','retail','0','2022-12-04 01:47:36','','','','130','Cash',0.00,'180','','','12','','1','2022-12-03 19:47:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701092013310320',5250,'121670107659','50196111','1.00','1500','retail','0','2022-12-04 02:14:05','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-03 20:14:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701092450303223',5251,'121670107659','6164002099029','2.00','160','retail','0','2022-12-04 02:14:05','','','','36','Cash',0.00,'80','','','12','','1','2022-12-03 20:14:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','60.00','58','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701098393018273',5252,'121670109274','6161101602600','1.00','250','retail','0','2022-12-04 02:24:00','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-03 20:24:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701116132033261',5253,'121670109845','6161101603324','2.00','500','retail','0','2022-12-04 02:53:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-03 20:53:37','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701124906393603',5254,'121670111618','5060639129003','1.00','250','retail','0','2022-12-04 03:08:10','','','','153','Cash',0.00,'250','','','12','','1','2022-12-03 21:08:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701153371630113',5255,'121670115286','6161101603379','6.00','1500','retail','0','2022-12-04 03:55:45','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-03 21:56:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701153452033235',5256,'121670115286','90162602','1.00','230','retail','0','2022-12-04 03:55:45','','','','147','Cash',0.00,'230','','','12','','1','2022-12-03 21:56:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701156144033427',5257,'121670115365','6164002099029','1.00','80','retail','0','2022-12-04 04:00:15','','','','36','Cash',0.00,'80','','','12','','1','2022-12-03 22:00:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701171711120120',5258,'121670115621','5000281021621','1.00','6000','retail','0','2022-12-04 04:29:49','','','','4333','Cash',0.00,'6000','','','12','','1','2022-12-03 22:33:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701171790332020',5259,'121670115621','5018907197803','1.00','100','retail','0','2022-12-04 04:29:49','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-03 22:33:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701173890303223',5260,'121670115621','6161101604406','1.00','250','retail','0','2022-12-04 04:29:49','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-03 22:33:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701188216323603',5261,'121670117609','024000150121','1.00','250','retail','0','2022-12-04 04:53:41','','','','205','Cash',0.00,'250','','','12','','1','2022-12-03 22:53:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701197806383603',5262,'121670119768','8712000900045','2.00','500','retail','0','2022-12-04 05:11:42','','','','182','Cash',0.00,'250','','','12','','1','2022-12-03 23:11:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701198423310320',5263,'121670119768','6164002099029','1.00','80','retail','0','2022-12-04 05:11:42','','','','36','Cash',0.00,'80','','','12','','1','2022-12-03 23:11:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701203282033230',5264,'121670120320','6161101601979','1.00','250','retail','0','2022-12-04 05:18:59','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-03 23:19:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701203386333603',5265,'121670120320','6161101603324','2.00','500','retail','0','2022-12-04 05:18:59','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-03 23:19:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701204033033327',5266,'121670120380','6161101604406','1.00','250','retail','0','2022-12-04 05:20:12','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-03 23:20:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701204122033240',5267,'121670120380','5449000131836','1.00','80','retail','0','2022-12-04 05:20:12','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-03 23:20:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701207060303223',5268,'121670120419','6164002099029','1.00','80','retail','0','2022-12-04 05:25:06','','','','36','Cash',0.00,'80','','','12','','1','2022-12-03 23:25:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701208232033280',5269,'121670120711','5000292263171','1.00','600','retail','0','2022-12-04 05:27:04','','','','430','Cash',0.00,'600','','','12','','1','2022-12-03 23:27:26','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701208743218273',5270,'121670120847','6161101602938','3.00','750','retail','0','2022-12-04 05:27:54','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-03 23:27:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701211312630213',5271,'121670120879','1000','1.00','270','retail','0','2022-12-04 05:32:12','','','','192','Cash',0.00,'270','','','12','','1','2022-12-03 23:32:16','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701267012630213',5272,'121670126678','5449000028921','1.00','150','retail','0','2022-12-04 07:05:59','','','','103','Cash',0.00,'150','','','12','','1','2022-12-04 01:06:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701267153310320',5273,'121670126678','8712000900045','3.00','750','retail','0','2022-12-04 07:05:59','','','','182','Cash',0.00,'250','','','12','','1','2022-12-04 01:06:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701267440020306',5274,'121670126678','6161101603379','3.00','750','retail','0','2022-12-04 07:05:59','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-04 01:06:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701267580303223',5275,'121670126678','5000267014609','1.00','1500','retail','0','2022-12-04 07:05:59','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-04 01:06:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701360780303223',5276,'121670129619','725765052063','1.00','250','retail','0','2022-12-04 09:41:21','','','','175','Cash',0.00,'250','','','12','','1','2022-12-04 05:03:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701410462033201',5277,'121670141029','6161101602372','1.00','250','retail','0','2022-12-04 11:04:17','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-04 05:04:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701410563410273',5278,'121670141029','6164002099036','1.00','120','retail','0','2022-12-04 11:04:17','','','','40','Cash',0.00,'120','','','12','','1','2022-12-04 05:04:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701449299033927',5279,'121670144919','5018907194802','2.00','300','retail','0','2022-12-04 12:08:50','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-04 06:08:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701498296323603',5280,'121670149819','6161101604406','1.00','250','retail','0','2022-12-04 13:30:40','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-04 07:30:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701498402033289',5281,'121670149819','6161101601979','1.00','250','retail','0','2022-12-04 13:30:40','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-04 07:30:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701621342033212',5282,'121670162115','6161101605458','2.00','540','retail','0','2022-12-04 16:55:45','','','','182','Cash',0.00,'270','','','12','','1','2022-12-04 10:56:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701621440303223',5283,'121670162115','87303322','1.00','80','retail','0','2022-12-04 16:55:45','','','','23','Cash',0.00,'80','','','12','','1','2022-12-04 10:56:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701633036630613',5284,'121670162167','6161101606561','1.00','1850','retail','0','2022-12-04 17:15:18','','','','1125','Cash',0.00,'1850','','','12','','1','2022-12-04 11:15:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701633173201112',5285,'121670162167','5060639129003','1.00','250','retail','0','2022-12-04 17:15:18','','','','153','Cash',0.00,'250','','','12','','1','2022-12-04 11:15:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701842420332020',5286,'121670184187','6161101602051','1.00','550','retail','0','2022-12-04 23:04:03','','','','392','Cash',0.00,'550','','','12','','1','2022-12-04 17:04:08','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701928882033282',5287,'121670192868','8712000900045','4.00','1000','retail','0','2022-12-05 01:29:09','','','','182','Cash',0.00,'250','','','12','','1','2022-12-04 19:30:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701929482033292',5288,'121670192868','6161101603324','2.00','500','retail','0','2022-12-05 01:29:09','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-04 19:30:46','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701935883915273',5289,'121670193048','4058387004605','1.00','1400','retail','0','2022-12-05 01:45:16','','','','1050','Cash',0.00,'1400','','','12','','1','2022-12-04 19:46:22','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701936530303223',5290,'121670193048','3245990987611','1.00','17500','retail','0','2022-12-05 01:45:16','','','','13000','Cash',0.00,'17500','','','12','','1','2022-12-04 19:46:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701937972033273',5291,'121670193048','024000150121','1.00','250','retail','0','2022-12-05 01:45:16','','','','205','Cash',0.00,'250','','','12','','1','2022-12-04 19:46:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701938766373603',5292,'121670193048','5018907194802','6.00','900','retail','0','2022-12-05 01:45:16','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-04 19:46:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701938913310320',5293,'121670193048','3024480004522','1.00','25000','retail','0','2022-12-05 01:45:16','','','','18500','Cash',0.00,'25000','','','12','','1','2022-12-04 19:46:22','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701939155033527',5294,'121670193048','90162602','1.00','230','retail','0','2022-12-05 01:45:16','','','','147','Cash',0.00,'230','','','12','','1','2022-12-04 19:46:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1.00','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701946419630913',5295,'121670193985','1000','1.00','270','retail','0','2022-12-05 01:57:22','','','','192','Cash',0.00,'270','','','12','','1','2022-12-04 19:57:40','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701956859630913',5296,'121670194661','6161101602051','1.00','550','retail','0','2022-12-05 02:14:59','','','','392','Cash',0.00,'550','','','12','','1','2022-12-04 20:15:02','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701956982251333',5297,'121670194661','6161101601979','1.00','250','retail','0','2022-12-05 02:14:59','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-04 20:15:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216701963889630913',5298,'121670195703','6001496011796','1.00','1700','retail','0','2022-12-05 02:26:28','','','','1072','Cash',0.00,'1700','','','12','','1','2022-12-04 20:26:33','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702068543320320',5299,'121670205311','6161100421554','1.00','450','retail','0','2022-12-05 05:20:55','','','','244','Cash',0.00,'450','','','12','','1','2022-12-04 23:21:23','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702072853012273',5300,'121670206886','8906054940137','1.00','700','retail','0','2022-12-05 05:28:28','','','','405','Cash',0.00,'700','','','12','','1','2022-12-04 23:28:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702072950630013',5301,'121670206886','50112265','1.00','80','retail','0','2022-12-05 05:28:28','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-04 23:28:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702073081302130',5302,'121670206886','1000','1.00','270','retail','0','2022-12-05 05:28:28','','','','192','Cash',0.00,'270','','','12','','1','2022-12-04 23:28:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702079903019273',5303,'121670207313','6161101602372','1.00','250','retail','0','2022-12-05 05:39:51','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-04 23:39:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702085000630013',5304,'121670207996','6164002099029','1.00','80','retail','0','2022-12-05 05:48:21','','','','36','Cash',0.00,'80','','','12','','1','2022-12-04 23:48:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702100044033427',5305,'121670208506','90162602','1.00','230','retail','0','2022-12-05 06:13:25','','','','147','Cash',0.00,'230','','','12','','1','2022-12-05 00:13:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702520312033202',5306,'121670251904','6161101601979','2.00','500','retail','0','2022-12-05 17:53:52','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-05 11:53:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702520566033627',5307,'121670252038','6164001199034','1.00','50','retail','0','2022-12-05 17:54:16','','','','19','Cash',0.00,'50','','','12','','1','2022-12-05 11:54:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702670386333603',5308,'121670266913','6161101605465','1.00','800','retail','0','2022-12-05 22:03:59','','','','501','Cash',0.00,'800','','','12','','1','2022-12-05 16:06:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702672046630613',5309,'121670267184','8719327068540','1.00','300','retail','0','2022-12-05 22:06:45','','','','225','Cash',0.00,'300','','','12','','1','2022-12-05 16:06:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702689936393603',5310,'121670267213','6164002099036','2.00','240','retail','0','2022-12-05 22:37:06','','','','40','Cash',0.00,'120','','','12','','1','2022-12-05 16:38:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','59.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702690250332020',5311,'121670267213','6164001199331','2.00','140','retail','0','2022-12-05 22:37:06','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-05 16:38:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','36.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702694190303223',5312,'121670269408','5010752000345','1.00','2500','retail','0','2022-12-05 22:43:39','','','','1750','Cash',0.00,'2500','','','12','','1','2022-12-05 16:43:43','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702701063711273',5313,'121670269424','6161100421622','1.00','1500','retail','0','2022-12-05 22:55:07','','','','922','Cash',0.00,'1500','','','12','','1','2022-12-05 16:55:10','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702701233033327',5314,'121670270111','6001108016034','1.00','500','retail','0','2022-12-05 22:59:41','','','','352','Cash',0.00,'500','','','12','','1','2022-12-05 16:59:45','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702703800303223',5315,'121670270111','5449000131836','1.00','80','retail','0','2022-12-05 22:59:41','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-05 16:59:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702706937630713',5316,'121670270387','5449000014535','1.00','120','retail','0','2022-12-05 23:04:54','','','','64','Cash',0.00,'120','','','12','','1','2022-12-05 17:04:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702707844033427',5317,'121670270699','024000150121','1.00','250','retail','0','2022-12-05 23:06:24','','','','205','Cash',0.00,'250','','','12','','1','2022-12-05 17:06:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702722080772283',5318,'121670272199','6161101603379','1.00','250','retail','0','2022-12-05 23:30:29','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-05 17:30:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702722190332020',5319,'121670272199','8712000900045','1.00','250','retail','0','2022-12-05 23:30:29','','','','182','Cash',0.00,'250','','','12','','1','2022-12-05 17:30:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702722287630713',5320,'121670272199','6164001199010','1.00','100','retail','0','2022-12-05 23:30:29','','','','38','Cash',0.00,'100','','','12','','1','2022-12-05 17:30:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702723855033527',5321,'121670272235','8712000900045','4.00','1000','retail','0','2022-12-05 23:34:57','','','','182','Cash',0.00,'250','','','12','','1','2022-12-05 17:35:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','27.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702724523714273',5322,'121670272235','6161101606011','2.00','500','retail','0','2022-12-05 23:34:57','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-05 17:35:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702724850303223',5323,'121670272235','6161101603379','2.00','500','retail','0','2022-12-05 23:34:57','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-05 17:35:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702724972033242',5324,'121670272235','8712000900045','1.00','250','retail','0','2022-12-05 23:34:57','','','','182','Cash',0.00,'250','','','12','','1','2022-12-05 17:35:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702726730303223',5325,'121670272502','8712000900045','1.00','250','retail','0','2022-12-05 23:37:54','','','','182','Cash',0.00,'250','','','12','','1','2022-12-05 17:37:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702737543717273',5326,'121670273732','6001495062508','1.00','2800','retail','0','2022-12-05 23:56:33','','','','2011','Cash',0.00,'2800','','','12','','1','2022-12-05 17:56:39','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702737766373603',5327,'121670273732','6161101604406','1.00','250','retail','0','2022-12-05 23:56:33','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-05 17:56:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702737926393603',5328,'121670273732','6161101603324','1.00','250','retail','0','2022-12-05 23:56:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-05 17:56:39','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702746580332020',5329,'121670273801','3155930006015','6.00','1500','retail','0','2022-12-06 00:10:59','','','','188','Cash',0.00,'250','','','12','','1','2022-12-05 18:14:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','24.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702764142621270',5330,'121670274898','6001108016034','1.00','500','retail','0','2022-12-06 00:40:15','','','','352','Cash',0.00,'500','','','12','','1','2022-12-05 18:40:29','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702764920332020',5331,'121670276479','6161101603379','1.00','250','retail','0','2022-12-06 00:41:33','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-05 18:41:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702805710332020',5332,'121670276503','6161101604406','1.00','250','retail','0','2022-12-06 01:50:43','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-05 19:50:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216702806430332020',5333,'121670276503','6161101603379','1.00','250','retail','0','2022-12-06 01:50:43','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-05 19:50:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703195840332020',5334,'121670308644','5060608740253','2.00','160','retail','0','2022-12-06 12:39:46','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-06 06:39:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703380040332020',5335,'121670337769','3155930006015','3.00','750','retail','0','2022-12-06 17:46:44','','','','188','Cash',0.00,'250','','','12','','1','2022-12-06 11:46:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','18.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703408470303223',5336,'121670340840','6161101602372','2.00','500','retail','0','2022-12-06 18:34:08','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-06 12:34:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703423130332020',5337,'121670340881','3245990987611','1.00','17500','retail','0','2022-12-06 18:59:38','','','','13000','Cash',0.00,'17500','','','12','','1','2022-12-06 13:03:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703423400033027',5338,'121670340881','5000291025824','1.00','3000','retail','0','2022-12-06 18:59:38','','','','2200','Cash',0.00,'3000','','','12','','1','2022-12-06 13:03:54','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703423540332020',5339,'121670340881','6161101602938','3.00','750','retail','0','2022-12-06 18:59:38','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-06 13:03:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703423783330320',5340,'121670340881','5018907194802','5.00','750','retail','0','2022-12-06 18:59:38','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-06 13:03:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','26.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703435702202003',5341,'121670342636','8712000900045','6.00','1500','retail','0','2022-12-06 19:19:31','','','','182','Cash',0.00,'250','','','12','','1','2022-12-06 13:20:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','21.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703436333033327',5342,'121670343607','5000291020706','1.00','2800','retail','0','2022-12-06 19:20:34','','','','2070','Cash',0.00,'2800','','','12','','1','2022-12-06 13:20:37','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703451450332020',5343,'121670345134','6161101606011','6.00','1500','retail','0','2022-12-06 19:46:00','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-06 13:46:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703451604630413',5344,'121670345134','8005415049608','1.00','1550','retail','0','2022-12-06 19:46:00','','','','790','Cash',0.00,'1550','','','12','','1','2022-12-06 13:46:08','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703490103330320',5345,'121670345169','5000292262716','1.00','1800','retail','0','2022-12-06 20:50:41','','','','1250','Cash',0.00,'1800','','','12','','1','2022-12-06 14:51:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703490404630413',5346,'121670345169','5018907194802','3.00','450','retail','0','2022-12-06 20:50:41','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-06 14:51:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703502322033220',5347,'121670349105','6161101603324','2.00','500','retail','0','2022-12-06 21:10:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-06 15:10:40','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703503232033230',5348,'121670350306','6161101606011','2.00','500','retail','0','2022-12-06 21:12:03','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-06 15:12:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703507175630513',5349,'121670350333','716165173670','1.00','150','retail','0','2022-12-06 21:18:37','','','','46','Cash',0.00,'150','','','12','','1','2022-12-06 15:19:20','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703523786373603',5350,'121670352363','6161101606561','1.00','1850','retail','0','2022-12-06 21:47:11','','','','1125','Cash',0.00,'1850','','','12','','1','2022-12-06 15:55:11','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703524303330320',5351,'121670352363','6161101606011','2.00','500','retail','0','2022-12-06 21:47:11','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-06 15:55:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703532600303223',5352,'121670352913','5010103930666','1.00','850','retail','0','2022-12-06 22:01:16','','','','586','Cash',0.00,'850','','','12','','1','2022-12-06 16:01:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703532763330320',5353,'121670352913','5018907197803','1.00','100','retail','0','2022-12-06 22:01:16','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-06 16:01:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703534555033527',5354,'121670353281','5010103930628','1.00','1750','retail','0','2022-12-06 22:04:16','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-06 16:04:51','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703553590332020',5355,'121670355343','3155930006015','2.00','500','retail','0','2022-12-06 22:37:11','','','','188','Cash',0.00,'250','','','12','','1','2022-12-06 16:37:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703554310303223',5356,'121670355343','6161101603324','2.00','500','retail','0','2022-12-06 22:37:11','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-06 16:37:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703554560332020',5357,'121670355442','1000','1.00','270','retail','0','2022-12-06 22:37:37','','','','192','Cash',0.00,'270','','','12','','1','2022-12-06 16:37:39','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703569955033527',5358,'121670356980','6164001199331','4.00','280','retail','0','2022-12-06 23:03:24','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-06 17:03:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','34.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703570033012223',5359,'121670356980','5010103930628','1.00','1750','retail','0','2022-12-06 23:03:24','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-06 17:03:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703576570332020',5360,'121670357648','50112265','2.00','160','retail','0','2022-12-06 23:14:26','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-06 17:14:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703576652033267',5361,'121670357648','6001108016034','1.00','500','retail','0','2022-12-06 23:14:26','','','','352','Cash',0.00,'500','','','12','','1','2022-12-06 17:14:55','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703584636363603',5362,'121670358457','5060639129003','1.00','250','retail','0','2022-12-06 23:28:30','','','','153','Cash',0.00,'250','','','12','','1','2022-12-06 17:28:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703585092033258',5363,'121670358457','90399480','1.00','100','retail','0','2022-12-06 23:28:30','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-06 17:28:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703667140332020',5364,'121670366705','50112265','1.00','80','retail','0','2022-12-07 01:45:15','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-06 19:45:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703706137630713',5365,'121670366725','6161101606547','2.00','1100','retail','0','2022-12-07 02:50:53','','','','388','Cash',0.00,'550','','','12','','1','2022-12-06 20:52:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703712547630713',5366,'121670370769','6161101604703','1.00','250','retail','0','2022-12-07 03:00:54','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-06 21:01:27','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703723533033327',5367,'121670371289','50196166','1.00','750','retail','0','2022-12-07 03:19:42','','','','443','Cash',0.00,'750','','','12','','1','2022-12-06 21:19:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703723813713273',5368,'121670371289','8712000900045','2.00','600','retail','0','2022-12-07 03:19:42','','','','182','Cash',0.00,'300','','','12','','1','2022-12-06 21:19:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703766240303223',5369,'121670376614','5449000028921','1.00','150','retail','0','2022-12-07 04:30:34','','','','103','Cash',0.00,'150','','','12','','1','2022-12-06 22:30:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703766330303223',5370,'121670376614','5000267014005','1.00','2200','retail','0','2022-12-07 04:30:34','','','','1304','Cash',0.00,'2200','','','12','','1','2022-12-06 22:30:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703772432033227',5371,'121670377146','8712000900045','2.00','600','retail','0','2022-12-07 04:40:59','','','','182','Cash',0.00,'300','','','12','','1','2022-12-06 22:41:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703772599033927',5372,'121670377146','6161101602372','2.00','500','retail','0','2022-12-07 04:40:59','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-06 22:41:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703993344033427',5373,'121670397503','725765052063','1.00','250','retail','0','2022-12-07 10:49:07','','','','175','Cash',0.00,'250','','','12','','1','2022-12-07 04:49:10','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216703993463913273',5374,'121670397503','50112265','1.00','80','retail','0','2022-12-07 10:49:07','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-07 04:49:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704007320303223',5375,'121670399352','6161101606011','1.00','250','retail','0','2022-12-07 11:12:13','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-07 05:12:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704013880332020',5376,'121670400738','6161101561280','1.00','350','retail','0','2022-12-07 11:23:09','','','','190','Cash',0.00,'350','','','12','','1','2022-12-07 05:23:12','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704069120332020',5377,'121670401394','6161101601979','1.00','250','retail','0','2022-12-07 12:55:29','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-07 06:55:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704069290303223',5378,'121670401394','5060639129003','1.00','250','retail','0','2022-12-07 12:55:29','','','','153','Cash',0.00,'250','','','12','','1','2022-12-07 06:55:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704071000303223',5379,'121670406935','3155930006015','3.00','750','retail','0','2022-12-07 12:58:20','','','','188','Cash',0.00,'250','','','12','','1','2022-12-07 06:58:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704083420630013',5380,'121670407104','5449000004864','1.00','250','retail','0','2022-12-07 13:19:24','','','','158','Cash',0.00,'250','','','12','','1','2022-12-07 07:19:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704083523013273',5381,'121670407104','5449000000286','1.00','250','retail','0','2022-12-07 13:19:24','','','','158','Cash',0.00,'250','','','12','','1','2022-12-07 07:19:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704083636363603',5382,'121670407104','6161101602372','2.00','500','retail','0','2022-12-07 13:19:24','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-07 07:19:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704099896383603',5383,'121670408388','5010232965096','1.00','600','retail','0','2022-12-07 13:46:53','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-07 07:48:50','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704100043110273',5384,'121670408388','40262144','1.00','200','retail','0','2022-12-07 13:46:53','','','','125','Cash',0.00,'200','','','12','','1','2022-12-07 07:48:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704100126313603',5385,'121670408388','5060639129003','1.00','250','retail','0','2022-12-07 13:46:53','','','','153','Cash',0.00,'250','','','12','','1','2022-12-07 07:48:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704116140332020',5386,'121670410131','3155930006015','1.00','250','retail','0','2022-12-07 14:13:35','','','','188','Cash',0.00,'250','','','12','','1','2022-12-07 08:13:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704280783210273',5387,'121670423477','6164001199331','2.00','140','retail','0','2022-12-07 18:48:00','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-07 12:48:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','30.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704285980303223',5388,'121670428086','5000267165806','1.00','10000','retail','0','2022-12-07 19:00:19','','','','7531','Cash',0.00,'10000','','','12','','1','2022-12-07 13:00:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704286652033268',5389,'121670428086','5018907194802','2.00','300','retail','0','2022-12-07 19:00:19','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-07 13:00:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704287456343603',5390,'121670428086','8712000900663','4.00','1200','retail','0','2022-12-07 19:00:19','','','','174','Cash',0.00,'300','','','12','','1','2022-12-07 13:00:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704361472033216',5391,'121670435742','5000267024011','1.00','4000','retail','0','2022-12-07 21:02:28','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-07 15:02:32','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704383653340320',5392,'121670438356','6161101602938','1.00','250','retail','0','2022-12-07 22:05:57','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-07 16:06:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704383793313273',5393,'121670438356','90162602','1.00','230','retail','0','2022-12-07 22:05:57','','','','147','Cash',0.00,'230','','','12','','1','2022-12-07 16:06:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704405586353603',5394,'121670440532','6161101603379','1.00','250','retail','0','2022-12-07 22:15:58','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-07 16:16:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704406999033927',5395,'121670440564','5010103930628','1.00','1750','retail','0','2022-12-07 22:18:51','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-07 16:19:00','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704407311033127',5396,'121670440564','50112265','1.00','80','retail','0','2022-12-07 22:18:51','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-07 16:19:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704408077033727',5397,'121670440742','5449000131836','2.00','160','retail','0','2022-12-07 22:20:08','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-07 16:20:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704408654520820',5398,'121670440812','1000','1.00','270','retail','0','2022-12-07 22:21:06','','','','192','Cash',0.00,'270','','','12','','1','2022-12-07 16:21:09','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704417823417273',5399,'121670440872','6161101603379','4.00','1000','retail','0','2022-12-07 22:36:23','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-07 16:36:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704422094630413',5400,'121670441793','6161101561021','1.00','1400','retail','0','2022-12-07 22:43:30','','','','836','Cash',0.00,'1400','','','12','','1','2022-12-07 16:43:40','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704432016303603',5401,'121670442222','1000','1.00','270','retail','0','2022-12-07 23:00:02','','','','192','Cash',0.00,'270','','','12','','1','2022-12-07 17:00:05','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704435272033253',5402,'121670443206','5449000004864','1.00','250','retail','0','2022-12-07 23:05:40','','','','158','Cash',0.00,'250','','','12','','1','2022-12-07 17:05:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704435393340320',5403,'121670443206','5010103930628','1.00','1750','retail','0','2022-12-07 23:05:40','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-07 17:05:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704448960332020',5404,'121670443855','6161101603324','2.00','500','retail','0','2022-12-07 23:28:17','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-07 17:28:26','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704467233222234',5405,'121670446699','6161101606011','4.00','1000','retail','0','2022-12-07 23:58:44','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-07 17:58:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704482344033427',5406,'121670446728','6002323400639','1.00','2000','retail','0','2022-12-08 00:26:27','','','','1300','Cash',0.00,'2000','','','12','','1','2022-12-07 18:26:37','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704483083340320',5407,'121670446728','8712000900045','6.00','1800','retail','0','2022-12-08 00:26:27','','','','182','Cash',0.00,'300','','','12','','1','2022-12-07 18:26:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704483364630413',5408,'121670446728','3024482270123','1.00','9700','retail','0','2022-12-08 00:26:27','','','','7200','Cash',0.00,'9700','','','12','','1','2022-12-07 18:26:37','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704483860332020',5409,'121670446728','5011013100132','1.00','2800','retail','0','2022-12-08 00:26:27','','','','1916','Cash',0.00,'2800','','','12','','1','2022-12-07 18:26:37','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704494056303603',5410,'121670448398','6161101605458','2.00','540','retail','0','2022-12-08 00:43:42','','','','182','Cash',0.00,'270','','','12','','1','2022-12-07 18:43:49','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704494211033127',5411,'121670448398','6161101603379','1.00','250','retail','0','2022-12-08 00:43:42','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-07 18:43:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704505063340320',5412,'121670450447','3155930006015','1.00','250','retail','0','2022-12-08 01:01:47','','','','188','Cash',0.00,'250','','','12','','1','2022-12-07 19:01:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704513165630513',5413,'121670451306','6161101602372','1.00','250','retail','0','2022-12-08 01:15:35','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-07 19:15:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704513353513273',5414,'121670451306','6161101604406','2.00','500','retail','0','2022-12-08 01:15:35','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-07 19:15:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704520442033202',5415,'121670451340','5010103930628','1.00','1750','retail','0','2022-12-08 01:27:48','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-07 19:27:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704520676363603',5416,'121670451340','50112265','3.00','240','retail','0','2022-12-08 01:27:48','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-07 19:27:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704524500332020',5417,'121670452079','8719327068540','1.00','300','retail','0','2022-12-08 01:34:11','','','','225','Cash',0.00,'300','','','12','','1','2022-12-07 19:34:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704543875630513',5418,'121670452458','4820229031984','1.00','900','retail','0','2022-12-08 02:08:04','','','','650','Cash',0.00,'900','','','12','','1','2022-12-07 20:14:20','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704544376333603',5419,'121670452458','54493360','1.00','80','retail','0','2022-12-08 02:08:04','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-07 20:14:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704544833340320',5420,'121670452458','6161101604406','2.00','500','retail','0','2022-12-08 02:08:04','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-07 20:14:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704550636363603',5421,'121670454862','8712000900045','1.00','300','retail','0','2022-12-08 02:17:44','','','','182','Cash',0.00,'300','','','12','','1','2022-12-07 20:17:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704979283340320',5422,'121670495910','5010103800457','1.00','2300','retail','0','2022-12-08 14:14:28','','','','1699','Cash',0.00,'2300','','','12','','1','2022-12-08 08:18:11','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704980673340320',5423,'121670495910','6001108028044','1.00','250','retail','0','2022-12-08 14:14:28','','','','201','Cash',0.00,'250','','','12','','1','2022-12-08 08:18:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216704985076303603',5424,'121670498294','6161101606011','2.00','500','retail','0','2022-12-08 14:21:48','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-08 08:21:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705016966033627',5425,'121670499043','1000','1.00','270','retail','0','2022-12-08 15:15:08','','','','192','Cash',0.00,'270','','','12','','1','2022-12-08 09:15:12','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705017073320000',5426,'121670499043','54491069','1.00','80','retail','0','2022-12-08 15:15:08','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 09:15:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705020373350320',5427,'121670501714','6008165007784','1.00','370','retail','0','2022-12-08 15:20:49','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-08 09:20:52','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705020480332020',5428,'121670501714','6161101602938','6.00','1500','retail','0','2022-12-08 15:20:49','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-08 09:20:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705025260332020',5429,'121670502054','6161101603379','3.00','750','retail','0','2022-12-08 15:28:47','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-08 09:28:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705055353015273',5430,'121670502531','3155930006015','3.00','750','retail','0','2022-12-08 16:18:56','','','','188','Cash',0.00,'250','','','12','','1','2022-12-08 10:18:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705057093017273',5431,'121670505540','6161101603379','2.00','500','retail','0','2022-12-08 16:22:00','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-08 10:22:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705057200303223',5432,'121670505540','6161101606011','1.00','250','retail','0','2022-12-08 16:22:00','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-08 10:22:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705098300630013',5433,'121670509261','1000','1.00','270','retail','0','2022-12-08 17:30:41','','','','192','Cash',0.00,'270','','','12','','1','2022-12-08 11:32:27','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705098403350320',5434,'121670509261','6164001199331','1.00','70','retail','0','2022-12-08 17:30:41','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-08 11:32:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705108400033027',5435,'121670510823','6161101561280','1.00','350','retail','0','2022-12-08 17:47:21','','','','190','Cash',0.00,'350','','','12','','1','2022-12-08 11:47:29','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705125793115273',5436,'121670510851','6161101602372','2.00','500','retail','0','2022-12-08 18:16:20','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-08 12:16:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705141162033214',5437,'121670512584','6002886001274','1.00','1900','retail','0','2022-12-08 18:43:57','','','','1110','Cash',0.00,'1900','','','12','','1','2022-12-08 12:46:02','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705142360303223',5438,'121670512584','8712000900045','1.00','300','retail','0','2022-12-08 18:43:57','','','','182','Cash',0.00,'300','','','12','','1','2022-12-08 12:46:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705165572033256',5439,'121670516435','6161101605458','1.00','270','retail','0','2022-12-08 19:23:25','','','','182','Cash',0.00,'270','','','12','','1','2022-12-08 13:23:28','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705165655033527',5440,'121670516435','5018907197803','1.00','100','retail','0','2022-12-08 19:23:25','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-08 13:23:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705165896383603',5441,'121670516435','6161101603379','4.00','1000','retail','0','2022-12-08 19:23:25','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-08 13:23:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705166050303223',5442,'121670516435','8712000900663','2.00','600','retail','0','2022-12-08 19:23:25','','','','174','Cash',0.00,'300','','','12','','1','2022-12-08 13:23:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','20.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705166583116273',5443,'121670516610','8906054940410','1.00','500','retail','0','2022-12-08 19:25:01','','','','305','Cash',0.00,'500','','','12','','1','2022-12-08 13:25:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705166807637123',5444,'121670516610','6161101602372','1.00','250','retail','0','2022-12-08 19:25:01','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-08 13:25:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705167016303603',5445,'121670516610','6161101603379','1.00','250','retail','0','2022-12-08 19:25:01','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-08 13:25:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705190466343603',5446,'121670518041','5000267024011','1.00','4000','retail','0','2022-12-08 20:10:29','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-08 14:10:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705194293350320',5447,'121670518041','50112265','1.00','80','retail','0','2022-12-08 20:10:29','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-08 14:10:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705215522033251',5448,'121670521539','6161101603379','7.00','1750','retail','0','2022-12-08 20:47:56','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-08 14:48:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'7.00','29.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705216111033127',5449,'121670521539','6161101601979','1.00','250','retail','0','2022-12-08 20:47:56','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-08 14:48:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705216266033627',5450,'121670521539','6161101605458','1.00','270','retail','0','2022-12-08 20:47:56','','','','182','Cash',0.00,'270','','','12','','1','2022-12-08 14:48:02','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705216353216273',5451,'121670521539','5018907197803','1.00','100','retail','0','2022-12-08 20:47:56','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-08 14:48:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705216472630213',5452,'121670521539','8712000900663','1.00','300','retail','0','2022-12-08 20:47:56','','','','174','Cash',0.00,'300','','','12','','1','2022-12-08 14:48:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705216756373603',5453,'121670521539','6161101606820','1.00','250','retail','0','2022-12-08 20:47:56','','','','159','Cash',0.00,'250','','','12','','1','2022-12-08 14:48:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705236600332020',5454,'121670521684','4820229031984','1.00','900','retail','0','2022-12-08 21:21:01','','','','650','Cash',0.00,'900','','','12','','1','2022-12-08 15:21:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705237352630213',5455,'121670523666','54491069','1.00','80','retail','0','2022-12-08 21:22:16','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 15:22:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705270344033427',5456,'121670523741','54493360','1.00','80','retail','0','2022-12-08 22:17:27','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 16:17:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705270476343603',5457,'121670523741','6164001199331','1.00','70','retail','0','2022-12-08 22:17:27','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-08 16:17:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705297392630213',5458,'121670527053','6161101602051','1.00','550','retail','0','2022-12-08 23:02:20','','','','392','Cash',0.00,'550','','','12','','1','2022-12-08 17:02:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705300823630313',5459,'121670529747','5000267014609','1.00','1500','retail','0','2022-12-08 23:08:33','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-08 17:08:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705301123630313',5460,'121670529747','5060608740253','1.00','80','retail','0','2022-12-08 23:08:33','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-08 17:08:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705301533311273',5461,'121670530117','8712000900045','3.00','900','retail','0','2022-12-08 23:11:44','','','','182','Cash',0.00,'300','','','12','','1','2022-12-08 17:11:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','25.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705301676363603',5462,'121670530117','6161101602372','3.00','750','retail','0','2022-12-08 23:11:44','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-08 17:11:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','20.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705301802033210',5463,'121670530117','024000150138','1.00','300','retail','0','2022-12-08 23:11:44','','','','205','Cash',0.00,'300','','','12','','1','2022-12-08 17:11:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705302853350320',5464,'121670530117','5010232953994','2.00','1200','retail','0','2022-12-08 23:11:44','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-08 17:11:55','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705302967037123',5465,'121670530117','3086120600051','1.00','80','retail','0','2022-12-08 23:11:44','','','','59.74','Cash',0.00,'80','','','12','','1','2022-12-08 17:11:55','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705310570332020',5466,'121670531038','6164001199331','1.00','70','retail','0','2022-12-08 23:24:45','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-08 17:24:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705310693791021',5467,'121670531038','5018907194802','1.00','150','retail','0','2022-12-08 23:24:45','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-08 17:24:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705310843350320',5468,'121670531038','5010103930628','1.00','1750','retail','0','2022-12-08 23:24:45','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-08 17:24:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705322299033927',5469,'121670531090','5010103930628','1.00','1750','retail','0','2022-12-08 23:44:23','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-08 17:45:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705322513312273',5470,'121670531090','54493360','2.00','160','retail','0','2022-12-08 23:44:23','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 17:45:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705322622033227',5471,'121670531090','50112265','2.00','160','retail','0','2022-12-08 23:44:23','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-08 17:45:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705338277033727',5472,'121670532321','6008165007982','3.00','1050','retail','0','2022-12-09 00:12:59','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-08 18:13:40','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705338422033283',5473,'121670532321','6008165007968','1.00','350','retail','0','2022-12-09 00:12:59','','','','308.5','Cash',0.00,'350','','','12','','1','2022-12-08 18:13:40','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705338523350320',5474,'121670532321','3086120600020','1.00','120','retail','0','2022-12-09 00:12:59','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-08 18:13:40','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705338616363603',5475,'121670532321','54491069','2.00','160','retail','0','2022-12-09 00:12:59','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 18:13:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705339323630313',5476,'121670532321','5010232965096','1.00','600','retail','0','2022-12-09 00:12:59','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-08 18:13:40','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705339788033827',5477,'121670532321','50112753','1.00','80','retail','0','2022-12-09 00:12:59','','','','56','Cash',0.00,'80','','','12','','1','2022-12-08 18:13:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705373000303223',5478,'121670537226','6161101560832','1.00','350','retail','0','2022-12-09 01:10:40','','','','245','Cash',0.00,'350','','','12','','1','2022-12-08 19:11:21','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705374402033247',5479,'121670537226','54491069','1.00','80','retail','0','2022-12-09 01:10:40','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-08 19:11:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705407000033027',5480,'121670540555','6161101602051','1.00','550','retail','0','2022-12-09 02:08:39','','','','392','Cash',0.00,'550','','','12','','1','2022-12-08 20:08:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705407132033270',5481,'121670540555','8712000900045','1.00','300','retail','0','2022-12-09 02:08:39','','','','182','Cash',0.00,'300','','','12','','1','2022-12-08 20:08:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705476000033027',5482,'121670547590','5010232965096','1.00','600','retail','0','2022-12-09 04:00:01','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-08 22:00:05','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705610512033201',5483,'121670560983','6161101561563','1.00','350','retail','0','2022-12-09 07:44:12','','','','197','Cash',0.00,'350','','','12','','1','2022-12-09 01:44:15','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705684363614273',5484,'121670568428','6161101604406','1.00','250','retail','0','2022-12-09 09:47:16','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 03:47:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705705255033527',5485,'121670568442','5010103930628','1.00','1750','retail','0','2022-12-09 10:22:33','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-09 04:41:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705705533715273',5486,'121670568442','50112265','1.00','80','retail','0','2022-12-09 10:22:33','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-09 04:41:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705761056303603',5487,'121670576101','4820229031984','1.00','900','retail','0','2022-12-09 11:56:31','','','','650','Cash',0.00,'900','','','12','','1','2022-12-09 05:56:35','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705761620332020',5488,'121670576101','6009675642045','1.00','1500','retail','0','2022-12-09 11:56:31','','','','700','Cash',0.00,'1500','','','12','','1','2022-12-09 05:56:35','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705761902033216',5489,'121670576101','50112753','1.00','80','retail','0','2022-12-09 11:56:31','','','','56','Cash',0.00,'80','','','12','','1','2022-12-09 05:56:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705839456343603',5490,'121670578705','6161100421554','1.00','450','retail','0','2022-12-09 14:06:13','','','','244','Cash',0.00,'450','','','12','','1','2022-12-09 08:08:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705839630332020',5491,'121670578705','1000','1.00','270','retail','0','2022-12-09 14:06:13','','','','192','Cash',0.00,'270','','','12','','1','2022-12-09 08:08:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705839722033293',5492,'121670578705','5018907194802','1.00','150','retail','0','2022-12-09 14:06:13','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-09 08:08:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705841506353603',5493,'121670584138','6161101604406','3.00','750','retail','0','2022-12-09 14:09:22','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 08:09:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705841613811273',5494,'121670584138','3155930006015','3.00','750','retail','0','2022-12-09 14:09:22','','','','188','Cash',0.00,'250','','','12','','1','2022-12-09 08:09:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','27.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705961163350320',5495,'121670594483','5010103930666','1.00','850','retail','0','2022-12-09 17:36:57','','','','586','Cash',0.00,'850','','','12','','1','2022-12-09 11:37:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705965422202003',5496,'121670594483','5018907194802','1.00','150','retail','0','2022-12-09 17:36:57','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-09 11:37:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216705966163350320',5497,'121670594483','5449000188342','1.00','100','retail','0','2022-12-09 17:36:57','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-09 11:37:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706001750332020',5498,'121670596625','1000','1.00','270','retail','0','2022-12-09 18:36:16','','','','192','Cash',0.00,'270','','','12','','1','2022-12-09 12:36:20','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706040240332020',5499,'121670600182','6161101602167','1.00','600','retail','0','2022-12-09 19:40:40','','','','418','Cash',0.00,'600','','','12','','1','2022-12-09 13:41:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706040390630013',5500,'121670600182','6164001199010','1.00','100','retail','0','2022-12-09 19:40:40','','','','38','Cash',0.00,'100','','','12','','1','2022-12-09 13:41:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706051077033727',5501,'121670604094','6161101602167','1.00','600','retail','0','2022-12-09 19:58:28','','','','418','Cash',0.00,'600','','','12','','1','2022-12-09 13:59:51','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706112550332020',5502,'121670605192','6008165007814','2.00','700','retail','0','2022-12-09 21:41:19','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-09 15:43:10','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706112783360320',5503,'121670605192','5449000014535','2.00','240','retail','0','2022-12-09 21:41:19','','','','64','Cash',0.00,'120','','','12','','1','2022-12-09 15:43:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706114402033241',5504,'121670611391','6161101603379','5.00','1250','retail','0','2022-12-09 21:44:01','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 15:44:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5.00','22.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706121652033212',5505,'121670611446','6161101605465','1.00','800','retail','0','2022-12-09 21:56:06','','','','501','Cash',0.00,'800','','','12','','1','2022-12-09 15:56:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706128490303223',5506,'121670612171','5010103930628','1.00','1750','retail','0','2022-12-09 22:07:30','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-09 16:07:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706144461630113',5507,'121670612855','6161101604406','6.00','1500','retail','0','2022-12-09 22:34:19','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 16:41:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706144582033244',5508,'121670612855','8712000900045','4.00','1200','retail','0','2022-12-09 22:34:19','','','','182','Cash',0.00,'300','','','12','','1','2022-12-09 16:41:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','21.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706150530303223',5509,'121670614917','6161101603379','3.00','750','retail','0','2022-12-09 22:45:10','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 16:45:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706150702033205',5510,'121670614917','8712000900663','13.00','3900','retail','0','2022-12-09 22:45:10','','','','174','Cash',0.00,'300','','','12','','1','2022-12-09 16:45:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'13','17.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706150811630113',5511,'121670614917','87303322','1.00','80','retail','0','2022-12-09 22:45:10','','','','23','Cash',0.00,'80','','','12','','1','2022-12-09 16:45:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706151096303603',5512,'121670614917','90399480','1.00','100','retail','0','2022-12-09 22:45:10','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-09 16:45:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706164222033246',5513,'121670615116','8719327068540','1.00','300','retail','0','2022-12-09 23:08:22','','','','225','Cash',0.00,'300','','','12','','1','2022-12-09 17:10:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706164288033827',5514,'121670615116','8719327068540','1.00','300','retail','0','2022-12-09 23:08:22','','','','225','Cash',0.00,'300','','','12','','1','2022-12-09 17:10:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706164430303223',5515,'121670615116','6161101602051','1.00','550','retail','0','2022-12-09 23:08:22','','','','392','Cash',0.00,'550','','','12','','1','2022-12-09 17:10:49','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706165013115273',5516,'121670615116','6161101604406','2.00','500','retail','0','2022-12-09 23:08:22','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 17:10:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706166588033827',5517,'121670616651','54491069','1.00','80','retail','0','2022-12-09 23:12:12','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-09 17:12:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706166663116273',5518,'121670616651','5018907194802','1.00','150','retail','0','2022-12-09 23:12:12','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-09 17:12:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706168111630113',5519,'121670616800','1000','1.00','270','retail','0','2022-12-09 23:13:32','','','','192','Cash',0.00,'270','','','12','','1','2022-12-09 17:13:59','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706190950310062',5520,'121670616841','6164001199010','1.00','100','retail','0','2022-12-09 23:52:08','','','','38','Cash',0.00,'100','','','12','','1','2022-12-09 17:52:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706191277033727',5521,'121670616841','6002886001410','1.00','1900','retail','0','2022-12-09 23:52:08','','','','1110','Cash',0.00,'1900','','','12','','1','2022-12-09 17:52:11','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706193606363603',5522,'121670619133','6161101602204','1.00','450','retail','0','2022-12-09 23:56:01','','','','268','Cash',0.00,'450','','','12','','1','2022-12-09 17:56:57','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706197396333603',5523,'121670619723','6161100421615','1.00','500','retail','0','2022-12-10 00:02:20','','','','310','Cash',0.00,'500','','','12','','1','2022-12-09 18:02:28','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706198610303223',5524,'121670619750','5010103930666','2.00','1700','retail','0','2022-12-10 00:04:21','','','','586','Cash',0.00,'850','','','12','','1','2022-12-09 18:05:37','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706210422033201',5525,'121670619939','1000','1.00','270','retail','0','2022-12-10 00:24:03','','','','192','Cash',0.00,'270','','','12','','1','2022-12-09 18:24:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706218386333603',5526,'121670621074','8712000900045','3.00','900','retail','0','2022-12-10 00:37:35','','','','182','Cash',0.00,'300','','','12','','1','2022-12-09 18:37:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706218540303223',5527,'121670621074','6161101603379','1.00','250','retail','0','2022-12-10 00:37:35','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 18:37:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706219152033291',5528,'121670621874','6161101603379','3.00','750','retail','0','2022-12-10 00:38:49','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 18:38:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706233432033233',5529,'121670621939','6161101603324','4.00','1000','retail','0','2022-12-10 01:02:24','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-09 19:02:27','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706237343217273',5530,'121670623348','6161101604406','3.00','750','retail','0','2022-12-10 01:08:55','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 19:08:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706303363630313',5531,'121670630316','6001495201501','1.00','1400','retail','0','2022-12-10 03:05:19','','','','628','Cash',0.00,'1400','','','12','','1','2022-12-09 21:05:24','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706304477033727',5532,'121670630316','6161101603379','1.00','250','retail','0','2022-12-10 03:05:19','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 21:05:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706308433318273',5533,'121670630726','6161101604406','1.00','250','retail','0','2022-12-10 03:07:24','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 21:07:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706311383360320',5534,'121670630849','6161101604406','2.00','500','retail','0','2022-12-10 03:12:33','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-09 21:12:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706311530303223',5535,'121670630849','6161101602921','1.00','250','retail','0','2022-12-10 03:12:33','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-09 21:12:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706324482033242',5536,'121670631160','6161101603379','3.00','750','retail','0','2022-12-10 03:35:53','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 21:38:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706324720332020',5537,'121670631160','6161101602921','3.00','750','retail','0','2022-12-10 03:35:53','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-09 21:38:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706324853314273',5538,'121670631160','5011007003654','1.00','1700','retail','0','2022-12-10 03:35:53','','','','1085','Cash',0.00,'1700','','','12','','1','2022-12-09 21:38:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706325003360320',5539,'121670631160','40262144','1.00','200','retail','0','2022-12-10 03:35:53','','','','125','Cash',0.00,'200','','','12','','1','2022-12-09 21:38:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706325100303223',5540,'121670631160','5449000028976','1.00','150','retail','0','2022-12-10 03:35:53','','','','103','Cash',0.00,'150','','','12','','1','2022-12-09 21:38:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706325533360320',5541,'121670631160','6008165007784','1.00','370','retail','0','2022-12-10 03:35:53','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-09 21:38:54','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706342263360320',5542,'121670632736','6161101603379','4.00','1000','retail','0','2022-12-10 04:03:47','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-09 22:03:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706645226323603',5543,'121670664034','6008165007784','1.00','370','retail','0','2022-12-10 12:29:05','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-10 06:29:09','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706645446343603',5544,'121670664034','6161101605458','2.00','540','retail','0','2022-12-10 12:29:05','','','','182','Cash',0.00,'270','','','12','','1','2022-12-10 06:29:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706648100332020',5545,'121670664553','6008165007814','1.00','350','retail','0','2022-12-10 12:34:09','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-10 06:35:57','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706648273360320',5546,'121670664553','6161101602921','1.00','250','retail','0','2022-12-10 12:34:09','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-10 06:35:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706648370332020',5547,'121670664553','6161101605458','1.00','270','retail','0','2022-12-10 12:34:09','','','','182','Cash',0.00,'270','','','12','','1','2022-12-10 06:35:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706648486343603',5548,'121670664553','5018907197803','1.00','100','retail','0','2022-12-10 12:34:09','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-10 06:35:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706650980332020',5549,'121670664959','6161101603379','1.00','250','retail','0','2022-12-10 12:38:18','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-10 06:38:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706718513360320',5550,'121670671843','6161101606011','12.00','3000','retail','0','2022-12-10 14:30:52','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-10 08:30:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'12','20.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706842176313603',5551,'121670684207','6161101603379','6.00','1500','retail','0','2022-12-10 17:56:58','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-10 12:01:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','13.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706863836320320',5552,'121670685825','6161101606561','1.00','1850','retail','0','2022-12-10 18:33:04','','','','1125','Cash',0.00,'1850','','','12','','1','2022-12-10 12:33:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706875530303223',5553,'121670686399','6161100420786','1.00','400','retail','0','2022-12-10 18:52:44','','','','290','Cash',0.00,'400','','','12','','1','2022-12-10 12:52:50','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706875643815273',5554,'121670686399','6164001199331','1.00','70','retail','0','2022-12-10 18:52:44','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-10 12:52:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706907543917273',5555,'121670687572','6001495080007','1.00','1000','retail','0','2022-12-10 19:45:54','','','','668','Cash',0.00,'1000','','','12','','1','2022-12-10 13:52:16','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706914180332020',5556,'121670691399','6161101606011','6.00','1500','retail','0','2022-12-10 19:56:59','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-10 13:57:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','20.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706949022033294',5557,'121670694891','6161101604703','6.00','1500','retail','0','2022-12-10 20:55:02','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-10 14:55:05','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','15.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706951586353603',5558,'121670694906','6161101603379','2.00','500','retail','0','2022-12-10 20:59:40','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-10 14:59:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706951700332020',5559,'121670694906','6164002099036','1.00','120','retail','0','2022-12-10 20:59:40','','','','40','Cash',0.00,'120','','','12','','1','2022-12-10 14:59:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706951802033215',5560,'121670694906','6164001199034','1.00','50','retail','0','2022-12-10 20:59:40','','','','19','Cash',0.00,'50','','','12','','1','2022-12-10 14:59:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706954122033245',5561,'121670695400','6161101603379','2.00','500','retail','0','2022-12-10 21:03:49','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-10 15:03:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706954219630913',5562,'121670695400','6164001199034','1.00','50','retail','0','2022-12-10 21:03:49','','','','19','Cash',0.00,'50','','','12','','1','2022-12-10 15:03:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706954299630913',5563,'121670695400','6164001199010','1.00','100','retail','0','2022-12-10 21:03:49','','','','38','Cash',0.00,'100','','','12','','1','2022-12-10 15:03:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706985883915273',5564,'121670695435','6161101605458','2.00','540','retail','0','2022-12-10 21:56:47','','','','182','Cash',0.00,'270','','','12','','1','2022-12-10 15:57:08','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706986066303603',5565,'121670695435','6164002099036','1.00','120','retail','0','2022-12-10 21:56:47','','','','40','Cash',0.00,'120','','','12','','1','2022-12-10 15:57:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','56.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706998823360320',5566,'121670698630','6161101606011','5.00','1250','retail','0','2022-12-10 22:19:06','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-10 16:19:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','14.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216706999453360320',5567,'121670698630','6161101603379','4.00','1000','retail','0','2022-12-10 22:19:06','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-10 16:19:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707038246323603',5568,'121670699951','6161101606011','4.00','1000','retail','0','2022-12-10 23:23:44','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-10 17:24:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707060652302350',5569,'121670703848','5000292262716','1.00','1800','retail','0','2022-12-11 00:02:43','','','','1250','Cash',0.00,'1800','','','12','','1','2022-12-10 18:04:40','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707061626363603',5570,'121670703848','50112265','1.00','80','retail','0','2022-12-11 00:02:43','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-10 18:04:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707063260303223',5571,'121670706282','6161101604703','6.00','1500','retail','0','2022-12-11 00:05:27','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-10 18:05:30','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707102640332020',5572,'121670710252','5000289020701','1.00','2000','retail','0','2022-12-11 01:11:04','','','','1540','Cash',0.00,'2000','','','12','','1','2022-12-10 19:11:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707118912033281',5573,'121670711883','6161101600941','1.00','750','retail','0','2022-12-11 01:38:24','','','','544','Cash',0.00,'750','','','12','','1','2022-12-10 19:38:26','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707119030332020',5574,'121670711883','6164001199010','1.00','100','retail','0','2022-12-11 01:38:24','','','','38','Cash',0.00,'100','','','12','','1','2022-12-10 19:38:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707125666033627',5575,'121670711908','5000267114279','1.00','25000','retail','0','2022-12-11 01:49:26','','','','21211','Cash',0.00,'25000','','','12','','1','2022-12-10 19:49:29','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707130860303223',5576,'121670712684','6161101602167','1.00','600','retail','0','2022-12-11 01:58:25','','','','418','Cash',0.00,'600','','','12','','1','2022-12-10 19:59:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707130950303223',5577,'121670712684','6164001199034','1.00','50','retail','0','2022-12-11 01:58:25','','','','19','Cash',0.00,'50','','','12','','1','2022-12-10 19:59:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707131055033527',5578,'121670712684','6164001199331','1.00','70','retail','0','2022-12-11 01:58:25','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-10 19:59:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707146241630113',5579,'121670714617','8000530300474','1.00','1600','retail','0','2022-12-11 02:23:44','','','','1050','Cash',0.00,'1600','','','12','','1','2022-12-10 20:23:47','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707320156313603',5580,'121670732007','6161101600934','1.00','1600','retail','0','2022-12-11 07:13:36','','','','1144','Cash',0.00,'1600','','','12','','1','2022-12-11 01:13:39','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707320436343603',5581,'121670732032','6161101602372','3.00','750','retail','0','2022-12-11 07:14:53','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-11 01:14:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','17.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707320936393603',5582,'121670732032','6161101603324','1.00','250','retail','0','2022-12-11 07:14:53','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-11 01:14:59','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707322250303223',5583,'121670732103','6161101602921','3.00','750','retail','0','2022-12-11 07:17:34','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-11 01:17:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707322543552063',5584,'121670732103','6161101603379','3.00','750','retail','0','2022-12-11 07:17:34','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-11 01:17:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707331543370320',5585,'121670732261','5018907194802','1.00','150','retail','0','2022-12-11 07:32:35','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-11 01:32:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707695092033259',5586,'121670769496','5010314101015','1.00','2600','retail','0','2022-12-11 17:38:30','','','','1854','Cash',0.00,'2600','','','12','','1','2022-12-11 11:42:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707715533370320',5587,'121670769774','5010103930628','1.00','1750','retail','0','2022-12-11 18:13:00','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-11 12:13:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707715791222032',5588,'121670769774','5449000000286','1.00','250','retail','0','2022-12-11 18:13:00','','','','158','Cash',0.00,'250','','','12','','1','2022-12-11 12:13:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707761800332020',5589,'121670771588','6161101604703','1.00','250','retail','0','2022-12-11 19:29:42','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-11 13:30:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707762713370320',5590,'121670776254','6161101605458','1.00','270','retail','0','2022-12-11 19:31:13','','','','182','Cash',0.00,'270','','','12','','1','2022-12-11 13:31:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707762903712273',5591,'121670776277','6161101605458','1.00','270','retail','0','2022-12-11 19:31:30','','','','182','Cash',0.00,'270','','','12','','1','2022-12-11 13:31:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707763110332020',5592,'121670776296','6161101605458','1.00','270','retail','0','2022-12-11 19:31:51','','','','182','Cash',0.00,'270','','','12','','1','2022-12-11 13:32:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707763710332020',5593,'121670776324','6161101603324','4.00','1000','retail','0','2022-12-11 19:32:52','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-11 13:33:00','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707764100332020',5594,'121670776381','6161101602938','3.00','750','retail','0','2022-12-11 19:33:31','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-11 13:33:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707764436343603',5595,'121670776422','6164001199331','1.00','70','retail','0','2022-12-11 19:34:03','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-11 13:34:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707764643102223',5596,'121670776450','6161101606011','1.00','250','retail','0','2022-12-11 19:34:25','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-11 13:34:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707772300332020',5597,'121670776470','716165177364','1.00','250','retail','0','2022-12-11 19:47:10','','','','130','Cash',0.00,'250','','','12','','1','2022-12-11 13:47:17','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707801153811273',5598,'121670777239','90162602','4.00','920','retail','0','2022-12-11 20:36:33','','','','147','Cash',0.00,'230','','','12','','1','2022-12-11 14:40:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','17.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707801338630813',5599,'121670777239','6161101604703','2.00','500','retail','0','2022-12-11 20:36:33','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-11 14:40:07','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707801923811273',5600,'121670777239','5449000014535','1.00','120','retail','0','2022-12-11 20:36:33','','','','64','Cash',0.00,'120','','','12','','1','2022-12-11 14:40:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707812383812273',5601,'121670780409','6001108016034','1.00','500','retail','0','2022-12-11 20:53:59','','','','352','Cash',0.00,'500','','','12','','1','2022-12-11 14:54:07','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707871453370320',5602,'121670781249','1000','2.00','540','retail','0','2022-12-11 22:32:56','','','','192','Cash',0.00,'270','','','12','','1','2022-12-11 16:34:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707871756373603',5603,'121670781249','90490279','1.00','100','retail','0','2022-12-11 22:32:56','','','','68','Cash',0.00,'100','','','12','','1','2022-12-11 16:34:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707879060303223',5604,'121670787300','6161101602600','4.00','1000','retail','0','2022-12-11 22:45:21','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-11 16:45:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707879200033027',5605,'121670787300','6161101602938','4.00','1000','retail','0','2022-12-11 22:45:21','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-11 16:45:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707885822033227',5606,'121670787925','8712000900045','6.00','1800','retail','0','2022-12-11 22:56:22','','','','182','Cash',0.00,'300','','','12','','1','2022-12-11 16:56:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216707951936393603',5607,'121670788586','6161101560108','1.00','1100','retail','0','2022-12-12 00:46:34','','','','690','Cash',0.00,'1100','','','12','','1','2022-12-11 18:49:58','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708071720303223',5608,'121670805675','6161101604543','1.00','1800','retail','0','2022-12-12 04:06:37','','','','788','Cash',0.00,'1800','','','12','','1','2022-12-11 22:11:02','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708071966033627',5609,'121670805675','5449000000286','1.00','250','retail','0','2022-12-12 04:06:37','','','','158','Cash',0.00,'250','','','12','','1','2022-12-11 22:11:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708350540303332',5610,'121670835036','8712000900663','11.00','2750','retail','0','2022-12-12 11:52:19','','','','174','Cash',0.00,'250','','','12','','1','2022-12-12 05:52:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'11','26.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708350730303223',5611,'121670835036','5449000004864','1.00','250','retail','0','2022-12-12 11:52:19','','','','158','Cash',0.00,'250','','','12','','1','2022-12-12 05:52:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708351392321221',5612,'121670835036','6161101602938','2.00','500','retail','0','2022-12-12 11:52:19','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-12 05:52:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708436043416273',5613,'121670843583','6161101602600','2.00','500','retail','0','2022-12-12 14:13:43','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-12 08:13:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708436224630413',5614,'121670843583','6161101603324','2.00','500','retail','0','2022-12-12 14:13:43','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-12 08:13:45','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708513782033231',5615,'121670851370','6008165007784','1.00','370','retail','0','2022-12-12 16:23:11','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-12 10:23:22','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708513903513273',5616,'121670851370','6161101602921','3.00','750','retail','0','2022-12-12 16:23:11','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-12 10:23:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708648896383603',5617,'121670864878','6161101602921','2.00','500','retail','0','2022-12-12 20:08:10','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-12 14:08:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708674626630613',5618,'121670864896','5000267114293','1.00','28500','retail','0','2022-12-12 20:51:03','','','','18500','Cash',0.00,'28500','','','12','','1','2022-12-12 14:57:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708705983715273',5619,'121670868138','50196111','1.00','1500','retail','0','2022-12-12 21:43:18','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-12 15:45:58','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708718453380320',5620,'121670870798','6161101602051','1.00','550','retail','0','2022-12-12 22:04:19','','','','392','Cash',0.00,'550','','','12','','1','2022-12-12 16:05:54','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708718583718273',5621,'121670870798','54491069','1.00','80','retail','0','2022-12-12 22:04:19','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-12 16:05:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708758630332020',5622,'121670871955','3155930006015','7.00','1750','retail','0','2022-12-12 23:12:51','','','','188','Cash',0.00,'250','','','12','','1','2022-12-12 17:14:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'7','24.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708758802038288',5623,'121670871955','6161101603379','2.00','500','retail','0','2022-12-12 23:12:51','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-12 17:14:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708758920332020',5624,'121670871955','6161101602600','1.00','250','retail','0','2022-12-12 23:12:51','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-12 17:14:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708759310303223',5625,'121670871955','6161101606011','1.00','250','retail','0','2022-12-12 23:12:51','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-12 17:14:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708759703380320',5626,'121670871955','6161101603379','1.00','250','retail','0','2022-12-12 23:12:51','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-12 17:14:00','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708773677630713',5627,'121670876043','1000','1.00','270','retail','0','2022-12-12 23:36:08','','','','192','Cash',0.00,'270','','','12','','1','2022-12-12 17:36:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708775066303603',5628,'121670877383','6161100421509','1.00','1350','retail','0','2022-12-12 23:38:35','','','','787','Cash',0.00,'1350','','','12','','1','2022-12-12 17:39:15','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708775150332020',5629,'121670877383','6164001199331','1.00','70','retail','0','2022-12-12 23:38:35','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-12 17:39:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708789683380320',5630,'121670877557','5011013100132','1.00','2800','retail','0','2022-12-13 00:03:04','','','','1916','Cash',0.00,'2800','','','12','','1','2022-12-12 18:04:04','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708789844033427',5631,'121670877557','5449000028976','2.00','300','retail','0','2022-12-13 00:03:04','','','','103','Cash',0.00,'150','','','12','','1','2022-12-12 18:04:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708808422033280',5632,'121670879046','6161101606011','2.00','500','retail','0','2022-12-13 00:34:03','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-12 18:34:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708808591332253',5633,'121670880847','5000292001001','1.00','1600','retail','0','2022-12-13 00:34:20','','','','1141','Cash',0.00,'1600','','','12','','1','2022-12-12 18:35:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708850870332020',5634,'121670885079','5010103930628','1.00','1750','retail','0','2022-12-13 01:45:31','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-12 19:45:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708851303380320',5635,'121670885079','50112265','1.00','80','retail','0','2022-12-13 01:45:31','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-12 19:45:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708921892033212',5636,'121670892136','5011007003654','1.00','1700','retail','0','2022-12-13 03:43:09','','','','1085','Cash',0.00,'1700','','','12','','1','2022-12-12 21:43:11','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708927917322232',5637,'121670892194','1000','1.00','270','retail','0','2022-12-13 03:53:12','','','','192','Cash',0.00,'270','','','12','','1','2022-12-12 21:53:15','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708942423912273',5638,'121670892798','6161100421554','1.00','450','retail','0','2022-12-13 04:17:31','','','','244','Cash',0.00,'450','','','12','','1','2022-12-12 22:21:54','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216708942513912273',5639,'121670892798','50112265','1.00','80','retail','0','2022-12-13 04:17:31','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-12 22:21:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709018123018273',5640,'121670901791','6161101601979','6.00','1500','retail','0','2022-12-13 06:24:30','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-13 00:29:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','23.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709018230630013',5641,'121670901791','6161101602372','6.00','1500','retail','0','2022-12-13 06:24:30','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-13 00:29:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709018708202832',5642,'121670901791','6161101602938','6.00','1500','retail','0','2022-12-13 06:24:30','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-13 00:29:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709151371222032',5643,'121670915116','8712000900663','10.00','3000','retail','0','2022-12-13 10:06:04','','','','174','Cash',0.00,'300','','','12','','1','2022-12-13 04:06:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'10.00','27.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709151472033215',5644,'121670915116','5449000004864','1.00','250','retail','0','2022-12-13 10:06:04','','','','158','Cash',0.00,'250','','','12','','1','2022-12-13 04:06:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709151633111273',5645,'121670915116','5018907194802','4.00','600','retail','0','2022-12-13 10:06:04','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-13 04:06:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4.00','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709443070332020',5646,'121670944297','6161101561020','1.00','400','retail','0','2022-12-13 18:12:00','','','','210','Cash',0.00,'400','','','12','','1','2022-12-13 12:12:03','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709443192033234',5647,'121670944297','5060608740253','1.00','80','retail','0','2022-12-13 18:12:00','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-13 12:12:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709457172033275',5648,'121670945711','5010103930666','1.00','850','retail','0','2022-12-13 18:35:40','','','','586','Cash',0.00,'850','','','12','','1','2022-12-13 12:35:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709457264630413',5649,'121670945711','6161101606011','1.00','250','retail','0','2022-12-13 18:35:40','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-13 12:35:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709457390303223',5650,'121670945711','54491069','1.00','80','retail','0','2022-12-13 18:35:40','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-13 12:35:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709459066303603',5651,'121670945744','5000267114293','1.00','28500','retail','0','2022-12-13 18:38:27','','','','18500','Cash',0.00,'28500','','','12','','1','2022-12-13 12:38:30','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709493033033327',5652,'121670946783','6001108049582','1.00','1300','retail','0','2022-12-13 19:35:04','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-13 13:35:07','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709535076303603',5653,'121670949309','50112753','2.00','160','retail','0','2022-12-13 20:45:25','','','','56','Cash',0.00,'80','','','12','','1','2022-12-13 14:52:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709535240332020',5654,'121670949309','1000','1.00','270','retail','0','2022-12-13 20:45:25','','','','192','Cash',0.00,'270','','','12','','1','2022-12-13 14:52:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709539576353603',5655,'121670953944','1000','3.00','810','retail','0','2022-12-13 20:53:20','','','','192','Cash',0.00,'270','','','12','','1','2022-12-13 14:57:51','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709539670303223',5656,'121670953944','54491069','1.00','80','retail','0','2022-12-13 20:53:20','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-13 14:57:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709539773519273',5657,'121670953944','54493360','1.00','80','retail','0','2022-12-13 20:53:20','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-13 14:57:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709557782251333',5658,'121670954273','6001108049582','1.00','1300','retail','0','2022-12-13 21:22:59','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-13 15:24:01','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709577033731021',5659,'121670955842','6008165007784','1.00','370','retail','0','2022-12-13 21:55:04','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-13 15:55:16','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709598900332020',5660,'121670957717','082184090442','1.00','5300','retail','0','2022-12-13 22:31:30','','','','3450','Cash',0.00,'5300','','','12','','1','2022-12-13 16:31:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709599806383603',5661,'121670959899','6001452301862','1.00','1600','retail','0','2022-12-13 22:33:00','','','','1150','Cash',0.00,'1600','','','12','','1','2022-12-13 16:33:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709613111033127',5662,'121670960004','6161101604543','1.00','1800','retail','0','2022-12-13 22:55:16','','','','788','Cash',0.00,'1800','','','12','','1','2022-12-13 17:32:02','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709654476343603',5663,'121670963525','725765052063','1.00','250','retail','0','2022-12-14 00:04:09','','','','175','Cash',0.00,'250','','','12','','1','2022-12-13 18:04:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709657388033827',5664,'121670965474','6161101602167','1.00','600','retail','0','2022-12-14 00:08:59','','','','418','Cash',0.00,'600','','','12','','1','2022-12-13 18:10:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709659340332020',5665,'121670965807','024000150121','1.00','300','retail','0','2022-12-14 00:15:16','','','','205','Cash',0.00,'300','','','12','','1','2022-12-13 18:15:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709659476343603',5666,'121670965807','5018907194802','1.00','150','retail','0','2022-12-14 00:15:16','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-13 18:15:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709659610303223',5667,'121670965807','6161101602600','1.00','250','retail','0','2022-12-14 00:15:16','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-13 18:15:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709660496630613',5668,'121670965807','6164001199010','1.00','100','retail','0','2022-12-14 00:15:16','','','','38','Cash',0.00,'100','','','12','','1','2022-12-13 18:15:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709660623390320',5669,'121670965807','6161101603324','9.00','2250','retail','0','2022-12-14 00:15:16','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-13 18:15:23','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'9','9.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709660772033206',5670,'121670965807','6161101603379','6.00','1500','retail','0','2022-12-14 00:15:16','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-13 18:15:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709661150332020',5671,'121670965807','6161101602938','1.00','250','retail','0','2022-12-14 00:15:16','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-13 18:15:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709671356333603',5672,'121670966124','5010103930840','1.00','500','retail','0','2022-12-14 00:32:16','','','','335','Cash',0.00,'500','','','12','','1','2022-12-13 18:32:25','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709672962033227',5673,'121670967146','6001108016034','1.00','500','retail','0','2022-12-14 00:35:31','','','','352','Cash',0.00,'500','','','12','','1','2022-12-13 18:35:34','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709673312033237',5674,'121670967146','5060608740253','1.00','80','retail','0','2022-12-14 00:35:31','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-13 18:35:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709684186313603',5675,'121670967335','54493360','1.00','80','retail','0','2022-12-14 00:53:51','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-13 18:53:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709684302033248',5676,'121670967335','6161101601979','1.00','250','retail','0','2022-12-14 00:53:51','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-13 18:53:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709685092033258',5677,'121670968438','6008165007982','1.00','350','retail','0','2022-12-14 00:55:09','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-13 18:55:13','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709702063390320',5678,'121670970197','6161101604703','6.00','1500','retail','0','2022-12-14 01:24:03','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-13 19:25:03','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709702302033220',5679,'121670970197','90162602','1.00','230','retail','0','2022-12-14 01:24:03','','','','147','Cash',0.00,'230','','','12','','1','2022-12-13 19:25:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709702430332020',5680,'121670970197','6161101602372','1.00','250','retail','0','2022-12-14 01:24:03','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-13 19:25:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709718755033527',5681,'121670971866','4067700014535','1.00','5200','retail','0','2022-12-14 01:52:41','','','','3350','Cash',0.00,'5200','','','12','','1','2022-12-13 19:55:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709719000303223',5682,'121670971866','5018907194802','2.00','300','retail','0','2022-12-14 01:52:41','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-13 19:55:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709719136313603',5683,'121670971866','90162602','2.00','460','retail','0','2022-12-14 01:52:41','','','','147','Cash',0.00,'230','','','12','','1','2022-12-13 19:55:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709719600303223',5684,'121670971866','6008165007784','1.00','370','retail','0','2022-12-14 01:52:41','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-13 19:55:12','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709749383223032',5685,'121670974930','725765052063','1.00','250','retail','0','2022-12-14 02:42:18','','','','175','Cash',0.00,'250','','','12','','1','2022-12-13 20:42:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709765183390320',5686,'121670975296','6161101602372','2.00','500','retail','0','2022-12-14 03:08:53','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-13 21:08:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709765320332020',5687,'121670975296','5018907194802','1.00','150','retail','0','2022-12-14 03:08:53','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-13 21:08:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709765670303223',5688,'121670976537','6161101601979','2.00','500','retail','0','2022-12-14 03:09:28','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-13 21:09:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709767155033527',5689,'121670976573','6161101604406','1.00','250','retail','0','2022-12-14 03:11:56','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-13 21:11:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709767580332020',5690,'121670976720','6161101604406','1.00','250','retail','0','2022-12-14 03:12:39','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-13 21:12:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709787802033278',5691,'121670976788','6001108049582','1.00','1300','retail','0','2022-12-14 03:47:41','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-13 21:49:19','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709788473390320',5692,'121670976788','6161101604703','2.00','500','retail','0','2022-12-14 03:47:41','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-13 21:49:19','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709788603718273',5693,'121670976788','6008165007814','1.00','350','retail','0','2022-12-14 03:47:41','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-13 21:49:19','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709883732033238',5694,'121670988340','6161101602372','2.00','500','retail','0','2022-12-14 06:26:30','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-14 00:26:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709883890303223',5695,'121670988340','6161101602921','4.00','1000','retail','0','2022-12-14 06:26:30','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-14 00:26:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216709885922033258',5696,'121670988395','6164001199010','2.00','200','retail','0','2022-12-14 06:29:53','','','','38','Cash',0.00,'100','','','12','','1','2022-12-14 00:29:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710237113300320',5697,'121671023676','6161101561280','1.00','350','retail','0','2022-12-14 16:16:31','','','','190','Cash',0.00,'350','','','12','','1','2022-12-14 10:16:36','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710237903300320',5698,'121671023676','5060608740253','1.00','80','retail','0','2022-12-14 16:16:31','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-14 10:16:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710241882033214',5699,'121671023799','50196166','1.00','750','retail','0','2022-12-14 16:23:09','','','','443','Cash',0.00,'750','','','12','','1','2022-12-14 10:24:09','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710392213300320',5700,'121671035125','024000150121','1.00','300','retail','0','2022-12-14 20:33:58','','','','205','Cash',0.00,'300','','','12','','1','2022-12-14 14:35:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710392373312273',5701,'121671035125','6974929190378','1.00','3250','retail','0','2022-12-14 20:33:58','','','','2500','Cash',0.00,'3250','','','12','','1','2022-12-14 14:35:29','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710421973411273',5702,'121671039332','6008165007814','1.00','350','retail','0','2022-12-14 21:23:32','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-14 15:23:34','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710422114631413',5703,'121671039332','725765052087','1.00','290','retail','0','2022-12-14 21:23:32','','','','209','Cash',0.00,'290','','','12','','1','2022-12-14 15:23:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710452483300320',5704,'121671045225','8712000900663','4.00','1000','retail','0','2022-12-14 22:14:28','','','','174','Cash',0.00,'250','','','12','','1','2022-12-14 16:14:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','27.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710452663300320',5705,'121671045225','6161101601979','4.00','1000','retail','0','2022-12-14 22:14:28','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-14 16:14:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710456440332020',5706,'121671045627','6161101603379','4.00','1000','retail','0','2022-12-14 22:20:45','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-14 16:20:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710463224631413',5707,'121671046174','5010103930628','1.00','1750','retail','0','2022-12-14 22:32:22','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-14 16:33:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710463311033127',5708,'121671046174','50112265','2.00','160','retail','0','2022-12-14 22:32:22','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-14 16:33:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710463420303223',5709,'121671046174','6009627080246','1.00','180','retail','0','2022-12-14 22:32:22','','','','92','Cash',0.00,'180','','','12','','1','2022-12-14 16:33:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710466566033627',5710,'121671046387','3155930006015','6.00','1500','retail','0','2022-12-14 22:37:37','','','','188','Cash',0.00,'250','','','12','','1','2022-12-14 16:38:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','17.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710470522033227',5711,'121671047027','6161101603379','6.00','1500','retail','0','2022-12-14 22:44:36','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-14 16:44:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','14.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710470753300320',5712,'121671047027','5000267125046','1.00','5000','retail','0','2022-12-14 22:44:36','','','','3164','Cash',0.00,'5000','','','12','','1','2022-12-14 16:44:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710477822033277',5713,'121671047707','6002323400332','1.00','1700','retail','0','2022-12-14 22:56:23','','','','1125','Cash',0.00,'1700','','','12','','1','2022-12-14 16:56:27','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710483170303223',5714,'121671048312','6161100421561','1.00','1300','retail','0','2022-12-14 23:07:16','','','','645','Cash',0.00,'1300','','','12','','1','2022-12-14 17:08:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710484183414273',5715,'121671048312','50112265','3.00','240','retail','0','2022-12-14 23:07:16','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-14 17:08:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710484364631413',5716,'121671048312','54491069','1.00','80','retail','0','2022-12-14 23:07:16','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-14 17:08:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710546293516273',5717,'121671052238','024000150138','1.00','300','retail','0','2022-12-15 00:50:30','','','','205','Cash',0.00,'300','','','12','','1','2022-12-14 18:50:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710549793300320',5718,'121671054971','7640175740030','1.00','3350','retail','0','2022-12-15 00:56:20','','','','2280','Cash',0.00,'3350','','','12','','1','2022-12-14 18:57:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710550990303223',5719,'121671055057','6164001199331','2.00','140','retail','0','2022-12-15 00:58:19','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-14 18:58:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710655066033627',5720,'121671064241','6161101602167','1.00','600','retail','0','2022-12-15 03:51:57','','','','418','Cash',0.00,'600','','','12','','1','2022-12-14 21:52:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710655177033727',5721,'121671064241','5018907197803','1.00','100','retail','0','2022-12-15 03:51:57','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-14 21:52:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710668855033527',5722,'121671065523','6161100421387','1.00','450','retail','0','2022-12-15 04:14:56','','','','318','Cash',0.00,'450','','','12','','1','2022-12-14 22:15:00','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710668950332020',5723,'121671065523','5018907197803','1.00','100','retail','0','2022-12-15 04:14:56','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-14 22:15:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710739413719273',5724,'121671073928','6161101603379','5.00','1250','retail','0','2022-12-15 06:14:42','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-15 00:14:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','8.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710740303300320',5725,'121671073928','5010103930666','1.00','850','retail','0','2022-12-15 06:14:42','','','','586','Cash',0.00,'850','','','12','','1','2022-12-15 00:14:49','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710740467631713',5726,'121671073928','6164001199010','1.00','100','retail','0','2022-12-15 06:14:42','','','','38','Cash',0.00,'100','','','12','','1','2022-12-15 00:14:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710740593710273',5727,'121671073928','6161100420786','1.00','400','retail','0','2022-12-15 06:14:42','','','','290','Cash',0.00,'400','','','12','','1','2022-12-15 00:14:49','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710740711033127',5728,'121671073928','54491069','1.00','80','retail','0','2022-12-15 06:14:42','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-15 00:14:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710740813300320',5729,'121671073928','6161101605465','1.00','800','retail','0','2022-12-15 06:14:42','','','','501','Cash',0.00,'800','','','12','','1','2022-12-15 00:14:49','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710742422033224',5730,'121671074091','6161100420786','1.00','400','retail','0','2022-12-15 06:17:23','','','','290','Cash',0.00,'400','','','12','','1','2022-12-15 00:17:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710750093710273',5731,'121671074984','6161101603379','4.00','1000','retail','0','2022-12-15 06:30:33','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-15 00:30:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710750232033205',5732,'121671074984','5449000014536','1.00','100','retail','0','2022-12-15 06:30:33','','','','49','Cash',0.00,'100','','','12','','1','2022-12-15 00:30:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710750332033205',5733,'121671074984','725765052087','1.00','290','retail','0','2022-12-15 06:30:33','','','','209','Cash',0.00,'290','','','12','','1','2022-12-15 00:30:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710783150303223',5734,'121671077822','725765052063','1.00','250','retail','0','2022-12-15 07:25:16','','','','175','Cash',0.00,'250','','','12','','1','2022-12-15 01:25:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710815922033251',5735,'121671078323','6008165007814','1.00','350','retail','0','2022-12-15 08:19:52','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-15 02:19:57','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710816300303223',5736,'121671081598','6161101561563','1.00','350','retail','0','2022-12-15 08:20:43','','','','197','Cash',0.00,'350','','','12','','1','2022-12-15 02:20:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216710816430020306',5737,'121671081598','6161101561280','1.00','350','retail','0','2022-12-15 08:20:43','','','','190','Cash',0.00,'350','','','12','','1','2022-12-15 02:20:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711064100303223',5738,'121671097595','5010103930628','1.00','1750','retail','0','2022-12-15 15:14:31','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-15 09:16:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711064226323603',5739,'121671097595','50112265','1.00','80','retail','0','2022-12-15 15:14:31','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-15 09:16:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711064700033027',5740,'121671097595','5449000014535','1.00','120','retail','0','2022-12-15 15:14:31','','','','64','Cash',0.00,'120','','','12','','1','2022-12-15 09:16:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711087220303223',5741,'121671108710','8712000900663','24.00','7200','retail','0','2022-12-15 15:52:03','','','','214','Cash',0.00,'300','','','12','','1','2022-12-15 09:52:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'24','47.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711089277033727',5742,'121671108916','8712000900663','24.00','6000','retail','0','2022-12-15 15:55:28','','','','214','Cash',0.00,'250','','','12','','1','2022-12-15 09:55:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'24','47.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711141020332020',5743,'121671108933','6002323300533','1.00','2000','retail','0','2022-12-15 17:23:03','','','','1325','Cash',0.00,'2000','','','12','','1','2022-12-15 11:23:07','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711162123310320',5744,'121671116185','6161101606547','1.00','550','retail','0','2022-12-15 17:56:54','','','','388','Cash',0.00,'550','','','12','','1','2022-12-15 11:57:23','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711183456343603',5745,'121671118327','6161101602433','2.00','400','retail','0','2022-12-15 18:32:26','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-15 12:32:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711184333310320',5746,'121671118352','6002323300533','1.00','2000','retail','0','2022-12-15 18:33:53','','','','1325','Cash',0.00,'2000','','','12','','1','2022-12-15 12:33:57','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711210326333603',5747,'121671118439','50112265','1.00','80','retail','0','2022-12-15 19:17:13','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-15 13:17:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711248563218273',5748,'121671121042','3155930006015','4.00','1000','retail','0','2022-12-15 20:21:53','','','','188','Cash',0.00,'250','','','12','','1','2022-12-15 14:27:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711249132631213',5749,'121671121042','6161101603324','2.00','500','retail','0','2022-12-15 20:21:53','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-15 14:27:37','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711257092251333',5750,'121671125259','716165173670','1.00','150','retail','0','2022-12-15 20:35:10','','','','46','Cash',0.00,'150','','','12','','1','2022-12-15 14:45:24','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711282572033228',5751,'121671128232','6161100421509','1.00','1350','retail','0','2022-12-15 21:18:07','','','','787','Cash',0.00,'1350','','','12','','1','2022-12-15 15:19:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711282700332020',5752,'121671128232','6161100421493','1.00','450','retail','0','2022-12-15 21:18:07','','','','301','Cash',0.00,'450','','','12','','1','2022-12-15 15:19:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711282860303223',5753,'121671128232','6161101601979','8.00','2000','retail','0','2022-12-15 21:18:07','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-15 15:19:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','10.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711298842033289',5754,'121671129874','6161101606011','4.00','1000','retail','0','2022-12-15 21:44:45','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-15 15:44:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711305382033250',5755,'121671129888','6161101560832','1.00','350','retail','0','2022-12-15 21:55:39','','','','245','Cash',0.00,'350','','','12','','1','2022-12-15 15:55:45','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711332043631313',5756,'121671133195','6161101606011','4.00','1000','retail','0','2022-12-15 22:40:05','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-15 16:40:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711332172302373',5757,'121671133209','6161101560832','1.00','350','retail','0','2022-12-15 22:40:17','','','','245','Cash',0.00,'350','','','12','','1','2022-12-15 16:40:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711332400332020',5758,'121671133233','6001108016034','1.00','500','retail','0','2022-12-15 22:40:41','','','','352','Cash',0.00,'500','','','12','','1','2022-12-15 16:40:44','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711341070303223',5759,'121671133246','6161101605465','1.00','800','retail','0','2022-12-15 22:55:08','','','','501','Cash',0.00,'800','','','12','','1','2022-12-15 16:55:10','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711346016303603',5760,'121671134111','7804320301174','1.00','2000','retail','0','2022-12-15 23:03:34','','','','1200','Cash',0.00,'2000','','','12','','1','2022-12-15 17:05:06','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711346133316273',5761,'121671134111','6001108028044','6.00','1800','retail','0','2022-12-15 23:03:34','','','','201','Cash',0.00,'300','','','12','','1','2022-12-15 17:05:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711390406343603',5762,'121671139030','6161101601979','3.00','750','retail','0','2022-12-16 00:17:29','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-15 18:17:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711390486343603',5763,'121671139030','5018907194802','1.00','150','retail','0','2022-12-16 00:17:29','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-15 18:17:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711395460303223',5764,'121671139054','6161101560832','1.00','350','retail','0','2022-12-16 00:25:46','','','','245','Cash',0.00,'350','','','12','','1','2022-12-15 18:25:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711402540303223',5765,'121671139554','6161101602938','2.00','500','retail','0','2022-12-16 00:37:35','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-15 18:37:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711419743310320',5766,'121671141962','725765052087','2.00','580','retail','0','2022-12-16 01:06:31','','','','209','Cash',0.00,'290','','','12','','1','2022-12-15 19:06:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711419912033291',5767,'121671141962','6164001199034','3.00','150','retail','0','2022-12-16 01:06:31','','','','19','Cash',0.00,'50','','','12','','1','2022-12-15 19:06:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711435320332020',5768,'121671143513','6008835000930','1.00','180','retail','0','2022-12-16 01:33:36','','','','130','Cash',0.00,'180','','','12','','1','2022-12-15 19:34:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711435432021301',5769,'121671143513','5010752000321','1.00','2200','retail','0','2022-12-16 01:33:36','','','','1474','Cash',0.00,'2200','','','12','','1','2022-12-15 19:34:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711436154631413',5770,'121671143513','6164002099036','1.00','120','retail','0','2022-12-16 01:33:36','','','','40','Cash',0.00,'120','','','12','','1','2022-12-15 19:34:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711445300332020',5771,'121671144376','3155930006015','2.00','500','retail','0','2022-12-16 01:48:50','','','','188','Cash',0.00,'250','','','12','','1','2022-12-15 19:48:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711454996393603',5772,'121671144536','6161101604406','2.00','500','retail','0','2022-12-16 02:05:37','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-15 20:06:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711455372033255',5773,'121671144536','90162602','1.00','230','retail','0','2022-12-16 02:05:37','','','','147','Cash',0.00,'230','','','12','','1','2022-12-15 20:06:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711500343510273',5774,'121671150012','6161101602167','1.00','600','retail','0','2022-12-16 03:23:37','','','','418','Cash',0.00,'600','','','12','','1','2022-12-15 21:23:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711500431230103',5775,'121671150012','6164001199010','1.00','100','retail','0','2022-12-16 03:23:37','','','','38','Cash',0.00,'100','','','12','','1','2022-12-15 21:23:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711500980332020',5776,'121671150012','6161101606011','1.00','250','retail','0','2022-12-16 03:23:37','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-15 21:23:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711501990303223',5777,'121671150012','6161101602372','1.00','250','retail','0','2022-12-16 03:23:37','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-15 21:23:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711502165631513',5778,'121671150012','54491069','1.00','80','retail','0','2022-12-16 03:23:37','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-15 21:23:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711524203514273',5779,'121671150231','6008165007784','1.00','370','retail','0','2022-12-16 05:47:32','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-15 23:50:15','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711587541332253',5780,'121671150231','024000150152','1.00','300','retail','0','2022-12-16 05:47:32','','','','205','Cash',0.00,'300','','','12','','1','2022-12-15 23:50:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711588288033827',5781,'121671150231','6161100420786','1.00','400','retail','0','2022-12-16 05:47:32','','','','290','Cash',0.00,'400','','','12','','1','2022-12-15 23:50:15','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711588512033288',5782,'121671150231','6164001199034','1.00','50','retail','0','2022-12-16 05:47:32','','','','19','Cash',0.00,'50','','','12','','1','2022-12-15 23:50:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711628410303223',5783,'121671162831','5000267024011','1.00','4000','retail','0','2022-12-16 06:56:01','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-16 00:58:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711628906631613',5784,'121671162831','8712000900663','2.00','600','retail','0','2022-12-16 06:56:01','','','','214','Cash',0.00,'300','','','12','','1','2022-12-16 00:58:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711629370303223',5785,'121671162831','6161101606011','1.00','250','retail','0','2022-12-16 06:56:01','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-16 00:58:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711629500332020',5786,'121671162831','6161101603324','2.00','500','retail','0','2022-12-16 06:56:01','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-16 00:58:47','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711629602033292',5787,'121671162831','90162602','1.00','230','retail','0','2022-12-16 06:56:01','','','','147','Cash',0.00,'230','','','12','','1','2022-12-16 00:58:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711638140303223',5788,'121671163129','6161100420786','1.00','400','retail','0','2022-12-16 07:10:15','','','','290','Cash',0.00,'400','','','12','','1','2022-12-16 01:10:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711877122621280',5789,'121671187548','6161101604994','1.00','1100','retail','0','2022-12-16 13:48:33','','','','653','Cash',0.00,'1100','','','12','','1','2022-12-16 07:48:41','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711898702033289',5790,'121671189754','024000150152','1.00','300','retail','0','2022-12-16 16:10:51','','','','205','Cash',0.00,'300','','','12','','1','2022-12-16 10:14:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711898872033289',5791,'121671189754','024000150138','1.00','300','retail','0','2022-12-16 16:10:51','','','','205','Cash',0.00,'300','','','12','','1','2022-12-16 10:14:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711899012033299',5792,'121671189754','5018907194802','2.00','300','retail','0','2022-12-16 16:10:51','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-16 10:14:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711899210303223',5793,'121671189754','40262144','1.00','200','retail','0','2022-12-16 16:10:51','','','','125','Cash',0.00,'200','','','12','','1','2022-12-16 10:14:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711966080006210',5794,'121671196474','5010232965096','1.00','600','retail','0','2022-12-16 16:17:03','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-16 10:17:06','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216711966222033227',5795,'121671196474','90399480','1.00','100','retail','0','2022-12-16 16:17:03','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-16 10:17:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712054893320320',5796,'121671205210','1210000100511','1.00','2300','retail','0','2022-12-16 18:45:00','','','','1650','Cash',0.00,'2300','','','12','','1','2022-12-16 12:48:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712054996393603',5797,'121671205210','50112265','1.00','80','retail','0','2022-12-16 18:45:00','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-16 12:48:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712067853017273',5798,'121671205712','75032814','2.00','900','retail','0','2022-12-16 19:06:41','','','','295','Cash',0.00,'450','','','12','','1','2022-12-16 13:06:51','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712068010303223',5799,'121671205712','6164001199331','2.00','140','retail','0','2022-12-16 19:06:41','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-16 13:06:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712151681631113',5800,'121671206813','716165173670','2.00','300','retail','0','2022-12-16 21:26:09','','','','46','Cash',0.00,'150','','','12','','1','2022-12-16 15:26:13','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','38.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712163703113273',5801,'121671215177','5000291020706','1.00','2800','retail','0','2022-12-16 21:47:47','','','','2070','Cash',0.00,'2800','','','12','','1','2022-12-16 15:49:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712164172033246',5802,'121671215177','50112265','4.00','320','retail','0','2022-12-16 21:47:47','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-16 15:49:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712164661631113',5803,'121671215177','5018907194802','1.00','150','retail','0','2022-12-16 21:47:47','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-16 15:49:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712165966393603',5804,'121671216544','50196166','2.00','1500','retail','0','2022-12-16 21:50:20','','','','443','Cash',0.00,'750','','','12','','1','2022-12-16 15:50:34','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712166092261333',5805,'121671216544','6164001199010','1.00','100','retail','0','2022-12-16 21:50:20','','','','38','Cash',0.00,'100','','','12','','1','2022-12-16 15:50:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712166192033266',5806,'121671216544','5060608740253','2.00','160','retail','0','2022-12-16 21:50:20','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-16 15:50:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712166950303223',5807,'121671216635','54491069','1.00','80','retail','0','2022-12-16 21:52:30','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-16 15:54:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712167499033927',5808,'121671216635','6161101605458','2.00','540','retail','0','2022-12-16 21:52:30','','','','182','Cash',0.00,'270','','','12','','1','2022-12-16 15:54:32','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712168940303223',5809,'121671216873','6161101605458','1.00','270','retail','0','2022-12-16 21:55:04','','','','182','Cash',0.00,'270','','','12','','1','2022-12-16 15:55:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712169044033427',5810,'121671216873','54491069','1.00','80','retail','0','2022-12-16 21:55:04','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-16 15:55:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712186102033268',5811,'121671217556','6161101601979','2.00','500','retail','0','2022-12-16 22:23:42','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-16 16:23:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712186210332020',5812,'121671217556','6161101602921','2.00','500','retail','0','2022-12-16 22:23:42','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-16 16:23:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712194230303223',5813,'121671218625','6161101603379','2.00','500','retail','0','2022-12-16 22:37:03','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-16 16:37:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712200433320320',5814,'121671219430','75032814','4.00','1800','retail','0','2022-12-16 22:50:14','','','','295','Cash',0.00,'450','','','12','','1','2022-12-16 16:51:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712200872033200',5815,'121671219430','6164001199331','2.00','140','retail','0','2022-12-16 22:50:14','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-16 16:51:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','19.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201036303603',5816,'121671219430','6161101604406','2.00','500','retail','0','2022-12-16 22:50:14','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-16 16:51:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201132033210',5817,'121671219430','3155930006015','2.00','500','retail','0','2022-12-16 22:50:14','','','','188','Cash',0.00,'250','','','12','','1','2022-12-16 16:51:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201243320320',5818,'121671219430','8906054940137','1.00','700','retail','0','2022-12-16 22:50:14','','','','405','Cash',0.00,'700','','','12','','1','2022-12-16 16:51:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201353320320',5819,'121671219430','5018907194802','1.00','150','retail','0','2022-12-16 22:50:14','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-16 16:51:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201513222232',5820,'121671219430','6161101603379','2.00','500','retail','0','2022-12-16 22:50:14','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-16 16:51:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712201670303223',5821,'121671219430','6164001199010','1.00','100','retail','0','2022-12-16 22:50:14','','','','38','Cash',0.00,'100','','','12','','1','2022-12-16 16:51:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712202146313603',5822,'121671219430','6161101603324','0.00','0','retail','0','2022-12-16 22:50:14','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-16 16:51:28','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','5.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712218633033327',5823,'121671220290','5000289020701','1.00','2800','retail','0','2022-12-16 23:17:44','','','','1900','Cash',0.00,'2800','','','12','','1','2022-12-16 17:18:14','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712223744033427',5824,'121671221997','6161101605458','1.00','270','retail','0','2022-12-16 23:26:23','','','','182','Cash',0.00,'270','','','12','','1','2022-12-16 17:26:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712223822033227',5825,'121671221997','6161101602372','1.00','250','retail','0','2022-12-16 23:26:23','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-16 17:26:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712228850303223',5826,'121671222387','5018907194802','1.00','150','retail','0','2022-12-16 23:34:45','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-16 17:34:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712235836383603',5827,'121671222889','50196111','1.00','1500','retail','0','2022-12-16 23:46:23','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-16 17:46:26','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712237152631213',5828,'121671223588','080686001409','1.00','2300','retail','0','2022-12-16 23:48:53','','','','1670','Cash',0.00,'2300','','','12','','1','2022-12-16 17:49:38','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712237326333603',5829,'121671223588','5449000028921','2.00','300','retail','0','2022-12-16 23:48:53','','','','103','Cash',0.00,'150','','','12','','1','2022-12-16 17:49:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712239566353603',5830,'121671223948','5018907194802','1.00','150','retail','0','2022-12-16 23:52:48','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-16 17:52:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712239677033727',5831,'121671223948','90162602','2.00','460','retail','0','2022-12-16 23:52:48','','','','147','Cash',0.00,'230','','','12','','1','2022-12-16 17:52:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712243523320320',5832,'121671224341','6161101602372','2.00','500','retail','0','2022-12-16 23:59:24','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-16 17:59:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712243632631213',5833,'121671224341','6161101604406','1.00','250','retail','0','2022-12-16 23:59:24','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-16 17:59:32','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712257732033275',5834,'121671225761','6161101603379','1.00','250','retail','0','2022-12-17 00:22:54','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-16 18:22:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712296111033127',5835,'121671229210','50196166','3.00','2250','retail','0','2022-12-17 01:27:45','','','','443','Cash',0.00,'750','','','12','','1','2022-12-16 19:27:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712296280332020',5836,'121671229210','6164001199010','2.00','200','retail','0','2022-12-17 01:27:45','','','','38','Cash',0.00,'100','','','12','','1','2022-12-16 19:27:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712296459132922',5837,'121671229210','5060608740253','3.00','240','retail','0','2022-12-17 01:27:45','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-16 19:27:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','28.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712296640303223',5838,'121671229210','6161101603379','6.00','1500','retail','0','2022-12-17 01:27:45','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-16 19:27:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712300283320320',5839,'121671229676','75032814','4.00','1800','retail','0','2022-12-17 01:33:57','','','','295','Cash',0.00,'450','','','12','','1','2022-12-16 19:33:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','20.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712300360332020',5840,'121671229676','6164001199331','1.00','70','retail','0','2022-12-17 01:33:57','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-16 19:33:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712304777033727',5841,'121671230042','6161100420786','1.00','400','retail','0','2022-12-17 01:41:17','','','','290','Cash',0.00,'400','','','12','','1','2022-12-16 19:41:25','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712325652033252',5842,'121671230487','50196111','1.00','1500','retail','0','2022-12-17 02:16:13','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-16 20:16:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712325733631313',5843,'121671230487','5449000028921','1.00','150','retail','0','2022-12-17 02:16:13','','','','103','Cash',0.00,'150','','','12','','1','2022-12-16 20:16:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712363940303223',5844,'121671232731','6161101602938','6.00','1500','retail','0','2022-12-17 03:20:12','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-16 21:21:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712364110332020',5845,'121671232731','6008165007982','1.00','350','retail','0','2022-12-17 03:20:12','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-16 21:21:17','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712368133318273',5846,'121671236479','6161101605458','1.00','270','retail','0','2022-12-17 03:26:54','','','','182','Cash',0.00,'270','','','12','','1','2022-12-16 21:26:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712368330332020',5847,'121671236821','6161101605458','1.00','270','retail','0','2022-12-17 03:27:49','','','','182','Cash',0.00,'270','','','12','','1','2022-12-16 21:28:37','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712368480330822',5848,'121671236821','90399480','1.00','100','retail','0','2022-12-17 03:27:49','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-16 21:28:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712368572033286',5849,'121671236821','6164001199034','1.00','50','retail','0','2022-12-17 03:27:49','','','','19','Cash',0.00,'50','','','12','','1','2022-12-16 21:28:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712368682033286',5850,'121671236821','6161101601979','1.00','250','retail','0','2022-12-17 03:27:49','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-16 21:28:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712369636132622',5851,'121671236919','5000289020701','1.00','2800','retail','0','2022-12-17 03:29:52','','','','1900','Cash',0.00,'2800','','','12','','1','2022-12-16 21:29:55','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712369803631313',5852,'121671236919','6008165007784','1.00','370','retail','0','2022-12-17 03:29:52','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-16 21:29:55','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712369923320320',5853,'121671236919','3086120600051','1.00','80','retail','0','2022-12-17 03:29:52','','','','59.74','Cash',0.00,'80','','','12','','1','2022-12-16 21:29:55','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712376143631313',5854,'121671236997','6001108016034','1.00','500','retail','0','2022-12-17 03:40:15','','','','352','Cash',0.00,'500','','','12','','1','2022-12-16 21:40:18','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712429202622240',5855,'121671240251','1000','1.00','270','retail','0','2022-12-17 05:08:41','','','','192','Cash',0.00,'270','','','12','','1','2022-12-16 23:08:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712499854631413',5856,'121671242931','50196166','1.00','750','retail','0','2022-12-17 07:09:43','','','','443','Cash',0.00,'750','','','12','','1','2022-12-17 01:12:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712499956393603',5857,'121671242931','6161101602167','1.00','600','retail','0','2022-12-17 07:09:43','','','','418','Cash',0.00,'600','','','12','','1','2022-12-17 01:12:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712500240350022',5858,'121671242931','5060608740253','1.00','80','retail','0','2022-12-17 07:09:43','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-17 01:12:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712500444033427',5859,'121671242931','6161101603379','2.00','500','retail','0','2022-12-17 07:09:43','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 01:12:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712501823320320',5860,'121671242931','024000150152','1.00','300','retail','0','2022-12-17 07:09:43','','','','205','Cash',0.00,'300','','','12','','1','2022-12-17 01:12:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712567699033927',5861,'121671256708','5018907194802','12.00','1800','retail','0','2022-12-17 09:52:22','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-17 03:58:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'12','17.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712568063320320',5862,'121671256708','5449000000286','2.00','500','retail','0','2022-12-17 09:52:22','','','','158','Cash',0.00,'250','','','12','','1','2022-12-17 03:58:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712650313320320',5863,'121671260294','3086120600020','1.00','120','retail','0','2022-12-17 11:23:02','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-17 05:26:07','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712653826631613',5864,'121671260294','6161101602938','1.00','250','retail','0','2022-12-17 11:23:02','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-17 05:26:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712677866631613',5865,'121671265571','725765052063','1.00','250','retail','0','2022-12-17 12:03:07','','','','175','Cash',0.00,'250','','','12','','1','2022-12-17 06:03:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712736256323603',5866,'121671267797','6161101603379','1.00','250','retail','0','2022-12-17 13:40:26','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 07:40:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712736666363603',5867,'121671273632','6161101602938','1.00','250','retail','0','2022-12-17 13:41:07','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-17 07:41:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801066033627',5868,'121671276197','5010103930666','1.00','850','retail','0','2022-12-17 15:29:24','','','','586','Cash',0.00,'850','','','12','','1','2022-12-17 09:29:28','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801199033927',5869,'121671276197','8712000900663','2.00','600','retail','0','2022-12-17 15:29:24','','','','214','Cash',0.00,'300','','','12','','1','2022-12-17 09:29:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801293320320',5870,'121671276197','6164001199010','1.00','100','retail','0','2022-12-17 15:29:24','','','','38','Cash',0.00,'100','','','12','','1','2022-12-17 09:29:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801376333603',5871,'121671276197','6164001199034','1.00','50','retail','0','2022-12-17 15:29:24','','','','19','Cash',0.00,'50','','','12','','1','2022-12-17 09:29:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801523811273',5872,'121671276197','5449000188342','1.00','100','retail','0','2022-12-17 15:29:24','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-17 09:29:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712801633033327',5873,'121671276197','6161101603379','1.00','250','retail','0','2022-12-17 15:29:24','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 09:29:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712808908631813',5874,'121671280170','6161101603379','6.00','1500','retail','0','2022-12-17 15:41:31','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 09:41:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712809440303223',5875,'121671280903','6008165007784','1.00','370','retail','0','2022-12-17 15:42:24','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-17 09:42:29','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712889648631813',5876,'121671288842','5000267014609','1.00','1500','retail','0','2022-12-17 17:56:22','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-17 11:56:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712889822033227',5877,'121671288842','90162602','3.00','690','retail','0','2022-12-17 17:56:22','','','','147','Cash',0.00,'230','','','12','','1','2022-12-17 11:56:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712890383320320',5878,'121671289001','6161101602372','2.00','500','retail','0','2022-12-17 17:57:19','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-17 11:57:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712895390303223',5879,'121671289049','5060608740253','1.00','80','retail','0','2022-12-17 18:05:40','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-17 12:05:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712902203912273',5880,'121671289546','6001506910347','1.00','1500','retail','0','2022-12-17 18:17:01','','','','835','Cash',0.00,'1500','','','12','','1','2022-12-17 12:17:04','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712908802033280',5881,'121671290226','6161101606547','1.00','550','retail','0','2022-12-17 18:28:10','','','','388','Cash',0.00,'550','','','12','','1','2022-12-17 12:28:44','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712908890303223',5882,'121671290226','5018907194802','1.00','150','retail','0','2022-12-17 18:28:10','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-17 12:28:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712912520132303',5883,'121671290926','5000281016689','1.00','5400','retail','0','2022-12-17 18:34:12','','','','4000','Cash',0.00,'5400','','','12','','1','2022-12-17 12:34:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712915270303223',5884,'121671291260','5000267014609','1.00','1500','retail','0','2022-12-17 18:38:48','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-17 12:38:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712929406343603',5885,'121671291533','6161101561280','2.00','700','retail','0','2022-12-17 19:02:21','','','','190','Cash',0.00,'350','','','12','','1','2022-12-17 13:02:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712965544033427',5886,'121671296539','5000267165806','1.00','10000','retail','0','2022-12-17 20:03:05','','','','7531','Cash',0.00,'10000','','','12','','1','2022-12-17 14:11:40','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712965669631913',5887,'121671296539','5018907197803','2.00','200','retail','0','2022-12-17 20:03:05','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-17 14:11:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712965852021301',5888,'121671296539','54493360','1.00','80','retail','0','2022-12-17 20:03:05','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-17 14:11:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712972463912273',5889,'121671297102','6008165007814','1.00','350','retail','0','2022-12-17 20:14:18','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-17 14:14:26','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712972570303223',5890,'121671297102','3086120600020','1.00','120','retail','0','2022-12-17 20:14:18','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-17 14:14:26','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712983716373603',5891,'121671297267','6161101606547','1.00','550','retail','0','2022-12-17 20:33:07','','','','388','Cash',0.00,'550','','','12','','1','2022-12-17 14:33:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712983866383603',5892,'121671297267','6164001199331','2.00','140','retail','0','2022-12-17 20:33:07','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-17 14:33:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712999080303223',5893,'121671298406','6161101602938','6.00','1500','retail','0','2022-12-17 21:00:05','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-17 15:00:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712999276323603',5894,'121671298406','6001108028044','3.00','900','retail','0','2022-12-17 21:00:05','','','','201','Cash',0.00,'300','','','12','','1','2022-12-17 15:00:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216712999439631913',5895,'121671298406','8712000900663','4.00','1200','retail','0','2022-12-17 21:00:05','','','','214','Cash',0.00,'300','','','12','','1','2022-12-17 15:00:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','19.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713000055033527',5896,'121671298406','100','1.00','250','retail','0','2022-12-17 21:00:05','','','','177','Cash',0.00,'250','','','12','','1','2022-12-17 15:00:11','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713047050303223',5897,'121671304685','6164001199010','1.00','100','retail','0','2022-12-17 22:27:36','','','','38','Cash',0.00,'100','','','12','','1','2022-12-17 16:27:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713047944033427',5898,'121671304685','6161101605458','1.00','270','retail','0','2022-12-17 22:27:36','','','','182','Cash',0.00,'270','','','12','','1','2022-12-17 16:27:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713052553012273',5899,'121671304685','6161101605458','1.00','270','retail','0','2022-12-17 22:27:36','','','','182','Cash',0.00,'270','','','12','','1','2022-12-17 16:27:39','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713060233010273',5900,'121671305261','6161101606011','1.00','250','retail','0','2022-12-17 22:42:43','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-17 16:49:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713060396333603',5901,'121671305261','6161101603379','3.00','750','retail','0','2022-12-17 22:42:43','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 16:49:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713072090631013',5902,'121671307197','6001108049599','1.00','1300','retail','0','2022-12-17 23:00:44','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-17 17:00:58','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713072440631013',5903,'121671307197','90162602','2.00','460','retail','0','2022-12-17 23:00:44','','','','147','Cash',0.00,'230','','','12','','1','2022-12-17 17:00:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713201366033627',5904,'121671317165','6161101603379','1.00','250','retail','0','2022-12-18 02:37:30','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-17 20:42:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713202490332020',5905,'121671317165','6161101602938','3.00','750','retail','0','2022-12-18 02:37:30','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-17 20:42:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','15.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713207399033927',5906,'121671320545','5000267125046','1.00','5300','retail','0','2022-12-18 02:45:40','','','','3540','Cash',0.00,'5300','','','12','','1','2022-12-17 20:45:44','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713209832033290',5907,'121671320965','6161101602921','7.00','1750','retail','0','2022-12-18 02:49:55','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-17 20:53:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'7','14.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713209942631213',5908,'121671320965','6161101601979','5.00','1250','retail','0','2022-12-18 02:49:55','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-17 20:53:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','6.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713257923330320',5909,'121671321206','6161101604406','4.00','1000','retail','0','2022-12-18 04:09:52','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-17 22:09:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713278090332020',5910,'121671327801','5010103930628','1.00','1750','retail','0','2022-12-18 04:44:10','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-17 22:44:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713278262631213',5911,'121671327801','6164001199331','3.00','210','retail','0','2022-12-18 04:44:10','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-17 22:44:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713278493330320',5912,'121671327801','6164002099029','3.00','240','retail','0','2022-12-18 04:44:10','','','','36','Cash',0.00,'80','','','12','','1','2022-12-17 22:44:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','54.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713322083312273',5913,'121671332182','50112265','2.00','160','retail','0','2022-12-18 05:57:51','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-18 00:08:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713322700033027',5914,'121671332182','5010103930628','1.00','1750','retail','0','2022-12-18 05:57:51','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-18 00:08:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713329213631313',5915,'121671332898','6161100420786','1.00','400','retail','0','2022-12-18 06:08:54','','','','290','Cash',0.00,'400','','','12','','1','2022-12-18 00:09:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713329333319273',5916,'121671332898','54493360','1.00','80','retail','0','2022-12-18 06:08:54','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-18 00:09:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713332600033027',5917,'121671332941','1000','2.00','540','retail','0','2022-12-18 06:14:59','','','','192','Cash',0.00,'270','','','12','','1','2022-12-18 00:15:17','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713332893312273',5918,'121671332941','6164001199331','1.00','70','retail','0','2022-12-18 06:14:59','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-18 00:15:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713332983631313',5919,'121671332941','50112265','1.00','80','retail','0','2022-12-18 06:14:59','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-18 00:15:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713526192221333',5920,'121671347638','1000','1.00','270','retail','0','2022-12-18 11:37:48','','','','192','Cash',0.00,'270','','','12','','1','2022-12-18 05:37:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713526676363603',5921,'121671347638','50112265','1.00','80','retail','0','2022-12-18 11:37:48','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-18 05:37:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713532716373603',5922,'121671352678','6001108016034','1.00','500','retail','0','2022-12-18 11:47:52','','','','352','Cash',0.00,'500','','','12','','1','2022-12-18 05:47:54','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713572965631513',5923,'121671355353','725765052063','1.00','250','retail','0','2022-12-18 12:55:09','','','','175','Cash',0.00,'250','','','12','','1','2022-12-18 06:57:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713573099033927',5924,'121671355353','50112753','1.00','80','retail','0','2022-12-18 12:55:09','','','','56','Cash',0.00,'80','','','12','','1','2022-12-18 06:57:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713606373616273',5925,'121671360625','90490279','1.00','100','retail','0','2022-12-18 13:50:37','','','','68','Cash',0.00,'100','','','12','','1','2022-12-18 07:50:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713613196631613',5926,'121671361297','6161101603379','3.00','750','retail','0','2022-12-18 14:02:22','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-18 08:02:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713613420303223',5927,'121671361297','8712000900663','2.00','600','retail','0','2022-12-18 14:02:22','','','','214','Cash',0.00,'300','','','12','','1','2022-12-18 08:02:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713688926631613',5928,'121671368872','024000150138','1.00','300','retail','0','2022-12-18 16:08:29','','','','205','Cash',0.00,'300','','','12','','1','2022-12-18 10:08:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713689086303603',5929,'121671368872','6164001199010','2.00','200','retail','0','2022-12-18 16:08:29','','','','38','Cash',0.00,'100','','','12','','1','2022-12-18 10:08:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713797697631713',5930,'121671369390','6161101605458','1.00','270','retail','0','2022-12-18 19:09:39','','','','182','Cash',0.00,'270','','','12','','1','2022-12-18 13:10:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713797787631713',5931,'121671369390','54493360','1.00','80','retail','0','2022-12-18 19:09:39','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-18 13:10:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713866492033266',5932,'121671379804','6161101602938','4.00','1000','retail','0','2022-12-18 21:04:10','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-18 15:04:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713929963330320',5933,'121671386657','6161101602921','6.00','1500','retail','0','2022-12-18 22:49:56','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-18 16:51:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713932683912273',5934,'121671393082','6161101602051','1.00','550','retail','0','2022-12-18 22:54:51','','','','392','Cash',0.00,'550','','','12','','1','2022-12-18 16:55:57','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713932903330320',5935,'121671393082','8712000900663','3.00','900','retail','0','2022-12-18 22:54:51','','','','214','Cash',0.00,'300','','','12','','1','2022-12-18 16:55:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713944476343603',5936,'121671393359','6161101560832','1.00','350','retail','0','2022-12-18 23:14:20','','','','245','Cash',0.00,'350','','','12','','1','2022-12-18 17:22:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713944590972293',5937,'121671393359','6164001199034','1.00','50','retail','0','2022-12-18 23:14:20','','','','19','Cash',0.00,'50','','','12','','1','2022-12-18 17:22:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713949733919273',5938,'121671394957','6164002099036','1.00','120','retail','0','2022-12-18 23:23:06','','','','40','Cash',0.00,'120','','','12','','1','2022-12-18 17:35:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713949859631913',5939,'121671394957','1000','1.00','270','retail','0','2022-12-18 23:23:06','','','','192','Cash',0.00,'270','','','12','','1','2022-12-18 17:35:08','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713957290303223',5940,'121671395710','6164001199010','1.00','100','retail','0','2022-12-18 23:35:30','','','','38','Cash',0.00,'100','','','12','','1','2022-12-18 17:54:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713968776373603',5941,'121671396866','5449000004864','1.00','250','retail','0','2022-12-18 23:55:13','','','','158','Cash',0.00,'250','','','12','','1','2022-12-18 18:29:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713968863918273',5942,'121671396866','5010327755045','1.00','5600','retail','0','2022-12-18 23:55:13','','','','3850','Cash',0.00,'5600','','','12','','1','2022-12-18 18:29:44','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216713969120332020',5943,'121671396866','5449000014536','2.00','200','retail','0','2022-12-18 23:55:13','','','','49','Cash',0.00,'100','','','12','','1','2022-12-18 18:29:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714050370303223',5944,'121671403044','5000267114293','1.00','28500','retail','0','2022-12-19 02:10:37','','','','18500','Cash',0.00,'28500','','','12','','1','2022-12-18 20:10:41','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714051773340320',5945,'121671405043','6161101603522','1.00','800','retail','0','2022-12-19 02:12:57','','','','501','Cash',0.00,'800','','','12','','1','2022-12-18 20:13:00','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714082043012273',5946,'121671408145','6161101602938','6.00','1500','retail','0','2022-12-19 03:05:20','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-18 21:05:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714082310303223',5947,'121671408145','6008165007982','1.00','350','retail','0','2022-12-19 03:05:20','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-18 21:05:23','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714082450303223',5948,'121671408145','6008165007982','1.00','350','retail','0','2022-12-19 03:05:20','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-18 21:05:23','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714082592033228',5949,'121671408145','5000267014609','1.00','1500','retail','0','2022-12-19 03:05:20','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-18 21:05:23','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714083193013273',5950,'121671408145','5449000028921','1.00','150','retail','0','2022-12-19 03:05:20','','','','103','Cash',0.00,'150','','','12','','1','2022-12-18 21:05:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714103521631113',5951,'121671408326','7794450091598','1.00','2000','retail','0','2022-12-19 03:39:13','','','','1280','Cash',0.00,'2000','','','12','','1','2022-12-18 23:06:39','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714156181631113',5952,'121671415604','6161101605458','1.00','270','retail','0','2022-12-19 05:07:10','','','','182','Cash',0.00,'270','','','12','','1','2022-12-18 23:07:50','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714156302033265',5953,'121671415604','54491069','1.00','80','retail','0','2022-12-19 05:07:10','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-18 23:07:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714165793340320',5954,'121671415671','5018907197803','1.00','100','retail','0','2022-12-19 05:22:59','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-18 23:24:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714286950303223',5955,'121671428684','6161101603522','1.00','800','retail','0','2022-12-19 08:44:55','','','','501','Cash',0.00,'800','','','12','','1','2022-12-19 02:44:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714424233414273',5956,'121671438137','8712000900663','6.00','1800','retail','0','2022-12-19 12:33:44','','','','214','Cash',0.00,'300','','','12','','1','2022-12-19 06:36:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714513305631513',5957,'121671442601','5011007003654','1.00','1700','retail','0','2022-12-19 15:03:18','','','','1085','Cash',0.00,'1700','','','12','','1','2022-12-19 09:04:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714513985631513',5958,'121671442601','5060608740253','1.00','80','retail','0','2022-12-19 15:03:18','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-19 09:04:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714554765631513',5959,'121671453970','6161101605458','1.00','270','retail','0','2022-12-19 16:11:27','','','','182','Cash',0.00,'270','','','12','','1','2022-12-19 10:11:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714554877033727',5960,'121671453970','54491069','1.00','80','retail','0','2022-12-19 16:11:27','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-19 10:11:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714596263340320',5961,'121671455514','6161101603379','1.00','250','retail','0','2022-12-19 17:20:36','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-19 11:21:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714596366033627',5962,'121671455514','6161101603324','1.00','250','retail','0','2022-12-19 17:20:36','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-19 11:21:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714651113611273',5963,'121671459662','6161101605458','1.00','270','retail','0','2022-12-19 18:51:53','','','','182','Cash',0.00,'270','','','12','','1','2022-12-19 12:51:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714721223711273',5964,'121671472095','082184090473','1.00','4000','retail','0','2022-12-19 20:49:34','','','','2600','Cash',0.00,'4000','','','12','','1','2022-12-19 14:49:40','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714721380303223',5965,'121671472095','6164002099210','1.00','100','retail','0','2022-12-19 20:49:34','','','','42','Cash',0.00,'100','','','12','','1','2022-12-19 14:49:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714721556353603',5966,'121671472095','5060608740253','2.00','160','retail','0','2022-12-19 20:49:34','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-19 14:49:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714721733340320',5967,'121671472095','6164001199034','1.00','50','retail','0','2022-12-19 20:49:34','','','','19','Cash',0.00,'50','','','12','','1','2022-12-19 14:49:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714723082033232',5968,'121671472182','6161101602938','2.00','500','retail','0','2022-12-19 20:51:49','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-19 14:51:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714759183340320',5969,'121671475904','8712000900663','1.00','300','retail','0','2022-12-19 21:51:59','','','','214','Cash',0.00,'300','','','12','','1','2022-12-19 15:52:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714779166313603',5970,'121671475927','6161101603324','2.00','500','retail','0','2022-12-19 22:26:11','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-19 16:26:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714779703340320',5971,'121671475927','6161101603379','3.00','750','retail','0','2022-12-19 22:26:11','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-19 16:26:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714780912033208',5972,'121671478015','6161101604703','1.00','250','retail','0','2022-12-19 22:28:12','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-19 16:30:27','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714783843340320',5973,'121671478374','3219820000078','2.00','13000','retail','0','2022-12-19 22:34:30','','','','4100','Cash',0.00,'6500','','','12','','1','2022-12-19 16:34:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714784206323603',5974,'121671478374','5000267125046','1.00','5300','retail','0','2022-12-19 22:34:30','','','','3540','Cash',0.00,'5300','','','12','','1','2022-12-19 16:34:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714784693714273',5975,'121671478374','5000267024011','2.00','8000','retail','0','2022-12-19 22:34:30','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-19 16:34:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714805810332020',5976,'121671480564','5010232953925','1.00','700','retail','0','2022-12-19 23:09:54','','','','315.787','Cash',0.00,'700','','','12','','1','2022-12-19 17:10:57','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714805942302348',5977,'121671480564','6001106225421','1.00','600','retail','0','2022-12-19 23:09:54','','','','272','Cash',0.00,'600','','','12','','1','2022-12-19 17:10:57','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714816013340320',5978,'121671480659','6001496301804','1.00','1200','retail','0','2022-12-19 23:26:54','','','','729','Cash',0.00,'1200','','','12','','1','2022-12-19 17:27:52','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714816140332020',5979,'121671480659','6161101603324','2.00','500','retail','0','2022-12-19 23:26:54','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-19 17:27:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714895993340320',5980,'121671489417','089540448992','1.00','2150','retail','0','2022-12-20 01:40:28','','','','1590','Cash',0.00,'2150','','','12','','1','2022-12-19 19:40:32','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714896280303223',5981,'121671489417','5449000188342','1.00','100','retail','0','2022-12-20 01:40:28','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-19 19:40:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714949833033327',5982,'121671489633','6161101602372','2.00','500','retail','0','2022-12-20 03:10:28','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-19 21:10:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714950276323603',5983,'121671489633','90162602','2.00','460','retail','0','2022-12-20 03:10:28','','','','147','Cash',0.00,'230','','','12','','1','2022-12-19 21:10:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216714964766033627',5984,'121671496462','6161101603379','8.00','2000','retail','0','2022-12-20 03:34:36','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-19 21:34:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','10.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715101483111273',5985,'121671510137','5010232953925','1.00','700','retail','0','2022-12-20 07:22:42','','','','315.787','Cash',0.00,'700','','','12','','1','2022-12-20 01:22:50','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715101613350320',5986,'121671510137','6001106225421','1.00','600','retail','0','2022-12-20 07:22:42','','','','272','Cash',0.00,'600','','','12','','1','2022-12-20 01:22:50','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715276890303223',5987,'121671524498','6161101602167','1.00','600','retail','0','2022-12-20 12:16:12','','','','418','Cash',0.00,'600','','','12','','1','2022-12-20 06:16:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715277712033277',5988,'121671524498','40822938','1.00','70','retail','0','2022-12-20 12:16:12','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-20 06:16:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715278440332020',5989,'121671527776','40822938','1.00','70','retail','0','2022-12-20 12:17:25','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-20 06:17:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715362000303223',5990,'121671530206','6008165007982','1.00','350','retail','0','2022-12-20 14:36:42','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-20 08:36:47','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715363323313273',5991,'121671536323','6161101604406','1.00','250','retail','0','2022-12-20 14:39:07','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-20 08:40:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715363466343603',5992,'121671536323','50196111','1.00','1500','retail','0','2022-12-20 14:39:07','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-20 08:40:14','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715397982033279',5993,'121671539771','4840709004321','1.00','1800','retail','0','2022-12-20 15:36:39','','','','900','Cash',0.00,'1800','','','12','','1','2022-12-20 09:37:44','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715409910332020',5994,'121671540982','6161101602600','4.00','1000','retail','0','2022-12-20 15:56:44','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-20 09:56:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715410030332020',5995,'121671540982','6161101602938','6.00','1500','retail','0','2022-12-20 15:56:44','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-20 09:56:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715489473350320',5996,'121671548703','5000281016689','1.00','5400','retail','0','2022-12-20 18:10:04','','','','4000','Cash',0.00,'5400','','','12','','1','2022-12-20 12:17:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715490042033209',5997,'121671548703','6161101602938','1.00','250','retail','0','2022-12-20 18:10:04','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-20 12:17:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715495290303223',5998,'121671549520','5000281016689','1.00','5400','retail','0','2022-12-20 18:19:01','','','','4000','Cash',0.00,'5400','','','12','','1','2022-12-20 12:19:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715495413415273',5999,'121671549520','6161101602938','2.00','500','retail','0','2022-12-20 18:19:01','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-20 12:19:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715559902033295',6000,'121671549545','6161101605458','1.00','270','retail','0','2022-12-20 20:07:18','','','','182','Cash',0.00,'270','','','12','','1','2022-12-20 14:07:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715560375631513',6001,'121671549545','54491069','1.00','80','retail','0','2022-12-20 20:07:18','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-20 14:07:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715563340303223',6002,'121671556041','6161101602181','1.00','550','retail','0','2022-12-20 20:12:14','','','','388','Cash',0.00,'550','','','12','','1','2022-12-20 14:12:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715603277033727',6003,'121671556375','6161101603379','2.00','500','retail','0','2022-12-20 21:19:04','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-20 15:19:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715603430332020',6004,'121671556375','8719327068540','2.00','600','retail','0','2022-12-20 21:19:04','','','','225','Cash',0.00,'300','','','12','','1','2022-12-20 15:19:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715636716373603',6005,'121671560349','6161100421615','1.00','500','retail','0','2022-12-20 22:14:32','','','','310','Cash',0.00,'500','','','12','','1','2022-12-20 16:15:34','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715637513350320',6006,'121671563737','3245990255215','1.00','12500','retail','0','2022-12-20 22:19:12','','','','9200','Cash',0.00,'12500','','','12','','1','2022-12-20 16:19:56','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715639330303223',6007,'121671563737','6161101603379','1.00','250','retail','0','2022-12-20 22:19:12','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-20 16:19:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715639510332020',6008,'121671563737','6161101604406','1.00','250','retail','0','2022-12-20 22:19:12','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-20 16:19:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715654288033827',6009,'121671563998','5000289933292','1.00','950','retail','0','2022-12-20 22:43:49','','','','710','Cash',0.00,'950','','','12','','1','2022-12-20 16:52:44','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715659916393603',6010,'121671565966','50196111','1.00','1500','retail','0','2022-12-20 22:53:11','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-20 16:58:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715711172033211',6011,'121671566325','5000267024011','1.00','4000','retail','0','2022-12-21 00:18:43','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-20 18:19:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715715203350320',6012,'121671571184','6001496011796','1.00','1700','retail','0','2022-12-21 00:26:09','','','','1072','Cash',0.00,'1700','','','12','','1','2022-12-20 18:27:31','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715715296323603',6013,'121671571184','5449000028921','1.00','150','retail','0','2022-12-21 00:26:09','','','','103','Cash',0.00,'150','','','12','','1','2022-12-20 18:27:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715715690303223',6014,'121671571184','54491069','1.00','80','retail','0','2022-12-21 00:26:09','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-20 18:27:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715766130332020',6015,'121671576600','6001108028044','5.00','1500','retail','0','2022-12-21 01:52:53','','','','201','Cash',0.00,'300','','','12','','1','2022-12-20 19:54:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','12.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715767733717273',6016,'121671576600','5060639129003','1.00','250','retail','0','2022-12-21 01:52:53','','','','153','Cash',0.00,'250','','','12','','1','2022-12-20 19:54:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715782043712273',6017,'121671576854','6161100421561','1.00','1300','retail','0','2022-12-21 02:16:55','','','','645','Cash',0.00,'1300','','','12','','1','2022-12-20 20:17:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715782157631713',6018,'121671576854','6164002099036','1.00','120','retail','0','2022-12-21 02:16:55','','','','40','Cash',0.00,'120','','','12','','1','2022-12-20 20:17:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715830666033627',6019,'121671583057','6161101602372','1.00','250','retail','0','2022-12-21 03:37:47','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-20 21:37:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715830958631813',6020,'121671583072','6161100421561','1.00','1300','retail','0','2022-12-21 03:38:16','','','','645','Cash',0.00,'1300','','','12','','1','2022-12-20 21:38:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715834353350320',6021,'121671583101','5449000180292','1.00','200','retail','0','2022-12-21 03:44:08','','','','125','Cash',0.00,'200','','','12','','1','2022-12-20 21:45:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715834472033243',6022,'121671583101','5000289020701','1.00','2500','retail','0','2022-12-21 03:44:08','','','','1900','Cash',0.00,'2500','','','12','','1','2022-12-20 21:45:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715938906393603',6023,'121671593871','5000267024011','1.00','4000','retail','0','2022-12-21 06:39:30','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-21 00:39:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715939573919273',6024,'121671593871','6161101603324','6.00','1500','retail','0','2022-12-21 06:39:30','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-21 00:39:51','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','15.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216715939693350320',6025,'121671593871','40822938','1.00','70','retail','0','2022-12-21 06:39:30','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-21 00:39:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716021450631013',6026,'121671602126','5000267024011','1.00','4000','retail','0','2022-12-21 08:56:31','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-21 02:56:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716021603012223',6027,'121671602126','6161101603324','6.00','1500','retail','0','2022-12-21 08:56:31','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-21 02:56:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','15.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716021766373603',6028,'121671602126','40822938','1.00','70','retail','0','2022-12-21 08:56:31','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-21 02:56:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716021903011273',6029,'121671602126','90162602','1.00','230','retail','0','2022-12-21 08:56:31','','','','147','Cash',0.00,'230','','','12','','1','2022-12-21 02:56:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716116843360320',6030,'121671611570','4058387004605','1.00','1400','retail','0','2022-12-21 11:34:45','','','','1050','Cash',0.00,'1400','','','12','','1','2022-12-21 05:45:57','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716249903360320',6031,'121671624980','6161101603324','2.00','500','retail','0','2022-12-21 15:16:57','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-21 09:17:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716250170332020',6032,'121671624980','90162602','1.00','230','retail','0','2022-12-21 15:16:57','','','','147','Cash',0.00,'230','','','12','','1','2022-12-21 09:17:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716255266033627',6033,'121671625517','6161101602433','4.00','800','retail','0','2022-12-21 15:25:27','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-21 09:26:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716302012200222',6034,'121671625575','5060639129003','1.00','250','retail','0','2022-12-21 16:43:28','','','','153','Cash',0.00,'250','','','12','','1','2022-12-21 10:43:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716312533212206',6035,'121671630226','6161101602167','1.00','600','retail','0','2022-12-21 17:03:14','','','','418','Cash',0.00,'600','','','12','','1','2022-12-21 11:03:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716313942033231',6036,'121671630226','5060608740253','1.00','80','retail','0','2022-12-21 17:03:14','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-21 11:03:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716343783360320',6037,'121671631400','1000','1.00','270','retail','0','2022-12-21 17:53:11','','','','192','Cash',0.00,'270','','','12','','1','2022-12-21 11:53:13','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716343903360320',6038,'121671631400','90490279','1.00','100','retail','0','2022-12-21 17:53:11','','','','68','Cash',0.00,'100','','','12','','1','2022-12-21 11:53:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716389720332020',6039,'121671638963','5000289020701','1.00','2500','retail','0','2022-12-21 19:10:33','','','','1900','Cash',0.00,'2500','','','12','','1','2022-12-21 13:14:17','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716389930303223',6040,'121671638963','6008165007784','1.00','370','retail','0','2022-12-21 19:10:33','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-21 13:14:17','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716390313711021',6041,'121671638963','3086120600051','1.00','80','retail','0','2022-12-21 19:10:33','','','','59.74','Cash',0.00,'80','','','12','','1','2022-12-21 13:14:17','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716401310332020',6042,'121671640121','6161101601979','2.00','500','retail','0','2022-12-21 19:28:52','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-21 13:28:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716417630332020',6043,'121671640136','6161101603379','2.00','500','retail','0','2022-12-21 19:57:32','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-21 13:57:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716418513711021',6044,'121671640136','6161101601979','2.00','500','retail','0','2022-12-21 19:57:32','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-21 13:57:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716430533033327',6045,'121671641862','8719327068540','1.00','300','retail','0','2022-12-21 20:17:43','','','','225','Cash',0.00,'300','','','12','','1','2022-12-21 14:18:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716430620303223',6046,'121671641862','6161101602372','1.00','250','retail','0','2022-12-21 20:17:43','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-21 14:18:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716433770303223',6047,'121671643322','1000','1.00','270','retail','0','2022-12-21 20:22:58','','','','192','Cash',0.00,'270','','','12','','1','2022-12-21 14:23:03','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716542162033224',6048,'121671647574','6001108049599','1.00','1300','retail','0','2022-12-21 23:23:37','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-21 17:23:40','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716577633517273',6049,'121671654223','5000292001001','1.00','1600','retail','0','2022-12-22 00:22:43','','','','1141','Cash',0.00,'1600','','','12','','1','2022-12-21 18:22:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716579773360320',6050,'121671657969','6161101601979','3.00','750','retail','0','2022-12-22 00:26:31','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-21 18:28:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','13.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716579903360320',6051,'121671657969','6001108028044','2.00','600','retail','0','2022-12-22 00:26:31','','','','201','Cash',0.00,'300','','','12','','1','2022-12-21 18:28:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716582850332020',6052,'121671658088','50196166','1.00','750','retail','0','2022-12-22 00:31:26','','','','443','Cash',0.00,'750','','','12','','1','2022-12-21 18:31:29','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716586056303603',6053,'121671658592','6161101603379','4.00','1000','retail','0','2022-12-22 00:36:46','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-21 18:36:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716603606631613',6054,'121671658611','6008165007982','1.00','350','retail','0','2022-12-22 01:06:01','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-21 19:06:07','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716609360303223',6055,'121671660369','5000292001001','2.00','3200','retail','0','2022-12-22 01:18:30','','','','1141','Cash',0.00,'1600','','','12','','1','2022-12-21 19:19:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716609770332020',6056,'121671660369','54491069','1.00','80','retail','0','2022-12-22 01:18:30','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-21 19:19:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716611092033211',6057,'121671660369','6164002099210','2.00','200','retail','0','2022-12-22 01:18:30','','','','42','Cash',0.00,'100','','','12','','1','2022-12-21 19:19:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','59.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716616652033261',6058,'121671661160','6008165007982','1.00','350','retail','0','2022-12-22 01:28:26','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-21 19:28:31','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716616800332020',6059,'121671661160','5000267014609','1.00','1500','retail','0','2022-12-22 01:28:26','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-21 19:28:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716616930332020',6060,'121671661160','5449000028921','1.00','150','retail','0','2022-12-22 01:28:26','','','','103','Cash',0.00,'150','','','12','','1','2022-12-21 19:28:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716617055033527',6061,'121671661160','6164002099036','1.00','120','retail','0','2022-12-22 01:28:26','','','','40','Cash',0.00,'120','','','12','','1','2022-12-21 19:28:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716623760332020',6062,'121671661712','6161101602051','1.00','550','retail','0','2022-12-22 01:39:47','','','','392','Cash',0.00,'550','','','12','','1','2022-12-21 19:39:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716623877033727',6063,'121671661712','5449000028921','1.00','150','retail','0','2022-12-22 01:39:47','','','','103','Cash',0.00,'150','','','12','','1','2022-12-21 19:39:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716729860332020',6064,'121671672933','6161101605465','1.00','800','retail','0','2022-12-22 04:36:40','','','','501','Cash',0.00,'800','','','12','','1','2022-12-21 22:37:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716729992033292',6065,'121671672933','5449000028976','1.00','150','retail','0','2022-12-22 04:36:40','','','','103','Cash',0.00,'150','','','12','','1','2022-12-21 22:37:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716789310303223',6066,'121671678919','5000267014609','1.00','1500','retail','0','2022-12-22 06:16:45','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-22 00:16:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716789463360320',6067,'121671678919','5449000028921','1.00','150','retail','0','2022-12-22 06:16:45','','','','103','Cash',0.00,'150','','','12','','1','2022-12-22 00:16:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716790052033209',6068,'121671678919','6008165007982','1.00','350','retail','0','2022-12-22 06:16:45','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-22 00:16:51','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716954053360320',6069,'121671695397','082184090473','1.00','4000','retail','0','2022-12-22 10:50:29','','','','2600','Cash',0.00,'4000','','','12','','1','2022-12-22 04:50:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716954159631913',6070,'121671695397','90162602','1.00','230','retail','0','2022-12-22 10:50:29','','','','147','Cash',0.00,'230','','','12','','1','2022-12-22 04:50:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216716954289631913',6071,'121671695397','5449000014536','1.00','100','retail','0','2022-12-22 10:50:29','','','','49','Cash',0.00,'100','','','12','','1','2022-12-22 04:50:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717103160332020',6072,'121671710294','5000267014609','1.00','1500','retail','0','2022-12-22 14:59:37','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-22 09:03:29','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717103620332020',6073,'121671710294','5449000028921','1.00','150','retail','0','2022-12-22 14:59:37','','','','103','Cash',0.00,'150','','','12','','1','2022-12-22 09:03:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717103772033230',6074,'121671710294','6008165007968','2.00','700','retail','0','2022-12-22 14:59:37','','','','308.5','Cash',0.00,'350','','','12','','1','2022-12-22 09:03:29','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717130140332020',6075,'121671710611','6161101602181','1.00','550','retail','0','2022-12-22 15:44:05','','','','388','Cash',0.00,'550','','','12','','1','2022-12-22 09:44:10','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717130453370320',6076,'121671710611','50112753','1.00','80','retail','0','2022-12-22 15:44:05','','','','56','Cash',0.00,'80','','','12','','1','2022-12-22 09:44:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717131850172253',6077,'121671713052','6164002099029','1.00','80','retail','0','2022-12-22 15:46:26','','','','36','Cash',0.00,'80','','','12','','1','2022-12-22 09:46:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717134642033243',6078,'121671713191','6161101603379','2.00','500','retail','0','2022-12-22 15:51:05','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-22 09:51:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717195242033259',6079,'121671713471','6161101605458','1.00','270','retail','0','2022-12-22 17:32:43','','','','182','Cash',0.00,'270','','','12','','1','2022-12-22 11:32:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717195401631113',6080,'121671713471','1000','1.00','270','retail','0','2022-12-22 17:32:43','','','','192','Cash',0.00,'270','','','12','','1','2022-12-22 11:32:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717195626363603',6081,'121671713471','90490279','1.00','100','retail','0','2022-12-22 17:32:43','','','','68','Cash',0.00,'100','','','12','','1','2022-12-22 11:32:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717251883370320',6082,'121671725180','6161101606011','1.00','250','retail','0','2022-12-22 19:06:39','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-22 13:06:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717251982631213',6083,'121671725180','6164001199034','1.00','50','retail','0','2022-12-22 19:06:39','','','','19','Cash',0.00,'50','','','12','','1','2022-12-22 13:06:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717312783370320',6084,'121671725207','6161101603379','1.00','250','retail','0','2022-12-22 20:48:10','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-22 14:48:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717312903631313',6085,'121671725207','6164001199034','1.00','50','retail','0','2022-12-22 20:48:10','','','','19','Cash',0.00,'50','','','12','','1','2022-12-22 14:48:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717313480303223',6086,'121671731296','6161101603379','1.00','250','retail','0','2022-12-22 20:50:34','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-22 14:50:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717313713370320',6087,'121671731296','1000','1.00','270','retail','0','2022-12-22 20:50:34','','','','192','Cash',0.00,'270','','','12','','1','2022-12-22 14:50:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717314330330472',6088,'121671731296','90490279','1.00','100','retail','0','2022-12-22 20:50:34','','','','68','Cash',0.00,'100','','','12','','1','2022-12-22 14:50:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717445242033254',6089,'121671744382','5449000004864','1.00','250','retail','0','2022-12-23 00:28:45','','','','158','Cash',0.00,'250','','','12','','1','2022-12-22 18:33:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717448873418273',6090,'121671744875','6161101602167','1.00','600','retail','0','2022-12-23 00:34:48','','','','418','Cash',0.00,'600','','','12','','1','2022-12-22 18:34:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717458704631413',6091,'121671745856','5010103930666','1.00','850','retail','0','2022-12-23 00:51:10','','','','586','Cash',0.00,'850','','','12','','1','2022-12-22 18:51:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717480110303223',6092,'121671745876','6161101605465','1.00','800','retail','0','2022-12-23 01:26:52','','','','501','Cash',0.00,'800','','','12','','1','2022-12-22 19:26:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717496788033827',6093,'121671748019','5010232965096','1.00','600','retail','0','2022-12-23 01:54:39','','','','263.157','Cash',0.00,'600','','','12','','1','2022-12-22 19:54:46','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717497090332020',6094,'121671749688','5011013100132','1.00','2800','retail','0','2022-12-23 01:55:10','','','','1916','Cash',0.00,'2800','','','12','','1','2022-12-22 19:55:13','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717506215631513',6095,'121671749715','6161101602051','1.00','550','retail','0','2022-12-23 02:10:34','','','','392','Cash',0.00,'550','','','12','','1','2022-12-22 20:10:40','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717506344033427',6096,'121671749715','54491069','1.00','80','retail','0','2022-12-23 02:10:34','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-22 20:10:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717555115631513',6097,'121671750642','6161101604703','2.00','500','retail','0','2022-12-23 03:33:20','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-22 21:33:26','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717555200303223',6098,'121671750642','5018907194802','1.00','150','retail','0','2022-12-23 03:33:20','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-22 21:33:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717653203613273',6099,'121671765283','5000267024011','2.00','8000','retail','0','2022-12-23 06:17:16','','','','2835','Cash',0.00,'4000','','','12','','1','2022-12-23 00:17:43','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717653342033235',6100,'121671765283','5018907194802','2.00','300','retail','0','2022-12-23 06:17:16','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-23 00:17:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717654353370320',6101,'121671765283','5449000028921','2.00','300','retail','0','2022-12-23 06:17:16','','','','103','Cash',0.00,'150','','','12','','1','2022-12-23 00:17:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717655700332020',6102,'121671765467','5010232953925','1.00','700','retail','0','2022-12-23 06:19:31','','','','315.787','Cash',0.00,'700','','','12','','1','2022-12-23 00:31:06','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717857390303223',6103,'121671779580','6161101602167','1.00','600','retail','0','2022-12-23 11:56:04','','','','418','Cash',0.00,'600','','','12','','1','2022-12-23 05:57:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717857638631813',6104,'121671779580','5449000014535','1.00','120','retail','0','2022-12-23 11:56:04','','','','64','Cash',0.00,'120','','','12','','1','2022-12-23 05:57:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717924611033127',6105,'121671785845','8906125990009','1.00','1000','retail','0','2022-12-23 13:48:01','','','','660','Cash',0.00,'1000','','','12','','1','2022-12-23 07:48:08','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717924800303223',6106,'121671785845','90490279','1.00','100','retail','0','2022-12-23 13:48:01','','','','68','Cash',0.00,'100','','','12','','1','2022-12-23 07:48:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216717948833033327',6107,'121671792490','6161101560108','1.00','1100','retail','0','2022-12-23 14:28:04','','','','690','Cash',0.00,'1100','','','12','','1','2022-12-23 08:28:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718047988033827',6108,'121671804636','5449000028921','1.00','150','retail','0','2022-12-23 17:16:25','','','','103','Cash',0.00,'150','','','12','','1','2022-12-23 11:18:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718048892033284',6109,'121671804636','75032814','4.00','1800','retail','0','2022-12-23 17:16:25','','','','295','Cash',0.00,'450','','','12','','1','2022-12-23 11:18:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','16.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718049842033294',6110,'121671804636','6164002099036','1.00','120','retail','0','2022-12-23 17:16:25','','','','40','Cash',0.00,'120','','','12','','1','2022-12-23 11:18:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718103822033230',6111,'121671809122','5018907194802','1.00','150','retail','0','2022-12-23 18:46:36','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-23 12:49:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718103950303223',6112,'121671809122','40822938','1.00','70','retail','0','2022-12-23 18:46:36','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-23 12:49:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718107643380320',6113,'121671810547','6001496301804','1.00','1200','retail','0','2022-12-23 18:54:32','','','','729','Cash',0.00,'1200','','','12','','1','2022-12-23 12:57:09','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718108211631113',6114,'121671810547','024000150152','2.00','600','retail','0','2022-12-23 18:54:32','','','','205','Cash',0.00,'300','','','12','','1','2022-12-23 12:57:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718108330332020',6115,'121671810547','024000150121','1.00','300','retail','0','2022-12-23 18:54:32','','','','205','Cash',0.00,'300','','','12','','1','2022-12-23 12:57:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718108711631113',6116,'121671810547','5060639129003','1.00','250','retail','0','2022-12-23 18:54:32','','','','153','Cash',0.00,'250','','','12','','1','2022-12-23 12:57:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718151380332020',6117,'121671811035','024000150152','1.00','300','retail','0','2022-12-23 20:05:38','','','','205','Cash',0.00,'300','','','12','','1','2022-12-23 14:05:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718165133115273',6118,'121671815143','6161101601979','2.00','500','retail','0','2022-12-23 20:29:15','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-23 14:29:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718165543380320',6119,'121671815143','6161101602921','2.00','500','retail','0','2022-12-23 20:29:15','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-23 14:29:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718247122631213',6120,'121671824705','6001452258005','1.00','1600','retail','0','2022-12-23 22:45:22','','','','1150','Cash',0.00,'1600','','','12','','1','2022-12-23 16:46:46','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718247213380320',6121,'121671824705','6002886001182','1.00','1900','retail','0','2022-12-23 22:45:22','','','','1110','Cash',0.00,'1900','','','12','','1','2022-12-23 16:46:46','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718264266323603',6122,'121671826416','5010103930666','1.00','850','retail','0','2022-12-23 23:14:03','','','','586','Cash',0.00,'850','','','12','','1','2022-12-23 17:14:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718264423380320',6123,'121671826416','50112265','2.00','160','retail','0','2022-12-23 23:14:03','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-23 17:14:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718285952631213',6124,'121671826454','8906054940120','1.00','1300','retail','0','2022-12-23 23:50:08','','','','795','Cash',0.00,'1300','','','12','','1','2022-12-23 17:50:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718286070332020',6125,'121671826454','8906054940410','1.00','500','retail','0','2022-12-23 23:50:08','','','','305','Cash',0.00,'500','','','12','','1','2022-12-23 17:50:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718288233380320',6126,'121671828619','5011007003029','1.00','2700','retail','0','2022-12-23 23:53:43','','','','2000','Cash',0.00,'2700','','','12','','1','2022-12-23 17:53:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718292803380320',6127,'121671829272','6008835000930','1.00','180','retail','0','2022-12-24 00:03:54','','','','130','Cash',0.00,'180','','','12','','1','2022-12-23 18:03:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718293646363603',6128,'121671829272','6161101602433','2.00','400','retail','0','2022-12-24 00:03:54','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-23 18:03:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718294332631213',6129,'121671829272','6161101603379','2.00','500','retail','0','2022-12-24 00:03:54','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-23 18:03:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718300793310273',6130,'121671829439','5010103930628','1.00','1750','retail','0','2022-12-24 00:15:04','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-23 18:15:08','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718301046303603',6131,'121671829439','6164001199034','1.00','50','retail','0','2022-12-24 00:15:04','','','','19','Cash',0.00,'50','','','12','','1','2022-12-23 18:15:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718322270303223',6132,'121671830110','100','3.00','750','retail','0','2022-12-24 00:50:27','','','','177','Cash',0.00,'250','','','12','','1','2022-12-23 18:50:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718343710303223',6133,'121671832232','6161101603379','5.00','1250','retail','0','2022-12-24 01:26:12','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-23 19:26:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','10.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718427513417273',6134,'121671842672','6161101603522','1.00','800','retail','0','2022-12-24 03:46:23','','','','501','Cash',0.00,'800','','','12','','1','2022-12-23 21:49:26','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718427834631413',6135,'121671842672','6161101603324','2.00','500','retail','0','2022-12-24 03:46:23','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-23 21:49:26','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718456080303223',6136,'121671842969','54491069','1.00','80','retail','0','2022-12-24 04:33:43','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-23 22:33:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718456223380320',6137,'121671842969','6161101603324','4.00','1000','retail','0','2022-12-24 04:33:43','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-23 22:33:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','5.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718837998631813',6138,'121671877625','4058387004605','1.00','1400','retail','0','2022-12-24 15:10:01','','','','1050','Cash',0.00,'1400','','','12','','1','2022-12-24 09:10:04','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718965326333603',6139,'121671894425','6161101602372','1.00','250','retail','0','2022-12-24 18:42:15','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-24 12:43:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718988232033288',6140,'121671896593','6161101602372','1.00','250','retail','0','2022-12-24 19:20:35','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-24 13:20:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216718988352819320',6141,'121671896593','6161101561280','1.00','350','retail','0','2022-12-24 19:20:35','','','','190','Cash',0.00,'350','','','12','','1','2022-12-24 13:20:53','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719011286323603',6142,'121671901108','6974929192235','1.00','3250','retail','0','2022-12-24 19:58:49','','','','2500','Cash',0.00,'3250','','','12','','1','2022-12-24 13:58:52','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719012683012273',6143,'121671901134','6161101605458','1.00','270','retail','0','2022-12-24 20:01:08','','','','182','Cash',0.00,'270','','','12','','1','2022-12-24 14:01:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719012932033221',6144,'121671901277','54491069','1.00','80','retail','0','2022-12-24 20:02:48','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-24 14:11:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719013016303603',6145,'121671901277','6161101605458','1.00','270','retail','0','2022-12-24 20:02:48','','','','182','Cash',0.00,'270','','','12','','1','2022-12-24 14:11:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719013670631013',6146,'121671901277','6008165007784','1.00','370','retail','0','2022-12-24 20:02:48','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-24 14:11:01','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719027130631013',6147,'121671902693','6008165018926','1.00','400','retail','0','2022-12-24 20:25:24','','','','270','Cash',0.00,'400','','','12','','1','2022-12-24 14:26:05','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719027240332020',6148,'121671902693','6008165018933','1.00','400','retail','0','2022-12-24 20:25:24','','','','270','Cash',0.00,'400','','','12','','1','2022-12-24 14:26:05','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719031180332020',6149,'121671902767','6161101561280','1.00','350','retail','0','2022-12-24 20:31:59','','','','190','Cash',0.00,'350','','','12','','1','2022-12-24 14:32:06','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719047593017273',6150,'121671904752','024000150152','1.00','300','retail','0','2022-12-24 21:00:41','','','','205','Cash',0.00,'300','','','12','','1','2022-12-24 15:01:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719047923390320',6151,'121671904752','6164001199034','1.00','50','retail','0','2022-12-24 21:00:41','','','','19','Cash',0.00,'50','','','12','','1','2022-12-24 15:01:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719048411033127',6152,'121671904752','40262144','2.00','400','retail','0','2022-12-24 21:00:41','','','','125','Cash',0.00,'200','','','12','','1','2022-12-24 15:01:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719052090332020',6153,'121671904899','6161101605458','1.00','270','retail','0','2022-12-24 21:06:49','','','','182','Cash',0.00,'270','','','12','','1','2022-12-24 15:06:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719052330631013',6154,'121671905221','40822938','2.00','140','retail','0','2022-12-24 21:07:13','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-24 15:08:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719068973018273',6155,'121671905304','6161101601979','1.00','250','retail','0','2022-12-24 21:35:25','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-24 15:36:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719069143390320',6156,'121671905304','50112265','1.00','80','retail','0','2022-12-24 21:35:25','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-24 15:36:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719069246323603',6157,'121671905304','6164002099029','1.00','80','retail','0','2022-12-24 21:35:25','','','','36','Cash',0.00,'80','','','12','','1','2022-12-24 15:36:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719079710332020',6158,'121671907008','50196111','2.00','3000','retail','0','2022-12-24 21:53:05','','','','855','Cash',0.00,'1500','','','12','','1','2022-12-24 15:53:08','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719079852033297',6159,'121671907008','5018907194802','2.00','300','retail','0','2022-12-24 21:53:05','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-24 15:53:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719081073011273',6160,'121671907989','1000','1.00','270','retail','0','2022-12-24 21:55:17','','','','192','Cash',0.00,'270','','','12','','1','2022-12-24 15:55:19','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719081163011273',6161,'121671907989','54491069','1.00','80','retail','0','2022-12-24 21:55:17','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-24 15:55:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719108633118273',6162,'121671910021','1000','1.00','270','retail','0','2022-12-24 22:41:04','','','','192','Cash',0.00,'270','','','12','','1','2022-12-24 16:42:05','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719109631631113',6163,'121671910957','6161101604406','1.00','250','retail','0','2022-12-24 22:43:04','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-24 16:45:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719109710332020',6164,'121671910957','3086120600020','1.00','120','retail','0','2022-12-24 22:43:04','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-24 16:45:15','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719109830310992',6165,'121671910957','6008165007784','1.00','370','retail','0','2022-12-24 22:43:04','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-24 16:45:15','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719139903390320',6166,'121671911116','1000','1.00','270','retail','0','2022-12-24 23:33:10','','','','192','Cash',0.00,'270','','','12','','1','2022-12-24 17:33:13','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719174142033247',6167,'121671913995','6161100421615','1.00','500','retail','0','2022-12-25 00:31:02','','','','310','Cash',0.00,'500','','','12','','1','2022-12-24 18:31:06','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719174621631113',6168,'121671913995','6161101602938','1.00','250','retail','0','2022-12-25 00:31:02','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-24 18:31:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719178503118273',6169,'121671917839','6161101561280','1.00','350','retail','0','2022-12-25 00:37:31','','','','190','Cash',0.00,'350','','','12','','1','2022-12-24 18:37:33','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719216866383603',6170,'121671917855','6008165007784','1.00','370','retail','0','2022-12-25 01:41:52','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-24 19:42:02','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719217111033127',6171,'121671917855','6161100421509','1.00','1350','retail','0','2022-12-25 01:41:52','','','','787','Cash',0.00,'1350','','','12','','1','2022-12-24 19:42:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719217703390320',6172,'121671921724','5010103930666','1.00','850','retail','0','2022-12-25 01:43:47','','','','586','Cash',0.00,'850','','','12','','1','2022-12-24 19:48:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719217880332020',6173,'121671921724','50112265','2.00','160','retail','0','2022-12-25 01:43:47','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-24 19:48:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719218262631213',6174,'121671921724','40262144','1.00','200','retail','0','2022-12-25 01:43:47','','','','125','Cash',0.00,'200','','','12','','1','2022-12-24 19:48:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719241806383603',6175,'121671922087','6161101605458','1.00','270','retail','0','2022-12-25 02:23:01','','','','182','Cash',0.00,'270','','','12','','1','2022-12-24 20:23:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719243460303223',6176,'121671924333','6001108016034','1.00','500','retail','0','2022-12-25 02:25:56','','','','352','Cash',0.00,'500','','','12','','1','2022-12-24 20:27:02','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719243552033234',6177,'121671924333','54491069','1.00','80','retail','0','2022-12-25 02:25:56','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-24 20:27:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719245990332020',6178,'121671924588','6161101604406','2.00','500','retail','0','2022-12-25 02:29:59','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-24 20:30:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719247356333603',6179,'121671924724','6008165007982','1.00','350','retail','0','2022-12-25 02:32:16','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-24 20:32:19','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719249103219273',6180,'121671924741','5449000028921','1.00','150','retail','0','2022-12-25 02:35:37','','','','103','Cash',0.00,'150','','','12','','1','2022-12-24 20:36:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719249360332020',6181,'121671924741','5010752000345','1.00','2500','retail','0','2022-12-25 02:35:37','','','','1750','Cash',0.00,'2500','','','12','','1','2022-12-24 20:36:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719258720303223',6182,'121671925864','6161101602600','2.00','500','retail','0','2022-12-25 02:51:12','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-24 20:51:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719261562033216',6183,'121671925877','6161101602938','3.00','750','retail','0','2022-12-25 02:55:57','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-24 20:56:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719278422033227',6184,'121671926166','6161101604406','1.00','250','retail','0','2022-12-25 03:24:17','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-24 21:24:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719278576353603',6185,'121671926166','6161101603324','1.00','250','retail','0','2022-12-25 03:24:17','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-24 21:24:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719290852033209',6186,'121671927868','6008165007814','2.00','700','retail','0','2022-12-25 03:44:46','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-24 21:44:52','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719361003701021',6187,'121671936092','6161101605458','1.00','270','retail','0','2022-12-25 05:41:41','','','','182','Cash',0.00,'270','','','12','','1','2022-12-24 23:41:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719543955033527',6188,'121671948989','54493360','1.00','80','retail','0','2022-12-25 10:46:37','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-25 04:46:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719750462251333',6189,'121671972509','5010103930628','1.00','1750','retail','0','2022-12-25 17:08:50','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-25 11:08:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719750573710273',6190,'121671972509','5449000028976','1.00','150','retail','0','2022-12-25 17:08:50','','','','103','Cash',0.00,'150','','','12','','1','2022-12-25 11:08:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719862598631813',6191,'121671977335','5010103930840','1.00','500','retail','0','2022-12-25 19:37:40','','','','335','Cash',0.00,'500','','','12','','1','2022-12-25 13:39:15','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719863690303223',6192,'121671986358','5000267014609','1.00','1500','retail','0','2022-12-25 19:41:06','','','','794','Cash',0.00,'1500','','','12','','1','2022-12-25 13:41:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719864236323603',6193,'121671986358','6161101602921','6.00','1500','retail','0','2022-12-25 19:41:06','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-25 13:41:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719864656363603',6194,'121671986358','6161101603324','1.00','250','retail','0','2022-12-25 19:41:06','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-25 13:41:10','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719867120303223',6195,'121671986472','6161101561549','1.00','950','retail','0','2022-12-25 19:46:53','','','','570','Cash',0.00,'950','','','12','','1','2022-12-25 13:50:38','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719867250020306',6196,'121671986472','5060608740253','1.00','80','retail','0','2022-12-25 19:46:53','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-25 13:50:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719868126313603',6197,'121671986472','5060608740253','1.00','80','retail','0','2022-12-25 19:46:53','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-25 13:50:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719893693390320',6198,'121671987040','6161101602921','1.00','250','retail','0','2022-12-25 20:30:07','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-25 14:30:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719893823390320',6199,'121671987040','6161101601979','1.00','250','retail','0','2022-12-25 20:30:07','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-25 14:30:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719894063390320',6200,'121671987040','6161101602372','2.00','500','retail','0','2022-12-25 20:30:07','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-25 14:30:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719949190332020',6201,'121671989413','6161101603324','2.00','500','retail','0','2022-12-25 22:02:00','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-25 16:02:03','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719958989631913',6202,'121671994924','6161101602372','2.00','500','retail','0','2022-12-25 22:18:19','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-25 16:18:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719962383390320',6203,'121671996227','6161101604406','2.00','500','retail','0','2022-12-25 22:23:59','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-25 16:24:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719984670332020',6204,'121671996243','1000','1.00','270','retail','0','2022-12-25 23:01:10','','','','192','Cash',0.00,'270','','','12','','1','2022-12-25 17:01:16','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719991589631913',6205,'121671999136','5010677015615','1.00','1800','retail','0','2022-12-25 23:12:50','','','','1300','Cash',0.00,'1800','','','12','','1','2022-12-25 17:14:52','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216719991702033219',6206,'121671999136','6161101601979','6.00','1500','retail','0','2022-12-25 23:12:50','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-25 17:14:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720015046303603',6207,'121671999297','6161101602051','1.00','550','retail','0','2022-12-25 23:51:47','','','','392','Cash',0.00,'550','','','12','','1','2022-12-25 17:51:52','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720015790303223',6208,'121672001516','5000281021621','1.00','6500','retail','0','2022-12-25 23:54:12','','','','4450','Cash',0.00,'6500','','','12','','1','2022-12-25 17:56:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720016430332020',6209,'121672001516','5449000028921','1.00','150','retail','0','2022-12-25 23:54:12','','','','103','Cash',0.00,'150','','','12','','1','2022-12-25 17:56:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720016513300320',6210,'121672001516','8000530300474','1.00','1600','retail','0','2022-12-25 23:54:12','','','','1050','Cash',0.00,'1600','','','12','','1','2022-12-25 17:56:35','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720035300033027',6211,'121672003078','5010103930628','1.00','1750','retail','0','2022-12-26 00:52:10','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-25 18:54:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720035670303223',6212,'121672003078','54491069','1.00','80','retail','0','2022-12-26 00:52:10','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-25 18:54:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720035777337123',6213,'121672003078','6164001199034','1.00','50','retail','0','2022-12-26 00:52:10','','','','19','Cash',0.00,'50','','','12','','1','2022-12-25 18:54:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720035870303223',6214,'121672003078','6009627080246','1.00','180','retail','0','2022-12-26 00:52:10','','','','92','Cash',0.00,'180','','','12','','1','2022-12-25 18:54:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720051300033027',6215,'121672003078','6161101606011','3.00','750','retail','0','2022-12-26 00:52:10','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-25 18:54:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720060230632013',6216,'121672005251','6161101602204','1.00','450','retail','0','2022-12-26 01:07:04','','','','268','Cash',0.00,'450','','','12','','1','2022-12-25 19:07:08','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720072350632013',6217,'121672006030','6161101605458','1.00','270','retail','0','2022-12-26 01:27:16','','','','182','Cash',0.00,'270','','','12','','1','2022-12-25 19:27:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720102483112273',6218,'121672007242','6008165007814','1.00','350','retail','0','2022-12-26 02:18:23','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-25 20:20:05','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720102946393603',6219,'121672007242','5449000028921','1.00','150','retail','0','2022-12-26 02:18:23','','','','103','Cash',0.00,'150','','','12','','1','2022-12-25 20:20:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720103022201333',6220,'121672007242','6009627080246','1.00','180','retail','0','2022-12-26 02:18:23','','','','92','Cash',0.00,'180','','','12','','1','2022-12-25 20:20:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720174853114273',6221,'121672010408','4067700014535','1.00','5200','retail','0','2022-12-26 04:18:22','','','','3350','Cash',0.00,'5200','','','12','','1','2022-12-25 22:20:11','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720175016303603',6222,'121672010408','90162602','2.00','460','retail','0','2022-12-26 04:18:22','','','','147','Cash',0.00,'230','','','12','','1','2022-12-25 22:20:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720221953211273',6223,'121672017614','6161101602372','2.00','500','retail','0','2022-12-26 05:36:36','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-25 23:36:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720232993212273',6224,'121672023285','6161101602372','2.00','500','retail','0','2022-12-26 05:55:00','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-25 23:55:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720265932632213',6225,'121672023304','6161101602372','6.00','1500','retail','0','2022-12-26 06:51:13','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-26 00:52:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720266100033027',6226,'121672023304','5018907194802','1.00','150','retail','0','2022-12-26 06:51:13','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-26 00:52:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720266203300320',6227,'121672023304','5010103930666','1.00','850','retail','0','2022-12-26 06:51:13','','','','586','Cash',0.00,'850','','','12','','1','2022-12-26 00:52:14','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720266722033266',6228,'121672023304','5010232953925','2.00','1400','retail','0','2022-12-26 06:51:13','','','','315.787','Cash',0.00,'700','','','12','','1','2022-12-26 00:52:14','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720630763300320',6229,'121672058477','3219820005899','1.00','10500','retail','0','2022-12-26 16:57:57','','','','7100','Cash',0.00,'10500','','','12','','1','2022-12-26 10:58:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720699644033427',6230,'121672069961','6001108049582','1.00','1300','retail','0','2022-12-26 18:52:44','','','','641','Cash',0.00,'1300','','','12','','1','2022-12-26 13:15:48','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720746392033264',6231,'121672074583','3219820005899','2.00','21000','retail','0','2022-12-26 20:11:39','','','','7100','Cash',0.00,'10500','','','12','','1','2022-12-26 14:11:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720746982033264',6232,'121672074583','080432400395','1.00','4350','retail','0','2022-12-26 20:11:39','','','','3200','Cash',0.00,'4350','','','12','','1','2022-12-26 14:11:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720811580332020',6233,'121672081147','6161101602372','2.00','500','retail','0','2022-12-26 21:59:19','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-26 15:59:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720811828632813',6234,'121672081165','6161101603324','6.00','1500','retail','0','2022-12-26 21:59:42','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-26 15:59:45','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720819411033127',6235,'121672081930','5010103930628','1.00','1750','retail','0','2022-12-26 22:12:22','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-26 16:13:32','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720845716373603',6236,'121672084548','6161101603379','2.00','500','retail','0','2022-12-26 22:56:11','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-26 16:56:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720848803818273',6237,'121672084872','5060639129003','1.00','250','retail','0','2022-12-26 23:03:34','','','','153','Cash',0.00,'250','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720848953818273',6238,'121672084872','90162602','2.00','460','retail','0','2022-12-26 23:03:34','','','','147','Cash',0.00,'230','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720849546353603',6239,'121672084872','5449000014536','1.00','100','retail','0','2022-12-26 23:03:34','','','','49','Cash',0.00,'100','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720849832920022',6240,'121672084872','5449000180292','1.00','200','retail','0','2022-12-26 23:03:34','','','','125','Cash',0.00,'200','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720849911033127',6241,'121672084872','5018907194802','1.00','150','retail','0','2022-12-26 23:03:34','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720850132033205',6242,'121672084872','5449000028976','1.00','150','retail','0','2022-12-26 23:03:34','','','','103','Cash',0.00,'150','','','12','','1','2022-12-26 17:05:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720851163811273',6243,'121672085108','6161101602372','1.00','250','retail','0','2022-12-26 23:05:17','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-26 17:05:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720854811033127',6244,'121672085122','5010103930628','1.00','1750','retail','0','2022-12-26 23:11:22','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-26 17:11:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720854982033245',6245,'121672085488','6161101602372','2.00','500','retail','0','2022-12-26 23:11:39','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-26 17:11:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720862497637123',6246,'121672085503','6161101602433','2.00','400','retail','0','2022-12-26 23:24:24','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-26 17:25:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720862633812273',6247,'121672085503','6161101603379','2.00','500','retail','0','2022-12-26 23:24:24','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-26 17:25:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720867896383603',6248,'121672086328','6161101601979','3.00','750','retail','0','2022-12-26 23:33:43','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-26 17:33:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720868020303223',6249,'121672086328','6161101603324','1.00','250','retail','0','2022-12-26 23:33:43','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-26 17:33:46','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720868233033327',6250,'121672086328','5018907194802','1.00','150','retail','0','2022-12-26 23:33:43','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-26 17:33:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720889120303223',6251,'121672088896','6161101602938','3.00','750','retail','0','2022-12-27 00:08:33','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-26 18:08:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720891970332020',6252,'121672089168','6161101603379','6.00','1500','retail','0','2022-12-27 00:13:18','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-26 18:13:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720892200033027',6253,'121672089202','6001108028044','2.00','600','retail','0','2022-12-27 00:14:17','','','','201','Cash',0.00,'300','','','12','','1','2022-12-26 18:17:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720892318632813',6254,'121672089202','5449000028921','1.00','150','retail','0','2022-12-27 00:14:17','','','','103','Cash',0.00,'150','','','12','','1','2022-12-26 18:17:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720892448632813',6255,'121672089202','6161101602372','4.00','1000','retail','0','2022-12-27 00:14:17','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-26 18:17:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720892573300320',6256,'121672089202','6161100421493','1.00','450','retail','0','2022-12-27 00:14:17','','','','301','Cash',0.00,'450','','','12','','1','2022-12-26 18:17:31','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720907612033270',6257,'121672089453','5449000028921','1.00','150','retail','0','2022-12-27 00:39:22','','','','103','Cash',0.00,'150','','','12','','1','2022-12-26 18:39:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720926483300320',6258,'121672092637','50196166','1.00','750','retail','0','2022-12-27 01:10:49','','','','443','Cash',0.00,'750','','','12','','1','2022-12-26 19:13:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720939559632913',6259,'121672092818','90162602','1.00','230','retail','0','2022-12-27 01:34:53','','','','147','Cash',0.00,'230','','','12','','1','2022-12-26 19:37:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720940543300320',6260,'121672092818','50112265','1.00','80','retail','0','2022-12-27 01:34:53','','','','53.33','Cash',0.00,'80','','','12','','1','2022-12-26 19:37:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720940731222232',6261,'121672092818','54493360','1.00','80','retail','0','2022-12-27 01:34:53','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-26 19:37:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720940832033204',6262,'121672092818','5010103930628','1.00','1750','retail','0','2022-12-27 01:34:53','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-26 19:37:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720940923910273',6263,'121672092818','6008165007784','1.00','370','retail','0','2022-12-27 01:34:53','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-26 19:37:18','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720949223919273',6264,'121672094239','6161101603522','1.00','800','retail','0','2022-12-27 01:48:57','','','','501','Cash',0.00,'800','','','12','','1','2022-12-26 19:49:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720949366033627',6265,'121672094239','5449000004864','1.00','250','retail','0','2022-12-27 01:48:57','','','','158','Cash',0.00,'250','','','12','','1','2022-12-26 19:49:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''); INSERT INTO `sales_order` VALUES ('1216720988980303223',6266,'121672094988','6161100420823','1.00','300','retail','0','2022-12-27 02:55:08','','','','198','Cash',0.00,'300','','','12','','1','2022-12-26 20:55:10','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720989062033298',6267,'121672094988','6164001199034','1.00','50','retail','0','2022-12-27 02:55:08','','','','19','Cash',0.00,'50','','','12','','1','2022-12-26 20:55:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216720993880303223',6268,'121672098913','1000','1.00','270','retail','0','2022-12-27 03:03:08','','','','192','Cash',0.00,'270','','','12','','1','2022-12-26 21:03:11','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721123262033232',6269,'121672112311','6161100421356','1.00','1400','retail','0','2022-12-27 06:43:15','','','','829','Cash',0.00,'1400','','','12','','1','2022-12-27 00:43:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721283452033238',6270,'121672128330','6008165007784','1.00','370','retail','0','2022-12-27 11:06:43','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-27 05:06:52','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721283693213273',6271,'121672128330','3086120600020','1.00','120','retail','0','2022-12-27 11:06:43','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-27 05:06:52','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721284020332020',6272,'121672128330','5060639129003','1.00','250','retail','0','2022-12-27 11:06:43','','','','153','Cash',0.00,'250','','','12','','1','2022-12-27 05:06:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721414693310320',6273,'121672141389','5000292001001','1.00','1600','retail','0','2022-12-27 14:48:53','','','','1141','Cash',0.00,'1600','','','12','','1','2022-12-27 08:49:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721415502033251',6274,'121672141389','5018907194802','3.00','450','retail','0','2022-12-27 14:48:53','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-27 08:49:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721415733033327',6275,'121672141389','54493360','1.00','80','retail','0','2022-12-27 14:48:53','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-27 08:49:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721416677033727',6276,'121672141389','6008165007814','2.00','700','retail','0','2022-12-27 14:48:53','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-27 08:49:17','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721558592033285',6277,'121672155845','50196166','1.00','750','retail','0','2022-12-27 18:44:20','','','','443','Cash',0.00,'750','','','12','','1','2022-12-27 12:44:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721561170303223',6278,'121672155864','6161101603379','1.00','250','retail','0','2022-12-27 18:48:38','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-27 12:48:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721598580332020',6279,'121672156123','6161101602938','2.00','500','retail','0','2022-12-27 19:50:59','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-27 13:51:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721630533310320',6280,'121672159865','6161101606547','1.00','550','retail','0','2022-12-27 20:44:27','','','','388','Cash',0.00,'550','','','12','','1','2022-12-27 14:45:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721630670303223',6281,'121672159865','54491069','1.00','80','retail','0','2022-12-27 20:44:27','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-27 14:45:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721633842033233',6282,'121672163132','024000191667','1.00','300','retail','0','2022-12-27 20:49:45','','','','205','Cash',0.00,'300','','','12','','1','2022-12-27 14:49:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721642766033627',6283,'121672163390','6001506908146','2.00','3000','retail','0','2022-12-27 21:04:37','','','','865','Cash',0.00,'1500','','','12','','1','2022-12-27 15:04:40','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721644011033127',6284,'121672164391','6002269000566','1.00','1200','retail','0','2022-12-27 21:06:41','','','','680','Cash',0.00,'1200','','','12','','1','2022-12-27 15:11:14','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721646842033264',6285,'121672164675','5000289929417','1.00','3000','retail','0','2022-12-27 21:12:37','','','','1900','Cash',0.00,'3000','','','12','','1','2022-12-27 15:13:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721647423617273',6286,'121672164675','5449000028976','1.00','150','retail','0','2022-12-27 21:12:37','','','','103','Cash',0.00,'150','','','12','','1','2022-12-27 15:13:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721647566033627',6287,'121672164675','90162602','2.00','460','retail','0','2022-12-27 21:12:37','','','','147','Cash',0.00,'230','','','12','','1','2022-12-27 15:13:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721709490303223',6288,'121672164789','6002269000566','1.00','1200','retail','0','2022-12-27 22:56:20','','','','680','Cash',0.00,'1200','','','12','','1','2022-12-27 16:57:59','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721709667632713',6289,'121672164789','6164002099029','2.00','160','retail','0','2022-12-27 22:56:20','','','','36','Cash',0.00,'80','','','12','','1','2022-12-27 16:57:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','49.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721709796373603',6290,'121672164789','5449000000286','1.00','250','retail','0','2022-12-27 22:56:20','','','','158','Cash',0.00,'250','','','12','','1','2022-12-27 16:57:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721738103310320',6291,'121672171086','6161101605458','3.00','810','retail','0','2022-12-27 23:43:41','','','','182','Cash',0.00,'270','','','12','','1','2022-12-27 17:48:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721738207632713',6292,'121672171086','54493360','1.00','80','retail','0','2022-12-27 23:43:41','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-27 17:48:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721741302033214',6293,'121672174095','3219820000078','1.00','6500','retail','0','2022-12-27 23:48:51','','','','4100','Cash',0.00,'6500','','','12','','1','2022-12-27 17:51:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721750062033205',6294,'121672174280','6008835000930','1.00','180','retail','0','2022-12-28 00:03:50','','','','130','Cash',0.00,'180','','','12','','1','2022-12-27 18:04:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721750196313603',6295,'121672174280','6161101604406','2.00','500','retail','0','2022-12-28 00:03:50','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-27 18:04:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721750290332020',6296,'121672174280','5449000014535','1.00','120','retail','0','2022-12-28 00:03:50','','','','64','Cash',0.00,'120','','','12','','1','2022-12-27 18:04:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721760316333603',6297,'121672176022','6161101604406','4.00','1000','retail','0','2022-12-28 00:20:31','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-27 18:21:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721761103310320',6298,'121672176103','8000530300474','1.00','1600','retail','0','2022-12-28 00:24:21','','','','1050','Cash',0.00,'1600','','','12','','1','2022-12-27 18:24:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721761183711273',6299,'121672176103','8000530300504','1.00','1600','retail','0','2022-12-28 00:24:21','','','','1050','Cash',0.00,'1600','','','12','','1','2022-12-27 18:24:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721769199033927',6300,'121672176265','5449000188342','2.00','200','retail','0','2022-12-28 00:35:19','','','','59.666','Cash',0.00,'100','','','12','','1','2022-12-27 18:35:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721784130332020',6301,'121672178400','5449000180292','2.00','400','retail','0','2022-12-28 01:00:15','','','','125','Cash',0.00,'200','','','12','','1','2022-12-27 19:00:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721802940332020',6302,'121672178419','6008165007814','1.00','350','retail','0','2022-12-28 01:31:35','','','','317.26','Cash',0.00,'350','','','12','','1','2022-12-27 19:31:38','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721806723310320',6303,'121672180662','1000','1.00','270','retail','0','2022-12-28 01:37:53','','','','192','Cash',0.00,'270','','','12','','1','2022-12-27 19:37:55','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216721816320303223',6304,'121672180677','6008165007784','1.00','370','retail','0','2022-12-28 01:53:53','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-27 19:53:56','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722087232033278',6305,'121672200552','5000329002230','1.00','3500','retail','0','2022-12-28 09:25:39','','','','2460','Cash',0.00,'3500','','','12','','1','2022-12-28 03:25:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722087380332020',6306,'121672200552','5449000180292','1.00','200','retail','0','2022-12-28 09:25:39','','','','125','Cash',0.00,'200','','','12','','1','2022-12-28 03:25:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722222122220020',6307,'121672222206','5010103800457','1.00','2300','retail','0','2022-12-28 13:10:25','','','','1699','Cash',0.00,'2300','','','12','','1','2022-12-28 07:11:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722222242033222',6308,'121672222206','5449000180292','1.00','200','retail','0','2022-12-28 13:10:25','','','','125','Cash',0.00,'200','','','12','','1','2022-12-28 07:11:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722363172033236',6309,'121672234308','6161101601979','3.00','750','retail','0','2022-12-28 17:05:18','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-28 11:05:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722417623417273',6310,'121672241749','5000289020701','1.00','2500','retail','0','2022-12-28 18:37:16','','','','1900','Cash',0.00,'2500','','','12','','1','2022-12-28 12:38:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722418353418273',6311,'121672241749','6161101603379','1.00','250','retail','0','2022-12-28 18:37:16','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-28 12:38:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722419442033291',6312,'121672241932','6161101601979','4.00','1000','retail','0','2022-12-28 18:39:04','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-28 12:39:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722431099033927',6313,'121672241950','6161101605458','1.00','270','retail','0','2022-12-28 18:59:28','','','','182','Cash',0.00,'270','','','12','','1','2022-12-28 12:59:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722431680332020',6314,'121672241950','54491069','1.00','80','retail','0','2022-12-28 18:59:28','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-28 12:59:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722489583320320',6315,'121672243176','5011013500604','1.00','5500','retail','0','2022-12-28 20:35:59','','','','4049','Cash',0.00,'5500','','','12','','1','2022-12-28 14:36:02','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722523803320320',6316,'121672248964','5000289933292','1.00','950','retail','0','2022-12-28 21:33:13','','','','710','Cash',0.00,'950','','','12','','1','2022-12-28 15:35:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722523930332020',6317,'121672248964','54491069','1.00','80','retail','0','2022-12-28 21:33:13','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-28 15:35:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722530665632513',6318,'121672252507','5010103930628','1.00','1750','retail','0','2022-12-28 21:44:39','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-28 15:46:36','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722530786373603',6319,'121672252507','54493360','2.00','160','retail','0','2022-12-28 21:44:39','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-28 15:46:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722537333233233',6320,'121672253725','5000289929417','1.00','3000','retail','0','2022-12-28 21:55:33','','','','1900','Cash',0.00,'3000','','','12','','1','2022-12-28 15:55:40','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722543405632513',6321,'121672253741','1000','1.00','270','retail','0','2022-12-28 22:05:41','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 16:06:06','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722545377033727',6322,'121672254516','024000150152','1.00','300','retail','0','2022-12-28 22:14:05','','','','205','Cash',0.00,'300','','','12','','1','2022-12-28 16:18:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722547670303223',6323,'121672254516','6161100421615','1.00','500','retail','0','2022-12-28 22:14:05','','','','310','Cash',0.00,'500','','','12','','1','2022-12-28 16:18:22','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722548444033427',6324,'121672254516','6161101604703','3.00','750','retail','0','2022-12-28 22:14:05','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-28 16:18:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722594955033527',6325,'121672259421','1000','1.00','270','retail','0','2022-12-28 23:31:35','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 17:31:38','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722605093615273',6326,'121672259500','6161101605458','1.00','270','retail','0','2022-12-28 23:48:30','','','','182','Cash',0.00,'270','','','12','','1','2022-12-28 17:48:32','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722621288033827',6327,'121672262119','6161101604406','3.00','750','retail','0','2022-12-29 00:15:28','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-28 18:15:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722647499033927',6328,'121672264709','4840709004321','1.00','1800','retail','0','2022-12-29 00:59:11','','','','900','Cash',0.00,'1800','','','12','','1','2022-12-28 18:59:49','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722649232033294',6329,'121672264795','6001452301862','1.00','1600','retail','0','2022-12-29 01:02:04','','','','1150','Cash',0.00,'1600','','','12','','1','2022-12-28 19:02:21','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722649790303223',6330,'121672264970','6002269000566','1.00','1200','retail','0','2022-12-29 01:03:00','','','','680','Cash',0.00,'1200','','','12','','1','2022-12-28 19:03:03','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722649956632613',6331,'121672264986','1000','1.00','270','retail','0','2022-12-29 01:03:16','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 19:03:23','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722658210303223',6332,'121672265004','5010103930840','1.00','500','retail','0','2022-12-29 01:17:02','','','','335','Cash',0.00,'500','','','12','','1','2022-12-28 19:17:05','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722676766373603',6333,'121672267652','6161101605458','1.00','270','retail','0','2022-12-29 01:48:12','','','','182','Cash',0.00,'270','','','12','','1','2022-12-28 19:48:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722676912033267',6334,'121672267652','6164001199331','1.00','70','retail','0','2022-12-29 01:48:12','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-28 19:48:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722681222220122',6335,'121672268109','6002323300533','1.00','2000','retail','0','2022-12-29 01:55:23','','','','1325','Cash',0.00,'2000','','','12','','1','2022-12-28 19:55:25','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722685368262232',6336,'121672268127','1000','2.00','540','retail','0','2022-12-29 02:02:17','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 20:02:35','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722689316632613',6337,'121672268922','6008165007784','1.00','370','retail','0','2022-12-29 02:08:52','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-28 20:08:54','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722697330303223',6338,'121672268938','1000','1.00','270','retail','0','2022-12-29 02:23:22','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 20:23:35','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722698010332020',6339,'121672268938','6161101602600','1.00','250','retail','0','2022-12-29 02:23:22','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-28 20:23:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722704900303223',6340,'121672269817','1000','1.00','270','retail','0','2022-12-29 02:35:03','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 20:35:05','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722705037632713',6341,'121672269817','6164001199331','1.00','70','retail','0','2022-12-29 02:35:03','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-28 20:35:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722750887632713',6342,'121672270507','1000','1.00','270','retail','0','2022-12-29 03:51:43','','','','192','Cash',0.00,'270','','','12','','1','2022-12-28 21:52:00','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722751020303223',6343,'121672270507','5018907197803','1.00','100','retail','0','2022-12-29 03:51:43','','','','44.58','Cash',0.00,'100','','','12','','1','2022-12-28 21:52:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722754720303223',6344,'121672275121','5000289933292','1.00','950','retail','0','2022-12-29 03:58:13','','','','710','Cash',0.00,'950','','','12','','1','2022-12-28 21:59:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722754922202003',6345,'121672275121','6164001199331','1.00','70','retail','0','2022-12-29 03:58:13','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-28 21:59:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722832573320320',6346,'121672283240','1000','1.00','270','retail','0','2022-12-29 06:08:02','','','','192','Cash',0.00,'270','','','12','','1','2022-12-29 00:11:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722832813320320',6347,'121672283240','40822938','1.00','70','retail','0','2022-12-29 06:08:02','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-29 00:11:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722898462033289',6348,'121672283492','6161101604406','1.00','250','retail','0','2022-12-29 07:58:11','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-29 01:58:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722898810303223',6349,'121672283492','6008165007784','1.00','370','retail','0','2022-12-29 07:58:11','','','','327.04','Cash',0.00,'370','','','12','','1','2022-12-29 01:58:52','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216722898907937123',6350,'121672283492','3086120600020','1.00','120','retail','0','2022-12-29 07:58:11','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-29 01:58:52','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723236816383603',6351,'121672323663','6161101602181','1.00','550','retail','0','2022-12-29 17:21:22','','','','388','Cash',0.00,'550','','','12','','1','2022-12-29 11:29:43','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723250488033827',6352,'121672324187','6161100420786','1.00','400','retail','0','2022-12-29 17:44:18','','','','290','Cash',0.00,'400','','','12','','1','2022-12-29 11:44:22','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723250580303223',6353,'121672324187','5060608740253','1.00','80','retail','0','2022-12-29 17:44:18','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-29 11:44:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723251492632213',6354,'121672325130','6161101601979','6.00','1500','retail','0','2022-12-29 17:46:22','','','','172.75','Cash',0.00,'250','','','12','','1','2022-12-29 11:46:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723273300033027',6355,'121672327321','5000267125046','1.00','5300','retail','0','2022-12-29 18:22:20','','','','3540','Cash',0.00,'5300','','','12','','1','2022-12-29 12:33:29','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723273393213273',6356,'121672327321','5000299618073','1.00','3500','retail','0','2022-12-29 18:22:20','','','','2460','Cash',0.00,'3500','','','12','','1','2022-12-29 12:33:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723280793210273',6357,'121672328057','6161101603379','2.00','500','retail','0','2022-12-29 18:34:39','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-29 12:34:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723296483216273',6358,'121672329638','6002269000566','1.00','1200','retail','0','2022-12-29 19:00:49','','','','680','Cash',0.00,'1200','','','12','','1','2022-12-29 13:00:52','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723316603330320',6359,'121672329653','5449000180247','1.00','200','retail','0','2022-12-29 19:34:21','','','','125','Cash',0.00,'200','','','12','','1','2022-12-29 13:34:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723357520373332',6360,'121672335739','100','4.00','1000','retail','0','2022-12-29 20:42:32','','','','177','Cash',0.00,'250','','','12','','1','2022-12-29 14:42:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723372980332020',6361,'121672335756','6161101606011','1.00','250','retail','0','2022-12-29 21:08:47','','','','172.833','Cash',0.00,'250','','','12','','1','2022-12-29 15:11:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723373070332020',6362,'121672335756','6161101604406','1.00','250','retail','0','2022-12-29 21:08:47','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-29 15:11:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723373172033237',6363,'121672335756','6009627080246','1.00','180','retail','0','2022-12-29 21:08:47','','','','92','Cash',0.00,'180','','','12','','1','2022-12-29 15:11:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723373260332020',6364,'121672335756','5449000014536','1.00','100','retail','0','2022-12-29 21:08:47','','','','49','Cash',0.00,'100','','','12','','1','2022-12-29 15:11:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723431942033213',6365,'121672337479','6161101603379','2.00','500','retail','0','2022-12-29 22:46:35','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-29 16:46:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723448453330320',6366,'121672344832','6161101603379','2.00','500','retail','0','2022-12-29 23:14:17','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-29 17:20:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723448563418273',6367,'121672344832','6161101602051','1.00','550','retail','0','2022-12-29 23:14:17','','','','392','Cash',0.00,'550','','','12','','1','2022-12-29 17:20:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723467766373603',6368,'121672346764','6161101602372','2.00','500','retail','0','2022-12-29 23:46:16','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-29 17:46:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723492792033229',6369,'121672349269','6008165007982','1.00','350','retail','0','2022-12-30 00:28:00','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-29 18:28:03','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723493060303223',6370,'121672349285','6161100421561','1.00','1300','retail','0','2022-12-30 00:28:27','','','','645','Cash',0.00,'1300','','','12','','1','2022-12-29 18:28:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723493246323603',6371,'121672349311','6161101603324','2.00','500','retail','0','2022-12-30 00:28:44','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-29 18:28:48','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723494464632413',6372,'121672349439','5011007003029','1.00','2700','retail','0','2022-12-30 00:31:09','','','','2000','Cash',0.00,'2700','','','12','','1','2022-12-29 18:50:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723494683414273',6373,'121672349439','6161101604703','5.00','1250','retail','0','2022-12-30 00:31:09','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-29 18:50:37','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','9.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723506533033327',6374,'121672350642','6161100420823','1.00','300','retail','0','2022-12-30 00:50:54','','','','198','Cash',0.00,'300','','','12','','1','2022-12-29 18:50:59','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723535600332020',6375,'121672350662','6161101602051','1.00','550','retail','0','2022-12-30 01:39:32','','','','392','Cash',0.00,'550','','','12','','1','2022-12-29 19:39:36','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723535715632513',6376,'121672350662','6164001199331','1.00','70','retail','0','2022-12-30 01:39:32','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-29 19:39:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723546399033927',6377,'121672353579','5000289933292','1.00','950','retail','0','2022-12-30 01:58:06','','','','710','Cash',0.00,'950','','','12','','1','2022-12-29 20:00:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723546860332020',6378,'121672353579','6161101604703','6.00','1500','retail','0','2022-12-30 01:58:06','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-29 20:00:06','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723619716632613',6379,'121672355785','6161101602372','1.00','250','retail','0','2022-12-30 03:59:41','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-29 21:59:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723619812033291',6380,'121672355785','6161101603324','1.00','250','retail','0','2022-12-30 03:59:41','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-29 21:59:44','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723619956632613',6381,'121672361985','6161101603324','1.00','250','retail','0','2022-12-30 03:59:56','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-29 22:00:19','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723641773611273',6382,'121672362021','5000289933292','1.00','950','retail','0','2022-12-30 04:36:18','','','','710','Cash',0.00,'950','','','12','','1','2022-12-29 22:52:27','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723651633330320',6383,'121672365150','5060639129003','1.00','250','retail','0','2022-12-30 04:52:44','','','','153','Cash',0.00,'250','','','12','','1','2022-12-29 22:52:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216723735457632713',6384,'121672373534','6161101604703','4.00','1000','retail','0','2022-12-30 07:12:26','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-30 01:12:29','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724067473017273',6385,'121672406726','5010103930666','2.00','1700','retail','0','2022-12-30 16:26:05','','','','586','Cash',0.00,'850','','','12','','1','2022-12-30 10:26:10','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724067653340320',6386,'121672406726','5018907194802','1.00','150','retail','0','2022-12-30 16:26:05','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-30 10:26:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724124803701021',6387,'121672406774','6008165007982','1.00','350','retail','0','2022-12-30 18:01:21','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-30 12:07:45','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724133363113273',6388,'121672413324','6161101602372','5.00','1250','retail','0','2022-12-30 18:15:37','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-30 12:15:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','8.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724134755033527',6389,'121672413347','5449000180292','1.00','200','retail','0','2022-12-30 18:17:55','','','','125','Cash',0.00,'200','','','12','','1','2022-12-30 12:17:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724208390332020',6390,'121672420825','024000224556','1.00','300','retail','0','2022-12-30 20:21:20','','','','205','Cash',0.00,'300','','','12','','1','2022-12-30 14:21:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724208526353603',6391,'121672420825','5010103912976','1.00','5400','retail','0','2022-12-30 20:21:20','','','','4000','Cash',0.00,'5400','','','12','','1','2022-12-30 14:21:34','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724208800303223',6392,'121672420825','6164001199331','5.00','350','retail','0','2022-12-30 20:21:20','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-30 14:21:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','6.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724221255033527',6393,'121672420896','5010103930666','1.00','850','retail','0','2022-12-30 20:42:16','','','','586','Cash',0.00,'850','','','12','','1','2022-12-30 14:53:49','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724221366033627',6394,'121672420896','54491069','1.00','80','retail','0','2022-12-30 20:42:16','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-30 14:53:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724249460332020',6395,'121672422831','6161101605465','1.00','800','retail','0','2022-12-30 21:29:07','','','','501','Cash',0.00,'800','','','12','','1','2022-12-30 15:29:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724257986393603',6396,'121672425775','5010103930628','1.00','1750','retail','0','2022-12-30 21:43:28','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-30 15:43:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724258072632213',6397,'121672425775','54491069','1.00','80','retail','0','2022-12-30 21:43:28','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-30 15:43:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724262832033226',6398,'121672425812','1000','1.00','270','retail','0','2022-12-30 21:51:24','','','','192','Cash',0.00,'270','','','12','','1','2022-12-30 15:51:26','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724283550332020',6399,'121672426288','6161101602051','1.00','550','retail','0','2022-12-30 22:26:07','','','','392','Cash',0.00,'550','','','12','','1','2022-12-30 16:26:09','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724283662033238',6400,'121672426288','6164001199331','1.00','70','retail','0','2022-12-30 22:26:07','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-30 16:26:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724289250303223',6401,'121672428370','6001108016034','1.00','500','retail','0','2022-12-30 22:35:25','','','','352','Cash',0.00,'500','','','12','','1','2022-12-30 16:36:20','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724296302033269',6402,'121672428982','5449000028976','1.00','150','retail','0','2022-12-30 22:47:10','','','','103','Cash',0.00,'150','','','12','','1','2022-12-30 16:47:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724315352033251',6403,'121672431528','5010103930628','1.00','1750','retail','0','2022-12-30 23:19:39','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-30 17:19:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724315783315273',6404,'121672431528','6164001199331','2.00','140','retail','0','2022-12-30 23:19:39','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-30 17:19:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724322193312273',6405,'121672431583','6161101604703','2.00','500','retail','0','2022-12-30 23:30:20','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-30 17:30:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724330600033027',6406,'121672433048','6161101603324','1.00','250','retail','0','2022-12-30 23:44:21','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-30 17:44:26','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724346443340320',6407,'121672433068','6001108028044','1.00','300','retail','0','2022-12-31 00:11:02','','','','201','Cash',0.00,'300','','','12','','1','2022-12-30 18:12:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724346523316273',6408,'121672433068','6161101602921','1.00','250','retail','0','2022-12-31 00:11:02','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-30 18:12:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724346611033127',6409,'121672433068','6161101602372','1.00','250','retail','0','2022-12-31 00:11:02','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-30 18:12:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724377272033277',6410,'121672437713','6001496011796','1.00','1700','retail','0','2022-12-31 01:02:22','','','','1072','Cash',0.00,'1700','','','12','','1','2022-12-30 19:05:03','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724377413632313',6411,'121672437713','54491069','1.00','80','retail','0','2022-12-31 01:02:22','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-30 19:05:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724381413340320',6412,'121672438133','6161101606561','1.00','1850','retail','0','2022-12-31 01:09:24','','','','1125','Cash',0.00,'1850','','','12','','1','2022-12-30 19:09:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724381633340320',6413,'121672438133','6161101602372','1.00','250','retail','0','2022-12-31 01:09:24','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-30 19:09:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724417711033127',6414,'121672438171','6001108016034','1.00','500','retail','0','2022-12-31 02:09:32','','','','352','Cash',0.00,'500','','','12','','1','2022-12-30 20:09:34','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724456943416273',6415,'121672441778','6001496301705','1.00','1350','retail','0','2022-12-31 03:14:55','','','','729','Cash',0.00,'1350','','','12','','1','2022-12-30 21:15:38','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724490494632413',6416,'121672445743','3219820000078','1.00','6500','retail','0','2022-12-31 04:20:02','','','','4100','Cash',0.00,'6500','','','12','','1','2022-12-30 22:20:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724490643112332',6417,'121672445743','3219820005899','1.00','10500','retail','0','2022-12-31 04:20:02','','','','7100','Cash',0.00,'10500','','','12','','1','2022-12-30 22:20:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724496012033269',6418,'121672445743','5449000000286','1.00','250','retail','0','2022-12-31 04:20:02','','','','158','Cash',0.00,'250','','','12','','1','2022-12-30 22:20:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724827400332020',6419,'121672482715','5010103930628','1.00','1750','retail','0','2022-12-31 13:32:24','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-31 07:32:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724884573814273',6420,'121672488446','5060639129003','1.00','250','retail','0','2022-12-31 15:09:24','','','','153','Cash',0.00,'250','','','12','','1','2022-12-31 09:09:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724884728632813',6421,'121672488446','6161101603324','3.00','750','retail','0','2022-12-31 15:09:24','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-31 09:09:29','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','11.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724885646363603',6422,'121672488446','40822938','1.00','70','retail','0','2022-12-31 15:09:24','','','','53.333','Cash',0.00,'70','','','12','','1','2022-12-31 09:09:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724901000303223',6423,'121672488571','6161101602600','1.00','250','retail','0','2022-12-31 15:35:10','','','','154.95','Cash',0.00,'250','','','12','','1','2022-12-31 10:17:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724901103340320',6424,'121672488571','6161101603324','1.00','250','retail','0','2022-12-31 15:35:10','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-31 10:17:39','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724927206323603',6425,'121672492661','6001495062478','1.00','1600','retail','0','2022-12-31 16:18:40','','','','1098','Cash',0.00,'1600','','','12','','1','2022-12-31 10:20:33','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724965619632913',6426,'121672492834','6001495203055','2.00','2800','retail','0','2022-12-31 17:22:42','','','','628','Cash',0.00,'1400','','','12','','1','2022-12-31 11:22:45','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724995620332020',6427,'121672499550','6161101605458','1.00','270','retail','0','2022-12-31 18:13:03','','','','182','Cash',0.00,'270','','','12','','1','2022-12-31 12:13:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216724995820332020',6428,'121672499550','5018907194802','1.00','150','retail','0','2022-12-31 18:13:03','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-31 12:13:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725030323102223',6429,'121672503014','5010103930666','1.00','850','retail','0','2022-12-31 19:10:40','','','','586','Cash',0.00,'850','','','12','','1','2022-12-31 13:10:48','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725030393350320',6430,'121672503014','5449000028976','1.00','150','retail','0','2022-12-31 19:10:40','','','','103','Cash',0.00,'150','','','12','','1','2022-12-31 13:10:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725080710632013',6431,'121672503050','6008165007982','1.00','350','retail','0','2022-12-31 20:34:31','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-31 14:46:55','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725089400332020',6432,'121672508817','5000267114293','1.00','28500','retail','0','2022-12-31 20:50:57','','','','18500','Cash',0.00,'28500','','','12','','1','2022-12-31 14:51:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725090560332020',6433,'121672508817','6008165007982','2.00','700','retail','0','2022-12-31 20:50:57','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-31 14:51:02','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725091400632013',6434,'121672509064','6161101602372','1.00','250','retail','0','2022-12-31 20:54:55','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-31 14:56:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725092950303223',6435,'121672509064','6161100421370','1.00','700','retail','0','2022-12-31 20:54:55','','','','502','Cash',0.00,'700','','','12','','1','2022-12-31 14:56:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725094383014273',6436,'121672509412','5011013100118','1.00','3500','retail','0','2022-12-31 20:58:38','','','','2461','Cash',0.00,'3500','','','12','','1','2022-12-31 14:58:56','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725095183350320',6437,'121672509412','024000150121','2.00','600','retail','0','2022-12-31 20:58:38','','','','205','Cash',0.00,'300','','','12','','1','2022-12-31 14:58:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725096063350320',6438,'121672509538','6008165007982','1.00','350','retail','0','2022-12-31 21:00:32','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-31 15:01:25','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725096313016273',6439,'121672509538','3086120600020','1.00','120','retail','0','2022-12-31 21:00:32','','','','93.86','Cash',0.00,'120','','','12','','1','2022-12-31 15:01:25','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725110388033827',6440,'121672509687','5010103930666','1.00','850','retail','0','2022-12-31 21:24:27','','','','586','Cash',0.00,'850','','','12','','1','2022-12-31 15:24:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725110660332020',6441,'121672509687','6161101603324','4.00','1000','retail','0','2022-12-31 21:24:27','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-31 15:24:31','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725131970303223',6442,'121672511072','6161101606547','1.00','550','retail','0','2022-12-31 22:00:25','','','','388','Cash',0.00,'550','','','12','','1','2022-12-31 16:02:37','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725132240303223',6443,'121672511072','6164001199331','1.00','70','retail','0','2022-12-31 22:00:25','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-31 16:02:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725134650303223',6444,'121672513360','6161100420823','1.00','300','retail','0','2022-12-31 22:04:26','','','','198','Cash',0.00,'300','','','12','','1','2022-12-31 16:05:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725136033116273',6445,'121672513533','6161101606547','1.00','550','retail','0','2022-12-31 22:06:43','','','','388','Cash',0.00,'550','','','12','','1','2022-12-31 16:06:51','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725136676363603',6446,'121672513612','6161101602938','6.00','1500','retail','0','2022-12-31 22:19:16','','','','198.45','Cash',0.00,'250','','','12','','1','2022-12-31 16:19:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725136913350320',6447,'121672513612','6002323400639','1.00','2000','retail','0','2022-12-31 22:19:16','','','','1300','Cash',0.00,'2000','','','12','','1','2022-12-31 16:19:20','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725137186313603',6448,'121672513612','54493360','2.00','160','retail','0','2022-12-31 22:19:16','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-31 16:19:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','14.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725137788033827',6449,'121672513612','8712000900045','6.00','1800','retail','0','2022-12-31 22:19:16','','','','182','Cash',0.00,'300','','','12','','1','2022-12-31 16:19:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725137888033827',6450,'121672513612','6161101602167','1.00','600','retail','0','2022-12-31 22:19:16','','','','418','Cash',0.00,'600','','','12','','1','2022-12-31 16:19:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725143666033627',6451,'121672514362','089540448992','1.00','2150','retail','0','2022-12-31 22:20:07','','','','1590','Cash',0.00,'2150','','','12','','1','2022-12-31 16:23:04','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725143886383603',6452,'121672514362','54491069','3.00','240','retail','0','2022-12-31 22:20:07','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-31 16:23:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725145962033254',6453,'121672514586','5010103930628','1.00','1750','retail','0','2022-12-31 22:26:57','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-31 16:28:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725146410332020',6454,'121672514586','5060639129003','1.00','250','retail','0','2022-12-31 22:26:57','','','','153','Cash',0.00,'250','','','12','','1','2022-12-31 16:28:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725146910332020',6455,'121672514586','6161101603379','4.00','1000','retail','0','2022-12-31 22:26:57','','','','190.375','Cash',0.00,'250','','','12','','1','2022-12-31 16:28:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725147636363603',6456,'121672514586','6008165007982','1.00','350','retail','0','2022-12-31 22:26:57','','','','308.53','Cash',0.00,'350','','','12','','1','2022-12-31 16:28:16','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725148160332020',6457,'121672514586','5018907194802','1.00','150','retail','0','2022-12-31 22:26:57','','','','74.58','Cash',0.00,'150','','','12','','1','2022-12-31 16:28:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725152143531233',6458,'121672514899','5000289020701','1.00','2500','retail','0','2022-12-31 22:33:56','','','','1900','Cash',0.00,'2500','','','12','','1','2022-12-31 16:40:27','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725152292033225',6459,'121672514899','54491069','1.00','80','retail','0','2022-12-31 22:33:56','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-31 16:40:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725152350332020',6460,'121672514899','6008165007968','1.00','350','retail','0','2022-12-31 22:33:56','','','','308.5','Cash',0.00,'350','','','12','','1','2022-12-31 16:40:27','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725156371632113',6461,'121672515629','5000291020706','1.00','2800','retail','0','2022-12-31 22:41:10','','','','2070','Cash',0.00,'2800','','','12','','1','2022-12-31 16:43:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725156691632113',6462,'121672515629','6164001199331','5.00','350','retail','0','2022-12-31 22:41:10','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-31 16:43:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','7.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725159240332020',6463,'121672515827','4820000944625','1.00','2000','retail','0','2022-12-31 22:49:39','','','','1157','Cash',0.00,'2000','','','12','','1','2022-12-31 16:50:44','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725161691632113',6464,'121672515827','6001108028044','6.00','1800','retail','0','2022-12-31 22:49:39','','','','201','Cash',0.00,'300','','','12','','1','2022-12-31 16:50:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725161793350320',6465,'121672515827','6008165007968','1.00','350','retail','0','2022-12-31 22:49:39','','','','308.5','Cash',0.00,'350','','','12','','1','2022-12-31 16:50:44','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725162500303223',6466,'121672516246','6161101606547','1.00','550','retail','0','2022-12-31 22:50:56','','','','388','Cash',0.00,'550','','','12','','1','2022-12-31 16:51:54','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725162556353603',6467,'121672516246','5060608740253','1.00','80','retail','0','2022-12-31 22:50:56','','','','41.82','Cash',0.00,'80','','','12','','1','2022-12-31 16:51:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725163301632113',6468,'121672516316','6161101561280','1.00','350','retail','0','2022-12-31 22:52:11','','','','190','Cash',0.00,'350','','','12','','1','2022-12-31 16:53:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725179706373603',6469,'121672517959','6001108028044','1.00','300','retail','0','2022-12-31 23:20:04','','','','201','Cash',0.00,'300','','','12','','1','2022-12-31 17:20:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725179777033727',6470,'121672517959','6001108028044','1.00','300','retail','0','2022-12-31 23:20:04','','','','201','Cash',0.00,'300','','','12','','1','2022-12-31 17:20:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725179838325069',6471,'121672517959','6161101604406','1.00','250','retail','0','2022-12-31 23:20:04','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-31 17:20:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725179900033027',6472,'121672517959','6161101604406','1.00','250','retail','0','2022-12-31 23:20:04','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-31 17:20:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725180043350320',6473,'121672517959','5010103930840','1.00','500','retail','0','2022-12-31 23:20:04','','','','335','Cash',0.00,'500','','','12','','1','2022-12-31 17:20:54','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725180601632113',6474,'121672518056','5011013500604','1.00','5500','retail','0','2022-12-31 23:23:52','','','','4049','Cash',0.00,'5500','','','12','','1','2022-12-31 17:28:31','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725182310303223',6475,'121672518056','6161101602433','5.00','1000','retail','0','2022-12-31 23:23:52','','','','150.45','Cash',0.00,'200','','','12','','1','2022-12-31 17:28:31','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','8.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725186756373603',6476,'121672518513','6161101605465','2.00','1600','retail','0','2022-12-31 23:31:16','','','','501','Cash',0.00,'800','','','12','','1','2022-12-31 17:31:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725186900332020',6477,'121672518681','6161101605465','1.00','800','retail','0','2022-12-31 23:31:40','','','','501','Cash',0.00,'800','','','12','','1','2022-12-31 17:32:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725186990332020',6478,'121672518681','5449000180247','1.00','200','retail','0','2022-12-31 23:31:40','','','','125','Cash',0.00,'200','','','12','','1','2022-12-31 17:32:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725188402033288',6479,'121672518737','5000291020805','1.00','3750','retail','0','2022-12-31 23:34:15','','','','2760','Cash',0.00,'3750','','','12','','1','2022-12-31 17:35:55','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725188490332020',6480,'121672518737','6164002099029','1.00','80','retail','0','2022-12-31 23:34:15','','','','36','Cash',0.00,'80','','','12','','1','2022-12-31 17:35:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725188543350320',6481,'121672518737','6164002099029','1.00','80','retail','0','2022-12-31 23:34:15','','','','36','Cash',0.00,'80','','','12','','1','2022-12-31 17:35:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725191650332020',6482,'121672518956','5010103930628','1.00','1750','retail','0','2022-12-31 23:39:26','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-31 17:39:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725191766033627',6483,'121672519171','7312040017010','1.00','2200','retail','0','2022-12-31 23:40:12','','','','1576','Cash',0.00,'2200','','','12','','1','2022-12-31 17:48:32','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725191877033727',6484,'121672519171','6164001199331','1.00','70','retail','0','2022-12-31 23:40:12','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-31 17:48:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725191911033127',6485,'121672519171','6164001199331','1.00','70','retail','0','2022-12-31 23:40:12','','','','37.08','Cash',0.00,'70','','','12','','1','2022-12-31 17:48:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725192113112273',6486,'121672519171','5060639129003','4.00','1000','retail','0','2022-12-31 23:40:12','','','','153','Cash',0.00,'250','','','12','','1','2022-12-31 17:48:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725197293117273',6487,'121672519714','5010103930666','1.00','850','retail','0','2022-12-31 23:48:50','','','','586','Cash',0.00,'850','','','12','','1','2022-12-31 17:51:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725199023350320',6488,'121672519867','3245990987611','2.00','35000','retail','0','2022-12-31 23:51:43','','','','13000','Cash',0.00,'17500','','','12','','1','2022-12-31 18:09:06','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725218882632213',6489,'121672520947','1000','1.00','270','retail','0','2023-01-01 00:24:49','','','','192','Cash',0.00,'270','','','12','','1','2022-12-31 18:24:52','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725228623218273',6490,'121672521893','6001452371506','1.00','1600','retail','0','2023-01-01 00:41:52','','','','1150','Cash',0.00,'1600','','','12','','1','2022-12-31 18:41:59','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725229123350320',6491,'121672521893','6161101602372','4.00','1000','retail','0','2023-01-01 00:41:52','','','','189.75','Cash',0.00,'250','','','12','','1','2022-12-31 18:41:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725231400033027',6492,'121672522920','6161100421356','1.00','1400','retail','0','2023-01-01 00:45:40','','','','829','Cash',0.00,'1400','','','12','','1','2022-12-31 18:49:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725233670303223',6493,'121672523354','6161101561549','1.00','950','retail','0','2023-01-01 00:49:37','','','','570','Cash',0.00,'950','','','12','','1','2022-12-31 18:51:45','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725233777033727',6494,'121672523354','54491069','1.00','80','retail','0','2023-01-01 00:49:37','','','','53.333','Cash',0.00,'80','','','12','','1','2022-12-31 18:51:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725235792033253',6495,'121672523507','6161101600941','1.00','750','retail','0','2023-01-01 00:52:59','','','','544','Cash',0.00,'750','','','12','','1','2022-12-31 18:54:31','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725240443350320',6496,'121672524023','6161101605458','2.00','540','retail','0','2023-01-01 01:01:11','','','','182','Cash',0.00,'270','','','12','','1','2022-12-31 19:01:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725240703210273',6497,'121672524023','6164001199034','1.00','50','retail','0','2023-01-01 01:01:11','','','','19','Cash',0.00,'50','','','12','','1','2022-12-31 19:01:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725266672202003',6498,'121672526649','5000267173139','1.00','4500','retail','0','2023-01-01 01:45:40','','','','3056','Cash',0.00,'4500','','','12','','1','2022-12-31 19:48:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725266963350320',6499,'121672526649','5449000014536','2.00','200','retail','0','2023-01-01 01:45:40','','','','49','Cash',0.00,'100','','','12','','1','2022-12-31 19:48:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725267072632213',6500,'121672526649','5449000028921','1.00','150','retail','0','2023-01-01 01:45:40','','','','103','Cash',0.00,'150','','','12','','1','2022-12-31 19:48:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725267392632213',6501,'121672526649','6009627080246','1.00','180','retail','0','2023-01-01 01:45:40','','','','92','Cash',0.00,'180','','','12','','1','2022-12-31 19:48:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725273652033237',6502,'121672526886','6164002099036','1.00','120','retail','0','2023-01-01 01:56:31','','','','40','Cash',0.00,'120','','','12','','1','2022-12-31 20:01:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725273906393603',6503,'121672526886','6161101605465','1.00','800','retail','0','2023-01-01 01:56:31','','','','501','Cash',0.00,'800','','','12','','1','2022-12-31 20:01:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725276887737123',6504,'121672527678','6161101600941','1.00','750','retail','0','2023-01-01 02:01:29','','','','544','Cash',0.00,'750','','','12','','1','2022-12-31 20:31:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725308713632313',6505,'121672530842','6161101603324','6.00','1500','retail','0','2023-01-01 02:54:32','','','','150.45','Cash',0.00,'250','','','12','','1','2022-12-31 20:54:36','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725321796373603',6506,'121672530878','6161101602051','1.00','550','retail','0','2023-01-01 03:16:19','','','','392','Cash',0.00,'550','','','12','','1','2022-12-31 21:16:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725350466033627',6507,'121672532185','5010103930628','2.00','3500','retail','0','2023-01-01 04:04:20','','','','1125','Cash',0.00,'1750','','','12','','1','2022-12-31 22:06:55','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725350590303223',6508,'121672532185','5449000004864','1.00','250','retail','0','2023-01-01 04:04:20','','','','158','Cash',0.00,'250','','','12','','1','2022-12-31 22:06:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725377317262232',6509,'121672532185','6161100421554','1.00','450','retail','0','2023-01-01 04:49:15','','','','244','Cash',0.00,'450','','','12','','1','2022-12-31 22:50:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725377443350320',6510,'121672532185','6161101604406','2.00','500','retail','0','2023-01-01 04:49:15','','','','181.708','Cash',0.00,'250','','','12','','1','2022-12-31 22:50:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725377543632313',6511,'121672532185','5060639129003','1.00','250','retail','0','2023-01-01 04:49:15','','','','153','Cash',0.00,'250','','','12','','1','2022-12-31 22:50:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725590776373603',6512,'121672559054','6008165007968','1.00','350','retail','0','2023-01-01 10:44:37','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-01 04:44:44','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725624855033527',6513,'121672559088','6161101602167','1.00','600','retail','0','2023-01-01 11:41:25','','','','418','Cash',0.00,'600','','','12','','1','2023-01-01 05:41:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725672276323603',6514,'121672562491','8712000900663','1.00','300','retail','0','2023-01-01 13:01:00','','','','214','Cash',0.00,'300','','','12','','1','2023-01-01 07:15:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725672480332020',6515,'121672562491','6161101601979','1.00','250','retail','0','2023-01-01 13:01:00','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-01 07:15:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725672600332020',6516,'121672562491','75032814','1.00','450','retail','0','2023-01-01 13:01:00','','','','295','Cash',0.00,'450','','','12','','1','2023-01-01 07:15:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725681677033727',6517,'121672568145','6161101602921','2.00','500','retail','0','2023-01-01 13:16:33','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-01 07:19:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725681836632613',6518,'121672568145','6161101602372','2.00','500','retail','0','2023-01-01 13:16:33','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-01 07:19:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725681930332020',6519,'121672568145','5060639129003','1.00','250','retail','0','2023-01-01 13:16:33','','','','153','Cash',0.00,'250','','','12','','1','2023-01-01 07:19:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725711827632713',6520,'121672568386','6161101603379','6.00','1500','retail','0','2023-01-01 14:07:28','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-01 08:07:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725712470332020',6521,'121672568386','6161101603324','6.00','1500','retail','0','2023-01-01 14:07:28','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-01 08:07:33','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725726593716273',6522,'121672571262','5000267013602','1.00','2800','retail','0','2023-01-01 14:35:21','','','','1780','Cash',0.00,'2800','','','12','','1','2023-01-01 08:35:30','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725729203719273',6523,'121672571262','5449000180292','1.00','200','retail','0','2023-01-01 14:35:21','','','','125','Cash',0.00,'200','','','12','','1','2023-01-01 08:35:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725786530332020',6524,'121672578642','1000','1.00','270','retail','0','2023-01-01 16:10:53','','','','192','Cash',0.00,'270','','','12','','1','2023-01-01 10:10:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725857860303223',6525,'121672585775','6161101601979','4.00','1000','retail','0','2023-01-01 18:10:50','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-01 12:17:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725858108632813',6526,'121672585775','6161101602938','1.00','250','retail','0','2023-01-01 18:10:50','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-01 12:17:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725858226323603',6527,'121672585775','024000150152','1.00','300','retail','0','2023-01-01 18:10:50','','','','205','Cash',0.00,'300','','','12','','1','2023-01-01 12:17:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725858493818273',6528,'121672585775','5060639129003','1.00','250','retail','0','2023-01-01 18:10:50','','','','153','Cash',0.00,'250','','','12','','1','2023-01-01 12:17:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725873760303223',6529,'121672586274','5000291020706','1.00','2800','retail','0','2023-01-01 18:36:16','','','','2070','Cash',0.00,'2800','','','12','','1','2023-01-01 12:41:00','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725878982233337',6530,'121672587663','6161100421219','1.00','900','retail','0','2023-01-01 18:44:59','','','','561','Cash',0.00,'900','','','12','','1','2023-01-01 12:45:25','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725890726373603',6531,'121672589064','6008165007968','1.00','350','retail','0','2023-01-01 19:04:33','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-01 13:04:36','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725890933350320',6532,'121672589078','6161101603379','2.00','500','retail','0','2023-01-01 19:04:54','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-01 13:04:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725891306333603',6533,'121672589122','6161101602167','1.00','600','retail','0','2023-01-01 19:05:30','','','','418','Cash',0.00,'600','','','12','','1','2023-01-01 13:05:32','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725892066033627',6534,'121672589197','6161101601979','1.00','250','retail','0','2023-01-01 19:07:01','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-01 13:07:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725892130303223',6535,'121672589197','8712000900663','1.00','300','retail','0','2023-01-01 19:07:01','','','','214','Cash',0.00,'300','','','12','','1','2023-01-01 13:07:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725892218632813',6536,'121672589197','75032814','1.00','450','retail','0','2023-01-01 19:07:01','','','','295','Cash',0.00,'450','','','12','','1','2023-01-01 13:07:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725893411033127',6537,'121672589333','6161101603324','6.00','1500','retail','0','2023-01-01 19:09:16','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-01 13:09:19','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','9.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725893553350320',6538,'121672589333','6161101603379','6.00','1500','retail','0','2023-01-01 19:09:16','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-01 13:09:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725893716373603',6539,'121672589361','6161101602921','2.00','500','retail','0','2023-01-01 19:10:30','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-01 13:10:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725894211230143',6540,'121672589361','5060639129003','1.00','250','retail','0','2023-01-01 19:10:30','','','','153','Cash',0.00,'250','','','12','','1','2023-01-01 13:10:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725894290303223',6541,'121672589361','6161101602372','2.00','500','retail','0','2023-01-01 19:10:30','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-01 13:10:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725894930332020',6542,'121672589482','5000267013602','1.00','2800','retail','0','2023-01-01 19:11:45','','','','1780','Cash',0.00,'2800','','','12','','1','2023-01-01 13:11:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725895058632813',6543,'121672589482','5449000180292','1.00','200','retail','0','2023-01-01 19:11:45','','','','125','Cash',0.00,'200','','','12','','1','2023-01-01 13:11:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725895393815273',6544,'121672589530','6161101603324','2.00','500','retail','0','2023-01-01 19:12:20','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-01 13:12:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725895813350320',6545,'121672589572','1000','1.00','270','retail','0','2023-01-01 19:13:01','','','','192','Cash',0.00,'270','','','12','','1','2023-01-01 13:13:06','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725897000303223',6546,'121672589691','5060639129003','1.00','250','retail','0','2023-01-01 19:15:34','','','','153','Cash',0.00,'250','','','12','','1','2023-01-01 13:15:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725897080303223',6547,'121672589691','6161101602938','1.00','250','retail','0','2023-01-01 19:15:34','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-01 13:15:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725897211033127',6548,'121672589691','6161101601979','4.00','1000','retail','0','2023-01-01 19:15:34','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-01 13:15:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','7.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725897338632813',6549,'121672589691','024000150152','1.00','300','retail','0','2023-01-01 19:15:34','','','','205','Cash',0.00,'300','','','12','','1','2023-01-01 13:15:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725905950332020',6550,'121672589738','6164001199010','2.00','200','retail','0','2023-01-01 19:29:55','','','','38','Cash',0.00,'100','','','12','','1','2023-01-01 13:29:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725988943350320',6551,'121672590600','6009675642007','1.00','1400','retail','0','2023-01-01 21:48:16','','','','700','Cash',0.00,'1400','','','12','','1','2023-01-01 15:48:33','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725995230303223',6552,'121672598915','5010103930666','1.00','850','retail','0','2023-01-01 21:59:18','','','','586','Cash',0.00,'850','','','12','','1','2023-01-01 16:00:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216725995533033327',6553,'121672598915','5018907194802','1.00','150','retail','0','2023-01-01 21:59:18','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-01 16:00:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726018050632013',6554,'121672599615','6002886001410','1.00','1900','retail','0','2023-01-01 22:38:32','','','','1110','Cash',0.00,'1900','','','12','','1','2023-01-01 16:38:36','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726019280332020',6555,'121672601919','5000291023462','1.00','3000','retail','0','2023-01-01 22:38:54','','','','2220','Cash',0.00,'3000','','','12','','1','2023-01-01 16:40:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726019344033427',6556,'121672601919','5010327325125','1.00','1100','retail','0','2023-01-01 22:38:54','','','','7900','Cash',0.00,'1100','','','12','','1','2023-01-01 16:40:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726052543012273',6557,'121672605244','6001506003599','1.00','1200','retail','0','2023-01-01 23:34:15','','','','850','Cash',0.00,'1200','','','12','','1','2023-01-01 17:35:04','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726058676363603',6558,'121672605855','6001108049599','1.00','1300','retail','0','2023-01-01 23:44:28','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-01 17:44:31','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726074550332020',6559,'121672605872','5010103930833','1.00','1100','retail','0','2023-01-02 00:11:04','','','','653','Cash',0.00,'1100','','','12','','1','2023-01-01 18:12:36','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726074640303223',6560,'121672605872','5060608740253','1.00','80','retail','0','2023-01-02 00:11:04','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-01 18:12:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726089755033527',6561,'121672608968','6001452301862','1.00','1600','retail','0','2023-01-02 00:37:05','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-01 18:37:17','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726090244033427',6562,'121672608968','5018907194802','1.00','150','retail','0','2023-01-02 00:37:05','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-01 18:37:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726098433033327',6563,'121672609039','725765052087','1.00','290','retail','0','2023-01-02 00:50:44','','','','209','Cash',0.00,'290','','','12','','1','2023-01-01 18:50:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726103852033230',6564,'121672609849','5010752000321','1.00','2200','retail','0','2023-01-02 00:59:46','','','','1474','Cash',0.00,'2200','','','12','','1','2023-01-01 19:00:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726111110303223',6565,'121672610436','8712000900045','4.00','1200','retail','0','2023-01-02 01:11:51','','','','182','Cash',0.00,'300','','','12','','1','2023-01-01 19:14:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726131063111273',6566,'121672613095','6161101603379','1.00','250','retail','0','2023-01-02 01:45:07','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-01 19:45:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726141071632113',6567,'121672614091','6161101560832','1.00','350','retail','0','2023-01-02 02:01:48','','','','245','Cash',0.00,'350','','','12','','1','2023-01-01 20:01:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726160731632113',6568,'121672616049','8712000900663','1.00','300','retail','0','2023-01-02 02:34:34','','','','214','Cash',0.00,'300','','','12','','1','2023-01-01 20:34:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726161080001210',6569,'121672616081','6161101602372','1.00','250','retail','0','2023-01-02 02:35:17','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-01 20:35:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726161161632113',6570,'121672616081','6161101601979','1.00','250','retail','0','2023-01-02 02:35:17','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-01 20:35:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726193751332273',6571,'121672616156','6161101604543','1.00','1800','retail','0','2023-01-02 03:29:36','','','','788','Cash',0.00,'1800','','','12','','1','2023-01-01 21:31:19','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726516180303223',6572,'121672651607','024000150053','2.00','600','retail','0','2023-01-02 12:26:59','','','','205','Cash',0.00,'300','','','12','','1','2023-01-02 06:27:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726517370332020',6573,'121672651727','5060639129003','2.00','500','retail','0','2023-01-02 12:29:10','','','','153','Cash',0.00,'250','','','12','','1','2023-01-02 06:29:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726517493517273',6574,'121672651727','6164001199331','1.00','70','retail','0','2023-01-02 12:29:10','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-02 06:29:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726517913360320',6575,'121672651781','6161101602372','2.00','500','retail','0','2023-01-02 12:29:52','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-02 06:29:54','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726623413613273',6576,'121672662328','6161100420786','1.00','400','retail','0','2023-01-02 15:25:42','','','','290','Cash',0.00,'400','','','12','','1','2023-01-02 09:25:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726626773616273',6577,'121672662350','5060608740253','1.00','80','retail','0','2023-01-02 15:31:18','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-02 09:31:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726638760303223',6578,'121672662682','6008165018186','3.00','1200','retail','0','2023-01-02 15:51:16','','','','270','Cash',0.00,'400','','','12','','1','2023-01-02 09:51:21','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726781401332243',6579,'121672664287','6161101602167','1.00','600','retail','0','2023-01-02 19:49:01','','','','418','Cash',0.00,'600','','','12','','1','2023-01-02 13:49:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726781636363603',6580,'121672678151','6161101602372','1.00','250','retail','0','2023-01-02 19:49:24','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-02 14:05:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726837523222236',6581,'121672683744','6161101602600','1.00','250','retail','0','2023-01-02 21:24:25','','','','154.95','Cash',0.00,'250','','','12','','1','2023-01-02 15:24:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726837593360320',6582,'121672683744','6001108028044','1.00','300','retail','0','2023-01-02 21:24:25','','','','201','Cash',0.00,'300','','','12','','1','2023-01-02 15:24:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726839686363603',6583,'121672683955','8712000900663','2.00','600','retail','0','2023-01-02 21:26:25','','','','214','Cash',0.00,'300','','','12','','1','2023-01-02 15:27:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726839850303223',6584,'121672683955','6001108028044','2.00','600','retail','0','2023-01-02 21:26:25','','','','201','Cash',0.00,'300','','','12','','1','2023-01-02 15:27:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726841906393603',6585,'121672684168','6001108028044','2.00','600','retail','0','2023-01-02 21:29:51','','','','201','Cash',0.00,'300','','','12','','1','2023-01-02 15:32:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726864244033427',6586,'121672684361','8712000900045','6.00','1800','retail','0','2023-01-02 22:07:04','','','','182','Cash',0.00,'300','','','12','','1','2023-01-02 16:08:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726865413360320',6587,'121672686506','90162602','1.00','230','retail','0','2023-01-02 22:09:50','','','','147','Cash',0.00,'230','','','12','','1','2023-01-02 16:09:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726865899033927',6588,'121672686506','5449000028921','1.00','150','retail','0','2023-01-02 22:09:50','','','','103','Cash',0.00,'150','','','12','','1','2023-01-02 16:09:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726866052033266',6589,'121672686596','5010752000420','1.00','1000','retail','0','2023-01-02 22:10:06','','','','659','Cash',0.00,'1000','','','12','','1','2023-01-02 16:13:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726882055033527',6590,'121672688198','6161101602167','1.00','600','retail','0','2023-01-02 22:36:54','','','','418','Cash',0.00,'600','','','12','','1','2023-01-02 16:36:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726882136313603',6591,'121672688198','54491069','1.00','80','retail','0','2023-01-02 22:36:54','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-02 16:36:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726946803916273',6592,'121672694669','5000267125046','1.00','5300','retail','0','2023-01-03 00:24:41','','','','3540','Cash',0.00,'5300','','','12','','1','2023-01-02 18:25:48','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726948149632913',6593,'121672694800','100','4.00','1000','retail','0','2023-01-03 00:26:55','','','','177','Cash',0.00,'250','','','12','','1','2023-01-02 19:13:02','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216726977253360320',6594,'121672697583','8906120780179','1.00','1600','retail','0','2023-01-03 01:15:26','','','','970','Cash',0.00,'1600','','','12','','1','2023-01-02 19:15:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727002972033220',6595,'121672697739','8712000900045','4.00','1200','retail','0','2023-01-03 01:58:18','','','','182','Cash',0.00,'300','','','12','','1','2023-01-02 19:59:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727304932033240',6596,'121672730065','6161100420786','1.00','400','retail','0','2023-01-03 10:21:34','','','','290','Cash',0.00,'400','','','12','','1','2023-01-03 04:21:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727540515632513',6597,'121672754032','6161101605465','1.00','800','retail','0','2023-01-03 16:55:02','','','','501','Cash',0.00,'800','','','12','','1','2023-01-03 10:55:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727541020303223',6598,'121672754032','54491069','2.00','160','retail','0','2023-01-03 16:55:02','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-03 10:55:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727541245632513',6599,'121672754115','6161101606011','1.00','250','retail','0','2023-01-03 16:55:25','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-03 10:55:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727541390303223',6600,'121672754130','6161101605458','1.00','270','retail','0','2023-01-03 16:55:39','','','','182','Cash',0.00,'270','','','12','','1','2023-01-03 10:55:42','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727596782033269',6601,'121672754143','6161100420786','2.00','800','retail','0','2023-01-03 18:28:29','','','','290','Cash',0.00,'400','','','12','','1','2023-01-03 12:29:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727596872033269',6602,'121672754143','6164001199010','1.00','100','retail','0','2023-01-03 18:28:29','','','','38','Cash',0.00,'100','','','12','','1','2023-01-03 12:29:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727596983516273',6603,'121672754143','6161101603379','1.00','250','retail','0','2023-01-03 18:28:29','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-03 12:29:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727597083517273',6604,'121672754143','5060608740253','1.00','80','retail','0','2023-01-03 18:28:29','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-03 12:29:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727599243370320',6605,'121672759788','6161101605458','1.00','270','retail','0','2023-01-03 18:32:12','','','','182','Cash',0.00,'270','','','12','','1','2023-01-03 12:32:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727599320332020',6606,'121672759788','5060608740253','1.00','80','retail','0','2023-01-03 18:32:12','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-03 12:32:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727620750303223',6607,'121672759941','6001108028044','1.00','300','retail','0','2023-01-03 19:07:57','','','','201','Cash',0.00,'300','','','12','','1','2023-01-03 13:08:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727630922033227',6608,'121672762086','6161101605465','1.00','800','retail','0','2023-01-03 19:24:53','','','','501','Cash',0.00,'800','','','12','','1','2023-01-03 13:24:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727759780332020',6609,'121672775960','6161101602204','1.00','450','retail','0','2023-01-03 22:59:38','','','','268','Cash',0.00,'450','','','12','','1','2023-01-03 17:38:34','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727786467632713',6610,'121672778614','082184090473','1.00','4000','retail','0','2023-01-03 23:44:07','','','','2600','Cash',0.00,'4000','','','12','','1','2023-01-03 18:16:09','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727805922033227',6611,'121672780570','6161100420786','1.00','400','retail','0','2023-01-04 00:16:33','','','','290','Cash',0.00,'400','','','12','','1','2023-01-03 18:16:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727882633033327',6612,'121672786771','4840709004321','1.00','1800','retail','0','2023-01-04 02:30:02','','','','900','Cash',0.00,'1800','','','12','','1','2023-01-03 20:32:10','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727883077033727',6613,'121672786771','5000291020805','1.00','3750','retail','0','2023-01-04 02:30:02','','','','2760','Cash',0.00,'3750','','','12','','1','2023-01-03 20:32:10','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727883633033327',6614,'121672786771','6008835000930','1.00','180','retail','0','2023-01-04 02:30:02','','','','130','Cash',0.00,'180','','','12','','1','2023-01-03 20:32:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727884088632813',6615,'121672786771','024000150121','1.00','300','retail','0','2023-01-04 02:30:02','','','','205','Cash',0.00,'300','','','12','','1','2023-01-03 20:32:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727885183815273',6616,'121672786771','5000267013602','1.00','2800','retail','0','2023-01-04 02:30:02','','','','1780','Cash',0.00,'2800','','','12','','1','2023-01-03 20:32:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727886020020306',6617,'121672786771','5449000028921','1.00','150','retail','0','2023-01-04 02:30:02','','','','103','Cash',0.00,'150','','','12','','1','2023-01-03 20:32:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727890758632813',6618,'121672788733','6161101605458','1.00','270','retail','0','2023-01-04 05:03:33','','','','182','Cash',0.00,'270','','','12','','1','2023-01-03 23:03:38','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727890866033627',6619,'121672788733','6164001199331','1.00','70','retail','0','2023-01-04 05:03:33','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-03 23:03:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727978944033427',6620,'121672797821','6161100421554','1.00','450','retail','0','2023-01-04 05:05:27','','','','244','Cash',0.00,'450','','','12','','1','2023-01-04 00:50:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727979086303603',6621,'121672797821','5449000028921','1.00','150','retail','0','2023-01-04 05:05:27','','','','103','Cash',0.00,'150','','','12','','1','2023-01-04 00:50:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216727979263919273',6622,'121672797821','5060608740253','1.00','80','retail','0','2023-01-04 05:05:27','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-04 00:50:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728149744262232',6623,'121672814853','75032814','2.00','900','retail','0','2023-01-04 09:49:35','','','','295','Cash',0.00,'450','','','12','','1','2023-01-04 03:49:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','11.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728363003313273',6624,'121672836109','6008165007968','1.00','350','retail','0','2023-01-04 15:45:01','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-04 09:45:04','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728445550332020',6625,'121672836307','6161101603379','1.00','250','retail','0','2023-01-04 18:02:37','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-04 12:02:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728451324632413',6626,'121672844566','6002269000566','1.00','1200','retail','0','2023-01-04 18:12:13','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-04 12:12:16','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728481088033827',6627,'121672845138','716165173670','1.00','150','retail','0','2023-01-04 19:01:49','','','','46','Cash',0.00,'150','','','12','','1','2023-01-04 13:01:56','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728523783380320',6628,'121672848117','6161101603379','2.00','500','retail','0','2023-01-04 20:13:00','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-04 14:13:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728578816383603',6629,'121672852384','082184090473','1.00','4000','retail','0','2023-01-04 21:45:47','','','','2600','Cash',0.00,'4000','','','12','','1','2023-01-04 15:49:04','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728578944033427',6630,'121672852384','6008165007968','1.00','350','retail','0','2023-01-04 21:45:47','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-04 15:49:04','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728579212302315',6631,'121672852384','3086120600020','1.00','120','retail','0','2023-01-04 21:45:47','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-04 15:49:04','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728579466343603',6632,'121672852384','5018907197803','1.00','100','retail','0','2023-01-04 21:45:47','','','','44.58','Cash',0.00,'100','','','12','','1','2023-01-04 15:49:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728587433033327',6633,'121672858146','5011013100132','1.00','2800','retail','0','2023-01-04 22:02:16','','','','1916','Cash',0.00,'2800','','','12','','1','2023-01-04 16:02:20','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728587932033278',6634,'121672858146','6001108049582','1.00','1300','retail','0','2023-01-04 22:02:16','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-04 16:02:20','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728622262033222',6635,'121672858941','6001452301862','1.00','1600','retail','0','2023-01-04 22:57:07','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-04 16:57:14','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728625622033227',6636,'121672862549','5010677015738','1.00','2300','retail','0','2023-01-04 23:05:17','','','','1730','Cash',0.00,'2300','','','12','','1','2023-01-04 17:05:21','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728627163617273',6637,'121672862549','6161101606011','4.00','1000','retail','0','2023-01-04 23:05:17','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-04 17:05:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','14.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728671620332020',6638,'121672867150','6161100421219','1.00','900','retail','0','2023-01-05 00:19:46','','','','561','Cash',0.00,'900','','','12','','1','2023-01-04 18:20:42','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728671703611273',6639,'121672867150','6001108049582','1.00','1300','retail','0','2023-01-05 00:19:46','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-04 18:20:42','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728671853751021',6640,'121672867150','5060608740253','2.00','160','retail','0','2023-01-05 00:19:46','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-04 18:20:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728692533380320',6641,'121672867244','5060639129003','1.00','250','retail','0','2023-01-05 00:54:13','','','','153','Cash',0.00,'250','','','12','','1','2023-01-04 18:54:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728724323714273',6642,'121672872420','6001108049582','1.00','1300','retail','0','2023-01-05 01:47:13','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-04 19:47:18','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728728183380320',6643,'121672872815','082184090473','1.00','4000','retail','0','2023-01-05 01:53:45','','','','2600','Cash',0.00,'4000','','','12','','1','2023-01-04 19:53:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728728247632713',6644,'121672872815','5449000028921','1.00','150','retail','0','2023-01-05 01:53:45','','','','103','Cash',0.00,'150','','','12','','1','2023-01-04 19:53:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728780403710273',6645,'121672872836','6008835000930','1.00','180','retail','0','2023-01-05 03:20:41','','','','130','Cash',0.00,'180','','','12','','1','2023-01-04 21:20:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728842948632813',6646,'121672878050','6161100421363','2.00','1400','retail','0','2023-01-05 05:07:15','','','','435','Cash',0.00,'700','','','12','','1','2023-01-04 23:07:21','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728844000332020',6647,'121672878050','5060608740253','3.00','240','retail','0','2023-01-05 05:07:15','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-04 23:07:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728844343380320',6648,'121672878050','6161101602372','1.00','250','retail','0','2023-01-05 05:07:15','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-04 23:07:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728844946393603',6649,'121672884444','6161101601979','1.00','250','retail','0','2023-01-05 05:08:15','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-04 23:08:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728846122033264',6650,'121672884501','6161100421363','2.00','1400','retail','0','2023-01-05 05:11:35','','','','435','Cash',0.00,'700','','','12','','1','2023-01-04 23:11:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728846255033527',6651,'121672884501','5060608740253','3.00','240','retail','0','2023-01-05 05:11:35','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-04 23:11:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728848253380320',6652,'121672884701','6161100421363','2.00','1400','retail','0','2023-01-05 05:14:09','','','','435','Cash',0.00,'700','','','12','','1','2023-01-04 23:14:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2.00','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728848406343603',6653,'121672884701','5060608740253','1.00','80','retail','0','2023-01-05 05:14:09','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-04 23:14:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728848488033827',6654,'121672884701','6161101602372','1.00','250','retail','0','2023-01-05 05:14:09','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-04 23:14:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728888368632813',6655,'121672884854','6161101605458','1.00','270','retail','0','2023-01-05 06:21:30','','','','182','Cash',0.00,'270','','','12','','1','2023-01-05 00:22:04','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728888796373603',6656,'121672884854','6161101601979','3.00','750','retail','0','2023-01-05 06:21:30','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-05 00:22:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216728888902033288',6657,'121672884854','6164001199010','1.00','100','retail','0','2023-01-05 06:21:30','','','','38','Cash',0.00,'100','','','12','','1','2023-01-05 00:22:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729125988033827',6658,'121672912586','5000291020706','1.00','2800','retail','0','2023-01-05 12:57:23','','','','2070','Cash',0.00,'2800','','','12','','1','2023-01-05 06:57:26','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729126422033262',6659,'121672912586','90162602','2.00','460','retail','0','2023-01-05 12:57:23','','','','147','Cash',0.00,'230','','','12','','1','2023-01-05 06:57:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729226370303223',6660,'121672922627','6008835000930','3.00','540','retail','0','2023-01-05 15:43:57','','','','130','Cash',0.00,'180','','','12','','1','2023-01-05 09:43:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729254922033227',6661,'121672922641','6008165007968','1.00','350','retail','0','2023-01-05 16:31:33','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-05 10:31:42','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729322450303223',6662,'121672932233','6161101603379','2.00','500','retail','0','2023-01-05 18:24:06','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-05 12:24:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729330343390320',6663,'121672932251','6161101605465','1.00','800','retail','0','2023-01-05 18:37:57','','','','501','Cash',0.00,'800','','','12','','1','2023-01-05 12:38:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729330488033827',6664,'121672932251','50112753','2.00','160','retail','0','2023-01-05 18:37:57','','','','56','Cash',0.00,'80','','','12','','1','2023-01-05 12:38:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729330653310273',6665,'121672932251','54493360','1.00','80','retail','0','2023-01-05 18:37:57','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-05 12:38:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729330760303223',6666,'121672932251','6161101603379','1.00','250','retail','0','2023-01-05 18:37:57','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-05 12:38:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729405912033250',6667,'121672940543','6161101601115','1.00','850','retail','0','2023-01-05 20:43:58','','','','635','Cash',0.00,'850','','','12','','1','2023-01-05 14:45:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729406386333603',6668,'121672940543','6161101601979','2.00','500','retail','0','2023-01-05 20:43:58','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-05 14:45:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729423656363603',6669,'121672940720','6008835000930','1.00','180','retail','0','2023-01-05 21:13:02','','','','130','Cash',0.00,'180','','','12','','1','2023-01-05 15:13:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729423822033232',6670,'121672940720','6161101605465','2.00','1600','retail','0','2023-01-05 21:13:02','','','','501','Cash',0.00,'800','','','12','','1','2023-01-05 15:13:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729537043390320',6671,'121672953553','6161101600927','2.00','3800','retail','0','2023-01-06 00:21:44','','','','1417','Cash',0.00,'1900','','','12','','1','2023-01-05 18:21:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729537500033027',6672,'121672953710','6161101600941','2.00','1500','retail','0','2023-01-06 00:22:31','','','','544','Cash',0.00,'750','','','12','','1','2023-01-05 18:22:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729543492033234',6673,'121672953945','100','4.00','1000','retail','0','2023-01-06 00:34:30','','','','177','Cash',0.00,'250','','','12','','1','2023-01-05 18:36:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729544370332020',6674,'121672953945','8712000900045','4.00','1200','retail','0','2023-01-06 00:34:30','','','','182','Cash',0.00,'300','','','12','','1','2023-01-05 18:36:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729544524262232',6675,'121672953945','6001108028044','4.00','1200','retail','0','2023-01-06 00:34:30','','','','201','Cash',0.00,'300','','','12','','1','2023-01-05 18:36:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729544699033927',6676,'121672953945','6009627080246','2.00','360','retail','0','2023-01-06 00:34:30','','','','92','Cash',0.00,'180','','','12','','1','2023-01-05 18:36:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729563573513273',6677,'121672955239','5010103930840','9.00','4500','retail','0','2023-01-06 01:05:58','','','','335','Cash',0.00,'500','','','12','','1','2023-01-05 19:06:08','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'9','22.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729563883093863',6678,'121672956372','90162602','1.00','230','retail','0','2023-01-06 01:06:38','','','','147','Cash',0.00,'230','','','12','','1','2023-01-05 19:08:03','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729563973390320',6679,'121672956372','6161101602211','1.00','400','retail','0','2023-01-06 01:06:38','','','','247','Cash',0.00,'400','','','12','','1','2023-01-05 19:08:03','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729571015632513',6680,'121672956485','6161101604994','3.00','3300','retail','0','2023-01-06 01:22:08','','','','653','Cash',0.00,'1100','','','12','','1','2023-01-05 19:23:22','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729573283390320',6681,'121672956485','6161101602211','8.00','3200','retail','0','2023-01-06 01:22:08','','','','247','Cash',0.00,'400','','','12','','1','2023-01-05 19:23:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','13.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729609193390320',6682,'121672960892','087000006928','2.00','3600','retail','0','2023-01-06 02:22:00','','','','1320','Cash',0.00,'1800','','','12','','1','2023-01-05 20:22:05','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729610688033827',6683,'121672961044','6161101604550','4.00','1600','retail','0','2023-01-06 02:24:28','','','','284','Cash',0.00,'400','','','12','','1','2023-01-05 20:24:32','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729612300033027',6684,'121672961212','6161100421509','1.00','1350','retail','0','2023-01-06 02:27:10','','','','787','Cash',0.00,'1350','','','12','','1','2023-01-05 20:27:14','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729613452033231',6685,'121672961315','5010752000420','2.00','2000','retail','0','2023-01-06 02:29:06','','','','659','Cash',0.00,'1000','','','12','','1','2023-01-05 20:29:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729615144033427',6686,'121672961495','5010103800303','1.00','1900','retail','0','2023-01-06 02:31:55','','','','1353','Cash',0.00,'1900','','','12','','1','2023-01-05 20:31:57','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729615712033251',6687,'121672961557','5010103800167','1.00','1000','retail','0','2023-01-06 02:32:52','','','','719','Cash',0.00,'1000','','','12','','1','2023-01-05 20:32:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729619566632613',6688,'121672961921','6161101601115','3.00','2550','retail','0','2023-01-06 02:39:16','','','','635','Cash',0.00,'850','','','12','','1','2023-01-05 20:39:20','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729619893390320',6689,'121672961962','5000292263171','1.00','600','retail','0','2023-01-06 02:39:50','','','','430','Cash',0.00,'600','','','12','','1','2023-01-05 20:39:52','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729620603390320',6690,'121672962032','50196166','3.00','2250','retail','0','2023-01-06 02:41:00','','','','443','Cash',0.00,'750','','','12','','1','2023-01-05 20:41:03','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729622777033727',6691,'121672962264','5010103930963','4.00','6000','retail','0','2023-01-06 02:44:38','','','','1125','Cash',0.00,'1500','','','12','','1','2023-01-05 20:44:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729627780303223',6692,'121672962764','6002886001274','1.00','1900','retail','0','2023-01-06 02:52:58','','','','1110','Cash',0.00,'1900','','','12','','1','2023-01-05 20:53:04','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729628006632613',6693,'121672962786','6002886001182','1.00','1900','retail','0','2023-01-06 02:53:21','','','','1110','Cash',0.00,'1900','','','12','','1','2023-01-05 20:53:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729628950332020',6694,'121672962847','4820000946902','1.00','1700','retail','0','2023-01-06 02:54:56','','','','931','Cash',0.00,'1700','','','12','','1','2023-01-05 20:55:00','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729629503390320',6695,'121672962928','6009675642021','1.00','1500','retail','0','2023-01-06 02:55:51','','','','700','Cash',0.00,'1500','','','12','','1','2023-01-05 20:55:54','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729630572033203',6696,'121672962996','6009675642007','3.00','4200','retail','0','2023-01-06 02:57:38','','','','700','Cash',0.00,'1400','','','12','','1','2023-01-05 20:57:42','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729636199033927',6697,'121672963534','6002323413530','1.00','2000','retail','0','2023-01-06 03:07:00','','','','1325 ','Cash',0.00,'2000','','','12','','1','2023-01-05 21:07:03','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729638333618273',6698,'121672963811','6001506908146','1.00','1500','retail','0','2023-01-06 03:10:34','','','','865','Cash',0.00,'1500','','','12','','1','2023-01-05 21:10:36','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729638773390320',6699,'121672963838','6002886000277','4.00','7600','retail','0','2023-01-06 03:11:18','','','','1110','Cash',0.00,'1900','','','12','','1','2023-01-05 21:11:22','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729639266632613',6700,'121672963884','6001452301862','2.00','3200','retail','0','2023-01-06 03:12:07','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-05 21:12:10','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729640246323603',6701,'121672963992','6001452258005','1.00','1600','retail','0','2023-01-06 03:13:45','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-05 21:13:47','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729644513390320',6702,'121672964430','4820071841168','1.00','2200','retail','0','2023-01-06 03:20:52','','','','1050','Cash',0.00,'2200','','','12','','1','2023-01-05 21:20:54','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729650746373603',6703,'121672964942','5000267013602','1.00','2800','retail','0','2023-01-06 03:31:15','','','','1780','Cash',0.00,'2800','','','12','','1','2023-01-05 21:31:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729651833390320',6704,'121672965145','5000267107776','2.00','15400','retail','0','2023-01-06 03:33:04','','','','5685','Cash',0.00,'7700','','','12','','1','2023-01-05 21:33:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729652183612273',6705,'121672965193','5000267173139','3.00','13500','retail','0','2023-01-06 03:33:39','','','','3056','Cash',0.00,'4500','','','12','','1','2023-01-05 21:33:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729653623390320',6706,'121672965225','082184087008','1.00','8000','retail','0','2023-01-06 03:36:03','','','','5900','Cash',0.00,'8000','','','12','','1','2023-01-05 21:36:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729654303614273',6707,'121672965366','082184090442','1.00','5300','retail','0','2023-01-06 03:37:10','','','','3450','Cash',0.00,'5300','','','12','','1','2023-01-05 21:37:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729654606632613',6708,'121672965434','082184090473','1.00','4000','retail','0','2023-01-06 03:37:40','','','','2600','Cash',0.00,'4000','','','12','','1','2023-01-05 21:37:43','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729656100332020',6709,'121672965464','080432400432','1.00','4800','retail','0','2023-01-06 03:40:11','','','','3250','Cash',0.00,'4800','','','12','','1','2023-01-05 21:40:13','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729657486632613',6710,'121672965730','5010314750008','2.00','4200','retail','0','2023-01-06 03:42:29','','','','1552','Cash',0.00,'2100','','','12','','1','2023-01-05 21:42:32','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729663143390320',6711,'121672966287','5000281021621','5.00','32500','retail','0','2023-01-06 03:51:55','','','','4450','Cash',0.00,'6500','','','12','','1','2023-01-05 21:52:16','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','7.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729670416632613',6712,'121672967013','6161100421554','3.00','1350','retail','0','2023-01-06 04:04:01','','','','244','Cash',0.00,'450','','','12','','1','2023-01-05 22:04:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729674273614273',6713,'121672967413','5011013100194','1.00','1350','retail','0','2023-01-06 04:10:41','','','','999','Cash',0.00,'1350','','','12','','1','2023-01-05 22:10:43','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729674400033027',6714,'121672967413','5011013100132','1.00','2800','retail','0','2023-01-06 04:10:41','','','','1916','Cash',0.00,'2800','','','12','','1','2023-01-05 22:10:43','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729674866632613',6715,'121672967469','7174000401020','3.00','3000','retail','0','2023-01-06 04:11:27','','','','480','Cash',0.00,'1000','','','12','','1','2023-01-05 22:11:30','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729677012033277',6716,'121672967656','6161101603522','4.00','3200','retail','0','2023-01-06 04:15:02','','','','501','Cash',0.00,'800','','','12','','1','2023-01-05 22:15:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','15.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729677986632613',6717,'121672967776','6161101605465','2.00','1600','retail','0','2023-01-06 04:16:39','','','','501','Cash',0.00,'800','','','12','','1','2023-01-05 22:16:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729679846632613',6718,'121672967973','5010327755045','1.00','5600','retail','0','2023-01-06 04:19:44','','','','3850','Cash',0.00,'5600','','','12','','1','2023-01-05 22:19:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729681192033218',6719,'121672968096','6161101606547','5.00','2750','retail','0','2023-01-06 04:22:00','','','','388','Cash',0.00,'550','','','12','','1','2023-01-05 22:22:02','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','18.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729682573612273',6720,'121672968240','5010103930666','4.00','3400','retail','0','2023-01-06 04:24:17','','','','586','Cash',0.00,'850','','','12','','1','2023-01-05 22:24:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729683633033327',6721,'121672968347','5000291025930','2.00','6000','retail','0','2023-01-06 04:26:04','','','','2220','Cash',0.00,'3000','','','12','','1','2023-01-05 22:26:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729684616632613',6722,'121672968439','5000291020805','1.00','3750','retail','0','2023-01-06 04:27:42','','','','2760','Cash',0.00,'3750','','','12','','1','2023-01-05 22:27:44','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729686242033268',6723,'121672968606','5000281016689','4.00','21600','retail','0','2023-01-06 04:30:40','','','','4000','Cash',0.00,'5400','','','12','','1','2023-01-05 22:30:45','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729686393616273',6724,'121672968606','5000291021925','2.00','9000','retail','0','2023-01-06 04:30:40','','','','3381','Cash',0.00,'4500','','','12','','1','2023-01-05 22:30:45','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729687003617273',6725,'121672968647','5449000180247','2.00','400','retail','0','2023-01-06 04:31:41','','','','125','Cash',0.00,'200','','','12','','1','2023-01-05 22:31:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729687233390320',6726,'121672968706','90490279','1.00','100','retail','0','2023-01-06 04:32:25','','','','68','Cash',0.00,'100','','','12','','1','2023-01-05 22:32:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729687443617273',6727,'121672968706','40262144','1.00','200','retail','0','2023-01-06 04:32:25','','','','125','Cash',0.00,'200','','','12','','1','2023-01-05 22:32:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729693320303223',6728,'121672969311','75032814','2.00','900','retail','0','2023-01-06 04:42:13','','','','295','Cash',0.00,'450','','','12','','1','2023-01-05 22:42:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729694803614273',6729,'121672969466','100','2.00','500','retail','0','2023-01-06 04:44:41','','','','177','Cash',0.00,'250','','','12','','1','2023-01-05 22:44:45','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729695676363603',6730,'121672969548','6161101606820','6.00','1500','retail','0','2023-01-06 04:46:09','','','','159','Cash',0.00,'250','','','12','','1','2023-01-05 22:46:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729707688033827',6731,'121672970750','5449000004864','4.00','1000','retail','0','2023-01-06 05:06:09','','','','158','Cash',0.00,'250','','','12','','1','2023-01-05 23:06:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729708111033127',6732,'121672970790','5449000014535','2.00','240','retail','0','2023-01-06 05:06:52','','','','64','Cash',0.00,'120','','','12','','1','2023-01-05 23:06:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729710612033201',6733,'121672971045','6008835000947','6.00','2280','retail','0','2023-01-06 05:11:02','','','','230','Cash',0.00,'380','','','12','','1','2023-01-05 23:11:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','12.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729710946393603',6734,'121672971067','6009627080246','3.00','540','retail','0','2023-01-06 05:11:35','','','','92','Cash',0.00,'180','','','12','','1','2023-01-05 23:11:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729711293711273',6735,'121672971099','87303322','6.00','480','retail','0','2023-01-06 05:13:56','','','','23','Cash',0.00,'80','','','12','','1','2023-01-05 23:14:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729711413390320',6736,'121672971099','5449000014536','1.00','100','retail','0','2023-01-06 05:13:56','','','','49','Cash',0.00,'100','','','12','','1','2023-01-05 23:14:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216729712363390320',6737,'121672971099','6164002099029','7.00','560','retail','0','2023-01-06 05:13:56','','','','36','Cash',0.00,'80','','','12','','1','2023-01-05 23:14:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'7','45.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730076856383603',6738,'121673001460','8712000900045','4.00','1200','retail','0','2023-01-06 15:22:23','','','','182','Cash',0.00,'300','','','12','','1','2023-01-06 09:22:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','23.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730077213017273',6739,'121673001460','024000191667','1.00','300','retail','0','2023-01-06 15:22:23','','','','205','Cash',0.00,'300','','','12','','1','2023-01-06 09:22:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730077423017273',6740,'121673001460','90162602','1.00','230','retail','0','2023-01-06 15:22:23','','','','147','Cash',0.00,'230','','','12','','1','2023-01-06 09:22:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730077833300320',6741,'121673007771','90162602','1.00','230','retail','0','2023-01-06 15:23:03','','','','147','Cash',0.00,'230','','','12','','1','2023-01-06 09:23:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730078133300320',6742,'121673007793','1000','2.00','540','retail','0','2023-01-06 15:23:33','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 09:23:36','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','24.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730078410633013',6743,'121673007817','6161100421561','1.00','1300','retail','0','2023-01-06 15:24:15','','','','645','Cash',0.00,'1300','','','12','','1','2023-01-06 09:24:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730078550332020',6744,'121673007817','54493360','2.00','160','retail','0','2023-01-06 15:24:15','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-06 09:24:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730103273113273',6745,'121673007862','6974929192181','1.00','3250','retail','0','2023-01-06 16:05:27','','','','2500','Cash',0.00,'3250','','','12','','1','2023-01-06 10:05:30','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730125151633113',6746,'121673010333','1000','1.00','270','retail','0','2023-01-06 16:41:55','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 10:41:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730133521332253',6747,'121673012520','6161101605458','1.00','270','retail','0','2023-01-06 16:55:53','','','','182','Cash',0.00,'270','','','12','','1','2023-01-06 10:55:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730149366033627',6748,'121673013360','6161101602211','3.00','1200','retail','0','2023-01-06 17:22:26','','','','247','Cash',0.00,'400','','','12','','1','2023-01-06 11:26:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730149460303223',6749,'121673013360','5018907194802','1.00','150','retail','0','2023-01-06 17:22:26','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-06 11:26:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730152500303223',6750,'121673015184','1000','1.00','270','retail','0','2023-01-06 17:27:31','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 11:27:33','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730160900033027',6751,'121673015255','6161101602433','1.00','200','retail','0','2023-01-06 17:41:31','','','','150.45','Cash',0.00,'200','','','12','','1','2023-01-06 11:43:02','1','3','returned','1','new','pcs','','2023-01-06 17:43:02','12','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730165722261333',6752,'121673016382','1000','1.00','270','retail','0','2023-01-06 17:49:33','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 11:49:35','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730177473117273',6753,'121673016577','6001108028044','2.00','600','retail','0','2023-01-06 18:09:08','','','','201','Cash',0.00,'300','','','12','','1','2023-01-06 12:09:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730214420303223',6754,'121673017753','6161101603379','2.00','500','retail','0','2023-01-06 19:10:43','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-06 13:10:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','30.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730245453023032',6755,'121673021866','6161101605458','1.00','270','retail','0','2023-01-06 20:02:37','','','','182','Cash',0.00,'270','','','12','','1','2023-01-06 14:03:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730245576353603',6756,'121673021866','54493360','1.00','80','retail','0','2023-01-06 20:02:37','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-06 14:03:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730255144033427',6757,'121673024710','4058387004605','1.00','1400','retail','0','2023-01-06 20:18:35','','','','1050','Cash',0.00,'1400','','','12','','1','2023-01-06 14:18:39','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730265772033256',6758,'121673025521','75032814','3.00','1350','retail','0','2023-01-06 20:36:32','','','','295','Cash',0.00,'450','','','12','','1','2023-01-06 14:38:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730265922633213',6759,'121673025521','6161101604406','4.00','1000','retail','0','2023-01-06 20:36:32','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-06 14:38:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','11.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730267212633213',6760,'121673026684','6161101605458','1.00','270','retail','0','2023-01-06 20:38:42','','','','182','Cash',0.00,'270','','','12','','1','2023-01-06 14:39:49','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730304143633313',6761,'121673026791','1000','1.00','270','retail','0','2023-01-06 21:40:25','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 15:40:28','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730304240332020',6762,'121673026791','6164001199034','1.00','50','retail','0','2023-01-06 21:40:25','','','','19','Cash',0.00,'50','','','12','','1','2023-01-06 15:40:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730305723633313',6763,'121673030429','6164001199331','2.00','140','retail','0','2023-01-06 21:44:27','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-06 15:46:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','28.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730305863315273',6764,'121673030429','5018907194802','2.00','300','retail','0','2023-01-06 21:44:27','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-06 15:46:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','57.00','55','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730306399033927',6765,'121673030429','6161101606547','1.00','550','retail','0','2023-01-06 21:44:27','','','','388','Cash',0.00,'550','','','12','','1','2023-01-06 15:46:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730306673316273',6766,'121673030429','6164002099029','2.00','160','retail','0','2023-01-06 21:44:27','','','','36','Cash',0.00,'80','','','12','','1','2023-01-06 15:46:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','38.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730315143315273',6767,'121673030814','6161101601979','1.00','250','retail','0','2023-01-06 21:58:34','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-06 15:58:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730319623633313',6768,'121673031519','6161101602921','2.00','500','retail','0','2023-01-06 22:06:29','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-06 16:06:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','67.00','65','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730319760332020',6769,'121673031519','8712000900663','2.00','600','retail','0','2023-01-06 22:06:29','','','','214','Cash',0.00,'300','','','12','','1','2023-01-06 16:06:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730319883319273',6770,'121673031519','6161101601979','1.00','250','retail','0','2023-01-06 22:06:29','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-06 16:06:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730325423315273',6771,'121673031998','3086120600020','1.00','120','retail','0','2023-01-06 22:15:43','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-06 16:15:54','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730326832033262',6772,'121673032556','6161100420786','1.00','400','retail','0','2023-01-06 22:18:04','','','','290','Cash',0.00,'400','','','12','','1','2023-01-06 16:20:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730334563314273',6773,'121673032849','1000','1.00','270','retail','0','2023-01-06 22:31:17','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 16:31:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730334776373603',6774,'121673032849','6161101604406','2.00','500','retail','0','2023-01-06 22:31:17','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-06 16:31:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730366543316273',6775,'121673036501','8712000900045','4.00','1200','retail','0','2023-01-06 23:24:24','','','','182','Cash',0.00,'300','','','12','','1','2023-01-06 17:24:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','19.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730366630303223',6776,'121673036501','5018907194802','1.00','150','retail','0','2023-01-06 23:24:24','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-06 17:24:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730369833633313',6777,'121673036671','1000','1.00','270','retail','0','2023-01-06 23:29:55','','','','192','Cash',0.00,'270','','','12','','1','2023-01-06 17:29:58','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730369943300320',6778,'121673036671','5449000180247','1.00','200','retail','0','2023-01-06 23:29:55','','','','125','Cash',0.00,'200','','','12','','1','2023-01-06 17:29:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730373702337203',6779,'121673037319','6009675642021','1.00','1500','retail','0','2023-01-06 23:36:18','','','','700','Cash',0.00,'1500','','','12','','1','2023-01-06 17:37:23','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730373777033727',6780,'121673037319','5018907194802','1.00','150','retail','0','2023-01-06 23:36:18','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-06 17:37:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730379343300320',6781,'121673037445','8712000900045','2.00','600','retail','0','2023-01-06 23:45:57','','','','182','Cash',0.00,'300','','','12','','1','2023-01-06 17:46:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730379563633313',6782,'121673037445','90162602','1.00','230','retail','0','2023-01-06 23:45:57','','','','147','Cash',0.00,'230','','','12','','1','2023-01-06 17:46:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730403106313603',6783,'121673038014','5010106111451','1.00','2200','retail','0','2023-01-07 00:25:11','','','','1600','Cash',0.00,'2200','','','12','','1','2023-01-06 18:27:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730409844633413',6784,'121673040435','4840709004321','1.00','1800','retail','0','2023-01-07 00:36:25','','','','900','Cash',0.00,'1800','','','12','','1','2023-01-06 18:38:48','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730417294633413',6785,'121673041131','6161100421561','1.00','1300','retail','0','2023-01-07 00:49:02','','','','645','Cash',0.00,'1300','','','12','','1','2023-01-06 18:50:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730417376333603',6786,'121673041131','6164001199010','1.00','100','retail','0','2023-01-07 00:49:02','','','','38','Cash',0.00,'100','','','12','','1','2023-01-06 18:50:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730417424633413',6787,'121673041131','6164001199010','1.00','100','retail','0','2023-01-07 00:49:02','','','','38','Cash',0.00,'100','','','12','','1','2023-01-06 18:50:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730428294633413',6788,'121673041826','6161101602921','4.00','1000','retail','0','2023-01-07 01:07:10','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-06 19:15:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','65.00','61','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730450313410273',6789,'121673043328','5010103930628','1.00','1750','retail','0','2023-01-07 01:43:52','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-06 19:44:03','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730454122033227',6790,'121673045045','8906120780179','1.00','1600','retail','0','2023-01-07 01:53:23','','','','970','Cash',0.00,'1600','','','12','','1','2023-01-06 19:53:27','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730455963300320',6791,'121673045045','5060608740253','1.00','80','retail','0','2023-01-07 01:53:23','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-06 19:53:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730476036303603',6792,'121673045610','6161101600927','1.00','1900','retail','0','2023-01-07 02:31:08','','','','1417','Cash',0.00,'1900','','','12','','1','2023-01-06 20:31:16','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730478688033827',6793,'121673045610','5449000028921','1.00','150','retail','0','2023-01-07 02:31:08','','','','103','Cash',0.00,'150','','','12','','1','2023-01-06 20:31:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730479873419273',6794,'121673047879','5060608740253','1.00','80','retail','0','2023-01-07 02:33:08','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-06 20:33:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730502490332020',6795,'121673047992','6002269000566','1.00','1200','retail','0','2023-01-07 03:10:50','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-06 21:48:38','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730525352033252',6796,'121673052520','5010103930628','2.00','3500','retail','0','2023-01-07 03:50:02','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-06 22:09:20','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730525543515273',6797,'121673052520','6164001199331','1.00','70','retail','0','2023-01-07 03:50:02','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-06 22:09:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730525652233313',6798,'121673052520','8906054940137','1.00','700','retail','0','2023-01-07 03:50:02','','','','405','Cash',0.00,'700','','','12','','1','2023-01-06 22:09:20','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730526023516273',6799,'121673052520','5060639129003','3.00','750','retail','0','2023-01-07 03:50:02','','','','153','Cash',0.00,'250','','','12','','1','2023-01-06 22:09:20','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','38.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730537843300320',6800,'121673053762','6001495203055','1.00','1400','retail','0','2023-01-07 04:09:56','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-06 22:58:39','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730537966033627',6801,'121673053762','6002269000566','1.00','1200','retail','0','2023-01-07 04:09:56','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-06 22:58:39','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730567455633513',6802,'121673056721','6161101603522','1.00','800','retail','0','2023-01-07 04:59:30','','','','501','Cash',0.00,'800','','','12','','1','2023-01-06 22:59:34','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730567599033927',6803,'121673056721','5060608740253','1.00','80','retail','0','2023-01-07 04:59:30','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-06 22:59:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730567702033276',6804,'121673056721','6164001199010','1.00','100','retail','0','2023-01-07 04:59:30','','','','38','Cash',0.00,'100','','','12','','1','2023-01-06 22:59:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730582992033228',6805,'121673056776','5010677015615','1.00','1800','retail','0','2023-01-07 05:25:00','','','','1300','Cash',0.00,'1800','','','12','','1','2023-01-06 23:25:15','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730583632033238',6806,'121673058317','5060608740253','1.00','80','retail','0','2023-01-07 05:26:04','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-06 23:26:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730584010332020',6807,'121673058386','5060608740253','1.00','80','retail','0','2023-01-07 05:26:41','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-06 23:29:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730633126313603',6808,'121673058588','6164001199034','1.00','50','retail','0','2023-01-07 06:48:32','','','','19','Cash',0.00,'50','','','12','','1','2023-01-07 00:48:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730698676363603',6809,'121673069845','8712000900663','3.00','900','retail','0','2023-01-07 08:38:12','','','','214','Cash',0.00,'300','','','12','','1','2023-01-07 03:10:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730698799033927',6810,'121673069845','5018907194802','1.00','150','retail','0','2023-01-07 08:38:12','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-07 03:10:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730698920332020',6811,'121673069845','5060639129003','1.00','250','retail','0','2023-01-07 08:38:12','','','','153','Cash',0.00,'250','','','12','','1','2023-01-07 03:10:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730873248633813',6812,'121673087307','1000','1.00','270','retail','0','2023-01-07 13:28:45','','','','192','Cash',0.00,'270','','','12','','1','2023-01-07 07:28:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730873532033237',6813,'121673087330','1000','1.00','270','retail','0','2023-01-07 13:29:14','','','','192','Cash',0.00,'270','','','12','','1','2023-01-07 07:29:17','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730887603300320',6814,'121673087359','6161101602211','1.00','400','retail','0','2023-01-07 13:52:48','','','','247','Cash',0.00,'400','','','12','','1','2023-01-07 07:55:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730887683817273',6815,'121673087359','6008165018193','1.00','400','retail','0','2023-01-07 13:52:48','','','','270','Cash',0.00,'400','','','12','','1','2023-01-07 07:55:48','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730889850303223',6816,'121673088950','6203005570170','1.00','350','retail','0','2023-01-07 13:57:43','','','','288','Cash',0.00,'350','','','12','','1','2023-01-07 07:58:35','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730890638633813',6817,'121673088950','6164001199331','1.00','70','retail','0','2023-01-07 13:57:43','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 07:58:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730950250303223',6818,'121673092270','50196166','1.00','750','retail','0','2023-01-07 15:37:06','','','','443','Cash',0.00,'750','','','12','','1','2023-01-07 09:37:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216730952333033327',6819,'121673095032','080432402825','1.00','7500','retail','0','2023-01-07 15:40:33','','','','5200','Cash',0.00,'7500','','','12','','1','2023-01-07 09:40:37','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731077463310320',6820,'121673106846','8712000900045','4.00','1200','retail','0','2023-01-07 19:09:07','','','','182','Cash',0.00,'300','','','12','','1','2023-01-07 13:09:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731105193115273',6821,'121673107753','6161101606547','1.00','550','retail','0','2023-01-07 19:55:38','','','','388','Cash',0.00,'550','','','12','','1','2023-01-07 13:56:42','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731105388033827',6822,'121673107753','6164001199331','1.00','70','retail','0','2023-01-07 19:55:38','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 13:56:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731111433111273',6823,'121673110605','716165173670','1.00','150','retail','0','2023-01-07 20:05:43','','','','46','Cash',0.00,'150','','','12','','1','2023-01-07 14:05:48','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731149710303223',6824,'121673111149','5010103930864','1.00','1500','retail','0','2023-01-07 21:09:32','','','','1125','Cash',0.00,'1500','','','12','','1','2023-01-07 15:13:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731158844033427',6825,'121673115194','725765052087','1.00','290','retail','0','2023-01-07 21:24:44','','','','209','Cash',0.00,'290','','','12','','1','2023-01-07 15:25:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731185900303223',6826,'121673115927','6161101605458','1.00','270','retail','0','2023-01-07 22:09:50','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 16:09:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731203650332020',6827,'121673118595','5010752000420','1.00','1000','retail','0','2023-01-07 22:39:48','','','','659','Cash',0.00,'1000','','','12','','1','2023-01-07 16:43:12','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731203780303223',6828,'121673118595','54493360','2.00','160','retail','0','2023-01-07 22:39:48','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-07 16:43:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731203882633213',6829,'121673118595','6164001199331','1.00','70','retail','0','2023-01-07 22:39:48','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 16:43:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731216323310320',6830,'121673120594','6161101604406','1.00','250','retail','0','2023-01-07 23:00:32','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-07 17:00:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731217670332020',6831,'121673121637','1000','1.00','270','retail','0','2023-01-07 23:02:47','','','','192','Cash',0.00,'270','','','12','','1','2023-01-07 17:02:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731220130303223',6832,'121673121771','6161101601979','3.00','750','retail','0','2023-01-07 23:06:53','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-07 17:07:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','43.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731231452233337',6833,'121673122048','3086120600020','1.00','120','retail','0','2023-01-07 23:25:46','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-07 17:25:51','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731237230303223',6834,'121673123153','1000','1.00','270','retail','0','2023-01-07 23:35:24','','','','192','Cash',0.00,'270','','','12','','1','2023-01-07 17:35:26','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731246643310320',6835,'121673123728','5000267125046','1.00','5300','retail','0','2023-01-07 23:51:19','','','','3540','Cash',0.00,'5300','','','12','','1','2023-01-07 17:51:24','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731246780332020',6836,'121673123728','5449000000286','1.00','250','retail','0','2023-01-07 23:51:19','','','','158','Cash',0.00,'250','','','12','','1','2023-01-07 17:51:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731273388033827',6837,'121673124686','6161101605458','1.00','270','retail','0','2023-01-08 00:35:54','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 18:35:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731273533213273',6838,'121673124686','6164001199331','1.00','70','retail','0','2023-01-08 00:35:54','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 18:35:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731290053210273',6839,'121673127362','6161101604406','2.00','500','retail','0','2023-01-08 01:03:44','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-07 19:05:28','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731290133033327',6840,'121673127362','90162602','1.00','230','retail','0','2023-01-08 01:03:44','','','','147','Cash',0.00,'230','','','12','','1','2023-01-07 19:05:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731290233210273',6841,'121673127362','5060608740253','1.00','80','retail','0','2023-01-08 01:03:44','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-07 19:05:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731304346333603',6842,'121673129130','6161101605458','2.00','540','retail','0','2023-01-08 01:27:15','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 19:27:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','15.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731305700303223',6843,'121673130440','6161101605458','1.00','270','retail','0','2023-01-08 01:29:43','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 19:35:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731305823310320',6844,'121673130440','6164001199331','2.00','140','retail','0','2023-01-08 01:29:43','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 19:35:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731316056303603',6845,'121673130920','6164001199331','1.00','70','retail','0','2023-01-08 01:46:46','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 19:46:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731319832033291',6846,'121673131619','5000291025930','1.00','3000','retail','0','2023-01-08 01:55:18','','','','2220','Cash',0.00,'3000','','','12','','1','2023-01-07 20:00:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731320532033202',6847,'121673131619','5060639129003','1.00','250','retail','0','2023-01-08 01:55:18','','','','153','Cash',0.00,'250','','','12','','1','2023-01-07 20:00:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731321177033727',6848,'121673131619','5018907194802','1.00','150','retail','0','2023-01-08 01:55:18','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-07 20:00:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731330373310273',6849,'121673132409','6161101602051','1.00','550','retail','0','2023-01-08 02:10:38','','','','392','Cash',0.00,'550','','','12','','1','2023-01-07 20:10:40','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731338426343603',6850,'121673133042','6161101605458','1.00','270','retail','0','2023-01-08 02:24:12','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 20:24:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731338523633313',6851,'121673133042','6164001199331','1.00','70','retail','0','2023-01-08 02:24:12','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-07 20:24:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731342666363603',6852,'121673133857','5000289020701','1.00','2500','retail','0','2023-01-08 02:31:07','','','','1900','Cash',0.00,'2500','','','12','','1','2023-01-07 20:31:10','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731343711033127',6853,'121673134272','6008165018193','1.00','400','retail','0','2023-01-08 02:32:52','','','','270','Cash',0.00,'400','','','12','','1','2023-01-07 20:32:58','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731359423319273',6854,'121673134380','1000','1.00','270','retail','0','2023-01-08 02:59:03','','','','192','Cash',0.00,'270','','','12','','1','2023-01-07 20:59:06','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731364943633313',6855,'121673135947','5018907197803','1.00','100','retail','0','2023-01-08 03:08:15','','','','44.58','Cash',0.00,'100','','','12','','1','2023-01-07 21:08:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731370566033627',6856,'121673136499','8712000900045','3.00','900','retail','0','2023-01-08 03:18:02','','','','182','Cash',0.00,'300','','','12','','1','2023-01-07 21:19:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','9.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731370652033207',6857,'121673136499','6161101602938','1.00','250','retail','0','2023-01-08 03:18:02','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-07 21:19:22','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731370743310273',6858,'121673136499','6008165007968','1.00','350','retail','0','2023-01-08 03:18:02','','','','308.5','Cash',0.00,'350','','','12','','1','2023-01-07 21:19:22','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731370820332020',6859,'121673136499','3086120600020','1.00','120','retail','0','2023-01-08 03:18:02','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-07 21:19:22','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731374244033427',6860,'121673137166','6161101605458','1.00','270','retail','0','2023-01-08 03:23:45','','','','182','Cash',0.00,'270','','','12','','1','2023-01-07 21:23:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731377144033427',6861,'121673137429','087000006928','1.00','1800','retail','0','2023-01-08 03:28:52','','','','1320','Cash',0.00,'1800','','','12','','1','2023-01-07 21:32:43','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731377236323603',6862,'121673137429','6164001199010','1.00','100','retail','0','2023-01-08 03:28:52','','','','38','Cash',0.00,'100','','','12','','1','2023-01-07 21:32:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731377312033277',6863,'121673137429','5060639129003','1.00','250','retail','0','2023-01-08 03:28:52','','','','153','Cash',0.00,'250','','','12','','1','2023-01-07 21:32:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731379763319273',6864,'121673137965','5018907194802','5.00','750','retail','0','2023-01-08 03:32:57','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-07 21:34:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','51.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731403340303223',6865,'121673138055','5000267014005','1.00','2500','retail','0','2023-01-08 04:12:24','','','','1465','Cash',0.00,'2500','','','12','','1','2023-01-07 22:15:21','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731403443413273',6866,'121673138055','5449000028921','1.00','150','retail','0','2023-01-08 04:12:24','','','','103','Cash',0.00,'150','','','12','','1','2023-01-07 22:15:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731697643617273',6867,'121673169741','6161101603379','3.00','750','retail','0','2023-01-08 12:22:44','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-08 06:22:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','28.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731697920303223',6868,'121673169772','6161101602372','2.00','500','retail','0','2023-01-08 12:23:12','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-08 06:23:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731698232033289',6869,'121673169800','1000','1.00','270','retail','0','2023-01-08 12:23:44','','','','192','Cash',0.00,'270','','','12','','1','2023-01-08 06:23:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731747583310320',6870,'121673169833','1000','1.00','270','retail','0','2023-01-08 13:45:59','','','','192','Cash',0.00,'270','','','12','','1','2023-01-08 07:46:03','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731768900033027',6871,'121673174765','6161101601979','5.00','1250','retail','0','2023-01-08 14:21:44','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-08 08:21:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','40.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731769033719273',6872,'121673174765','5449000028921','1.00','150','retail','0','2023-01-08 14:21:44','','','','103','Cash',0.00,'150','','','12','','1','2023-01-08 08:21:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731859603310320',6873,'121673176910','5000267114293','1.00','28500','retail','0','2023-01-08 16:52:41','','','','18500','Cash',0.00,'28500','','','12','','1','2023-01-08 10:52:47','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731947680332020',6874,'121673194621','6164001199331','1.00','70','retail','0','2023-01-08 19:19:29','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-08 13:19:32','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731997310303223',6875,'121673194774','6161101602600','2.00','500','retail','0','2023-01-08 20:42:27','','','','154.95','Cash',0.00,'250','','','12','','1','2023-01-08 14:42:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','50.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216731997469633913',6876,'121673194774','6161101602372','1.00','250','retail','0','2023-01-08 20:42:27','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-08 14:42:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732009523019273',6877,'121673199752','6161100421554','1.00','450','retail','0','2023-01-08 21:02:33','','','','244','Cash',0.00,'450','','','12','','1','2023-01-08 15:03:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732013613320320',6878,'121673200998','6161101606011','1.00','250','retail','0','2023-01-08 21:09:22','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-08 15:09:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732053477033727',6879,'121673201374','40262144','1.00','200','retail','0','2023-01-08 22:15:47','','','','125','Cash',0.00,'200','','','12','','1','2023-01-08 16:15:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732057813017273',6880,'121673205354','5000267114293','1.00','28500','retail','0','2023-01-08 22:23:01','','','','18500','Cash',0.00,'28500','','','12','','1','2023-01-08 16:23:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732076431332243',6881,'121673205787','6001496011772','1.00','800','retail','0','2023-01-08 22:54:04','','','','544','Cash',0.00,'800','','','12','','1','2023-01-08 16:56:34','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732078170303223',6882,'121673207796','90162602','1.00','230','retail','0','2023-01-08 22:56:58','','','','147','Cash',0.00,'230','','','12','','1','2023-01-08 16:57:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732120931633113',6883,'121673207823','1000','1.00','270','retail','0','2023-01-09 00:08:14','','','','192','Cash',0.00,'270','','','12','','1','2023-01-08 18:09:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732146302033264',6884,'121673212146','6161101606011','1.00','250','retail','0','2023-01-09 00:50:31','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-08 18:50:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732181288033827',6885,'121673214636','90162602','1.00','230','retail','0','2023-01-09 01:48:51','','','','147','Cash',0.00,'230','','','12','','1','2023-01-08 19:48:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732195143115273',6886,'121673218138','1000','1.00','270','retail','0','2023-01-09 02:12:13','','','','192','Cash',0.00,'270','','','12','','1','2023-01-08 20:13:16','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732195322033259',6887,'121673218138','6164001199331','2.00','140','retail','0','2023-01-09 02:12:13','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-08 20:13:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732276183216273',6888,'121673227608','6001108028044','1.00','300','retail','0','2023-01-09 04:27:09','','','','201','Cash',0.00,'300','','','12','','1','2023-01-08 22:27:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732276292633213',6889,'121673227608','8712000900663','1.00','300','retail','0','2023-01-09 04:27:09','','','','214','Cash',0.00,'300','','','12','','1','2023-01-08 22:27:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732276603216273',6890,'121673227638','6161101603379','2.00','500','retail','0','2023-01-09 04:28:02','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-08 22:28:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','25.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732276810303223',6891,'121673227638','6161101606011','1.00','250','retail','0','2023-01-09 04:28:02','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-08 22:28:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732309180332020',6892,'121673230906','6161101602372','2.00','500','retail','0','2023-01-09 05:21:58','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-08 23:22:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732620866033627',6893,'121673262052','6161100421363','1.00','700','retail','0','2023-01-09 14:01:35','','','','435','Cash',0.00,'700','','','12','','1','2023-01-09 08:01:49','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732620942033202',6894,'121673262052','5018907194802','1.00','150','retail','0','2023-01-09 14:01:35','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-09 08:01:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732724132033242',6895,'121673272397','1000','1.00','270','retail','0','2023-01-09 16:53:34','','','','192','Cash',0.00,'270','','','12','','1','2023-01-09 10:53:37','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732825456343603',6896,'121673277925','6161100421882','4.00','1400','retail','0','2023-01-09 19:42:25','','','','220','Cash',0.00,'350','','','12','','1','2023-01-09 13:42:50','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732826188033827',6897,'121673282575','1000','1.00','270','retail','0','2023-01-09 19:43:58','','','','192','Cash',0.00,'270','','','12','','1','2023-01-09 13:44:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732826370332020',6898,'121673282575','5018907194802','1.00','150','retail','0','2023-01-09 19:43:58','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-09 13:44:04','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732826703816273',6899,'121673282646','6164001199010','1.00','100','retail','0','2023-01-09 19:44:41','','','','38','Cash',0.00,'100','','','12','','1','2023-01-09 13:44:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732826802033262',6900,'121673282646','5018907197803','1.00','100','retail','0','2023-01-09 19:44:41','','','','44.58','Cash',0.00,'100','','','12','','1','2023-01-09 13:44:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732828910303223',6901,'121673282692','6161100420786','1.00','400','retail','0','2023-01-09 19:48:12','','','','290','Cash',0.00,'400','','','12','','1','2023-01-09 13:48:17','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732829100033027',6902,'121673282899','5060608740253','1.00','80','retail','0','2023-01-09 19:48:30','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-09 13:48:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732839940303223',6903,'121673283607','6161101603379','2.00','500','retail','0','2023-01-09 20:06:35','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-09 14:06:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','23.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732876713816273',6904,'121673287666','6008165007814','1.00','550','retail','0','2023-01-09 21:07:51','','','','346','Cash',0.00,'550','','','12','','1','2023-01-09 15:09:30','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732878913818273',6905,'121673287772','6008165007968','1.00','500','retail','0','2023-01-09 21:11:31','','','','337','Cash',0.00,'500','','','12','','1','2023-01-09 15:11:34','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732888466343603',6906,'121673288837','6161101601979','1.00','250','retail','0','2023-01-09 21:27:35','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-09 15:27:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732888550303223',6907,'121673288837','6161101606011','1.00','250','retail','0','2023-01-09 21:27:35','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-09 15:27:38','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732937430303223',6908,'121673288859','90162602','1.00','230','retail','0','2023-01-09 22:49:04','','','','147','Cash',0.00,'230','','','12','','1','2023-01-09 16:49:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732939073919273',6909,'121673293751','7794450091604','1.00','2000','retail','0','2023-01-09 22:51:48','','','','1231','Cash',0.00,'2000','','','12','','1','2023-01-09 16:51:51','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732939769633913',6910,'121673293914','6203005570170','1.00','350','retail','0','2023-01-09 22:52:57','','','','288','Cash',0.00,'350','','','12','','1','2023-01-09 16:52:59','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732945870303223',6911,'121673294069','6161101606011','1.00','250','retail','0','2023-01-09 23:03:08','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-09 17:03:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732953052033235',6912,'121673295294','6161101602938','2.00','500','retail','0','2023-01-09 23:15:05','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-09 17:15:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732975290303223',6913,'121673295310','6161101605458','1.00','270','retail','0','2023-01-09 23:52:20','','','','182','Cash',0.00,'270','','','12','','1','2023-01-09 17:52:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732975400033027',6914,'121673295310','6164001199331','1.00','70','retail','0','2023-01-09 23:52:20','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-09 17:52:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732981088033827',6915,'121673297546','6161101602433','6.00','1200','retail','0','2023-01-10 00:02:04','','','','150.45','Cash',0.00,'200','','','12','','1','2023-01-09 18:03:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','16.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732981230332020',6916,'121673297546','6161101604406','2.00','500','retail','0','2023-01-10 00:02:04','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-09 18:03:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732989773320320',6917,'121673298194','6164001199331','2.00','140','retail','0','2023-01-10 00:16:30','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-09 18:17:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216732989899633913',6918,'121673298194','6161101603324','2.00','500','retail','0','2023-01-10 00:16:30','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-09 18:17:09','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733246610303223',6919,'121673323543','6161101561280','1.00','350','retail','0','2023-01-10 07:24:23','','','','190','Cash',0.00,'350','','','12','','1','2023-01-10 01:24:28','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733343643633313',6920,'121673334348','6161101602372','2.00','500','retail','0','2023-01-10 10:06:05','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-10 04:06:09','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','12.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733402793412273',6921,'121673340254','6161101603379','3.00','750','retail','0','2023-01-10 11:44:53','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-10 05:44:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','21.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733402926393603',6922,'121673340254','6161101602372','3.00','750','retail','0','2023-01-10 11:44:53','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-10 05:44:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733528820303223',6923,'121673352797','8906120780179','1.00','1600','retail','0','2023-01-10 15:39:07','','','','970','Cash',0.00,'1600','','','12','','1','2023-01-10 09:39:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733530036303603',6924,'121673352797','6008835000930','1.00','180','retail','0','2023-01-10 15:39:07','','','','130','Cash',0.00,'180','','','12','','1','2023-01-10 09:39:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733543611033127',6925,'121673354352','6161101605458','1.00','270','retail','0','2023-01-10 15:39:21','','','','182','Cash',0.00,'270','','','12','','1','2023-01-10 09:39:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733684994233912',6926,'121673361827','1210000100511','1.00','2300','retail','0','2023-01-10 19:36:35','','','','1650','Cash',0.00,'2300','','','12','','1','2023-01-10 13:43:59','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733685940332020',6927,'121673361827','6008835000930','2.00','360','retail','0','2023-01-10 19:36:35','','','','130','Cash',0.00,'180','','','12','','1','2023-01-10 13:43:59','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733690476343603',6928,'121673369041','6161101600941','1.00','750','retail','0','2023-01-10 19:44:39','','','','544','Cash',0.00,'750','','','12','','1','2023-01-10 13:45:01','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733690788033827',6929,'121673369041','6164001199010','1.00','100','retail','0','2023-01-10 19:44:39','','','','38','Cash',0.00,'100','','','12','','1','2023-01-10 13:45:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733749188033827',6930,'121673369103','6161100421882','1.00','350','retail','0','2023-01-10 21:22:11','','','','220','Cash',0.00,'350','','','12','','1','2023-01-10 15:22:14','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733749300303223',6931,'121673369103','6164001199034','2.00','100','retail','0','2023-01-10 21:22:11','','','','19','Cash',0.00,'50','','','12','','1','2023-01-10 15:22:14','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','46.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733773043330320',6932,'121673374936','6161101601979','4.00','1000','retail','0','2023-01-10 22:01:44','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-10 16:01:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','34.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733779710332020',6933,'121673377309','50112265','2.00','160','retail','0','2023-01-10 22:12:52','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-10 16:12:55','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733784373714273',6934,'121673377976','90399480','1.00','100','retail','0','2023-01-10 22:20:58','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-10 16:21:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733784583714273',6935,'121673377976','6161101603379','2.00','500','retail','0','2023-01-10 22:20:58','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-10 16:21:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','18.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733796336333603',6936,'121673378463','8712000900045','2.00','600','retail','0','2023-01-10 22:40:46','','','','182','Cash',0.00,'300','','','12','','1','2023-01-10 16:41:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733796463112332',6937,'121673378463','6161101602938','1.00','250','retail','0','2023-01-10 22:40:46','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-10 16:41:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733798130303223',6938,'121673379692','6001495062478','1.00','1600','retail','0','2023-01-10 22:43:33','','','','1098','Cash',0.00,'1600','','','12','','1','2023-01-10 16:43:53','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733798843718273',6939,'121673379835','6161101606011','1.00','250','retail','0','2023-01-10 22:44:45','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-10 16:44:47','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733803388633813',6940,'121673379889','6161101602372','1.00','250','retail','0','2023-01-10 22:52:18','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-10 16:52:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733821280332020',6941,'121673382115','50112265','2.00','160','retail','0','2023-01-10 23:22:31','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-10 17:22:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733821508633813',6942,'121673382115','6161101603379','1.00','250','retail','0','2023-01-10 23:22:31','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-10 17:22:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733824023330320',6943,'121673382376','50112265','2.00','160','retail','0','2023-01-10 23:27:53','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-10 17:38:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733824340303223',6944,'121673382376','6161101603379','2.00','500','retail','0','2023-01-10 23:27:53','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-10 17:38:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','17.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733824730332020',6945,'121673382376','50112753','1.00','80','retail','0','2023-01-10 23:27:53','','','','56','Cash',0.00,'80','','','12','','1','2023-01-10 17:38:21','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733834570303223',6946,'121673383106','6161101602167','1.00','600','retail','0','2023-01-10 23:44:18','','','','418','Cash',0.00,'600','','','12','','1','2023-01-10 17:44:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733866933330320',6947,'121673383463','6161101603379','1.00','250','retail','0','2023-01-11 00:38:16','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-10 18:38:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733886343816273',6948,'121673386703','6001496011772','1.00','800','retail','0','2023-01-11 01:11:41','','','','544','Cash',0.00,'800','','','12','','1','2023-01-10 19:11:45','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733886852033268',6949,'121673386703','5449000131836','1.00','80','retail','0','2023-01-11 01:11:41','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-10 19:11:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733887000332020',6950,'121673386703','54491069','1.00','80','retail','0','2023-01-11 01:11:41','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-10 19:11:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733887477033727',6951,'121673388739','6008165007814','1.00','550','retail','0','2023-01-11 01:12:27','','','','346','Cash',0.00,'550','','','12','','1','2023-01-10 19:12:30','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733895772033259',6952,'121673388753','5000292001001','1.00','1600','retail','0','2023-01-11 01:28:41','','','','1141','Cash',0.00,'1600','','','12','','1','2023-01-10 19:32:51','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733896722033269',6953,'121673388753','6164001199010','1.00','100','retail','0','2023-01-11 01:28:41','','','','38','Cash',0.00,'100','','','12','','1','2023-01-10 19:32:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733896868633813',6954,'121673388753','5060639129003','2.00','500','retail','0','2023-01-11 01:28:41','','','','153','Cash',0.00,'250','','','12','','1','2023-01-10 19:32:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733897213330320',6955,'121673388753','5449000131836','1.00','80','retail','0','2023-01-11 01:28:41','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-10 19:32:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216733932379633913',6956,'121673389973','6161101601979','1.00','250','retail','0','2023-01-11 02:27:17','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-10 20:27:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734021250633013',6957,'121673402113','1000','1.00','270','retail','0','2023-01-11 04:55:37','','','','192','Cash',0.00,'270','','','12','','1','2023-01-10 22:55:41','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734021363340320',6958,'121673402113','6161101601979','1.00','250','retail','0','2023-01-11 04:55:37','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-10 22:55:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734519170332020',6959,'121673451797','6001496301705','1.00','1350','retail','0','2023-01-11 18:45:18','','','','729','Cash',0.00,'1350','','','12','','1','2023-01-11 12:57:00','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734526350332020',6960,'121673452623','6001496301804','1.00','1200','retail','0','2023-01-11 18:57:29','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-11 14:04:30','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734526488033827',6961,'121673452623','6001496301804','1.00','1200','retail','0','2023-01-11 18:57:29','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-11 14:04:30','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734566899033927',6962,'121673456672','54491069','1.00','80','retail','0','2023-01-11 20:05:18','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-11 14:15:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734567173517273',6963,'121673456672','54491069','1.00','80','retail','0','2023-01-11 20:05:18','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-11 14:15:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734619010332020',6964,'121673457349','6001452301862','1.00','1600','retail','0','2023-01-11 21:31:42','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-11 15:32:37','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734620344033427',6965,'121673461960','1000','1.00','270','retail','0','2023-01-11 21:34:37','','','','192','Cash',0.00,'270','','','12','','1','2023-01-11 15:34:40','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734620762202003',6966,'121673461960','5449000139030','1.00','70','retail','0','2023-01-11 21:34:37','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-11 15:34:40','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734621793340320',6967,'121673462081','1000','1.00','270','retail','0','2023-01-11 21:36:31','','','','192','Cash',0.00,'270','','','12','','1','2023-01-11 15:36:34','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734621900332020',6968,'121673462081','6164001199331','1.00','70','retail','0','2023-01-11 21:36:31','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-11 15:36:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734632703340320',6969,'121673463250','6161101604703','3.00','750','retail','0','2023-01-11 21:55:19','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-11 15:55:28','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734633193113063',6970,'121673463250','5449000131836','3.00','240','retail','0','2023-01-11 21:55:19','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-11 15:55:28','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734690846383603',6971,'121673466603','6001108049582','1.00','1300','retail','0','2023-01-11 23:31:46','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-11 17:33:57','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734690933033327',6972,'121673466603','50112265','1.00','80','retail','0','2023-01-11 23:31:46','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-11 17:33:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734691066633613',6973,'121673466603','5018907194802','1.00','150','retail','0','2023-01-11 23:31:46','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-11 17:33:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734716510303223',6974,'121673469240','8712000900045','1.00','300','retail','0','2023-01-12 00:14:12','','','','182','Cash',0.00,'300','','','12','','1','2023-01-11 18:14:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734721266033627',6975,'121673471657','5000292263171','2.00','1200','retail','0','2023-01-12 00:23:22','','','','430','Cash',0.00,'600','','','12','','1','2023-01-11 18:23:30','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','21.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734721623340320',6976,'121673471657','5449000139030','1.00','70','retail','0','2023-01-12 00:23:22','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-11 18:23:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734722016303603',6977,'121673471657','6164002099210','1.00','100','retail','0','2023-01-12 00:23:22','','','','42','Cash',0.00,'100','','','12','','1','2023-01-11 18:23:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734724912033242',6978,'121673472212','6161101560832','1.00','350','retail','0','2023-01-12 00:28:12','','','','245','Cash',0.00,'350','','','12','','1','2023-01-11 18:28:15','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734728213340320',6979,'121673472812','6161101604406','1.00','250','retail','0','2023-01-12 00:33:42','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-11 18:33:45','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734758333340320',6980,'121673472826','6161101602921','4.00','1000','retail','0','2023-01-12 01:24:45','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-11 19:24:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','61.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734758461302130',6981,'121673472826','6164002099210','1.00','100','retail','0','2023-01-12 01:24:45','','','','42','Cash',0.00,'100','','','12','','1','2023-01-11 19:24:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734758744033427',6982,'121673472826','5000292263171','1.00','600','retail','0','2023-01-12 01:24:45','','','','430','Cash',0.00,'600','','','12','','1','2023-01-11 19:24:58','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734758853718273',6983,'121673472826','024000150152','1.00','300','retail','0','2023-01-12 01:24:45','','','','205','Cash',0.00,'300','','','12','','1','2023-01-11 19:24:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734775667633713',6984,'121673477553','6161101605465','1.00','800','retail','0','2023-01-12 01:52:47','','','','501','Cash',0.00,'800','','','12','','1','2023-01-11 19:52:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216734778782033287',6985,'121673477578','5000291020706','1.00','2800','retail','0','2023-01-12 01:58:00','','','','2070','Cash',0.00,'2800','','','12','','1','2023-01-11 19:58:05','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735028780633013',6986,'121673502837','1000','1.00','270','retail','0','2023-01-12 08:54:39','','','','192','Cash',0.00,'270','','','12','','1','2023-01-12 02:54:43','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735369472033296',6987,'121673536849','3155930006015','2.00','500','retail','0','2023-01-12 18:22:42','','','','188','Cash',0.00,'250','','','12','','1','2023-01-12 12:22:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735369613352332',6988,'121673536849','6161101602433','4.00','800','retail','0','2023-01-12 18:22:42','','','','150.45','Cash',0.00,'200','','','12','','1','2023-01-12 12:22:48','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735376383633313',6989,'121673536972','3800032010568','1.00','1700','retail','0','2023-01-12 18:35:45','','','','1018','Cash',0.00,'1700','','','12','','1','2023-01-12 13:17:17','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735376577033727',6990,'121673536972','3800032010568','1.00','1700','retail','0','2023-01-12 18:35:45','','','','1018','Cash',0.00,'1700','','','12','','1','2023-01-12 13:17:17','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735376743633313',6991,'121673536972','5060639129003','1.00','250','retail','0','2023-01-12 18:35:45','','','','153','Cash',0.00,'250','','','12','','1','2023-01-12 13:17:17','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735377444033427',6992,'121673536972','6008165018933','1.00','400','retail','0','2023-01-12 18:35:45','','','','270','Cash',0.00,'400','','','12','','1','2023-01-12 13:17:17','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735407162033270',6993,'121673540241','5010103930840','2.00','1000','retail','0','2023-01-12 19:25:17','','','','335','Cash',0.00,'500','','','12','','1','2023-01-12 13:30:39','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','13.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735410710303223',6994,'121673541040','6161101605458','1.00','270','retail','0','2023-01-12 19:31:49','','','','182','Cash',0.00,'270','','','12','','1','2023-01-12 13:31:56','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735410893350320',6995,'121673541040','1000','1.00','270','retail','0','2023-01-12 19:31:49','','','','192','Cash',0.00,'270','','','12','','1','2023-01-12 13:31:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735410977033727',6996,'121673541040','6164001199010','1.00','100','retail','0','2023-01-12 19:31:49','','','','38','Cash',0.00,'100','','','12','','1','2023-01-12 13:31:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735411099033927',6997,'121673541040','6164001199331','1.00','70','retail','0','2023-01-12 19:31:49','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-12 13:31:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735482423412273',6998,'121673541118','6161100421882','2.00','700','retail','0','2023-01-12 21:31:08','','','','220','Cash',0.00,'350','','','12','','1','2023-01-12 15:33:13','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735482573012332',6999,'121673541118','6164001199034','1.00','50','retail','0','2023-01-12 21:31:08','','','','19','Cash',0.00,'50','','','12','','1','2023-01-12 15:33:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735482673350320',7000,'121673541118','5449000139030','1.00','70','retail','0','2023-01-12 21:31:08','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-12 15:33:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735511499033927',7001,'121673548396','8712000900045','3.00','900','retail','0','2023-01-12 22:19:51','','','','182','Cash',0.00,'300','','','12','','1','2023-01-12 16:24:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735511646363603',7002,'121673548396','6161101603379','1.00','250','retail','0','2023-01-12 22:19:51','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-12 16:24:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735511743112332',7003,'121673548396','5060639129003','1.00','250','retail','0','2023-01-12 22:19:51','','','','153','Cash',0.00,'250','','','12','','1','2023-01-12 16:24:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735511910332020',7004,'121673548396','54493360','1.00','80','retail','0','2023-01-12 22:19:51','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-12 16:24:43','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735533330303223',7005,'121673551487','6161101605458','2.00','540','retail','0','2023-01-12 22:55:45','','','','182','Cash',0.00,'270','','','12','','1','2023-01-12 16:55:50','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735533450303223',7006,'121673551487','6164001199034','2.00','100','retail','0','2023-01-12 22:55:45','','','','19','Cash',0.00,'50','','','12','','1','2023-01-12 16:55:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','43.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735544573350320',7007,'121673553352','6001452301862','1.00','1600','retail','0','2023-01-12 23:14:18','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-12 17:15:36','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735563625633513',7008,'121673554539','6164003409025','1.00','250','retail','0','2023-01-12 23:46:03','','','','165','Cash',0.00,'250','','','12','','1','2023-01-12 17:46:07','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735571333033327',7009,'121673556369','6161101602921','3.00','750','retail','0','2023-01-12 23:58:54','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-12 17:58:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','57.00','54','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735573099033927',7010,'121673557286','50112265','2.00','160','retail','0','2023-01-13 00:01:50','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-12 18:01:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735576080332020',7011,'121673557315','5449000131836','2.00','160','retail','0','2023-01-13 00:07:55','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-12 18:09:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735576300033027',7012,'121673557315','50196166','1.00','750','retail','0','2023-01-13 00:07:55','','','','443','Cash',0.00,'750','','','12','','1','2023-01-12 18:09:53','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735576422033227',7013,'121673557315','40262144','1.00','200','retail','0','2023-01-13 00:07:55','','','','125','Cash',0.00,'200','','','12','','1','2023-01-12 18:09:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735576590303223',7014,'121673557315','024000150053','1.00','300','retail','0','2023-01-13 00:07:55','','','','205','Cash',0.00,'300','','','12','','1','2023-01-12 18:09:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735576746373603',7015,'121673557315','5018907194802','1.00','150','retail','0','2023-01-13 00:07:55','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-12 18:09:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735582766033627',7016,'121673557794','6001495203055','1.00','1400','retail','0','2023-01-13 00:17:57','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-12 18:18:13','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735615020332020',7017,'121673558295','5099873046968','1.00','4700','retail','0','2023-01-13 01:12:10','','','','3100','Cash',0.00,'4700','','','12','','1','2023-01-12 19:13:45','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735615146633613',7018,'121673558295','5018907194802','2.00','300','retail','0','2023-01-13 01:12:10','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-12 19:13:45','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735615221302130',7019,'121673558295','6008165007784','1.00','550','retail','0','2023-01-13 01:12:10','','','','346','Cash',0.00,'550','','','12','','1','2023-01-12 19:13:45','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735615296323603',7020,'121673558295','3086120600020','1.00','120','retail','0','2023-01-13 01:12:10','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-12 19:13:45','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735671663350320',7021,'121673561626','6161101602372','1.00','250','retail','0','2023-01-13 02:46:07','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-12 20:46:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735732870332020',7022,'121673567176','6008165007968','1.00','500','retail','0','2023-01-13 04:28:08','','','','337','Cash',0.00,'500','','','12','','1','2023-01-12 22:28:15','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216735733322033233',7023,'121673573297','6008165018933','1.00','400','retail','0','2023-01-13 04:28:52','','','','270','Cash',0.00,'400','','','12','','1','2023-01-12 22:28:55','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736162421633113',7024,'121673616225','5000267125046','1.00','5300','retail','0','2023-01-13 16:24:24','','','','3540','Cash',0.00,'5300','','','12','','1','2023-01-13 10:25:54','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736162540172243',7025,'121673616225','5449000028921','1.00','150','retail','0','2023-01-13 16:24:24','','','','103','Cash',0.00,'150','','','12','','1','2023-01-13 10:25:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736162633033327',7026,'121673616225','90162602','1.00','230','retail','0','2023-01-13 16:24:24','','','','147','Cash',0.00,'230','','','12','','1','2023-01-13 10:25:54','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736202422033227',7027,'121673620224','6161101601115','1.00','850','retail','0','2023-01-13 17:30:49','','','','635','Cash',0.00,'850','','','12','','1','2023-01-13 12:35:06','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736202482033220',7028,'121673620224','5449000188342','1.00','100','retail','0','2023-01-13 17:30:49','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-13 12:35:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736250483360320',7029,'121673624109','6161101604703','3.00','750','retail','0','2023-01-13 18:51:01','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-13 12:51:06','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736250602033205',7030,'121673624109','5449000131836','1.00','80','retail','0','2023-01-13 18:51:01','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-13 12:51:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736258199033927',7031,'121673625068','6001496301804','1.00','1200','retail','0','2023-01-13 19:03:49','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-13 13:06:14','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736258288033827',7032,'121673625068','6001496301804','1.00','1200','retail','0','2023-01-13 19:03:49','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-13 13:06:14','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736273733360320',7033,'121673625977','6001495201501','1.00','1400','retail','0','2023-01-13 19:29:34','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-13 13:30:01','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736277550332020',7034,'121673627405','6161101602433','2.00','400','retail','0','2023-01-13 19:35:56','','','','150.45','Cash',0.00,'200','','','12','','1','2023-01-13 13:35:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736290660303223',7035,'121673628923','90399480','1.00','100','retail','0','2023-01-13 19:57:47','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-13 13:57:51','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736291366333603',7036,'121673629072','6161101603522','1.00','800','retail','0','2023-01-13 19:58:56','','','','501','Cash',0.00,'800','','','12','','1','2023-01-13 14:02:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736293892033239',7037,'121673629364','5000291020706','1.00','2800','retail','0','2023-01-13 20:03:18','','','','2070','Cash',0.00,'2800','','','12','','1','2023-01-13 14:03:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736293970303223',7038,'121673629364','6161101606011','1.00','250','retail','0','2023-01-13 20:03:18','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-13 14:03:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736297323217273',7039,'121673629441','6161101602051','1.00','550','retail','0','2023-01-13 20:09:12','','','','392','Cash',0.00,'550','','','12','','1','2023-01-13 14:11:02','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736297516353603',7040,'121673629441','6164001199034','1.00','50','retail','0','2023-01-13 20:09:12','','','','19','Cash',0.00,'50','','','12','','1','2023-01-13 14:11:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736299293360320',7041,'121673629864','6161101601979','1.00','250','retail','0','2023-01-13 20:12:17','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-13 14:12:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736299360303223',7042,'121673629864','6161101602600','1.00','250','retail','0','2023-01-13 20:12:17','','','','154.95','Cash',0.00,'250','','','12','','1','2023-01-13 14:12:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736345682033254',7043,'121673629941','6161101603379','6.00','1500','retail','0','2023-01-13 21:29:29','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-13 15:29:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','13.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736349756373603',7044,'121673634964','6008165007982','2.00','1000','retail','0','2023-01-13 21:36:27','','','','337','Cash',0.00,'500','','','12','','1','2023-01-13 15:36:29','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736349866033627',7045,'121673634964','6161101602938','4.00','1000','retail','0','2023-01-13 21:36:27','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-13 15:36:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','8.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736377252033277',7046,'121673634991','8712000900663','6.00','1800','retail','0','2023-01-13 22:23:25','','','','214','Cash',0.00,'300','','','12','','1','2023-01-13 16:28:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','3.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736396366033627',7047,'121673638098','6161101604543','1.00','1800','retail','0','2023-01-13 22:53:57','','','','788','Cash',0.00,'1800','','','12','','1','2023-01-13 16:54:14','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736400700332020',7048,'121673640053','1000','1.00','270','retail','0','2023-01-13 23:01:10','','','','192','Cash',0.00,'270','','','12','','1','2023-01-13 17:01:13','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736404656363603',7049,'121673640078','6001496301804','1.00','1200','retail','0','2023-01-13 23:07:45','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-13 17:08:50','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736414550303223',7050,'121673640533','6164003409025','1.00','250','retail','0','2023-01-13 23:24:15','','','','165','Cash',0.00,'250','','','12','','1','2023-01-13 17:24:18','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736414700332020',7051,'121673641460','6161101603379','1.00','250','retail','0','2023-01-13 23:24:31','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-13 17:24:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736418524633413',7052,'121673641477','6161101604406','3.00','750','retail','0','2023-01-13 23:31:16','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-13 17:31:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','7.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736418750303223',7053,'121673641477','5449000188342','1.00','100','retail','0','2023-01-13 23:31:16','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-13 17:31:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736422633360320',7054,'121673642253','6161101561280','1.00','350','retail','0','2023-01-13 23:38:48','','','','190','Cash',0.00,'350','','','12','','1','2023-01-13 17:40:46','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736423070332020',7055,'121673642253','50112265','1.00','80','retail','0','2023-01-13 23:38:48','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-13 17:40:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736423200332020',7056,'121673642253','6008165018933','1.00','400','retail','0','2023-01-13 23:38:48','','','','270','Cash',0.00,'400','','','12','','1','2023-01-13 17:40:46','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736423284633413',7057,'121673642253','6008165018193','1.00','400','retail','0','2023-01-13 23:38:48','','','','270','Cash',0.00,'400','','','12','','1','2023-01-13 17:40:46','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736429676363603',7058,'121673642448','716165173670','2.00','300','retail','0','2023-01-13 23:49:28','','','','46','Cash',0.00,'150','','','12','','1','2023-01-13 17:49:31','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','34.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736442642033224',7059,'121673642973','6161101602921','2.00','500','retail','0','2023-01-14 00:11:28','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-13 18:11:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','54.00','52','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736442873412273',7060,'121673642973','6161101603379','2.00','500','retail','0','2023-01-14 00:11:28','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-13 18:11:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736464390043223',7061,'121673646400','5010103930666','1.00','850','retail','0','2023-01-14 00:47:19','','','','586','Cash',0.00,'850','','','12','','1','2023-01-13 18:47:47','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736465882033256',7062,'121673646469','1000','1.00','270','retail','0','2023-01-14 00:49:49','','','','192','Cash',0.00,'270','','','12','','1','2023-01-13 18:49:51','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736470090303223',7063,'121673646593','5010103930628','1.00','1750','retail','0','2023-01-14 00:58:36','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-13 19:00:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736470193410273',7064,'121673646593','5060639129003','1.00','250','retail','0','2023-01-14 00:58:36','','','','153','Cash',0.00,'250','','','12','','1','2023-01-13 19:00:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736470322033227',7065,'121673646593','6164001199331','2.00','140','retail','0','2023-01-14 00:58:36','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-13 19:00:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','9.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736470390303223',7066,'121673646593','3086120600020','1.00','120','retail','0','2023-01-14 00:58:36','','','','93.86','Cash',0.00,'120','','','12','','1','2023-01-13 19:00:25','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736471166033627',7067,'121673646593','6164001199010','2.00','200','retail','0','2023-01-14 00:58:36','','','','38','Cash',0.00,'100','','','12','','1','2023-01-13 19:00:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','42.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736473634633413',7068,'121673647226','6161101602938','3.00','750','retail','0','2023-01-14 01:03:22','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-13 19:04:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','4.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736473703413273',7069,'121673647226','5010103930628','1.00','1750','retail','0','2023-01-14 01:03:22','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-13 19:04:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736474010332020',7070,'121673647226','5449000139030','1.00','70','retail','0','2023-01-14 01:03:22','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-13 19:04:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736480077033727',7071,'121673647494','6161101604550','1.00','400','retail','0','2023-01-14 01:13:41','','','','284','Cash',0.00,'400','','','12','','1','2023-01-13 19:14:36','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736480203360320',7072,'121673647494','5449000131836','1.00','80','retail','0','2023-01-14 01:13:41','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-13 19:14:36','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736486074633413',7073,'121673648079','1000','1.00','270','retail','0','2023-01-14 01:24:57','','','','192','Cash',0.00,'270','','','12','','1','2023-01-13 19:25:49','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736486144033427',7074,'121673648079','6161101602372','1.00','250','retail','0','2023-01-14 01:24:57','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-13 19:25:49','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736486964633413',7075,'121673648079','5449000131836','1.00','80','retail','0','2023-01-14 01:24:57','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-13 19:25:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736495811033127',7076,'121673648751','6161101601115','1.00','850','retail','0','2023-01-14 01:40:31','','','','635','Cash',0.00,'850','','','12','','1','2023-01-13 19:40:35','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736495900303223',7077,'121673648751','6164001199331','1.00','70','retail','0','2023-01-14 01:40:31','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-13 19:40:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736496300033027',7078,'121673648751','5449000131836','1.00','80','retail','0','2023-01-14 01:40:31','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-13 19:40:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736500545633513',7079,'121673649638','6161100421561','1.00','1300','retail','0','2023-01-14 01:47:35','','','','645','Cash',0.00,'1300','','','12','','1','2023-01-13 19:47:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736502326333603',7080,'121673650067','6164003409025','1.00','250','retail','0','2023-01-14 01:50:32','','','','165','Cash',0.00,'250','','','12','','1','2023-01-13 19:50:35','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736503590332020',7081,'121673650237','6161101602938','1.00','250','retail','0','2023-01-14 01:52:40','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-13 19:52:42','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736508082033280',7082,'121673650398','8712000900663','2.00','600','retail','0','2023-01-14 02:00:09','','','','214','Cash',0.00,'300','','','12','','1','2023-01-13 20:00:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','3.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736539040303223',7083,'121673650815','6161100421554','1.00','450','retail','0','2023-01-14 02:51:54','','','','244','Cash',0.00,'450','','','12','','1','2023-01-13 20:52:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736539133519273',7084,'121673650815','50112265','1.00','80','retail','0','2023-01-14 02:51:54','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-13 20:52:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736552242033225',7085,'121673653979','6161101602167','1.00','600','retail','0','2023-01-14 03:15:05','','','','418','Cash',0.00,'600','','','12','','1','2023-01-13 21:15:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736553040303223',7086,'121673653979','90162602','1.00','230','retail','0','2023-01-14 03:15:05','','','','147','Cash',0.00,'230','','','12','','1','2023-01-13 21:15:34','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736569425633513',7087,'121673655335','1000','1.00','270','retail','0','2023-01-14 03:42:23','','','','192','Cash',0.00,'270','','','12','','1','2023-01-13 21:42:30','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736586726373603',7088,'121673656952','6161100421561','1.00','1300','retail','0','2023-01-14 04:11:25','','','','645','Cash',0.00,'1300','','','12','','1','2023-01-13 22:11:29','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736586840303223',7089,'121673656952','5449000028976','1.00','150','retail','0','2023-01-14 04:11:25','','','','103','Cash',0.00,'150','','','12','','1','2023-01-13 22:11:29','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736683340332020',7090,'121673668284','6161101602600','6.00','1500','retail','0','2023-01-14 06:54:02','','','','154.95','Cash',0.00,'250','','','12','','1','2023-01-14 00:55:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','47.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736684026303603',7091,'121673668284','6161101602938','6.00','1500','retail','0','2023-01-14 06:54:02','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 00:55:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736684411033127',7092,'121673668284','6008165007982','2.00','1000','retail','0','2023-01-14 06:54:02','','','','337','Cash',0.00,'500','','','12','','1','2023-01-14 00:55:12','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736924400332020',7093,'121673692414','5010752000321','1.00','2200','retail','0','2023-01-14 13:35:58','','','','1474','Cash',0.00,'2200','','','12','','1','2023-01-14 07:36:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736925409633913',7094,'121673692414','6161101603324','6.00','1500','retail','0','2023-01-14 13:35:58','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 07:36:00','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','7.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736925500033027',7095,'121673692414','5018907194802','2.00','300','retail','0','2023-01-14 13:35:58','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-14 07:36:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','40.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736925576353603',7096,'121673692414','5449000131836','1.00','80','retail','0','2023-01-14 13:35:58','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-14 07:36:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216736930289633913',7097,'121673692562','6008835000947','1.00','380','retail','0','2023-01-14 13:43:49','','','','230','Cash',0.00,'380','','','12','','1','2023-01-14 07:43:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737029203019273',7098,'121673702872','5010103930840','1.00','500','retail','0','2023-01-14 16:29:38','','','','335','Cash',0.00,'500','','','12','','1','2023-01-14 10:29:41','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737056520633013',7099,'121673705635','6161101603379','6.00','1500','retail','0','2023-01-14 17:14:12','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-14 11:14:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','10.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737212842033221',7100,'121673721232','1000','1.00','270','retail','0','2023-01-14 21:34:45','','','','192','Cash',0.00,'270','','','12','','1','2023-01-14 15:34:49','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737218782633213',7101,'121673721290','6161101602921','1.00','250','retail','0','2023-01-14 21:44:38','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 15:44:41','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737259382633213',7102,'121673721883','6161101603379','2.00','500','retail','0','2023-01-14 22:52:36','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-14 16:52:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737259552633213',7103,'121673721883','6161101602921','1.00','250','retail','0','2023-01-14 22:52:36','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 16:52:39','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737273500332020',7104,'121673725961','6001452301862','1.00','1600','retail','0','2023-01-14 23:16:28','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-14 17:17:08','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737273870303223',7105,'121673725961','716165173670','1.00','150','retail','0','2023-01-14 23:16:28','','','','46','Cash',0.00,'150','','','12','','1','2023-01-14 17:17:08','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737277343370320',7106,'121673727430','6002269000566','1.00','1200','retail','0','2023-01-14 23:22:15','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-14 17:23:48','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737278840332020',7107,'121673727830','6161101605458','1.00','270','retail','0','2023-01-14 23:24:45','','','','182','Cash',0.00,'270','','','12','','1','2023-01-14 17:44:02','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737305246323603',7108,'121673729044','1000','1.00','270','retail','0','2023-01-15 00:09:43','','','','192','Cash',0.00,'270','','','12','','1','2023-01-14 18:09:52','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737305422033227',7109,'121673729044','5060608740253','1.00','80','retail','0','2023-01-15 00:09:43','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-14 18:09:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737305823370320',7110,'121673729044','5449000139030','1.00','70','retail','0','2023-01-15 00:09:43','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-14 18:09:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737306793370320',7111,'121673730595','6161101603522','1.00','800','retail','0','2023-01-15 00:11:20','','','','501','Cash',0.00,'800','','','12','','1','2023-01-14 18:11:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737307080332020',7112,'121673730686','1000','1.00','270','retail','0','2023-01-15 00:11:49','','','','192','Cash',0.00,'270','','','12','','1','2023-01-14 18:12:04','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737312873370320',7113,'121673730725','5449000028976','1.00','150','retail','0','2023-01-15 00:21:39','','','','103','Cash',0.00,'150','','','12','','1','2023-01-14 18:21:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737312983312273',7114,'121673730725','6161101602167','1.00','600','retail','0','2023-01-15 00:21:39','','','','418','Cash',0.00,'600','','','12','','1','2023-01-14 18:21:42','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737315693633313',7115,'121673731546','6008165007784','1.00','550','retail','0','2023-01-15 00:26:20','','','','346','Cash',0.00,'550','','','12','','1','2023-01-14 18:26:34','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737315796373603',7116,'121673731546','6161101603324','1.00','250','retail','0','2023-01-15 00:26:20','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 18:26:34','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737318873318273',7117,'121673731662','6161101603379','4.00','1000','retail','0','2023-01-15 00:32:54','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-14 18:32:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737319733633313',7118,'121673731662','5010103930628','1.00','1750','retail','0','2023-01-15 00:32:54','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-14 18:32:57','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737320150303223',7119,'121673731979','6001495062478','1.00','1600','retail','0','2023-01-15 00:33:36','','','','1098','Cash',0.00,'1600','','','12','','1','2023-01-14 18:34:00','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737321796373603',7120,'121673732042','6161101602938','1.00','250','retail','0','2023-01-15 00:36:20','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 18:36:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737323672033232',7121,'121673732185','50196166','1.00','750','retail','0','2023-01-15 00:39:28','','','','443','Cash',0.00,'750','','','12','','1','2023-01-14 18:40:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737326670332020',7122,'121673732435','8906125990009','1.00','1000','retail','0','2023-01-15 00:44:28','','','','660','Cash',0.00,'1000','','','12','','1','2023-01-14 18:46:38','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737331156313603',7123,'121673732800','1000','1.00','270','retail','0','2023-01-15 00:51:55','','','','192','Cash',0.00,'270','','','12','','1','2023-01-14 18:52:01','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737332066033627',7124,'121673733123','6161101604550','1.00','400','retail','0','2023-01-15 00:53:40','','','','284','Cash',0.00,'400','','','12','','1','2023-01-14 18:53:49','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737332190332020',7125,'121673733123','6164001199331','1.00','70','retail','0','2023-01-15 00:53:40','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-14 18:53:49','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737335933633313',7126,'121673733231','90162602','1.00','230','retail','0','2023-01-15 01:02:02','','','','147','Cash',0.00,'230','','','12','','1','2023-01-14 19:02:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737336782033263',7127,'121673733231','5010103930628','1.00','1750','retail','0','2023-01-15 01:02:02','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-14 19:02:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737337143370320',7128,'121673733231','6164001199331','3.00','210','retail','0','2023-01-15 01:02:02','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-14 19:02:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737339406343603',7129,'121673733763','6161101602372','5.00','1250','retail','0','2023-01-15 01:06:43','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-14 19:07:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','8.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737339786373603',7130,'121673733763','6161101602938','1.00','250','retail','0','2023-01-15 01:06:43','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 19:07:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737340033633313',7131,'121673733763','5010103930628','1.00','1750','retail','0','2023-01-15 01:06:43','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-14 19:07:40','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737341116313603',7132,'121673734062','6161101604703','2.00','500','retail','0','2023-01-15 01:08:32','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 19:08:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737344523370320',7133,'121673734117','6161101602051','1.00','550','retail','0','2023-01-15 01:14:13','','','','392','Cash',0.00,'550','','','12','','1','2023-01-14 19:15:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737351042033215',7134,'121673734552','6161101603379','1.00','250','retail','0','2023-01-15 01:25:20','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-14 19:25:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737351083370320',7135,'121673734552','6161101603379','1.00','250','retail','0','2023-01-15 01:25:20','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-14 19:25:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737351163370320',7136,'121673734552','6161101602938','1.00','250','retail','0','2023-01-15 01:25:20','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 19:25:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737351193311273',7137,'121673734552','6161101602938','1.00','250','retail','0','2023-01-15 01:25:20','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 19:25:29','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737359542033295',7138,'121673735131','4820163121956','1.00','1500','retail','0','2023-01-15 01:39:15','','','','885','Cash',0.00,'1500','','','12','','1','2023-01-14 19:39:19','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737371977033727',7139,'121673735960','6161101604406','2.00','500','retail','0','2023-01-15 01:59:57','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-14 20:10:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737378660332020',7140,'121673737839','6203005570170','1.00','350','retail','0','2023-01-15 02:12:04','','','','288','Cash',0.00,'350','','','12','','1','2023-01-14 20:12:53','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737378736373603',7141,'121673737839','50112265','1.00','80','retail','0','2023-01-15 02:12:04','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-14 20:12:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737403910303223',7142,'121673737975','6161101602372','1.00','250','retail','0','2023-01-15 02:53:11','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-14 20:53:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737406076303603',7143,'121673740398','8712000900663','3.00','900','retail','0','2023-01-15 03:01:29','','','','214','Cash',0.00,'300','','','12','','1','2023-01-14 21:01:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737406303370320',7144,'121673740398','6161101601979','1.00','250','retail','0','2023-01-15 03:01:29','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-14 21:01:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737406353370320',7145,'121673740398','6161101601979','1.00','250','retail','0','2023-01-15 03:01:29','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-14 21:01:35','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737407603417273',7146,'121673740398','6161101604703','1.00','250','retail','0','2023-01-15 03:01:29','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 21:01:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737408180303223',7147,'121673740398','6161101604703','1.00','250','retail','0','2023-01-15 03:01:29','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 21:01:35','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737411073411273',7148,'121673740897','5000289933292','1.00','950','retail','0','2023-01-15 03:05:52','','','','710','Cash',0.00,'950','','','12','','1','2023-01-14 21:06:41','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737411156313603',7149,'121673740897','40822938','2.00','140','retail','0','2023-01-15 03:05:52','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-14 21:06:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737411236323603',7150,'121673740897','6164001199010','1.00','100','retail','0','2023-01-15 03:05:52','','','','38','Cash',0.00,'100','','','12','','1','2023-01-14 21:06:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737420580332020',7151,'121673741203','6161101602167','1.00','600','retail','0','2023-01-15 03:21:04','','','','418','Cash',0.00,'600','','','12','','1','2023-01-14 21:21:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737420636363603',7152,'121673741203','6161101601979','1.00','250','retail','0','2023-01-15 03:21:04','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-14 21:21:34','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737447223370320',7153,'121673742096','6161101602921','1.00','250','retail','0','2023-01-15 04:09:02','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 22:09:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737447290332020',7154,'121673742096','6161101602921','1.00','250','retail','0','2023-01-15 04:09:02','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-14 22:09:07','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737447374633413',7155,'121673742096','5060608740253','1.00','80','retail','0','2023-01-15 04:09:02','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-14 22:09:07','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737465866383603',7156,'121673746449','6203005570170','1.00','350','retail','0','2023-01-15 04:39:15','','','','288','Cash',0.00,'350','','','12','','1','2023-01-14 22:48:26','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737467543370320',7157,'121673746449','5060639129003','1.00','250','retail','0','2023-01-15 04:39:15','','','','153','Cash',0.00,'250','','','12','','1','2023-01-14 22:48:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737474146313603',7158,'121673747307','6164001199010','1.00','100','retail','0','2023-01-15 04:50:31','','','','38','Cash',0.00,'100','','','12','','1','2023-01-14 23:01:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737474303414273',7159,'121673747307','6164001199010','1.00','100','retail','0','2023-01-15 04:50:31','','','','38','Cash',0.00,'100','','','12','','1','2023-01-14 23:01:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737503603370320',7160,'121673748100','6161101603324','1.00','250','retail','0','2023-01-15 05:44:49','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-14 23:44:59','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737504563370320',7161,'121673748100','6161101605458','1.00','270','retail','0','2023-01-15 05:44:49','','','','182','Cash',0.00,'270','','','12','','1','2023-01-14 23:44:59','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737505033515273',7162,'121673748100','6008165265962','1.00','270','retail','0','2023-01-15 05:44:49','','','','170','Cash',0.00,'270','','','12','','1','2023-01-14 23:44:59','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737658292033285',7163,'121673765821','6161101602372','3.00','750','retail','0','2023-01-15 09:57:10','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-15 03:57:12','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','14.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737748920332020',7164,'121673774880','6161101560832','1.00','350','retail','0','2023-01-15 12:28:13','','','','245','Cash',0.00,'350','','','12','','1','2023-01-15 06:28:15','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737754780332020',7165,'121673774900','6001452258005','1.00','1600','retail','0','2023-01-15 12:37:59','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-15 06:40:30','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737859592033295',7166,'121673778654','5000267134338','1.00','7300','retail','0','2023-01-15 15:32:40','','','','5458','Cash',0.00,'7300','','','12','','1','2023-01-15 09:34:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737886910332020',7167,'121673786098','6161100421356','1.00','1400','retail','0','2023-01-15 16:18:19','','','','829','Cash',0.00,'1400','','','12','','1','2023-01-15 10:19:30','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737886993739233',7168,'121673786098','6164001199331','1.00','70','retail','0','2023-01-15 16:18:19','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-15 10:19:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737990160303223',7169,'121673799006','5449000139030','1.00','70','retail','0','2023-01-15 19:11:31','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-15 13:15:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737990773370320',7170,'121673799006','6008165007784','1.00','550','retail','0','2023-01-15 19:11:31','','','','346','Cash',0.00,'550','','','12','','1','2023-01-15 13:15:39','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737990910303223',7171,'121673799006','90490279','1.00','100','retail','0','2023-01-15 19:11:31','','','','68','Cash',0.00,'100','','','12','','1','2023-01-15 13:15:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737996613916273',7172,'121673799341','6161100421363','1.00','700','retail','0','2023-01-15 19:21:13','','','','435','Cash',0.00,'700','','','12','','1','2023-01-15 13:21:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216737996723916273',7173,'121673799341','6164001199331','1.00','70','retail','0','2023-01-15 19:21:13','','','','37.08','Cash',0.00,'70','','','12','','1','2023-01-15 13:21:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738050823010273',7174,'121673799701','5010314750008','1.00','2100','retail','0','2023-01-15 20:51:23','','','','1552','Cash',0.00,'2100','','','12','','1','2023-01-15 14:52:05','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738071977033727',7175,'121673805128','50112265','1.00','80','retail','0','2023-01-15 21:26:38','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-15 15:27:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738075390633013',7176,'121673807268','6161101605458','1.00','270','retail','0','2023-01-15 21:32:33','','','','182','Cash',0.00,'270','','','12','','1','2023-01-15 15:32:42','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738075533033327',7177,'121673807268','6164001199034','2.00','100','retail','0','2023-01-15 21:32:33','','','','19','Cash',0.00,'50','','','12','','1','2023-01-15 15:32:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','40.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738080660303223',7178,'121673807564','6161101604550','1.00','400','retail','0','2023-01-15 21:41:06','','','','284','Cash',0.00,'400','','','12','','1','2023-01-15 15:42:25','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738081655033527',7179,'121673808148','6161101601979','4.00','1000','retail','0','2023-01-15 21:42:46','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-15 15:42:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','24.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738087403380320',7180,'121673808728','6161101602938','2.00','500','retail','0','2023-01-15 21:52:21','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-15 15:52:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738101063380320',7181,'121673808745','6164003409025','1.00','250','retail','0','2023-01-15 22:15:07','','','','165','Cash',0.00,'250','','','12','','1','2023-01-15 16:15:18','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738109420303223',7182,'121673810121','6161101603324','1.00','250','retail','0','2023-01-15 22:29:17','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-15 16:30:04','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738109566033627',7183,'121673810121','6161101601979','1.00','250','retail','0','2023-01-15 22:29:17','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-15 16:30:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738116843380320',7184,'121673811673','6161101600941','1.00','750','retail','0','2023-01-15 22:41:24','','','','544','Cash',0.00,'750','','','12','','1','2023-01-15 16:41:28','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738118143380320',7185,'121673811690','6203005570170','1.00','350','retail','0','2023-01-15 22:43:39','','','','288','Cash',0.00,'350','','','12','','1','2023-01-15 16:46:07','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738118182033281',7186,'121673811690','6203005570170','1.00','350','retail','0','2023-01-15 22:43:39','','','','288','Cash',0.00,'350','','','12','','1','2023-01-15 16:46:07','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738152986393603',7187,'121673811969','5000289933292','1.00','950','retail','0','2023-01-15 23:41:38','','','','710','Cash',0.00,'950','','','12','','1','2023-01-15 18:00:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738164591633113',7188,'121673816449','6161101605458','1.00','270','retail','0','2023-01-16 00:01:13','','','','182','Cash',0.00,'270','','','12','','1','2023-01-15 18:01:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738164723114273',7189,'121673816449','5449000139030','1.00','70','retail','0','2023-01-16 00:01:13','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-15 18:01:19','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738180555033527',7190,'121673816480','6161101604864','1.00','270','retail','0','2023-01-16 00:34:30','','','','192','Cash',0.00,'270','','','12','','1','2023-01-15 18:34:34','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738184870303223',7191,'121673818476','3155930006015','1.00','250','retail','0','2023-01-16 00:35:50','','','','188','Cash',0.00,'250','','','12','','1','2023-01-15 18:35:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738185503380320',7192,'121673818476','3155930006015','3.00','750','retail','0','2023-01-16 00:35:50','','','','188','Cash',0.00,'250','','','12','','1','2023-01-15 18:35:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','10.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738200290332020',7193,'121673818554','6161101604864','1.00','270','retail','0','2023-01-16 01:00:30','','','','192','Cash',0.00,'270','','','12','','1','2023-01-15 19:14:50','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738280655033527',7194,'121673828055','6164003409025','1.00','250','retail','0','2023-01-16 07:19:53','','','','165','Cash',0.00,'250','','','12','','1','2023-01-16 01:19:59','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738428143380320',7195,'121673842802','6002269000566','1.00','1200','retail','0','2023-01-16 07:20:15','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-16 01:21:10','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738503956393603',7196,'121673848599','1000','1.00','270','retail','0','2023-01-16 09:26:41','','','','192','Cash',0.00,'270','','','12','','1','2023-01-16 03:26:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738657160303223',7197,'121673864944','6164001199010','1.00','100','retail','0','2023-01-16 13:41:58','','','','38','Cash',0.00,'100','','','12','','1','2023-01-16 07:42:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738663392033236',7198,'121673865724','6161101602372','1.00','250','retail','0','2023-01-16 13:52:20','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-16 07:52:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738702793380320',7199,'121673866345','6001108049599','1.00','1300','retail','0','2023-01-16 14:58:22','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-16 08:58:36','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738703010332020',7200,'121673866345','5000267014005','1.00','2500','retail','0','2023-01-16 14:58:22','','','','1465','Cash',0.00,'2500','','','12','','1','2023-01-16 08:58:36','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738718390332020',7201,'121673870318','1000','1.00','270','retail','0','2023-01-16 15:24:00','','','','192','Cash',0.00,'270','','','12','','1','2023-01-16 09:24:14','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738757983380320',7202,'121673875726','6001495201501','1.00','1400','retail','0','2023-01-16 16:30:33','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-16 10:32:24','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738758117633713',7203,'121673875726','6001496301804','1.00','1200','retail','0','2023-01-16 16:30:33','','','','729','Cash',0.00,'1200','','','12','','1','2023-01-16 10:32:24','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738873193813273',7204,'121673885035','6161101606011','1.00','250','retail','0','2023-01-16 19:42:02','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-16 13:42:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738973362033237',7205,'121673896740','6161101604550','1.00','400','retail','0','2023-01-16 22:28:57','','','','284','Cash',0.00,'400','','','12','','1','2023-01-16 16:29:00','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738979849633913',7206,'121673897343','5000291023462','1.00','3000','retail','0','2023-01-16 22:41:05','','','','2220','Cash',0.00,'3000','','','12','','1','2023-01-16 16:43:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738979913380320',7207,'121673897343','5000291023462','1.00','3000','retail','0','2023-01-16 22:41:05','','','','2220','Cash',0.00,'3000','','','12','','1','2023-01-16 16:43:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738979990332020',7208,'121673897343','5000289929417','1.00','3000','retail','0','2023-01-16 22:41:05','','','','1900','Cash',0.00,'3000','','','12','','1','2023-01-16 16:43:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738980110332020',7209,'121673897343','5018907194802','1.00','150','retail','0','2023-01-16 22:41:05','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-16 16:43:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738980653910273',7210,'121673897343','6164001199010','1.00','100','retail','0','2023-01-16 22:41:05','','','','38','Cash',0.00,'100','','','12','','1','2023-01-16 16:43:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216738982332033228',7211,'121673898216','6161101605458','1.00','270','retail','0','2023-01-16 22:43:53','','','','182','Cash',0.00,'270','','','12','','1','2023-01-16 18:10:19','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739034420303223',7212,'121673903421','6161100420786','1.00','400','retail','0','2023-01-17 00:10:54','','','','290','Cash',0.00,'400','','','12','','1','2023-01-16 18:11:00','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739034542021301',7213,'121673903421','5449000188342','1.00','100','retail','0','2023-01-17 00:10:54','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-16 18:11:00','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739042673012273',7214,'121673904260','6161101605458','1.00','270','retail','0','2023-01-17 00:24:28','','','','182','Cash',0.00,'270','','','12','','1','2023-01-16 18:24:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739084323390320',7215,'121673904273','6161101602372','2.00','500','retail','0','2023-01-17 01:33:53','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-16 19:33:57','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','10.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739090613390320',7216,'121673908440','6161101603324','1.00','250','retail','0','2023-01-17 01:47:03','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-16 19:50:10','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739091713390320',7217,'121673908440','6161101603324','5.00','1250','retail','0','2023-01-17 01:47:03','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-16 19:50:10','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','7.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739091856383603',7218,'121673908440','5060639129003','4.00','1000','retail','0','2023-01-17 01:47:03','','','','153','Cash',0.00,'250','','','12','','1','2023-01-16 19:50:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','26.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739091946393603',7219,'121673908440','5010103930628','1.00','1750','retail','0','2023-01-17 01:47:03','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-16 19:50:10','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739092100633013',7220,'121673908440','6164002099029','2.00','160','retail','0','2023-01-17 01:47:03','','','','36','Cash',0.00,'80','','','12','','1','2023-01-16 19:50:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','36.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739092233033327',7221,'121673908440','5449000000286','1.00','250','retail','0','2023-01-17 01:47:03','','','','158','Cash',0.00,'250','','','12','','1','2023-01-16 19:50:10','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739094630332020',7222,'121673909413','6008165007982','1.00','500','retail','0','2023-01-17 01:51:40','','','','337','Cash',0.00,'500','','','12','','1','2023-01-16 19:53:08','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739094990332020',7223,'121673909413','6161101602372','1.00','250','retail','0','2023-01-17 01:51:40','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-16 19:53:08','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739114012033241',7224,'121673909590','6161101602372','1.00','250','retail','0','2023-01-17 02:42:55','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-16 20:42:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739125922033227',7225,'121673912580','6164003409025','1.00','250','retail','0','2023-01-17 02:43:13','','','','165','Cash',0.00,'250','','','12','','1','2023-01-16 20:46:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739156363116273',7226,'121673912783','6161101602372','3.00','750','retail','0','2023-01-17 03:33:57','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-16 21:34:01','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739446688033827',7227,'121673942367','6161101604550','1.00','400','retail','0','2023-01-17 11:37:59','','','','284','Cash',0.00,'400','','','12','','1','2023-01-17 05:38:50','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739446784633413',7228,'121673942367','5449000131836','1.00','80','retail','0','2023-01-17 11:37:59','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-17 05:38:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739546360332020',7229,'121673954627','90490279','1.00','100','retail','0','2023-01-17 14:23:57','','','','68','Cash',0.00,'100','','','12','','1','2023-01-17 08:24:01','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739586770303223',7230,'121673954645','6164001199010','1.00','100','retail','0','2023-01-17 15:31:19','','','','38','Cash',0.00,'100','','','12','','1','2023-01-17 09:31:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739594163514273',7231,'121673958686','5010103930628','1.00','1750','retail','0','2023-01-17 15:44:04','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-17 09:47:06','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739594313390320',7232,'121673958686','6002269000566','1.00','1200','retail','0','2023-01-17 15:44:04','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-17 09:47:06','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739594430332020',7233,'121673958686','50112265','1.00','80','retail','0','2023-01-17 15:44:04','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-17 09:47:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739633032033233',7234,'121673959629','5010103930628','1.00','1750','retail','0','2023-01-17 16:48:24','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-17 10:50:34','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739646872033264',7235,'121673963438','6164001199010','1.00','100','retail','0','2023-01-17 17:11:28','','','','38','Cash',0.00,'100','','','12','','1','2023-01-17 11:11:31','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739649196313603',7236,'121673964898','6161101604703','3.00','750','retail','0','2023-01-17 17:15:28','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-17 11:17:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739649270332020',7237,'121673964898','6161101606547','1.00','550','retail','0','2023-01-17 17:15:28','','','','388','Cash',0.00,'550','','','12','','1','2023-01-17 11:17:01','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739662850303223',7238,'121673965026','6164001199010','2.00','200','retail','0','2023-01-17 17:38:06','','','','38','Cash',0.00,'100','','','12','','1','2023-01-17 11:38:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','38.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739663116313603',7239,'121673966291','40822938','1.00','70','retail','0','2023-01-17 17:38:31','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-17 11:38:35','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739679590303223',7240,'121673966319','6161101601979','3.00','750','retail','0','2023-01-17 18:06:00','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-17 12:06:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','19.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739711260332020',7241,'121673967966','1000','1.00','270','retail','0','2023-01-17 18:58:47','','','','192','Cash',0.00,'270','','','12','','1','2023-01-17 12:58:49','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739721712033212',7242,'121673971132','3800032010568','1.00','1700','retail','0','2023-01-17 19:19:58','','','','1018','Cash',0.00,'1700','','','12','','1','2023-01-17 13:28:42','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739721920303223',7243,'121673971132','6008165018193','1.00','400','retail','0','2023-01-17 19:19:58','','','','270','Cash',0.00,'400','','','12','','1','2023-01-17 13:28:42','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739723970003219',7244,'121673971132','40262144','1.00','200','retail','0','2023-01-17 19:19:58','','','','125','Cash',0.00,'200','','','12','','1','2023-01-17 13:28:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739732486343603',7245,'121673972925','5060639129003','2.00','500','retail','0','2023-01-17 19:34:09','','','','153','Cash',0.00,'250','','','12','','1','2023-01-17 13:34:12','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739753113713273',7246,'121673973255','6161101602938','4.00','1000','retail','0','2023-01-17 20:08:41','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-17 14:08:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739753202033235',7247,'121673973255','6161101602372','1.00','250','retail','0','2023-01-17 20:08:41','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-17 14:08:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739789963719273',7248,'121673975329','088544018941','1.00','2900','retail','0','2023-01-17 21:10:14','','','','2100','Cash',0.00,'2900','','','12','','1','2023-01-17 15:11:08','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739790142033209',7249,'121673975329','5018907197803','2.00','200','retail','0','2023-01-17 21:10:14','','','','44.58','Cash',0.00,'100','','','12','','1','2023-01-17 15:11:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','32.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739790863390320',7250,'121673979070','6001495062508','2.00','5600','retail','0','2023-01-17 21:12:35','','','','2011','Cash',0.00,'2800','','','12','','1','2023-01-17 15:12:50','1','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739791097633713',7251,'121673979070','6161101606011','8.00','2000','retail','0','2023-01-17 21:12:35','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-17 15:12:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','42.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739791552033219',7252,'121673979070','6161101603324','5.00','1250','retail','0','2023-01-17 21:12:35','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-17 15:12:50','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','10.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739792976393603',7253,'121673979174','080432400395','1.00','4350','retail','0','2023-01-17 21:15:06','','','','3200','Cash',0.00,'4350','','','12','','1','2023-01-17 15:15:09','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739793063390320',7254,'121673979174','5018907194802','1.00','150','retail','0','2023-01-17 21:15:06','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-17 15:15:09','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739795921502339',7255,'121673979311','6161101602372','1.00','250','retail','0','2023-01-17 21:19:52','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-17 15:20:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739820772033202',7256,'121673979645','6161101600941','1.00','750','retail','0','2023-01-17 22:33:10','','','','544','Cash',0.00,'750','','','12','','1','2023-01-17 16:33:33','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739839892033293',7257,'121673979645','5060608740253','1.00','80','retail','0','2023-01-17 22:33:10','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-17 16:33:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739844872033244',7258,'121673984015','6161101603379','6.00','1500','retail','0','2023-01-17 22:41:28','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-17 16:49:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739849650303223',7259,'121673984949','6001108049599','1.00','1300','retail','0','2023-01-17 22:53:05','','','','641','Cash',0.00,'1300','','','12','','1','2023-01-17 16:53:11','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739849786373603',7260,'121673984949','6161101601979','2.00','500','retail','0','2023-01-17 22:53:05','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-17 16:53:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','16.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739854788633813',7261,'121673985192','6161101602372','1.00','250','retail','0','2023-01-17 22:59:32','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-17 16:59:37','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739855711033127',7262,'121673985192','6161101604703','1.00','250','retail','0','2023-01-17 22:59:32','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-17 16:59:37','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739865412033256',7263,'121673985579','6161101605458','1.00','270','retail','0','2023-01-17 23:17:21','','','','182','Cash',0.00,'270','','','12','','1','2023-01-17 17:17:24','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739866263816273',7264,'121673985579','6161101602372','1.00','250','retail','0','2023-01-17 23:17:21','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-17 17:17:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739866403816273',7265,'121673985579','6164001199034','1.00','50','retail','0','2023-01-17 23:17:21','','','','19','Cash',0.00,'50','','','12','','1','2023-01-17 17:17:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739876503390320',7266,'121673986647','6164001199010','1.00','100','retail','0','2023-01-17 23:34:13','','','','38','Cash',0.00,'100','','','12','','1','2023-01-17 17:34:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739885822033258',7267,'121673987665','6164003409025','1.00','250','retail','0','2023-01-17 23:49:44','','','','165','Cash',0.00,'250','','','12','','1','2023-01-17 17:50:49','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739892612033229',7268,'121673988651','6161100421899','1.00','900','retail','0','2023-01-18 00:03:51','','','','603','Cash',0.00,'900','','','12','','1','2023-01-17 18:08:08','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739892732033229',7269,'121673988651','5449000139030','1.00','70','retail','0','2023-01-18 00:03:51','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-17 18:08:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739892843812273',7270,'121673988651','54491069','1.00','80','retail','0','2023-01-18 00:03:51','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-17 18:08:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739892970303223',7271,'121673988651','54493360','1.00','80','retail','0','2023-01-18 00:03:51','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-17 18:08:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739893598633813',7272,'121673988651','90490279','1.00','100','retail','0','2023-01-18 00:03:51','','','','68','Cash',0.00,'100','','','12','','1','2023-01-17 18:08:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739904693390320',7273,'121673989691','6161101604864','1.00','270','retail','0','2023-01-18 00:21:17','','','','192','Cash',0.00,'270','','','12','','1','2023-01-17 18:21:24','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739904766373603',7274,'121673989691','5449000139030','1.00','70','retail','0','2023-01-18 00:21:17','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-17 18:21:24','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739914696329064',7275,'121673990486','6161101605458','1.00','270','retail','0','2023-01-18 00:37:55','','','','182','Cash',0.00,'270','','','12','','1','2023-01-17 19:36:33','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739950880332020',7276,'121673995064','6161101604406','3.00','750','retail','0','2023-01-18 01:38:20','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-17 19:38:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3.00','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216739950992033205',7277,'121673995064','6161101601979','1.00','250','retail','0','2023-01-18 01:38:20','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-17 19:38:23','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740059382033295',7278,'121674005887','5000267014005','1.00','2500','retail','0','2023-01-18 04:41:04','','','','1465','Cash',0.00,'2500','','','12','','1','2023-01-17 22:41:42','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740060636363603',7279,'121674005887','50112265','2.00','160','retail','0','2023-01-18 04:41:04','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-17 22:41:42','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','27.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740289592634213',7280,'121674026752','6161101604703','4.00','1000','retail','0','2023-01-18 11:02:41','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-18 05:02:46','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740293470303223',7281,'121674028969','6161101601979','4.00','1000','retail','0','2023-01-18 11:09:08','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-18 05:09:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','13.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740505773033302',7282,'121674050561','6161101604703','1.00','250','retail','0','2023-01-18 17:02:57','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-18 11:03:01','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740575800332020',7283,'121674050583','6161101606011','3.00','750','retail','0','2023-01-18 18:59:51','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-18 12:59:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','34.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740575905634513',7284,'121674050583','6161101601979','1.00','250','retail','0','2023-01-18 18:59:51','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-18 12:59:55','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740598265634513',7285,'121674059813','6161101603379','4.00','1000','retail','0','2023-01-18 19:37:07','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-18 13:37:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','12.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740666477033727',7286,'121674059833','6001108028044','4.00','1200','retail','0','2023-01-18 21:31:34','','','','201','Cash',0.00,'300','','','12','','1','2023-01-18 15:35:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','18.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740666720332020',7287,'121674059833','6161101604406','3.00','750','retail','0','2023-01-18 21:31:34','','','','181.708','Cash',0.00,'250','','','12','','1','2023-01-18 15:35:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740666942033266',7288,'121674059833','8712000900663','3.00','900','retail','0','2023-01-18 21:31:34','','','','214','Cash',0.00,'300','','','12','','1','2023-01-18 15:35:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','6.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740676852033267',7289,'121674066923','6161101605458','2.00','540','retail','0','2023-01-18 21:48:06','','','','182','Cash',0.00,'270','','','12','','1','2023-01-18 17:01:16','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740723487634713',7290,'121674072082','6001495201501','1.00','1400','retail','0','2023-01-18 23:05:48','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-18 17:05:59','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740733746373603',7291,'121674072492','50112265','1.00','80','retail','0','2023-01-18 23:22:54','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-18 17:22:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740749473719273',7292,'121674073379','6161101602167','1.00','600','retail','0','2023-01-18 23:49:19','','','','418','Cash',0.00,'600','','','12','','1','2023-01-18 17:49:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740749582033294',7293,'121674073379','50112265','1.00','80','retail','0','2023-01-18 23:49:19','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-18 17:49:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740798640332020',7294,'121674074995','1000','1.00','270','retail','0','2023-01-19 01:11:05','','','','192','Cash',0.00,'270','','','12','','1','2023-01-18 19:52:37','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740823733300320',7295,'121674082360','6161101601115','1.00','850','retail','0','2023-01-19 01:53:14','','','','635','Cash',0.00,'850','','','12','','1','2023-01-18 19:54:41','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740823828634813',7296,'121674082360','5449000139030','1.00','70','retail','0','2023-01-19 01:53:14','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-18 19:54:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216740823933033327',7297,'121674082360','6164002099210','1.00','100','retail','0','2023-01-19 01:53:14','','','','42','Cash',0.00,'100','','','12','','1','2023-01-18 19:54:41','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741425370303223',7298,'121674142528','6161101602938','1.00','250','retail','0','2023-01-19 18:35:38','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-19 12:35:43','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741429490303223',7299,'121674142546','6001108028044','1.00','300','retail','0','2023-01-19 18:42:49','','','','201','Cash',0.00,'300','','','12','','1','2023-01-19 12:45:05','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741429580303223',7300,'121674142546','6203005570170','1.00','350','retail','0','2023-01-19 18:42:49','','','','288','Cash',0.00,'350','','','12','','1','2023-01-19 12:45:05','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741429683419273',7301,'121674142546','54493360','1.00','80','retail','0','2023-01-19 18:42:49','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-19 12:45:05','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741465583310320',7302,'121674143107','6161101606011','2.00','500','retail','0','2023-01-19 19:42:39','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-19 13:42:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','31.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741485703415273',7303,'121674146568','080432402825','1.00','7500','retail','0','2023-01-19 20:16:10','','','','5200','Cash',0.00,'7500','','','12','','1','2023-01-19 14:16:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741497913310320',7304,'121674148590','6161101601979','3.00','750','retail','0','2023-01-19 20:36:32','','','','172.75','Cash',0.00,'250','','','12','','1','2023-01-19 14:36:36','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','8.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741505656363603',7305,'121674149799','6001495201501','1.00','1400','retail','0','2023-01-19 20:49:26','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-19 14:52:25','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741526377033727',7306,'121674150747','080480280024','1.00','2600','retail','0','2023-01-19 21:24:16','','','','1846','Cash',0.00,'2600','','','12','','1','2023-01-19 15:25:56','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741526555634513',7307,'121674150747','90162602','5.00','1150','retail','0','2023-01-19 21:24:16','','','','147','Cash',0.00,'230','','','12','','1','2023-01-19 15:25:56','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','26.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741540350303223',7308,'121674152758','6009675642045','1.00','1500','retail','0','2023-01-19 21:47:23','','','','700','Cash',0.00,'1500','','','12','','1','2023-01-19 15:48:21','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741540423310320',7309,'121674152758','7798039597570','1.00','1600','retail','0','2023-01-19 21:47:23','','','','895','Cash',0.00,'1600','','','12','','1','2023-01-19 15:48:21','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741564833033327',7310,'121674154103','90162602','1.00','230','retail','0','2023-01-19 22:28:04','','','','147','Cash',0.00,'230','','','12','','1','2023-01-19 16:28:08','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741598488033827',7311,'121674156490','6161101602938','1.00','250','retail','0','2023-01-19 23:24:11','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-19 17:24:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741627360303223',7312,'121674159874','6161101603379','6.00','1500','retail','0','2023-01-20 00:14:57','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-19 18:15:30','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','8.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741630176313603',7313,'121674162932','8712000900045','1.00','300','retail','0','2023-01-20 00:19:05','','','','182','Cash',0.00,'300','','','12','','1','2023-01-19 18:19:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741630350303223',7314,'121674162932','100','2.00','500','retail','0','2023-01-20 00:19:05','','','','177','Cash',0.00,'250','','','12','','1','2023-01-19 18:19:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741630562033203',7315,'121674162932','6009627080246','1.00','180','retail','0','2023-01-20 00:19:05','','','','92','Cash',0.00,'180','','','12','','1','2023-01-19 18:19:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741643723310320',7316,'121674163177','6161101561020','1.00','400','retail','0','2023-01-20 00:39:42','','','','210','Cash',0.00,'400','','','12','','1','2023-01-19 18:39:53','1','14','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741643813613273',7317,'121674163177','3155930006015','1.00','250','retail','0','2023-01-20 00:39:42','','','','188','Cash',0.00,'250','','','12','','1','2023-01-19 18:39:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741644080132303',7318,'121674164395','3155930006015','1.00','250','retail','0','2023-01-20 00:40:08','','','','188','Cash',0.00,'250','','','12','','1','2023-01-19 18:40:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741646372033264',7319,'121674164413','6161101606011','1.00','250','retail','0','2023-01-20 00:43:58','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-19 18:44:14','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741650222033205',7320,'121674164656','6161100420786','1.00','400','retail','0','2023-01-20 00:50:23','','','','290','Cash',0.00,'400','','','12','','1','2023-01-19 18:58:01','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741654873614273',7321,'121674165483','6161100420823','1.00','300','retail','0','2023-01-20 00:58:12','','','','198','Cash',0.00,'300','','','12','','1','2023-01-19 18:59:27','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741654912202003',7322,'121674165483','6164001199034','1.00','50','retail','0','2023-01-20 00:58:12','','','','19','Cash',0.00,'50','','','12','','1','2023-01-19 18:59:27','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741659580303223',7323,'121674165569','7794450091604','1.00','2000','retail','0','2023-01-20 01:06:16','','','','1231','Cash',0.00,'2000','','','12','','1','2023-01-19 19:06:19','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741659763070000',7324,'121674165569','6161101606011','4.00','1000','retail','0','2023-01-20 01:06:16','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-19 19:06:19','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','28.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741679162033297',7325,'121674165981','5010103930628','1.00','1750','retail','0','2023-01-20 01:39:06','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-19 19:39:13','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741679456343603',7326,'121674165981','50112265','1.00','80','retail','0','2023-01-20 01:39:06','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-19 19:39:13','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741681093310320',7327,'121674167955','1000','1.00','270','retail','0','2023-01-20 01:42:05','','','','192','Cash',0.00,'270','','','12','','1','2023-01-19 19:47:15','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741681240303223',7328,'121674167955','5060608740253','1.00','80','retail','0','2023-01-20 01:42:05','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-19 19:47:15','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741684493134233',7329,'121674168436','6161101602372','1.00','250','retail','0','2023-01-20 01:47:29','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-19 20:03:27','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741709770332020',7330,'121674169410','90162602','4.00','920','retail','0','2023-01-20 02:29:39','','','','147','Cash',0.00,'230','','','12','','1','2023-01-19 20:30:06','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','20.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741711580332020',7331,'121674171009','6161101602938','4.00','1000','retail','0','2023-01-20 02:34:52','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-19 20:34:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','10.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741711700033027',7332,'121674171009','6161101602921','6.00','1500','retail','0','2023-01-20 02:34:52','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-19 20:34:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','48.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741748073718273',7333,'121674171297','6161101603522','1.00','800','retail','0','2023-01-20 03:33:41','','','','501','Cash',0.00,'800','','','12','','1','2023-01-19 21:38:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741748203310320',7334,'121674171297','6161101603324','1.00','250','retail','0','2023-01-20 03:33:41','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-19 21:38:22','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741909763919273',7335,'121674190789','6001108028044','1.00','300','retail','0','2023-01-20 08:03:07','','','','201','Cash',0.00,'300','','','12','','1','2023-01-20 02:03:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741909860009218',7336,'121674190789','8712000900663','1.00','300','retail','0','2023-01-20 08:03:07','','','','214','Cash',0.00,'300','','','12','','1','2023-01-20 02:03:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741959402033295',7337,'121674190998','6161100421929','1.00','300','retail','0','2023-01-20 09:25:44','','','','188','Cash',0.00,'300','','','12','','1','2023-01-20 03:25:59','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741960173910273',7338,'121674195962','6161101604550','1.00','400','retail','0','2023-01-20 09:26:58','','','','284','Cash',0.00,'400','','','12','','1','2023-01-20 03:27:05','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216741994626363603',7339,'121674196027','6164003409025','1.00','250','retail','0','2023-01-20 10:24:23','','','','165','Cash',0.00,'250','','','12','','1','2023-01-20 04:24:28','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742310163634313',7340,'121674230076','6161101603522','1.00','800','retail','0','2023-01-20 19:10:17','','','','501','Cash',0.00,'800','','','12','','1','2023-01-20 13:10:21','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742311310332020',7341,'121674231112','6161101603379','4.00','1000','retail','0','2023-01-20 19:12:12','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-20 13:12:20','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742356702033265',7342,'121674235659','5010327605005','1.00','1600','retail','0','2023-01-20 20:27:51','','','','1000','Cash',0.00,'1600','','','12','','1','2023-01-20 14:27:55','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742367332033276',7343,'121674235679','6161101605458','1.00','270','retail','0','2023-01-20 20:45:34','','','','182','Cash',0.00,'270','','','12','','1','2023-01-20 14:49:12','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742370730332020',7344,'121674236955','725765052087','1.00','290','retail','0','2023-01-20 20:51:14','','','','209','Cash',0.00,'290','','','12','','1','2023-01-20 14:56:35','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742413572136222',7345,'121674237397','6001452301862','2.00','3200','retail','0','2023-01-20 22:02:37','','','','1150','Cash',0.00,'1600','','','12','','1','2023-01-20 16:02:42','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742415592033251',7346,'121674241364','6161101602600','1.00','250','retail','0','2023-01-20 22:06:00','','','','154.95','Cash',0.00,'250','','','12','','1','2023-01-20 16:06:03','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742458252033285',7347,'121674241564','6164003409025','1.00','250','retail','0','2023-01-20 23:17:06','','','','165','Cash',0.00,'250','','','12','','1','2023-01-20 17:58:01','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742483053320320',7348,'121674248285','5000289933292','1.00','950','retail','0','2023-01-20 23:58:34','','','','710','Cash',0.00,'950','','','12','','1','2023-01-20 18:31:46','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742483130333332',7349,'121674248285','5018907194802','1.00','150','retail','0','2023-01-20 23:58:34','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-20 18:31:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742503260303223',7350,'121674250309','5010103930628','1.00','1750','retail','0','2023-01-21 00:32:09','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-20 18:36:21','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742503293513273',7351,'121674250309','6009675642021','1.00','1500','retail','0','2023-01-21 00:32:09','','','','700','Cash',0.00,'1500','','','12','','1','2023-01-20 18:36:21','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742537823517273',7352,'121674250583','6001496011772','1.00','800','retail','0','2023-01-21 01:32:19','','','','544','Cash',0.00,'800','','','12','','1','2023-01-20 19:34:50','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742537993102223',7353,'121674250583','54491069','1.00','80','retail','0','2023-01-21 01:32:19','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-20 19:34:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742539386333603',7354,'121674250583','5449000131836','1.00','80','retail','0','2023-01-21 01:32:19','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-20 19:34:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742543690303223',7355,'121674254093','5000289929417','1.00','3000','retail','0','2023-01-21 01:43:16','','','','1900','Cash',0.00,'3000','','','12','','1','2023-01-20 19:43:25','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742543762033234',7356,'121674254093','5018907194802','1.00','150','retail','0','2023-01-21 01:43:16','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742543936393603',7357,'121674254093','082184090442','1.00','5300','retail','0','2023-01-21 01:43:16','','','','3450','Cash',0.00,'5300','','','12','','1','2023-01-20 19:43:25','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742543980332020',7358,'121674254093','5018907194802','1.00','150','retail','0','2023-01-21 01:43:16','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742544277033727',7359,'121674254093','5449000000286','1.00','250','retail','0','2023-01-21 01:43:16','','','','158','Cash',0.00,'250','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742544590303223',7360,'121674254093','5449000188342','1.00','100','retail','0','2023-01-21 01:43:16','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742545340303223',7361,'121674254093','6161101603379','14.00','3500','retail','0','2023-01-21 01:43:16','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-20 19:43:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'14','20.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742545483515273',7362,'121674254093','50112265','2.00','160','retail','0','2023-01-21 01:43:16','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','22.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742545653515273',7363,'121674254093','8712000900045','8.00','2400','retail','0','2023-01-21 01:43:16','','','','182','Cash',0.00,'300','','','12','','1','2023-01-20 19:43:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'8','19.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742545806383603',7364,'121674254093','90162602','1.00','230','retail','0','2023-01-21 01:43:16','','','','147','Cash',0.00,'230','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742545965634513',7365,'121674254093','6164002099036','2.00','240','retail','0','2023-01-21 01:43:16','','','','40','Cash',0.00,'120','','','12','','1','2023-01-20 19:43:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','50.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742580210332020',7366,'121674254607','5060608740253','1.00','80','retail','0','2023-01-21 02:41:05','','','','41.82','Cash',0.00,'80','','','12','','1','2023-01-20 21:10:26','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742580423320320',7367,'121674254607','6161100421271','1.00','1400','retail','0','2023-01-21 02:41:05','','','','636','Cash',0.00,'1400','','','12','','1','2023-01-20 21:10:26','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742580645634513',7368,'121674254607','6161101602921','1.00','250','retail','0','2023-01-21 02:41:05','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-20 21:10:26','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742598510332020',7369,'121674259828','6161101602372','4.00','1000','retail','0','2023-01-21 03:10:52','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-20 21:10:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','6.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742650956634613',7370,'121674265044','6001495201501','1.00','1400','retail','0','2023-01-21 04:38:16','','','','628','Cash',0.00,'1400','','','12','','1','2023-01-20 22:38:20','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742653370332020',7371,'121674265330','5010103930628','1.00','1750','retail','0','2023-01-21 04:43:11','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-20 22:43:38','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742653452033235',7372,'121674265330','5018907194802','2.00','300','retail','0','2023-01-21 04:43:11','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-20 22:43:38','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','33.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742653540332020',7373,'121674265330','6161101603324','1.00','250','retail','0','2023-01-21 04:43:11','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-20 22:43:38','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742655216323603',7374,'121674265426','6161101606561','1.00','1850','retail','0','2023-01-21 04:45:22','','','','1125','Cash',0.00,'1850','','','12','','1','2023-01-20 22:45:31','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742952688033827',7375,'121674295260','6161101603324','1.00','250','retail','0','2023-01-21 13:01:09','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-21 07:01:12','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742953480332020',7376,'121674295275','5010327605005','1.00','1600','retail','0','2023-01-21 13:06:42','','','','1000','Cash',0.00,'1600','','','12','','1','2023-01-21 07:06:46','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742955899634913',7377,'121674295275','6164001199010','2.00','200','retail','0','2023-01-21 13:06:42','','','','38','Cash',0.00,'100','','','12','','1','2023-01-21 07:06:46','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','35.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742956270332020',7378,'121674295609','6161100421882','1.00','350','retail','0','2023-01-21 13:07:41','','','','220','Cash',0.00,'350','','','12','','1','2023-01-21 07:10:52','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742956360303223',7379,'121674295609','8712000900045','1.00','300','retail','0','2023-01-21 13:07:41','','','','182','Cash',0.00,'300','','','12','','1','2023-01-21 07:10:52','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742956456343603',7380,'121674295609','6164001199010','1.00','100','retail','0','2023-01-21 13:07:41','','','','38','Cash',0.00,'100','','','12','','1','2023-01-21 07:10:52','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216742956600303223',7381,'121674295609','6161101603324','2.00','500','retail','0','2023-01-21 13:07:41','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-21 07:10:52','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743045183330320',7382,'121674295854','5010103930833','1.00','1100','retail','0','2023-01-21 15:35:27','','','','653','Cash',0.00,'1100','','','12','','1','2023-01-21 09:35:30','1','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743045260332020',7383,'121674295854','6164001199010','1.00','100','retail','0','2023-01-21 15:35:27','','','','38','Cash',0.00,'100','','','12','','1','2023-01-21 09:35:30','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743092433012273',7384,'121674304533','6161101605458','1.00','270','retail','0','2023-01-21 16:55:19','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 10:55:22','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743093183330320',7385,'121674304533','6164001199034','1.00','50','retail','0','2023-01-21 16:55:19','','','','19','Cash',0.00,'50','','','12','','1','2023-01-21 10:55:22','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743095033033327',7386,'121674309326','6161100420786','1.00','400','retail','0','2023-01-21 16:58:24','','','','290','Cash',0.00,'400','','','12','','1','2023-01-21 10:58:28','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743099930303223',7387,'121674309984','8712000900045','11.00','3300','retail','0','2023-01-21 17:06:34','','','','182','Cash',0.00,'300','','','12','','1','2023-01-21 11:07:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'11','11.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743106212033260',7388,'121674310072','6161101603379','2.00','500','retail','0','2023-01-21 17:17:02','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-21 11:17:04','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743114282033241',7389,'121674310627','6161101602372','1.00','250','retail','0','2023-01-21 17:30:58','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-21 11:31:02','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743114443330320',7390,'121674310627','6161101605458','1.00','270','retail','0','2023-01-21 17:30:58','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 11:31:02','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743114570332020',7391,'121674310627','6164001199034','1.00','50','retail','0','2023-01-21 17:30:58','','','','19','Cash',0.00,'50','','','12','','1','2023-01-21 11:31:02','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743139170303223',7392,'121674311464','6161101603379','2.00','500','retail','0','2023-01-21 18:11:58','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-21 12:12:17','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743202799033927',7393,'121674313943','6164003409025','1.00','250','retail','0','2023-01-21 19:58:02','','','','165','Cash',0.00,'250','','','12','','1','2023-01-21 13:58:44','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743203776373603',7394,'121674320369','5011007003029','1.00','2700','retail','0','2023-01-21 19:59:38','','','','2000','Cash',0.00,'2700','','','12','','1','2023-01-21 14:02:39','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743222890332020',7395,'121674320561','75032814','1.00','450','retail','0','2023-01-21 20:31:45','','','','295','Cash',0.00,'450','','','12','','1','2023-01-21 14:32:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743223040303223',7396,'121674320561','54491069','1.00','80','retail','0','2023-01-21 20:31:45','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-21 14:32:16','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743230180303223',7397,'121674322339','6161101602938','5.00','1250','retail','0','2023-01-21 20:43:48','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-21 14:43:50','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'5','6.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743230270303223',7398,'121674322339','6164001199034','1.00','50','retail','0','2023-01-21 20:43:48','','','','19','Cash',0.00,'50','','','12','','1','2023-01-21 14:43:50','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743269832634213',7399,'121674326971','6164003409025','1.00','250','retail','0','2023-01-21 21:49:44','','','','165','Cash',0.00,'250','','','12','','1','2023-01-21 15:49:48','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743275333330320',7400,'121674327521','6161101604703','6.00','1500','retail','0','2023-01-21 21:59:15','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-21 15:59:57','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743275443330320',7401,'121674327521','5018907194802','2.00','300','retail','0','2023-01-21 21:59:15','','','','74.58','Cash',0.00,'150','','','12','','1','2023-01-21 15:59:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','31.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743275550303223',7402,'121674327521','54491069','1.00','80','retail','0','2023-01-21 21:59:15','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-21 15:59:57','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743281620303223',7403,'121674327599','6164001199010','1.00','100','retail','0','2023-01-21 22:09:23','','','','38','Cash',0.00,'100','','','12','','1','2023-01-21 16:09:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743283756373603',7404,'121674328167','6161101606547','1.00','550','retail','0','2023-01-21 22:13:16','','','','388','Cash',0.00,'550','','','12','','1','2023-01-21 16:13:58','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743283850332020',7405,'121674328167','50112265','1.00','80','retail','0','2023-01-21 22:13:16','','','','53.33','Cash',0.00,'80','','','12','','1','2023-01-21 16:13:58','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743283950332020',7406,'121674328167','6161101603379','1.00','250','retail','0','2023-01-21 22:13:16','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-21 16:13:58','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743287710332020',7407,'121674328763','5010103930628','1.00','1750','retail','0','2023-01-21 22:19:40','','','','1125','Cash',0.00,'1750','','','12','','1','2023-01-21 16:19:53','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743287803217273',7408,'121674328763','6164001199010','1.00','100','retail','0','2023-01-21 22:19:40','','','','38','Cash',0.00,'100','','','12','','1','2023-01-21 16:19:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743297022033279',7409,'121674328796','6161101605458','1.00','270','retail','0','2023-01-21 22:35:03','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 16:35:09','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743313530332020',7410,'121674329711','6009627080246','1.00','180','retail','0','2023-01-21 23:03:14','','','','92','Cash',0.00,'180','','','12','','1','2023-01-21 17:03:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743313620303223',7411,'121674329711','54493360','1.00','80','retail','0','2023-01-21 23:03:14','','','','53.333','Cash',0.00,'80','','','12','','1','2023-01-21 17:03:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743313933313273',7412,'121674329711','6161101602372','2.00','500','retail','0','2023-01-21 23:03:14','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-21 17:03:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743320766033627',7413,'121674331400','8712000900663','2.00','600','retail','0','2023-01-21 23:14:37','','','','214','Cash',0.00,'300','','','12','','1','2023-01-21 17:14:44','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743347766373603',7414,'121674332087','6161101602372','4.00','1000','retail','0','2023-01-21 23:59:37','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-21 17:59:40','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','4.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743352310332020',7415,'121674334782','6161101605458','1.00','270','retail','0','2023-01-22 00:07:13','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 18:07:15','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743355033222233',7416,'121674335475','6161101604703','1.00','250','retail','0','2023-01-22 00:11:44','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-21 18:11:46','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743355190303223',7417,'121674335508','6002269000566','1.00','1200','retail','0','2023-01-22 00:12:00','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-21 18:12:02','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743379383634313',7418,'121674335525','6008165007685','1.00','350','retail','0','2023-01-22 00:54:03','','','','257','Cash',0.00,'350','','','12','','1','2023-01-21 18:55:11','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743380423634313',7419,'121674335525','6161101602938','4.00','1000','retail','0','2023-01-22 00:54:03','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-21 18:55:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'4','9.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743382166033627',7420,'121674338209','6161101605458','1.00','270','retail','0','2023-01-22 00:56:57','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 18:57:54','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743395380332020',7421,'121674338276','6001496011796','1.00','1700','retail','0','2023-01-22 01:18:59','','','','1072','Cash',0.00,'1700','','','12','','1','2023-01-21 19:19:02','1','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743399955033527',7422,'121674339543','40822938','1.00','70','retail','0','2023-01-22 01:26:36','','','','53.333','Cash',0.00,'70','','','12','','1','2023-01-21 19:26:39','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743400824634413',7423,'121674340071','6161101603379','2.00','500','retail','0','2023-01-22 01:28:03','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-21 19:28:06','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','8.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743405604634413',7424,'121674340088','6161101602938','2.00','500','retail','0','2023-01-22 01:36:01','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-21 19:36:16','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','5.00','3','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743411030303223',7425,'121674340578','6161101605458','1.00','270','retail','0','2023-01-22 01:45:04','','','','182','Cash',0.00,'270','','','12','','1','2023-01-21 19:45:07','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743421512033212',7426,'121674342139','8712000900045','6.00','1800','retail','0','2023-01-22 02:02:32','','','','182','Cash',0.00,'300','','','12','','1','2023-01-21 20:03:21','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','6.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743423452033232',7427,'121674342203','3800032010568','1.00','1700','retail','0','2023-01-22 02:05:46','','','','1018','Cash',0.00,'1700','','','12','','1','2023-01-21 20:05:52','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743426410303223',7428,'121674342630','6161101603324','3.00','750','retail','0','2023-01-22 02:10:50','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-21 20:10:53','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','3.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743426490303223',7429,'121674342630','6161101602372','1.00','250','retail','0','2023-01-22 02:10:50','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-21 20:10:53','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743472743412273',7430,'121674342654','6161101603379','1.00','250','retail','0','2023-01-22 03:27:56','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-21 21:28:10','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743480792033208',7431,'121674347293','3155930006015','1.00','250','retail','0','2023-01-22 03:41:20','','','','188','Cash',0.00,'250','','','12','','1','2023-01-21 21:41:23','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743484160332020',7432,'121674348085','5449000180247','2.00','400','retail','0','2023-01-22 03:47:09','','','','125','Cash',0.00,'200','','','12','','1','2023-01-21 21:47:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743484280303223',7433,'121674348085','90162602','1.00','230','retail','0','2023-01-22 03:47:09','','','','147','Cash',0.00,'230','','','12','','1','2023-01-21 21:47:11','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743498803418273',7434,'121674348434','6161101606011','1.00','250','retail','0','2023-01-22 04:11:21','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-21 22:11:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743514316333603',7435,'121674349886','5010752000345','1.00','2500','retail','0','2023-01-22 04:37:33','','','','1750','Cash',0.00,'2500','','','12','','1','2023-01-21 22:38:48','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743514523514273',7436,'121674349886','6164001199034','1.00','50','retail','0','2023-01-22 04:37:33','','','','19','Cash',0.00,'50','','','12','','1','2023-01-21 22:38:48','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743522633330320',7437,'121674351530','5060639129003','1.00','250','retail','0','2023-01-22 04:51:05','','','','153','Cash',0.00,'250','','','12','','1','2023-01-21 22:58:47','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743527573330320',7438,'121674352730','6161100420823','1.00','300','retail','0','2023-01-22 04:59:18','','','','198','Cash',0.00,'300','','','12','','1','2023-01-21 22:59:22','1','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743565912629250',7439,'121674352768','5010752000345','1.00','2500','retail','0','2023-01-22 06:04:21','','','','1750','Cash',0.00,'2500','','','12','','1','2023-01-22 00:12:18','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743566053330320',7440,'121674352768','6164002099036','1.00','120','retail','0','2023-01-22 06:04:21','','','','40','Cash',0.00,'120','','','12','','1','2023-01-22 00:12:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743566499033927',7441,'121674352768','5449000000286','1.00','250','retail','0','2023-01-22 06:04:21','','','','158','Cash',0.00,'250','','','12','','1','2023-01-22 00:12:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743566603516273',7442,'121674352768','5060639129003','1.00','250','retail','0','2023-01-22 06:04:21','','','','153','Cash',0.00,'250','','','12','','1','2023-01-22 00:12:18','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743571613711021',7443,'121674357142','6161101606011','1.00','250','retail','0','2023-01-22 06:12:42','','','','172.833','Cash',0.00,'250','','','12','','1','2023-01-22 00:12:46','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743690433330320',7444,'121674369017','6161101602143','1.00','550','retail','0','2023-01-22 09:30:44','','','','388','Cash',0.00,'550','','','12','','1','2023-01-22 03:32:10','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743738920332020',7445,'121674369134','90162602','1.00','230','retail','0','2023-01-22 10:51:33','','','','147','Cash',0.00,'230','','','12','','1','2023-01-22 04:51:37','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743808140303223',7446,'121674380802','6161101603379','6.00','1500','retail','0','2023-01-22 12:46:54','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-22 06:46:59','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'6','11.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743914540303223',7447,'121674391438','6161101602372','2.00','500','retail','0','2023-01-22 15:44:18','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-22 09:44:24','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','7.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216743945393330320',7448,'121674391471','6161101605458','2.00','540','retail','0','2023-01-22 16:35:40','','','','182','Cash',0.00,'270','','','12','','1','2023-01-22 10:35:43','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','6.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744025650332020',7449,'121674401797','6002269000566','1.00','1200','retail','0','2023-01-22 18:49:26','','','','680','Cash',0.00,'1200','','','12','','1','2023-01-22 12:49:31','1','12','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744104200033027',7450,'121674410356','8712000900663','2.00','600','retail','0','2023-01-22 21:00:38','','','','214','Cash',0.00,'300','','','12','','1','2023-01-22 15:01:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','4.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744104372033240',7451,'121674410356','8712000900045','3.00','900','retail','0','2023-01-22 21:00:38','','','','182','Cash',0.00,'300','','','12','','1','2023-01-22 15:01:56','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','12.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744114670332020',7452,'121674410519','6161101602938','1.00','250','retail','0','2023-01-22 21:17:57','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-22 15:18:11','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744114772373212',7453,'121674410519','6161101603324','1.00','250','retail','0','2023-01-22 21:17:57','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-22 15:18:11','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744182143112273',7454,'121674411493','90399480','1.00','100','retail','0','2023-01-22 23:10:16','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-22 17:10:53','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744201262033210',7455,'121674418255','6161101602372','1.00','250','retail','0','2023-01-22 23:42:08','','','','189.75','Cash',0.00,'250','','','12','','1','2023-01-22 17:42:13','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744249872634213',7456,'121674420136','6161101602921','2.00','500','retail','0','2023-01-23 01:03:08','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-22 19:03:15','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'2','41.00','39','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744284473214273',7457,'121674425001','6161101601115','1.00','850','retail','0','2023-01-23 02:01:23','','','','635','Cash',0.00,'850','','','12','','1','2023-01-22 20:01:33','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744284640332020',7458,'121674425001','6164002099210','1.00','100','retail','0','2023-01-23 02:01:23','','','','42','Cash',0.00,'100','','','12','','1','2023-01-22 20:01:33','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744284820303223',7459,'121674425001','6161101602921','1.00','250','retail','0','2023-01-23 02:01:23','','','','198.45','Cash',0.00,'250','','','12','','1','2023-01-22 20:01:33','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744303793340320',7460,'121674428495','6008165007074','1.00','350','retail','0','2023-01-23 02:33:00','','','','257','Cash',0.00,'350','','','12','','1','2023-01-22 20:33:34','1','13','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744306686363603',7461,'121674430660','6164001199010','1.00','100','retail','0','2023-01-23 02:39:15','','','','38','Cash',0.00,'100','','','12','','1','2023-01-22 20:40:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744306850303223',7462,'121674430660','6161101603379','3.00','750','retail','0','2023-01-23 02:39:15','','','','190.375','Cash',0.00,'250','','','12','','1','2023-01-22 20:40:25','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'3','5.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744306990332020',7463,'121674430660','90399480','1.00','100','retail','0','2023-01-23 02:39:15','','','','59.666','Cash',0.00,'100','','','12','','1','2023-01-22 20:40:25','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744307543317273',7464,'121674430660','5010106111451','1.00','2200','retail','0','2023-01-23 02:39:15','','','','1600','Cash',0.00,'2200','','','12','','1','2023-01-22 20:40:25','1','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744320553634313',7465,'121674430828','40262144','1.00','200','retail','0','2023-01-23 03:01:38','','','','125','Cash',0.00,'200','','','12','','1','2023-01-22 21:01:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744320980303223',7466,'121674430828','50112753','1.00','80','retail','0','2023-01-23 03:01:38','','','','56','Cash',0.00,'80','','','12','','1','2023-01-22 21:01:44','1','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744367376333603',7467,'121674436660','8712000900663','2.00','600','retail','0','2023-01-23 04:39:56','','','','214','Cash',0.00,'300','','','12','','1','2023-01-22 23:02:18','1','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'','2.00','0','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744379270332020',7468,'121674436660','6161101603324','1.00','250','retail','0','2023-01-23 04:39:56','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-22 23:02:18','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744379393342332',7469,'121674436660','6161101605458','1.00','270','retail','0','2023-01-23 04:39:56','','','','182','Cash',0.00,'270','','','12','','1','2023-01-22 23:02:18','1','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744379523319273',7470,'121674436660','6161101604703','1.00','250','retail','0','2023-01-23 04:39:56','','','','150.45','Cash',0.00,'250','','','12','','1','2023-01-22 23:02:18','1','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('1216744379712033297',7471,'121674436660','6161101604406','1.00','